Connect Database

library(RPostgres)
library(DBI)
source("conf.R")

con <- DBlocal

Select Query

Country with Most Death

country_most_death <- dbGetQuery(con, 
                     "SELECT c.country_name, SUM(d.deaths) death_total 
                     FROM country c, data d, time t
                     WHERE c.country_id = d.country_id 
                     AND t.time_id = d.time_id 
                     GROUP BY c.country_name
                     ORDER BY death_total DESC")
country_most_death
##                                   country_name death_total
## 1                     United_States_of_America      377146
## 2                                       Brazil      172314
## 3                               United_Kingdom      130614
## 4                                        Italy      104192
## 5                                       France       89260
## 6                                        Spain       85027
## 7                                       Mexico       79677
## 8                                        India       49045
## 9                                         Iran       31380
## 10                                     Belgium       29196
## 11                                        Peru       27769
## 12                                      Russia       27102
## 13                                     Germany       26886
## 14                                 Netherlands       18315
## 15                                      Canada       17038
## 16                                       Chile       16365
## 17                                      Sweden       15840
## 18                                      Turkey       15276
## 19                                     Ecuador       13282
## 20                                    Pakistan       12452
## 21                                    Colombia        9301
## 22                                       China        9282
## 23                                       Egypt        8286
## 24                                   Indonesia        8228
## 25                                South_Africa        7325
## 26                                 Switzerland        5324
## 27                                     Ireland        5204
## 28                                        Iraq        5172
## 29                                  Bangladesh        5171
## 30                                     Romania        4813
## 31                                    Portugal        4689
## 32                                Saudi_Arabia        4613
## 33                                      Poland        4311
## 34                                 Philippines        3724
## 35                                   Argentina        3656
## 36                                     Ukraine        3381
## 37                                     Bolivia        2998
## 38                                       Japan        2915
## 39                                     Algeria        2686
## 40                          Dominican_Republic        2170
## 41                                   Guatemala        2160
## 42                                 Afghanistan        2145
## 43                                     Austria        2104
## 44                                     Denmark        1812
## 45                                      Panama        1800
## 46                                     Hungary        1740
## 47                                       Sudan        1716
## 48                                     Nigeria        1688
## 49                                     Moldova        1581
## 50                                    Honduras        1437
## 51                                     Armenia        1285
## 52                                     Belarus        1143
## 53                                     Czechia        1043
## 54                                      Kuwait        1040
## 55                                     Finland         984
## 56                                      Israel         953
## 57                                    Cameroon         939
## 58                        United_Arab_Emirates         937
## 59                                       Yemen         900
## 60                             North_Macedonia         849
## 61                                 South_Korea         846
## 62                                      Serbia         807
## 63                                      Norway         747
## 64                                     Morocco         662
## 65                                    Bulgaria         654
## 66                                  Azerbaijan         589
## 67                                      Greece         573
## 68                      Bosnia_and_Herzegovina         535
## 69                                  Kazakhstan         534
## 70                                        Oman         485
## 71                                 El_Salvador         468
## 72            Democratic_Republic_of_the_Congo         463
## 73                                       Kenya         427
## 74                                  Mauritania         366
## 75                                    Malaysia         363
## 76                                        Mali         341
## 77                                    Slovenia         333
## 78                                  Luxembourg         330
## 79                                       Qatar         330
## 80                                       Ghana         327
## 81                                     Croatia         321
## 82                                     Senegal         312
## 83                                 Puerto_Rico         305
## 84                                       Haiti         304
## 85                                    Ethiopia         290
## 86                                     Somalia         270
## 87                                        Cuba         258
## 88                                     Bahrain         244
## 89                                   Lithuania         234
## 90                                   Nicaragua         222
## 91                                        Chad         222
## 92                                   Australia         208
## 93                                     Estonia         207
## 94                                       Niger         201
## 95                                Cote_dIvoire         196
## 96                                Sierra_Leone         179
## 97                                    Thailand         174
## 98                                     Albania         163
## 99                                Burkina_Faso         159
## 100                                   Djibouti         156
## 101                                    Andorra         156
## 102                                 Tajikistan         156
## 103                                    Tunisia         150
## 104                                 Kyrgyzstan         147
## 105                   Central_African_Republic         135
## 106                                  Venezuela         130
## 107                                 San_Marino         126
## 108                                      Gabon         120
## 109                                      Congo         117
## 110                                     Kosovo         111
## 111                                South_Sudan         108
## 112                                    Liberia         102
## 113                                    Lebanon         101
## 114                          Equatorial_Guinea          96
## 115                                     Guinea          92
## 116                                     Latvia          90
## 117                                   Slovakia          84
## 118                                      Nepal          83
## 119                                    Uruguay          80
## 120                                  Singapore          78
## 121                                New_Zealand          66
## 122                                     Zambia          65
## 123                                 Uzbekistan          64
## 124                              Guinea_Bissau          64
## 125                United_Republic_of_Tanzania          63
## 126                                     Jersey          62
## 127                                      Libya          60
## 128                                     Cyprus          57
## 129                                 Madagascar          52
## 130                                Isle_of_Man          48
## 131                                      Benin          46
## 132                                   Paraguay          45
## 133                                    Georgia          45
## 134                                       Togo          42
## 135                                 Costa_Rica          42
## 136                      Sao_Tome_and_Principe          39
## 137                                     Malawi          39
## 138                                 Cape_Verde          36
## 139                                     Guyana          36
## 140                                  Sri_Lanka          33
## 141                                    Bahamas          33
## 142                                     Angola          32
## 143                                   Suriname          32
## 144                                 Montenegro          31
## 145                                   Eswatini          30
## 146                                    Jamaica          30
## 147                                    Iceland          30
## 148                                  Mauritius          30
## 149                               Sint_Maarten          30
## 150                                     Jordan          27
## 151                                      Syria          27
## 152                                      Malta          27
## 153                                   Guernsey          26
## 154                        Trinidad_and_Tobago          24
## 155                                   Maldives          24
## 156                                    Comoros          21
## 157                                   Barbados          21
## 158                                   Zimbabwe          18
## 159                                    Bermuda          18
## 160                                    Myanmar          18
## 161                                  Palestine          17
## 162                                 Mozambique          15
## 163                                     Monaco          14
## 164               United_States_Virgin_Islands          12
## 165                                       Guam          10
## 166                        Antigua_and_Barbuda           9
## 167                          Brunei_Darussalam           9
## 168                                     Taiwan           7
## 169 Cases_on_an_international_conveyance_Japan           7
## 170                                      Aruba           6
## 171                                     Belize           6
## 172                                     Gambia           6
## 173                                     Rwanda           6
## 174                   Northern_Mariana_Islands           4
## 175                                    Burundi           3
## 176                              Liechtenstein           3
## 177                                   Botswana           3
## 178                             Western_Sahara           3
## 179                             Cayman_Islands           2
## 180                                    Curaçao           2
## 181                   Turks_and_Caicos_islands           2
## 182                     British_Virgin_Islands           2
## 183                                 Montserrat           1
## 184                                   Mongolia           0
## 185                      Saint_Kitts_and_Nevis           0
## 186                                    Grenada           0
## 187                           French_Polynesia           0
## 188                                Timor_Leste           0
## 189           Saint_Vincent_and_the_Grenadines           0
## 190                              Faroe_Islands           0
## 191                                    Vietnam           0
## 192                                    Eritrea           0
## 193                                       Laos           0
## 194          Bonaire, Saint Eustatius and Saba           0
## 195                                     Bhutan           0
## 196                           Papua_New_Guinea           0
## 197                                   Cambodia           0
## 198                                  Greenland           0
## 199                                       Fiji           0
## 200                                    Namibia           0
## 201                                  Gibraltar           0
## 202                                   Anguilla           0
## 203                                Saint_Lucia           0
## 204                                     Uganda           0
## 205                                   Holy_See           0
## 206                Falkland_Islands_(Malvinas)           0
## 207                              New_Caledonia           0
## 208                                    Lesotho           0
## 209                                   Dominica           0
## 210                                 Seychelles           0

Countries death ratio

country_death_ratio <- dbGetQuery(con, 
                     "SELECT c.country_name, SUM(d.deaths) death_total, c.population 
                                  -- , (SUM(d.deaths)/c.population) as ratio
                        FROM country c, data d, time t
                        WHERE c.country_id = d.country_id
                        AND t.time_id = d.time_id
                                    GROUP BY c.country_name, c.population
                                  ORDER BY death_total DESC;")
country_death_ratio
##                                   country_name death_total population
## 1                     United_States_of_America      377146  329064917
## 2                                       Brazil      172314  211049519
## 3                               United_Kingdom      130614   66647112
## 4                                        Italy      104192   60359546
## 5                                       France       89260   67012883
## 6                                        Spain       85027   46937060
## 7                                       Mexico       79677  127575529
## 8                                        India       49045 1366417756
## 9                                         Iran       31380   82913893
## 10                                     Belgium       29196   11455519
## 11                                        Peru       27769   32510462
## 12                                      Russia       27102  145872260
## 13                                     Germany       26886   83019213
## 14                                 Netherlands       18315   17282163
## 15                                      Canada       17038   37411038
## 16                                       Chile       16365   18952035
## 17                                      Sweden       15840   10230185
## 18                                      Turkey       15276   82003882
## 19                                     Ecuador       13282   17373657
## 20                                    Pakistan       12452  216565317
## 21                                    Colombia        9301   50339443
## 22                                       China        9282 1433783692
## 23                                       Egypt        8286  100388076
## 24                                   Indonesia        8228  270625567
## 25                                South_Africa        7325   58558267
## 26                                 Switzerland        5324    8544527
## 27                                     Ireland        5204    4904240
## 28                                        Iraq        5172   39309789
## 29                                  Bangladesh        5171  163046173
## 30                                     Romania        4813   19414458
## 31                                    Portugal        4689   10276617
## 32                                Saudi_Arabia        4613   34268529
## 33                                      Poland        4311   37972812
## 34                                 Philippines        3724  108116622
## 35                                   Argentina        3656   44780675
## 36                                     Ukraine        3381   43993643
## 37                                     Bolivia        2998   11513102
## 38                                       Japan        2915  126860299
## 39                                     Algeria        2686   43053054
## 40                          Dominican_Republic        2170   10738957
## 41                                   Guatemala        2160   17581476
## 42                                 Afghanistan        2145   38041757
## 43                                     Austria        2104    8858775
## 44                                     Denmark        1812    5806081
## 45                                      Panama        1800    4246440
## 46                                     Hungary        1740    9772756
## 47                                       Sudan        1716   42813237
## 48                                     Nigeria        1688  200963603
## 49                                     Moldova        1581    4043258
## 50                                    Honduras        1437    9746115
## 51                                     Armenia        1285    2957728
## 52                                     Belarus        1143    9452409
## 53                                     Czechia        1043   10649800
## 54                                      Kuwait        1040    4207077
## 55                                     Finland         984    5517919
## 56                                      Israel         953    8519373
## 57                                    Cameroon         939   25876387
## 58                        United_Arab_Emirates         937    9770526
## 59                                       Yemen         900   29161922
## 60                             North_Macedonia         849    2077132
## 61                                 South_Korea         846   51225321
## 62                                      Serbia         807    6963764
## 63                                      Norway         747    5328212
## 64                                     Morocco         662   36471766
## 65                                    Bulgaria         654    7000039
## 66                                  Azerbaijan         589   10047719
## 67                                      Greece         573   10724599
## 68                      Bosnia_and_Herzegovina         535    3300998
## 69                                  Kazakhstan         534   18551428
## 70                                        Oman         485    4974992
## 71                                 El_Salvador         468    6453550
## 72            Democratic_Republic_of_the_Congo         463   86790568
## 73                                       Kenya         427   52573967
## 74                                  Mauritania         366    4525698
## 75                                    Malaysia         363   31949789
## 76                                        Mali         341   19658023
## 77                                    Slovenia         333    2080908
## 78                                       Qatar         330    2832071
## 79                                  Luxembourg         330     613894
## 80                                       Ghana         327   30417858
## 81                                     Croatia         321    4076246
## 82                                     Senegal         312   16296362
## 83                                 Puerto_Rico         305    2933404
## 84                                       Haiti         304   11263079
## 85                                    Ethiopia         290  112078727
## 86                                     Somalia         270   15442906
## 87                                        Cuba         258   11333484
## 88                                     Bahrain         244    1641164
## 89                                   Lithuania         234    2794184
## 90                                        Chad         222   15946882
## 91                                   Nicaragua         222    6545503
## 92                                   Australia         208   25203200
## 93                                     Estonia         207    1324820
## 94                                       Niger         201   23310719
## 95                                Cote_dIvoire         196   25716554
## 96                                Sierra_Leone         179    7813207
## 97                                    Thailand         174   69625581
## 98                                     Albania         163    2862427
## 99                                Burkina_Faso         159   20321383
## 100                                   Djibouti         156     973557
## 101                                    Andorra         156      76177
## 102                                 Tajikistan         156    9321023
## 103                                    Tunisia         150   11694721
## 104                                 Kyrgyzstan         147    6415851
## 105                   Central_African_Republic         135    4745179
## 106                                  Venezuela         130   28515829
## 107                                 San_Marino         126      34453
## 108                                      Gabon         120    2172578
## 109                                      Congo         117    5380504
## 110                                     Kosovo         111    1798506
## 111                                South_Sudan         108   11062114
## 112                                    Liberia         102    4937374
## 113                                    Lebanon         101    6855709
## 114                          Equatorial_Guinea          96    1355982
## 115                                     Guinea          92   12771246
## 116                                     Latvia          90    1919968
## 117                                   Slovakia          84    5450421
## 118                                      Nepal          83   28608715
## 119                                    Uruguay          80    3461731
## 120                                  Singapore          78    5804343
## 121                                New_Zealand          66    4783062
## 122                                     Zambia          65   17861034
## 123                              Guinea_Bissau          64    1920917
## 124                                 Uzbekistan          64   32981715
## 125                United_Republic_of_Tanzania          63   58005461
## 126                                     Jersey          62     107796
## 127                                      Libya          60    6777453
## 128                                     Cyprus          57     875899
## 129                                 Madagascar          52   26969306
## 130                                Isle_of_Man          48      84589
## 131                                      Benin          46   11801151
## 132                                    Georgia          45    3996762
## 133                                   Paraguay          45    7044639
## 134                                 Costa_Rica          42    5047561
## 135                                       Togo          42    8082359
## 136                                     Malawi          39   18628749
## 137                      Sao_Tome_and_Principe          39     215048
## 138                                 Cape_Verde          36     549936
## 139                                     Guyana          36     782775
## 140                                    Bahamas          33     389486
## 141                                  Sri_Lanka          33   21323734
## 142                                   Suriname          32     581363
## 143                                     Angola          32   31825299
## 144                                 Montenegro          31     622182
## 145                                    Jamaica          30    2948277
## 146                                    Iceland          30     356991
## 147                               Sint_Maarten          30      42389
## 148                                  Mauritius          30    1269670
## 149                                   Eswatini          30    1148133
## 150                                      Malta          27     493559
## 151                                      Syria          27   17070132
## 152                                     Jordan          27   10101697
## 153                                   Guernsey          26      64468
## 154                        Trinidad_and_Tobago          24    1394969
## 155                                   Maldives          24     530957
## 156                                    Comoros          21     850891
## 157                                   Barbados          21     287021
## 158                                   Zimbabwe          18   14645473
## 159                                    Bermuda          18      62508
## 160                                    Myanmar          18   54045422
## 161                                  Palestine          17    4981422
## 162                                 Mozambique          15   30366043
## 163                                     Monaco          14      33085
## 164               United_States_Virgin_Islands          12     104579
## 165                                       Guam          10     167295
## 166                        Antigua_and_Barbuda           9      97115
## 167                          Brunei_Darussalam           9     433296
## 168 Cases_on_an_international_conveyance_Japan           7       <NA>
## 169                                     Taiwan           7   23773881
## 170                                     Rwanda           6   12626938
## 171                                     Gambia           6    2347696
## 172                                      Aruba           6     106310
## 173                                     Belize           6     390351
## 174                   Northern_Mariana_Islands           4      57213
## 175                                    Burundi           3   11530577
## 176                             Western_Sahara           3     582458
## 177                              Liechtenstein           3      38378
## 178                                   Botswana           3    2303703
## 179                             Cayman_Islands           2      64948
## 180                     British_Virgin_Islands           2      30033
## 181                   Turks_and_Caicos_islands           2      38194
## 182                                    Curaçao           2     163423
## 183                                 Montserrat           1       4991
## 184                                    Namibia           0    2494524
## 185                                    Grenada           0     112002
## 186                                   Anguilla           0      14872
## 187                           Papua_New_Guinea           0    8776119
## 188          Bonaire, Saint Eustatius and Saba           0      25983
## 189                                    Vietnam           0   96462108
## 190                                       Laos           0    7169456
## 191                                Timor_Leste           0    1293120
## 192                                   Mongolia           0    3225166
## 193                           French_Polynesia           0     279285
## 194                                     Bhutan           0     763094
## 195                                     Uganda           0   44269587
## 196                              Faroe_Islands           0      48677
## 197                                Saint_Lucia           0     182795
## 198           Saint_Vincent_and_the_Grenadines           0     110593
## 199                                   Holy_See           0        815
## 200                                   Cambodia           0   16486542
## 201                                  Gibraltar           0      33706
## 202                                    Eritrea           0    3497117
## 203                                    Lesotho           0    2125267
## 204                Falkland_Islands_(Malvinas)           0       3372
## 205                                  Greenland           0      56660
## 206                              New_Caledonia           0     282757
## 207                                   Dominica           0      71808
## 208                                 Seychelles           0      97741
## 209                      Saint_Kitts_and_Nevis           0      52834
## 210                                       Fiji           0     889955
country_death_ratio['ratio'] <- round(country_death_ratio['death_total']/country_death_ratio['population'], 3)
country_death_ratio
##                                   country_name death_total population ratio
## 1                     United_States_of_America      377146  329064917 0.001
## 2                                       Brazil      172314  211049519 0.001
## 3                               United_Kingdom      130614   66647112 0.002
## 4                                        Italy      104192   60359546 0.002
## 5                                       France       89260   67012883 0.001
## 6                                        Spain       85027   46937060 0.002
## 7                                       Mexico       79677  127575529 0.001
## 8                                        India       49045 1366417756 0.000
## 9                                         Iran       31380   82913893 0.000
## 10                                     Belgium       29196   11455519 0.003
## 11                                        Peru       27769   32510462 0.001
## 12                                      Russia       27102  145872260 0.000
## 13                                     Germany       26886   83019213 0.000
## 14                                 Netherlands       18315   17282163 0.001
## 15                                      Canada       17038   37411038 0.000
## 16                                       Chile       16365   18952035 0.001
## 17                                      Sweden       15840   10230185 0.002
## 18                                      Turkey       15276   82003882 0.000
## 19                                     Ecuador       13282   17373657 0.001
## 20                                    Pakistan       12452  216565317 0.000
## 21                                    Colombia        9301   50339443 0.000
## 22                                       China        9282 1433783692 0.000
## 23                                       Egypt        8286  100388076 0.000
## 24                                   Indonesia        8228  270625567 0.000
## 25                                South_Africa        7325   58558267 0.000
## 26                                 Switzerland        5324    8544527 0.001
## 27                                     Ireland        5204    4904240 0.001
## 28                                        Iraq        5172   39309789 0.000
## 29                                  Bangladesh        5171  163046173 0.000
## 30                                     Romania        4813   19414458 0.000
## 31                                    Portugal        4689   10276617 0.000
## 32                                Saudi_Arabia        4613   34268529 0.000
## 33                                      Poland        4311   37972812 0.000
## 34                                 Philippines        3724  108116622 0.000
## 35                                   Argentina        3656   44780675 0.000
## 36                                     Ukraine        3381   43993643 0.000
## 37                                     Bolivia        2998   11513102 0.000
## 38                                       Japan        2915  126860299 0.000
## 39                                     Algeria        2686   43053054 0.000
## 40                          Dominican_Republic        2170   10738957 0.000
## 41                                   Guatemala        2160   17581476 0.000
## 42                                 Afghanistan        2145   38041757 0.000
## 43                                     Austria        2104    8858775 0.000
## 44                                     Denmark        1812    5806081 0.000
## 45                                      Panama        1800    4246440 0.000
## 46                                     Hungary        1740    9772756 0.000
## 47                                       Sudan        1716   42813237 0.000
## 48                                     Nigeria        1688  200963603 0.000
## 49                                     Moldova        1581    4043258 0.000
## 50                                    Honduras        1437    9746115 0.000
## 51                                     Armenia        1285    2957728 0.000
## 52                                     Belarus        1143    9452409 0.000
## 53                                     Czechia        1043   10649800 0.000
## 54                                      Kuwait        1040    4207077 0.000
## 55                                     Finland         984    5517919 0.000
## 56                                      Israel         953    8519373 0.000
## 57                                    Cameroon         939   25876387 0.000
## 58                        United_Arab_Emirates         937    9770526 0.000
## 59                                       Yemen         900   29161922 0.000
## 60                             North_Macedonia         849    2077132 0.000
## 61                                 South_Korea         846   51225321 0.000
## 62                                      Serbia         807    6963764 0.000
## 63                                      Norway         747    5328212 0.000
## 64                                     Morocco         662   36471766 0.000
## 65                                    Bulgaria         654    7000039 0.000
## 66                                  Azerbaijan         589   10047719 0.000
## 67                                      Greece         573   10724599 0.000
## 68                      Bosnia_and_Herzegovina         535    3300998 0.000
## 69                                  Kazakhstan         534   18551428 0.000
## 70                                        Oman         485    4974992 0.000
## 71                                 El_Salvador         468    6453550 0.000
## 72            Democratic_Republic_of_the_Congo         463   86790568 0.000
## 73                                       Kenya         427   52573967 0.000
## 74                                  Mauritania         366    4525698 0.000
## 75                                    Malaysia         363   31949789 0.000
## 76                                        Mali         341   19658023 0.000
## 77                                    Slovenia         333    2080908 0.000
## 78                                       Qatar         330    2832071 0.000
## 79                                  Luxembourg         330     613894 0.001
## 80                                       Ghana         327   30417858 0.000
## 81                                     Croatia         321    4076246 0.000
## 82                                     Senegal         312   16296362 0.000
## 83                                 Puerto_Rico         305    2933404 0.000
## 84                                       Haiti         304   11263079 0.000
## 85                                    Ethiopia         290  112078727 0.000
## 86                                     Somalia         270   15442906 0.000
## 87                                        Cuba         258   11333484 0.000
## 88                                     Bahrain         244    1641164 0.000
## 89                                   Lithuania         234    2794184 0.000
## 90                                        Chad         222   15946882 0.000
## 91                                   Nicaragua         222    6545503 0.000
## 92                                   Australia         208   25203200 0.000
## 93                                     Estonia         207    1324820 0.000
## 94                                       Niger         201   23310719 0.000
## 95                                Cote_dIvoire         196   25716554 0.000
## 96                                Sierra_Leone         179    7813207 0.000
## 97                                    Thailand         174   69625581 0.000
## 98                                     Albania         163    2862427 0.000
## 99                                Burkina_Faso         159   20321383 0.000
## 100                                   Djibouti         156     973557 0.000
## 101                                    Andorra         156      76177 0.002
## 102                                 Tajikistan         156    9321023 0.000
## 103                                    Tunisia         150   11694721 0.000
## 104                                 Kyrgyzstan         147    6415851 0.000
## 105                   Central_African_Republic         135    4745179 0.000
## 106                                  Venezuela         130   28515829 0.000
## 107                                 San_Marino         126      34453 0.004
## 108                                      Gabon         120    2172578 0.000
## 109                                      Congo         117    5380504 0.000
## 110                                     Kosovo         111    1798506 0.000
## 111                                South_Sudan         108   11062114 0.000
## 112                                    Liberia         102    4937374 0.000
## 113                                    Lebanon         101    6855709 0.000
## 114                          Equatorial_Guinea          96    1355982 0.000
## 115                                     Guinea          92   12771246 0.000
## 116                                     Latvia          90    1919968 0.000
## 117                                   Slovakia          84    5450421 0.000
## 118                                      Nepal          83   28608715 0.000
## 119                                    Uruguay          80    3461731 0.000
## 120                                  Singapore          78    5804343 0.000
## 121                                New_Zealand          66    4783062 0.000
## 122                                     Zambia          65   17861034 0.000
## 123                              Guinea_Bissau          64    1920917 0.000
## 124                                 Uzbekistan          64   32981715 0.000
## 125                United_Republic_of_Tanzania          63   58005461 0.000
## 126                                     Jersey          62     107796 0.001
## 127                                      Libya          60    6777453 0.000
## 128                                     Cyprus          57     875899 0.000
## 129                                 Madagascar          52   26969306 0.000
## 130                                Isle_of_Man          48      84589 0.001
## 131                                      Benin          46   11801151 0.000
## 132                                    Georgia          45    3996762 0.000
## 133                                   Paraguay          45    7044639 0.000
## 134                                 Costa_Rica          42    5047561 0.000
## 135                                       Togo          42    8082359 0.000
## 136                                     Malawi          39   18628749 0.000
## 137                      Sao_Tome_and_Principe          39     215048 0.000
## 138                                 Cape_Verde          36     549936 0.000
## 139                                     Guyana          36     782775 0.000
## 140                                    Bahamas          33     389486 0.000
## 141                                  Sri_Lanka          33   21323734 0.000
## 142                                   Suriname          32     581363 0.000
## 143                                     Angola          32   31825299 0.000
## 144                                 Montenegro          31     622182 0.000
## 145                                    Jamaica          30    2948277 0.000
## 146                                    Iceland          30     356991 0.000
## 147                               Sint_Maarten          30      42389 0.001
## 148                                  Mauritius          30    1269670 0.000
## 149                                   Eswatini          30    1148133 0.000
## 150                                      Malta          27     493559 0.000
## 151                                      Syria          27   17070132 0.000
## 152                                     Jordan          27   10101697 0.000
## 153                                   Guernsey          26      64468 0.000
## 154                        Trinidad_and_Tobago          24    1394969 0.000
## 155                                   Maldives          24     530957 0.000
## 156                                    Comoros          21     850891 0.000
## 157                                   Barbados          21     287021 0.000
## 158                                   Zimbabwe          18   14645473 0.000
## 159                                    Bermuda          18      62508 0.000
## 160                                    Myanmar          18   54045422 0.000
## 161                                  Palestine          17    4981422 0.000
## 162                                 Mozambique          15   30366043 0.000
## 163                                     Monaco          14      33085 0.000
## 164               United_States_Virgin_Islands          12     104579 0.000
## 165                                       Guam          10     167295 0.000
## 166                        Antigua_and_Barbuda           9      97115 0.000
## 167                          Brunei_Darussalam           9     433296 0.000
## 168 Cases_on_an_international_conveyance_Japan           7       <NA>    NA
## 169                                     Taiwan           7   23773881 0.000
## 170                                     Rwanda           6   12626938 0.000
## 171                                     Gambia           6    2347696 0.000
## 172                                      Aruba           6     106310 0.000
## 173                                     Belize           6     390351 0.000
## 174                   Northern_Mariana_Islands           4      57213 0.000
## 175                                    Burundi           3   11530577 0.000
## 176                             Western_Sahara           3     582458 0.000
## 177                              Liechtenstein           3      38378 0.000
## 178                                   Botswana           3    2303703 0.000
## 179                             Cayman_Islands           2      64948 0.000
## 180                     British_Virgin_Islands           2      30033 0.000
## 181                   Turks_and_Caicos_islands           2      38194 0.000
## 182                                    Curaçao           2     163423 0.000
## 183                                 Montserrat           1       4991 0.000
## 184                                    Namibia           0    2494524 0.000
## 185                                    Grenada           0     112002 0.000
## 186                                   Anguilla           0      14872 0.000
## 187                           Papua_New_Guinea           0    8776119 0.000
## 188          Bonaire, Saint Eustatius and Saba           0      25983 0.000
## 189                                    Vietnam           0   96462108 0.000
## 190                                       Laos           0    7169456 0.000
## 191                                Timor_Leste           0    1293120 0.000
## 192                                   Mongolia           0    3225166 0.000
## 193                           French_Polynesia           0     279285 0.000
## 194                                     Bhutan           0     763094 0.000
## 195                                     Uganda           0   44269587 0.000
## 196                              Faroe_Islands           0      48677 0.000
## 197                                Saint_Lucia           0     182795 0.000
## 198           Saint_Vincent_and_the_Grenadines           0     110593 0.000
## 199                                   Holy_See           0        815 0.000
## 200                                   Cambodia           0   16486542 0.000
## 201                                  Gibraltar           0      33706 0.000
## 202                                    Eritrea           0    3497117 0.000
## 203                                    Lesotho           0    2125267 0.000
## 204                Falkland_Islands_(Malvinas)           0       3372 0.000
## 205                                  Greenland           0      56660 0.000
## 206                              New_Caledonia           0     282757 0.000
## 207                                   Dominica           0      71808 0.000
## 208                                 Seychelles           0      97741 0.000
## 209                      Saint_Kitts_and_Nevis           0      52834 0.000
## 210                                       Fiji           0     889955 0.000

Tab COVID-19 by Country

q1 <- "
      SELECT b.date as Date
            , a.continent as Continent  
            , a.convert_name as Country
            , b.cases as Covid_Case
            , b.deaths as Cases_of_Covid_Death
            , b.recovered as Covid_Recovery_Cases
            --, c.source_name as Source
      FROM country a
      JOIN (SELECT ad.time_id
            , it.date
            , ad.country_id
            , ad.cases
            , ad.deaths
            , ad.recovered
            --, ad.source_id
            FROM data ad
            JOIN time it ON it.time_id=ad.time_id
            GROUP BY ad.time_id
                    , it.date
            , ad.country_id
            , ad.cases
            , ad.deaths
            , ad.recovered
            , ad.source_id
         ) b ON b.country_id = a.country_id
      --JOIN source c ON c.source_id=b.source_id
      GROUP BY b.date
        , a.continent
        , a.convert_name
        , b.cases
        , b.deaths
        , b.recovered
      --, c.source_name
      ORDER BY b.date asc
      "
g1 <- dbGetQuery(con, q1)
g1
##             date continent                        country covid_case
## 1     2019-12-31    Africa                        Algeria          0
## 2     2019-12-31    Africa                          Egypt          0
## 3     2019-12-31    Africa                        Nigeria          0
## 4     2019-12-31   America                         Brazil          0
## 5     2019-12-31   America                         Canada          0
## 6     2019-12-31   America             Dominican Republic          0
## 7     2019-12-31   America                        Ecuador          0
## 8     2019-12-31   America                         Mexico          0
## 9     2019-12-31   America                  United States          0
## 10    2019-12-31      Asia                    Afghanistan          0
## 11    2019-12-31      Asia                        Bahrain          0
## 12    2019-12-31      Asia                       Cambodia          0
## 13    2019-12-31      Asia                          China         27
## 14    2019-12-31      Asia                          India          0
## 15    2019-12-31      Asia                      Indonesia          0
## 16    2019-12-31      Asia                           Iran          0
## 17    2019-12-31      Asia                           Iraq          0
## 18    2019-12-31      Asia                         Israel          0
## 19    2019-12-31      Asia                          Japan          0
## 20    2019-12-31      Asia                         Kuwait          0
## 21    2019-12-31      Asia                        Lebanon          0
## 22    2019-12-31      Asia                       Malaysia          0
## 23    2019-12-31      Asia                          Nepal          0
## 24    2019-12-31      Asia                           Oman          0
## 25    2019-12-31      Asia                       Pakistan          0
## 26    2019-12-31      Asia                    Philippines          0
## 27    2019-12-31      Asia                          Qatar          0
## 28    2019-12-31      Asia                      Singapore          0
## 29    2019-12-31      Asia                    South Korea          0
## 30    2019-12-31      Asia                      Sri Lanka          0
## 31    2019-12-31      Asia                       Thailand          0
## 32    2019-12-31      Asia           United Arab Emirates          0
## 33    2019-12-31      Asia                        Vietnam          0
## 34    2019-12-31      Asia                      not found          0
## 35    2019-12-31    Europe                        Armenia          0
## 36    2019-12-31    Europe                        Austria          0
## 37    2019-12-31    Europe                     Azerbaijan          0
## 38    2019-12-31    Europe                        Belarus          0
## 39    2019-12-31    Europe                        Belgium          0
## 40    2019-12-31    Europe                        Croatia          0
## 41    2019-12-31    Europe                 Czech Republic          0
## 42    2019-12-31    Europe                        Denmark          0
## 43    2019-12-31    Europe                        Estonia          0
## 44    2019-12-31    Europe                        Finland          0
## 45    2019-12-31    Europe                         France          0
## 46    2019-12-31    Europe                        Georgia          0
## 47    2019-12-31    Europe                        Germany          0
## 48    2019-12-31    Europe                         Greece          0
## 49    2019-12-31    Europe                        Iceland          0
## 50    2019-12-31    Europe                        Ireland          0
## 51    2019-12-31    Europe                          Italy          0
## 52    2019-12-31    Europe                      Lithuania          0
## 53    2019-12-31    Europe                     Luxembourg          0
## 54    2019-12-31    Europe                      Macedonia          0
## 55    2019-12-31    Europe                         Monaco          0
## 56    2019-12-31    Europe                    Netherlands          0
## 57    2019-12-31    Europe                         Norway          0
## 58    2019-12-31    Europe                        Romania          0
## 59    2019-12-31    Europe                         Russia          0
## 60    2019-12-31    Europe                     San Marino          0
## 61    2019-12-31    Europe                          Spain          0
## 62    2019-12-31    Europe                         Sweden          0
## 63    2019-12-31    Europe                    Switzerland          0
## 64    2019-12-31    Europe                 United Kingdom          0
## 65    2019-12-31   Oceania                      Australia          0
## 66    2019-12-31   Oceania                    New Zealand          0
## 67    2019-12-31     Other                      not found          0
## 68    2020-01-01    Africa                        Algeria          0
## 69    2020-01-01    Africa                          Egypt          0
## 70    2020-01-01    Africa                        Nigeria          0
## 71    2020-01-01   America                         Brazil          0
## 72    2020-01-01   America                         Canada          0
## 73    2020-01-01   America             Dominican Republic          0
## 74    2020-01-01   America                        Ecuador          0
## 75    2020-01-01   America                         Mexico          0
## 76    2020-01-01   America                  United States          0
## 77    2020-01-01      Asia                    Afghanistan          0
## 78    2020-01-01      Asia                        Bahrain          0
## 79    2020-01-01      Asia                       Cambodia          0
## 80    2020-01-01      Asia                          China          0
## 81    2020-01-01      Asia                          India          0
## 82    2020-01-01      Asia                      Indonesia          0
## 83    2020-01-01      Asia                           Iran          0
## 84    2020-01-01      Asia                           Iraq          0
## 85    2020-01-01      Asia                         Israel          0
## 86    2020-01-01      Asia                          Japan          0
## 87    2020-01-01      Asia                         Kuwait          0
## 88    2020-01-01      Asia                        Lebanon          0
## 89    2020-01-01      Asia                       Malaysia          0
## 90    2020-01-01      Asia                          Nepal          0
## 91    2020-01-01      Asia                           Oman          0
## 92    2020-01-01      Asia                       Pakistan          0
## 93    2020-01-01      Asia                    Philippines          0
## 94    2020-01-01      Asia                          Qatar          0
## 95    2020-01-01      Asia                      Singapore          0
## 96    2020-01-01      Asia                    South Korea          0
## 97    2020-01-01      Asia                      Sri Lanka          0
## 98    2020-01-01      Asia                       Thailand          0
## 99    2020-01-01      Asia           United Arab Emirates          0
## 100   2020-01-01      Asia                        Vietnam          0
## 101   2020-01-01      Asia                      not found          0
## 102   2020-01-01    Europe                        Armenia          0
## 103   2020-01-01    Europe                        Austria          0
## 104   2020-01-01    Europe                     Azerbaijan          0
## 105   2020-01-01    Europe                        Belarus          0
## 106   2020-01-01    Europe                        Belgium          0
## 107   2020-01-01    Europe                        Croatia          0
## 108   2020-01-01    Europe                 Czech Republic          0
## 109   2020-01-01    Europe                        Denmark          0
## 110   2020-01-01    Europe                        Estonia          0
## 111   2020-01-01    Europe                        Finland          0
## 112   2020-01-01    Europe                         France          0
## 113   2020-01-01    Europe                        Georgia          0
## 114   2020-01-01    Europe                        Germany          0
## 115   2020-01-01    Europe                         Greece          0
## 116   2020-01-01    Europe                        Iceland          0
## 117   2020-01-01    Europe                        Ireland          0
## 118   2020-01-01    Europe                          Italy          0
## 119   2020-01-01    Europe                      Lithuania          0
## 120   2020-01-01    Europe                     Luxembourg          0
## 121   2020-01-01    Europe                      Macedonia          0
## 122   2020-01-01    Europe                         Monaco          0
## 123   2020-01-01    Europe                    Netherlands          0
## 124   2020-01-01    Europe                         Norway          0
## 125   2020-01-01    Europe                        Romania          0
## 126   2020-01-01    Europe                         Russia          0
## 127   2020-01-01    Europe                     San Marino          0
## 128   2020-01-01    Europe                          Spain          0
## 129   2020-01-01    Europe                         Sweden          0
## 130   2020-01-01    Europe                    Switzerland          0
## 131   2020-01-01    Europe                 United Kingdom          0
## 132   2020-01-01   Oceania                      Australia          0
## 133   2020-01-01   Oceania                    New Zealand          0
## 134   2020-01-01     Other                      not found          0
## 135   2020-01-02    Africa                        Algeria          0
## 136   2020-01-02    Africa                          Egypt          0
## 137   2020-01-02    Africa                        Nigeria          0
## 138   2020-01-02   America                         Brazil          0
## 139   2020-01-02   America                         Canada          0
## 140   2020-01-02   America             Dominican Republic          0
## 141   2020-01-02   America                        Ecuador          0
## 142   2020-01-02   America                         Mexico          0
## 143   2020-01-02   America                  United States          0
## 144   2020-01-02      Asia                    Afghanistan          0
## 145   2020-01-02      Asia                        Bahrain          0
## 146   2020-01-02      Asia                       Cambodia          0
## 147   2020-01-02      Asia                          China          0
## 148   2020-01-02      Asia                          India          0
## 149   2020-01-02      Asia                      Indonesia          0
## 150   2020-01-02      Asia                           Iran          0
## 151   2020-01-02      Asia                           Iraq          0
## 152   2020-01-02      Asia                         Israel          0
## 153   2020-01-02      Asia                          Japan          0
## 154   2020-01-02      Asia                         Kuwait          0
## 155   2020-01-02      Asia                        Lebanon          0
## 156   2020-01-02      Asia                       Malaysia          0
## 157   2020-01-02      Asia                          Nepal          0
## 158   2020-01-02      Asia                           Oman          0
## 159   2020-01-02      Asia                       Pakistan          0
## 160   2020-01-02      Asia                    Philippines          0
## 161   2020-01-02      Asia                          Qatar          0
## 162   2020-01-02      Asia                      Singapore          0
## 163   2020-01-02      Asia                    South Korea          0
## 164   2020-01-02      Asia                      Sri Lanka          0
## 165   2020-01-02      Asia                       Thailand          0
## 166   2020-01-02      Asia           United Arab Emirates          0
## 167   2020-01-02      Asia                        Vietnam          0
## 168   2020-01-02      Asia                      not found          0
## 169   2020-01-02    Europe                        Armenia          0
## 170   2020-01-02    Europe                        Austria          0
## 171   2020-01-02    Europe                     Azerbaijan          0
## 172   2020-01-02    Europe                        Belarus          0
## 173   2020-01-02    Europe                        Belgium          0
## 174   2020-01-02    Europe                        Croatia          0
## 175   2020-01-02    Europe                 Czech Republic          0
## 176   2020-01-02    Europe                        Denmark          0
## 177   2020-01-02    Europe                        Estonia          0
## 178   2020-01-02    Europe                        Finland          0
## 179   2020-01-02    Europe                         France          0
## 180   2020-01-02    Europe                        Georgia          0
## 181   2020-01-02    Europe                        Germany          0
## 182   2020-01-02    Europe                         Greece          0
## 183   2020-01-02    Europe                        Iceland          0
## 184   2020-01-02    Europe                        Ireland          0
## 185   2020-01-02    Europe                          Italy          0
## 186   2020-01-02    Europe                      Lithuania          0
## 187   2020-01-02    Europe                     Luxembourg          0
## 188   2020-01-02    Europe                      Macedonia          0
## 189   2020-01-02    Europe                         Monaco          0
## 190   2020-01-02    Europe                    Netherlands          0
## 191   2020-01-02    Europe                         Norway          0
## 192   2020-01-02    Europe                        Romania          0
## 193   2020-01-02    Europe                         Russia          0
## 194   2020-01-02    Europe                     San Marino          0
## 195   2020-01-02    Europe                          Spain          0
## 196   2020-01-02    Europe                         Sweden          0
## 197   2020-01-02    Europe                    Switzerland          0
## 198   2020-01-02    Europe                 United Kingdom          0
## 199   2020-01-02   Oceania                      Australia          0
## 200   2020-01-02   Oceania                    New Zealand          0
## 201   2020-01-02     Other                      not found          0
## 202   2020-01-03    Africa                        Algeria          0
## 203   2020-01-03    Africa                          Egypt          0
## 204   2020-01-03    Africa                        Nigeria          0
## 205   2020-01-03   America                         Brazil          0
## 206   2020-01-03   America                         Canada          0
## 207   2020-01-03   America             Dominican Republic          0
## 208   2020-01-03   America                        Ecuador          0
## 209   2020-01-03   America                         Mexico          0
## 210   2020-01-03   America                  United States          0
## 211   2020-01-03      Asia                    Afghanistan          0
## 212   2020-01-03      Asia                        Bahrain          0
## 213   2020-01-03      Asia                       Cambodia          0
## 214   2020-01-03      Asia                          China         17
## 215   2020-01-03      Asia                          India          0
## 216   2020-01-03      Asia                      Indonesia          0
## 217   2020-01-03      Asia                           Iran          0
## 218   2020-01-03      Asia                           Iraq          0
## 219   2020-01-03      Asia                         Israel          0
## 220   2020-01-03      Asia                          Japan          0
## 221   2020-01-03      Asia                         Kuwait          0
## 222   2020-01-03      Asia                        Lebanon          0
## 223   2020-01-03      Asia                       Malaysia          0
## 224   2020-01-03      Asia                          Nepal          0
## 225   2020-01-03      Asia                           Oman          0
## 226   2020-01-03      Asia                       Pakistan          0
## 227   2020-01-03      Asia                    Philippines          0
## 228   2020-01-03      Asia                          Qatar          0
## 229   2020-01-03      Asia                      Singapore          0
## 230   2020-01-03      Asia                    South Korea          0
## 231   2020-01-03      Asia                      Sri Lanka          0
## 232   2020-01-03      Asia                       Thailand          0
## 233   2020-01-03      Asia           United Arab Emirates          0
## 234   2020-01-03      Asia                        Vietnam          0
## 235   2020-01-03      Asia                      not found          0
## 236   2020-01-03    Europe                        Armenia          0
## 237   2020-01-03    Europe                        Austria          0
## 238   2020-01-03    Europe                     Azerbaijan          0
## 239   2020-01-03    Europe                        Belarus          0
## 240   2020-01-03    Europe                        Belgium          0
## 241   2020-01-03    Europe                        Croatia          0
## 242   2020-01-03    Europe                 Czech Republic          0
## 243   2020-01-03    Europe                        Denmark          0
## 244   2020-01-03    Europe                        Estonia          0
## 245   2020-01-03    Europe                        Finland          0
## 246   2020-01-03    Europe                         France          0
## 247   2020-01-03    Europe                        Georgia          0
## 248   2020-01-03    Europe                        Germany          0
## 249   2020-01-03    Europe                         Greece          0
## 250   2020-01-03    Europe                        Iceland          0
## 251   2020-01-03    Europe                        Ireland          0
## 252   2020-01-03    Europe                          Italy          0
## 253   2020-01-03    Europe                      Lithuania          0
## 254   2020-01-03    Europe                     Luxembourg          0
## 255   2020-01-03    Europe                      Macedonia          0
## 256   2020-01-03    Europe                         Monaco          0
## 257   2020-01-03    Europe                    Netherlands          0
## 258   2020-01-03    Europe                         Norway          0
## 259   2020-01-03    Europe                        Romania          0
## 260   2020-01-03    Europe                         Russia          0
## 261   2020-01-03    Europe                     San Marino          0
## 262   2020-01-03    Europe                          Spain          0
## 263   2020-01-03    Europe                         Sweden          0
## 264   2020-01-03    Europe                    Switzerland          0
## 265   2020-01-03    Europe                 United Kingdom          0
## 266   2020-01-03   Oceania                      Australia          0
## 267   2020-01-03   Oceania                    New Zealand          0
## 268   2020-01-03     Other                      not found          0
## 269   2020-01-04    Africa                        Algeria          0
## 270   2020-01-04    Africa                          Egypt          0
## 271   2020-01-04    Africa                        Nigeria          0
## 272   2020-01-04   America                         Brazil          0
## 273   2020-01-04   America                         Canada          0
## 274   2020-01-04   America             Dominican Republic          0
## 275   2020-01-04   America                        Ecuador          0
## 276   2020-01-04   America                         Mexico          0
## 277   2020-01-04   America                  United States          0
## 278   2020-01-04      Asia                    Afghanistan          0
## 279   2020-01-04      Asia                        Bahrain          0
## 280   2020-01-04      Asia                       Cambodia          0
## 281   2020-01-04      Asia                          China          0
## 282   2020-01-04      Asia                          India          0
## 283   2020-01-04      Asia                      Indonesia          0
## 284   2020-01-04      Asia                           Iran          0
## 285   2020-01-04      Asia                           Iraq          0
## 286   2020-01-04      Asia                         Israel          0
## 287   2020-01-04      Asia                          Japan          0
## 288   2020-01-04      Asia                         Kuwait          0
## 289   2020-01-04      Asia                        Lebanon          0
## 290   2020-01-04      Asia                       Malaysia          0
## 291   2020-01-04      Asia                          Nepal          0
## 292   2020-01-04      Asia                           Oman          0
## 293   2020-01-04      Asia                       Pakistan          0
## 294   2020-01-04      Asia                    Philippines          0
## 295   2020-01-04      Asia                          Qatar          0
## 296   2020-01-04      Asia                      Singapore          0
## 297   2020-01-04      Asia                    South Korea          0
## 298   2020-01-04      Asia                      Sri Lanka          0
## 299   2020-01-04      Asia                       Thailand          0
## 300   2020-01-04      Asia           United Arab Emirates          0
## 301   2020-01-04      Asia                        Vietnam          0
## 302   2020-01-04      Asia                      not found          0
## 303   2020-01-04    Europe                        Armenia          0
## 304   2020-01-04    Europe                        Austria          0
## 305   2020-01-04    Europe                     Azerbaijan          0
## 306   2020-01-04    Europe                        Belarus          0
## 307   2020-01-04    Europe                        Belgium          0
## 308   2020-01-04    Europe                        Croatia          0
## 309   2020-01-04    Europe                 Czech Republic          0
## 310   2020-01-04    Europe                        Denmark          0
## 311   2020-01-04    Europe                        Estonia          0
## 312   2020-01-04    Europe                        Finland          0
## 313   2020-01-04    Europe                         France          0
## 314   2020-01-04    Europe                        Georgia          0
## 315   2020-01-04    Europe                        Germany          0
## 316   2020-01-04    Europe                         Greece          0
## 317   2020-01-04    Europe                        Iceland          0
## 318   2020-01-04    Europe                        Ireland          0
## 319   2020-01-04    Europe                          Italy          0
## 320   2020-01-04    Europe                      Lithuania          0
## 321   2020-01-04    Europe                     Luxembourg          0
## 322   2020-01-04    Europe                      Macedonia          0
## 323   2020-01-04    Europe                         Monaco          0
## 324   2020-01-04    Europe                    Netherlands          0
## 325   2020-01-04    Europe                         Norway          0
## 326   2020-01-04    Europe                        Romania          0
## 327   2020-01-04    Europe                         Russia          0
## 328   2020-01-04    Europe                     San Marino          0
## 329   2020-01-04    Europe                          Spain          0
## 330   2020-01-04    Europe                         Sweden          0
## 331   2020-01-04    Europe                    Switzerland          0
## 332   2020-01-04    Europe                 United Kingdom          0
## 333   2020-01-04   Oceania                      Australia          0
## 334   2020-01-04   Oceania                    New Zealand          0
## 335   2020-01-04     Other                      not found          0
## 336   2020-01-05    Africa                        Algeria          0
## 337   2020-01-05    Africa                          Egypt          0
## 338   2020-01-05    Africa                        Nigeria          0
## 339   2020-01-05   America                         Brazil          0
## 340   2020-01-05   America                         Canada          0
## 341   2020-01-05   America             Dominican Republic          0
## 342   2020-01-05   America                        Ecuador          0
## 343   2020-01-05   America                         Mexico          0
## 344   2020-01-05   America                  United States          0
## 345   2020-01-05      Asia                    Afghanistan          0
## 346   2020-01-05      Asia                        Bahrain          0
## 347   2020-01-05      Asia                       Cambodia          0
## 348   2020-01-05      Asia                          China         15
## 349   2020-01-05      Asia                          India          0
## 350   2020-01-05      Asia                      Indonesia          0
## 351   2020-01-05      Asia                           Iran          0
## 352   2020-01-05      Asia                           Iraq          0
## 353   2020-01-05      Asia                         Israel          0
## 354   2020-01-05      Asia                          Japan          0
## 355   2020-01-05      Asia                         Kuwait          0
## 356   2020-01-05      Asia                        Lebanon          0
## 357   2020-01-05      Asia                       Malaysia          0
## 358   2020-01-05      Asia                          Nepal          0
## 359   2020-01-05      Asia                           Oman          0
## 360   2020-01-05      Asia                       Pakistan          0
## 361   2020-01-05      Asia                    Philippines          0
## 362   2020-01-05      Asia                          Qatar          0
## 363   2020-01-05      Asia                      Singapore          0
## 364   2020-01-05      Asia                    South Korea          0
## 365   2020-01-05      Asia                      Sri Lanka          0
## 366   2020-01-05      Asia                       Thailand          0
## 367   2020-01-05      Asia           United Arab Emirates          0
## 368   2020-01-05      Asia                        Vietnam          0
## 369   2020-01-05      Asia                      not found          0
## 370   2020-01-05    Europe                        Armenia          0
## 371   2020-01-05    Europe                        Austria          0
## 372   2020-01-05    Europe                     Azerbaijan          0
## 373   2020-01-05    Europe                        Belarus          0
## 374   2020-01-05    Europe                        Belgium          0
## 375   2020-01-05    Europe                        Croatia          0
## 376   2020-01-05    Europe                 Czech Republic          0
## 377   2020-01-05    Europe                        Denmark          0
## 378   2020-01-05    Europe                        Estonia          0
## 379   2020-01-05    Europe                        Finland          0
## 380   2020-01-05    Europe                         France          0
## 381   2020-01-05    Europe                        Georgia          0
## 382   2020-01-05    Europe                        Germany          0
## 383   2020-01-05    Europe                         Greece          0
## 384   2020-01-05    Europe                        Iceland          0
## 385   2020-01-05    Europe                        Ireland          0
## 386   2020-01-05    Europe                          Italy          0
## 387   2020-01-05    Europe                      Lithuania          0
## 388   2020-01-05    Europe                     Luxembourg          0
## 389   2020-01-05    Europe                      Macedonia          0
## 390   2020-01-05    Europe                         Monaco          0
## 391   2020-01-05    Europe                    Netherlands          0
## 392   2020-01-05    Europe                         Norway          0
## 393   2020-01-05    Europe                        Romania          0
## 394   2020-01-05    Europe                         Russia          0
## 395   2020-01-05    Europe                     San Marino          0
## 396   2020-01-05    Europe                          Spain          0
## 397   2020-01-05    Europe                         Sweden          0
## 398   2020-01-05    Europe                    Switzerland          0
## 399   2020-01-05    Europe                 United Kingdom          0
## 400   2020-01-05   Oceania                      Australia          0
## 401   2020-01-05   Oceania                    New Zealand          0
## 402   2020-01-05     Other                      not found          0
## 403   2020-01-06    Africa                        Algeria          0
## 404   2020-01-06    Africa                          Egypt          0
## 405   2020-01-06    Africa                        Nigeria          0
## 406   2020-01-06   America                         Brazil          0
## 407   2020-01-06   America                         Canada          0
## 408   2020-01-06   America             Dominican Republic          0
## 409   2020-01-06   America                        Ecuador          0
## 410   2020-01-06   America                         Mexico          0
## 411   2020-01-06   America                  United States          0
## 412   2020-01-06      Asia                    Afghanistan          0
## 413   2020-01-06      Asia                        Bahrain          0
## 414   2020-01-06      Asia                       Cambodia          0
## 415   2020-01-06      Asia                          China          0
## 416   2020-01-06      Asia                          India          0
## 417   2020-01-06      Asia                      Indonesia          0
## 418   2020-01-06      Asia                           Iran          0
## 419   2020-01-06      Asia                           Iraq          0
## 420   2020-01-06      Asia                         Israel          0
## 421   2020-01-06      Asia                          Japan          0
## 422   2020-01-06      Asia                         Kuwait          0
## 423   2020-01-06      Asia                        Lebanon          0
## 424   2020-01-06      Asia                       Malaysia          0
## 425   2020-01-06      Asia                          Nepal          0
## 426   2020-01-06      Asia                           Oman          0
## 427   2020-01-06      Asia                       Pakistan          0
## 428   2020-01-06      Asia                    Philippines          0
## 429   2020-01-06      Asia                          Qatar          0
## 430   2020-01-06      Asia                      Singapore          0
## 431   2020-01-06      Asia                    South Korea          0
## 432   2020-01-06      Asia                      Sri Lanka          0
## 433   2020-01-06      Asia                       Thailand          0
## 434   2020-01-06      Asia           United Arab Emirates          0
## 435   2020-01-06      Asia                        Vietnam          0
## 436   2020-01-06      Asia                      not found          0
## 437   2020-01-06    Europe                        Armenia          0
## 438   2020-01-06    Europe                        Austria          0
## 439   2020-01-06    Europe                     Azerbaijan          0
## 440   2020-01-06    Europe                        Belarus          0
## 441   2020-01-06    Europe                        Belgium          0
## 442   2020-01-06    Europe                        Croatia          0
## 443   2020-01-06    Europe                 Czech Republic          0
## 444   2020-01-06    Europe                        Denmark          0
## 445   2020-01-06    Europe                        Estonia          0
## 446   2020-01-06    Europe                        Finland          0
## 447   2020-01-06    Europe                         France          0
## 448   2020-01-06    Europe                        Georgia          0
## 449   2020-01-06    Europe                        Germany          0
## 450   2020-01-06    Europe                         Greece          0
## 451   2020-01-06    Europe                        Iceland          0
## 452   2020-01-06    Europe                        Ireland          0
## 453   2020-01-06    Europe                          Italy          0
## 454   2020-01-06    Europe                      Lithuania          0
## 455   2020-01-06    Europe                     Luxembourg          0
## 456   2020-01-06    Europe                      Macedonia          0
## 457   2020-01-06    Europe                         Monaco          0
## 458   2020-01-06    Europe                    Netherlands          0
## 459   2020-01-06    Europe                         Norway          0
## 460   2020-01-06    Europe                        Romania          0
## 461   2020-01-06    Europe                         Russia          0
## 462   2020-01-06    Europe                     San Marino          0
## 463   2020-01-06    Europe                          Spain          0
## 464   2020-01-06    Europe                         Sweden          0
## 465   2020-01-06    Europe                    Switzerland          0
## 466   2020-01-06    Europe                 United Kingdom          0
## 467   2020-01-06   Oceania                      Australia          0
## 468   2020-01-06   Oceania                    New Zealand          0
## 469   2020-01-06     Other                      not found          0
## 470   2020-01-07    Africa                        Algeria          0
## 471   2020-01-07    Africa                          Egypt          0
## 472   2020-01-07    Africa                        Nigeria          0
## 473   2020-01-07   America                         Brazil          0
## 474   2020-01-07   America                         Canada          0
## 475   2020-01-07   America             Dominican Republic          0
## 476   2020-01-07   America                        Ecuador          0
## 477   2020-01-07   America                         Mexico          0
## 478   2020-01-07   America                  United States          0
## 479   2020-01-07      Asia                    Afghanistan          0
## 480   2020-01-07      Asia                        Bahrain          0
## 481   2020-01-07      Asia                       Cambodia          0
## 482   2020-01-07      Asia                          China          0
## 483   2020-01-07      Asia                          India          0
## 484   2020-01-07      Asia                      Indonesia          0
## 485   2020-01-07      Asia                           Iran          0
## 486   2020-01-07      Asia                           Iraq          0
## 487   2020-01-07      Asia                         Israel          0
## 488   2020-01-07      Asia                          Japan          0
## 489   2020-01-07      Asia                         Kuwait          0
## 490   2020-01-07      Asia                        Lebanon          0
## 491   2020-01-07      Asia                       Malaysia          0
## 492   2020-01-07      Asia                          Nepal          0
## 493   2020-01-07      Asia                           Oman          0
## 494   2020-01-07      Asia                       Pakistan          0
## 495   2020-01-07      Asia                    Philippines          0
## 496   2020-01-07      Asia                          Qatar          0
## 497   2020-01-07      Asia                      Singapore          0
## 498   2020-01-07      Asia                    South Korea          0
## 499   2020-01-07      Asia                      Sri Lanka          0
## 500   2020-01-07      Asia                       Thailand          0
## 501   2020-01-07      Asia           United Arab Emirates          0
## 502   2020-01-07      Asia                        Vietnam          0
## 503   2020-01-07      Asia                      not found          0
## 504   2020-01-07    Europe                        Armenia          0
## 505   2020-01-07    Europe                        Austria          0
## 506   2020-01-07    Europe                     Azerbaijan          0
## 507   2020-01-07    Europe                        Belarus          0
## 508   2020-01-07    Europe                        Belgium          0
## 509   2020-01-07    Europe                        Croatia          0
## 510   2020-01-07    Europe                 Czech Republic          0
## 511   2020-01-07    Europe                        Denmark          0
## 512   2020-01-07    Europe                        Estonia          0
## 513   2020-01-07    Europe                        Finland          0
## 514   2020-01-07    Europe                         France          0
## 515   2020-01-07    Europe                        Georgia          0
## 516   2020-01-07    Europe                        Germany          0
## 517   2020-01-07    Europe                         Greece          0
## 518   2020-01-07    Europe                        Iceland          0
## 519   2020-01-07    Europe                        Ireland          0
## 520   2020-01-07    Europe                          Italy          0
## 521   2020-01-07    Europe                      Lithuania          0
## 522   2020-01-07    Europe                     Luxembourg          0
## 523   2020-01-07    Europe                      Macedonia          0
## 524   2020-01-07    Europe                         Monaco          0
## 525   2020-01-07    Europe                    Netherlands          0
## 526   2020-01-07    Europe                         Norway          0
## 527   2020-01-07    Europe                        Romania          0
## 528   2020-01-07    Europe                         Russia          0
## 529   2020-01-07    Europe                     San Marino          0
## 530   2020-01-07    Europe                          Spain          0
## 531   2020-01-07    Europe                         Sweden          0
## 532   2020-01-07    Europe                    Switzerland          0
## 533   2020-01-07    Europe                 United Kingdom          0
## 534   2020-01-07   Oceania                      Australia          0
## 535   2020-01-07   Oceania                    New Zealand          0
## 536   2020-01-07     Other                      not found          0
## 537   2020-01-08    Africa                        Algeria          0
## 538   2020-01-08    Africa                          Egypt          0
## 539   2020-01-08    Africa                        Nigeria          0
## 540   2020-01-08   America                         Brazil          0
## 541   2020-01-08   America                         Canada          0
## 542   2020-01-08   America             Dominican Republic          0
## 543   2020-01-08   America                        Ecuador          0
## 544   2020-01-08   America                         Mexico          0
## 545   2020-01-08   America                  United States          0
## 546   2020-01-08      Asia                    Afghanistan          0
## 547   2020-01-08      Asia                        Bahrain          0
## 548   2020-01-08      Asia                       Cambodia          0
## 549   2020-01-08      Asia                          China          0
## 550   2020-01-08      Asia                          India          0
## 551   2020-01-08      Asia                      Indonesia          0
## 552   2020-01-08      Asia                           Iran          0
## 553   2020-01-08      Asia                           Iraq          0
## 554   2020-01-08      Asia                         Israel          0
## 555   2020-01-08      Asia                          Japan          0
## 556   2020-01-08      Asia                         Kuwait          0
## 557   2020-01-08      Asia                        Lebanon          0
## 558   2020-01-08      Asia                       Malaysia          0
## 559   2020-01-08      Asia                          Nepal          0
## 560   2020-01-08      Asia                           Oman          0
## 561   2020-01-08      Asia                       Pakistan          0
## 562   2020-01-08      Asia                    Philippines          0
## 563   2020-01-08      Asia                          Qatar          0
## 564   2020-01-08      Asia                      Singapore          0
## 565   2020-01-08      Asia                    South Korea          0
## 566   2020-01-08      Asia                      Sri Lanka          0
## 567   2020-01-08      Asia                       Thailand          0
## 568   2020-01-08      Asia           United Arab Emirates          0
## 569   2020-01-08      Asia                        Vietnam          0
## 570   2020-01-08      Asia                      not found          0
## 571   2020-01-08    Europe                        Armenia          0
## 572   2020-01-08    Europe                        Austria          0
## 573   2020-01-08    Europe                     Azerbaijan          0
## 574   2020-01-08    Europe                        Belarus          0
## 575   2020-01-08    Europe                        Belgium          0
## 576   2020-01-08    Europe                        Croatia          0
## 577   2020-01-08    Europe                 Czech Republic          0
## 578   2020-01-08    Europe                        Denmark          0
## 579   2020-01-08    Europe                        Estonia          0
## 580   2020-01-08    Europe                        Finland          0
## 581   2020-01-08    Europe                         France          0
## 582   2020-01-08    Europe                        Georgia          0
## 583   2020-01-08    Europe                        Germany          0
## 584   2020-01-08    Europe                         Greece          0
## 585   2020-01-08    Europe                        Iceland          0
## 586   2020-01-08    Europe                        Ireland          0
## 587   2020-01-08    Europe                          Italy          0
## 588   2020-01-08    Europe                      Lithuania          0
## 589   2020-01-08    Europe                     Luxembourg          0
## 590   2020-01-08    Europe                      Macedonia          0
## 591   2020-01-08    Europe                         Monaco          0
## 592   2020-01-08    Europe                    Netherlands          0
## 593   2020-01-08    Europe                         Norway          0
## 594   2020-01-08    Europe                        Romania          0
## 595   2020-01-08    Europe                         Russia          0
## 596   2020-01-08    Europe                     San Marino          0
## 597   2020-01-08    Europe                          Spain          0
## 598   2020-01-08    Europe                         Sweden          0
## 599   2020-01-08    Europe                    Switzerland          0
## 600   2020-01-08    Europe                 United Kingdom          0
## 601   2020-01-08   Oceania                      Australia          0
## 602   2020-01-08   Oceania                    New Zealand          0
## 603   2020-01-08     Other                      not found          0
## 604   2020-01-09    Africa                        Algeria          0
## 605   2020-01-09    Africa                          Egypt          0
## 606   2020-01-09    Africa                        Nigeria          0
## 607   2020-01-09   America                         Brazil          0
## 608   2020-01-09   America                         Canada          0
## 609   2020-01-09   America             Dominican Republic          0
## 610   2020-01-09   America                        Ecuador          0
## 611   2020-01-09   America                         Mexico          0
## 612   2020-01-09   America                  United States          0
## 613   2020-01-09      Asia                    Afghanistan          0
## 614   2020-01-09      Asia                        Bahrain          0
## 615   2020-01-09      Asia                       Cambodia          0
## 616   2020-01-09      Asia                          China          0
## 617   2020-01-09      Asia                          India          0
## 618   2020-01-09      Asia                      Indonesia          0
## 619   2020-01-09      Asia                           Iran          0
## 620   2020-01-09      Asia                           Iraq          0
## 621   2020-01-09      Asia                         Israel          0
## 622   2020-01-09      Asia                          Japan          0
## 623   2020-01-09      Asia                         Kuwait          0
## 624   2020-01-09      Asia                        Lebanon          0
## 625   2020-01-09      Asia                       Malaysia          0
## 626   2020-01-09      Asia                          Nepal          0
## 627   2020-01-09      Asia                           Oman          0
## 628   2020-01-09      Asia                       Pakistan          0
## 629   2020-01-09      Asia                    Philippines          0
## 630   2020-01-09      Asia                          Qatar          0
## 631   2020-01-09      Asia                      Singapore          0
## 632   2020-01-09      Asia                    South Korea          0
## 633   2020-01-09      Asia                      Sri Lanka          0
## 634   2020-01-09      Asia                       Thailand          0
## 635   2020-01-09      Asia           United Arab Emirates          0
## 636   2020-01-09      Asia                        Vietnam          0
## 637   2020-01-09      Asia                      not found          0
## 638   2020-01-09    Europe                        Armenia          0
## 639   2020-01-09    Europe                        Austria          0
## 640   2020-01-09    Europe                     Azerbaijan          0
## 641   2020-01-09    Europe                        Belarus          0
## 642   2020-01-09    Europe                        Belgium          0
## 643   2020-01-09    Europe                        Croatia          0
## 644   2020-01-09    Europe                 Czech Republic          0
## 645   2020-01-09    Europe                        Denmark          0
## 646   2020-01-09    Europe                        Estonia          0
## 647   2020-01-09    Europe                        Finland          0
## 648   2020-01-09    Europe                         France          0
## 649   2020-01-09    Europe                        Georgia          0
## 650   2020-01-09    Europe                        Germany          0
## 651   2020-01-09    Europe                         Greece          0
## 652   2020-01-09    Europe                        Iceland          0
## 653   2020-01-09    Europe                        Ireland          0
## 654   2020-01-09    Europe                          Italy          0
## 655   2020-01-09    Europe                      Lithuania          0
## 656   2020-01-09    Europe                     Luxembourg          0
## 657   2020-01-09    Europe                      Macedonia          0
## 658   2020-01-09    Europe                         Monaco          0
## 659   2020-01-09    Europe                    Netherlands          0
## 660   2020-01-09    Europe                         Norway          0
## 661   2020-01-09    Europe                        Romania          0
## 662   2020-01-09    Europe                         Russia          0
## 663   2020-01-09    Europe                     San Marino          0
## 664   2020-01-09    Europe                          Spain          0
## 665   2020-01-09    Europe                         Sweden          0
## 666   2020-01-09    Europe                    Switzerland          0
## 667   2020-01-09    Europe                 United Kingdom          0
## 668   2020-01-09   Oceania                      Australia          0
## 669   2020-01-09   Oceania                    New Zealand          0
## 670   2020-01-09     Other                      not found          0
## 671   2020-01-10    Africa                        Algeria          0
## 672   2020-01-10    Africa                          Egypt          0
## 673   2020-01-10    Africa                        Nigeria          0
## 674   2020-01-10   America                         Brazil          0
## 675   2020-01-10   America                         Canada          0
## 676   2020-01-10   America             Dominican Republic          0
## 677   2020-01-10   America                        Ecuador          0
## 678   2020-01-10   America                         Mexico          0
## 679   2020-01-10   America                  United States          0
## 680   2020-01-10      Asia                    Afghanistan          0
## 681   2020-01-10      Asia                        Bahrain          0
## 682   2020-01-10      Asia                       Cambodia          0
## 683   2020-01-10      Asia                          China          0
## 684   2020-01-10      Asia                          India          0
## 685   2020-01-10      Asia                      Indonesia          0
## 686   2020-01-10      Asia                           Iran          0
## 687   2020-01-10      Asia                           Iraq          0
## 688   2020-01-10      Asia                         Israel          0
## 689   2020-01-10      Asia                          Japan          0
## 690   2020-01-10      Asia                         Kuwait          0
## 691   2020-01-10      Asia                        Lebanon          0
## 692   2020-01-10      Asia                       Malaysia          0
## 693   2020-01-10      Asia                          Nepal          0
## 694   2020-01-10      Asia                           Oman          0
## 695   2020-01-10      Asia                       Pakistan          0
## 696   2020-01-10      Asia                    Philippines          0
## 697   2020-01-10      Asia                          Qatar          0
## 698   2020-01-10      Asia                      Singapore          0
## 699   2020-01-10      Asia                    South Korea          0
## 700   2020-01-10      Asia                      Sri Lanka          0
## 701   2020-01-10      Asia                       Thailand          0
## 702   2020-01-10      Asia           United Arab Emirates          0
## 703   2020-01-10      Asia                        Vietnam          0
## 704   2020-01-10      Asia                      not found          0
## 705   2020-01-10    Europe                        Armenia          0
## 706   2020-01-10    Europe                        Austria          0
## 707   2020-01-10    Europe                     Azerbaijan          0
## 708   2020-01-10    Europe                        Belarus          0
## 709   2020-01-10    Europe                        Belgium          0
## 710   2020-01-10    Europe                        Croatia          0
## 711   2020-01-10    Europe                 Czech Republic          0
## 712   2020-01-10    Europe                        Denmark          0
## 713   2020-01-10    Europe                        Estonia          0
## 714   2020-01-10    Europe                        Finland          0
## 715   2020-01-10    Europe                         France          0
## 716   2020-01-10    Europe                        Georgia          0
## 717   2020-01-10    Europe                        Germany          0
## 718   2020-01-10    Europe                         Greece          0
## 719   2020-01-10    Europe                        Iceland          0
## 720   2020-01-10    Europe                        Ireland          0
## 721   2020-01-10    Europe                          Italy          0
## 722   2020-01-10    Europe                      Lithuania          0
## 723   2020-01-10    Europe                     Luxembourg          0
## 724   2020-01-10    Europe                      Macedonia          0
## 725   2020-01-10    Europe                         Monaco          0
## 726   2020-01-10    Europe                    Netherlands          0
## 727   2020-01-10    Europe                         Norway          0
## 728   2020-01-10    Europe                        Romania          0
## 729   2020-01-10    Europe                         Russia          0
## 730   2020-01-10    Europe                     San Marino          0
## 731   2020-01-10    Europe                          Spain          0
## 732   2020-01-10    Europe                         Sweden          0
## 733   2020-01-10    Europe                    Switzerland          0
## 734   2020-01-10    Europe                 United Kingdom          0
## 735   2020-01-10   Oceania                      Australia          0
## 736   2020-01-10   Oceania                    New Zealand          0
## 737   2020-01-10     Other                      not found          0
## 738   2020-01-11    Africa                        Algeria          0
## 739   2020-01-11    Africa                          Egypt          0
## 740   2020-01-11    Africa                        Nigeria          0
## 741   2020-01-11   America                         Brazil          0
## 742   2020-01-11   America                         Canada          0
## 743   2020-01-11   America             Dominican Republic          0
## 744   2020-01-11   America                        Ecuador          0
## 745   2020-01-11   America                         Mexico          0
## 746   2020-01-11   America                  United States          0
## 747   2020-01-11      Asia                    Afghanistan          0
## 748   2020-01-11      Asia                        Bahrain          0
## 749   2020-01-11      Asia                       Cambodia          0
## 750   2020-01-11      Asia                          China          0
## 751   2020-01-11      Asia                          India          0
## 752   2020-01-11      Asia                      Indonesia          0
## 753   2020-01-11      Asia                           Iran          0
## 754   2020-01-11      Asia                           Iraq          0
## 755   2020-01-11      Asia                         Israel          0
## 756   2020-01-11      Asia                          Japan          0
## 757   2020-01-11      Asia                         Kuwait          0
## 758   2020-01-11      Asia                        Lebanon          0
## 759   2020-01-11      Asia                       Malaysia          0
## 760   2020-01-11      Asia                          Nepal          0
## 761   2020-01-11      Asia                           Oman          0
## 762   2020-01-11      Asia                       Pakistan          0
## 763   2020-01-11      Asia                    Philippines          0
## 764   2020-01-11      Asia                          Qatar          0
## 765   2020-01-11      Asia                      Singapore          0
## 766   2020-01-11      Asia                    South Korea          0
## 767   2020-01-11      Asia                      Sri Lanka          0
## 768   2020-01-11      Asia                       Thailand          0
## 769   2020-01-11      Asia           United Arab Emirates          0
## 770   2020-01-11      Asia                        Vietnam          0
## 771   2020-01-11      Asia                      not found          0
## 772   2020-01-11    Europe                        Armenia          0
## 773   2020-01-11    Europe                        Austria          0
## 774   2020-01-11    Europe                     Azerbaijan          0
## 775   2020-01-11    Europe                        Belarus          0
## 776   2020-01-11    Europe                        Belgium          0
## 777   2020-01-11    Europe                        Croatia          0
## 778   2020-01-11    Europe                 Czech Republic          0
## 779   2020-01-11    Europe                        Denmark          0
## 780   2020-01-11    Europe                        Estonia          0
## 781   2020-01-11    Europe                        Finland          0
## 782   2020-01-11    Europe                         France          0
## 783   2020-01-11    Europe                        Georgia          0
## 784   2020-01-11    Europe                        Germany          0
## 785   2020-01-11    Europe                         Greece          0
## 786   2020-01-11    Europe                        Iceland          0
## 787   2020-01-11    Europe                        Ireland          0
## 788   2020-01-11    Europe                          Italy          0
## 789   2020-01-11    Europe                      Lithuania          0
## 790   2020-01-11    Europe                     Luxembourg          0
## 791   2020-01-11    Europe                      Macedonia          0
## 792   2020-01-11    Europe                         Monaco          0
## 793   2020-01-11    Europe                    Netherlands          0
## 794   2020-01-11    Europe                         Norway          0
## 795   2020-01-11    Europe                        Romania          0
## 796   2020-01-11    Europe                         Russia          0
## 797   2020-01-11    Europe                     San Marino          0
## 798   2020-01-11    Europe                          Spain          0
## 799   2020-01-11    Europe                         Sweden          0
## 800   2020-01-11    Europe                    Switzerland          0
## 801   2020-01-11    Europe                 United Kingdom          0
## 802   2020-01-11   Oceania                      Australia          0
## 803   2020-01-11   Oceania                    New Zealand          0
## 804   2020-01-11     Other                      not found          0
## 805   2020-01-12    Africa                        Algeria          0
## 806   2020-01-12    Africa                          Egypt          0
## 807   2020-01-12    Africa                        Nigeria          0
## 808   2020-01-12   America                         Brazil          0
## 809   2020-01-12   America                         Canada          0
## 810   2020-01-12   America             Dominican Republic          0
## 811   2020-01-12   America                        Ecuador          0
## 812   2020-01-12   America                         Mexico          0
## 813   2020-01-12   America                  United States          0
## 814   2020-01-12      Asia                    Afghanistan          0
## 815   2020-01-12      Asia                        Bahrain          0
## 816   2020-01-12      Asia                       Cambodia          0
## 817   2020-01-12      Asia                          China          0
## 818   2020-01-12      Asia                          India          0
## 819   2020-01-12      Asia                      Indonesia          0
## 820   2020-01-12      Asia                           Iran          0
## 821   2020-01-12      Asia                           Iraq          0
## 822   2020-01-12      Asia                         Israel          0
## 823   2020-01-12      Asia                          Japan          0
## 824   2020-01-12      Asia                         Kuwait          0
## 825   2020-01-12      Asia                        Lebanon          0
## 826   2020-01-12      Asia                       Malaysia          0
## 827   2020-01-12      Asia                          Nepal          0
## 828   2020-01-12      Asia                           Oman          0
## 829   2020-01-12      Asia                       Pakistan          0
## 830   2020-01-12      Asia                    Philippines          0
## 831   2020-01-12      Asia                          Qatar          0
## 832   2020-01-12      Asia                      Singapore          0
## 833   2020-01-12      Asia                    South Korea          0
## 834   2020-01-12      Asia                      Sri Lanka          0
## 835   2020-01-12      Asia                       Thailand          0
## 836   2020-01-12      Asia           United Arab Emirates          0
## 837   2020-01-12      Asia                        Vietnam          0
## 838   2020-01-12      Asia                      not found          0
## 839   2020-01-12    Europe                        Armenia          0
## 840   2020-01-12    Europe                        Austria          0
## 841   2020-01-12    Europe                     Azerbaijan          0
## 842   2020-01-12    Europe                        Belarus          0
## 843   2020-01-12    Europe                        Belgium          0
## 844   2020-01-12    Europe                        Croatia          0
## 845   2020-01-12    Europe                 Czech Republic          0
## 846   2020-01-12    Europe                        Denmark          0
## 847   2020-01-12    Europe                        Estonia          0
## 848   2020-01-12    Europe                        Finland          0
## 849   2020-01-12    Europe                         France          0
## 850   2020-01-12    Europe                        Georgia          0
## 851   2020-01-12    Europe                        Germany          0
## 852   2020-01-12    Europe                         Greece          0
## 853   2020-01-12    Europe                        Iceland          0
## 854   2020-01-12    Europe                        Ireland          0
## 855   2020-01-12    Europe                          Italy          0
## 856   2020-01-12    Europe                      Lithuania          0
## 857   2020-01-12    Europe                     Luxembourg          0
## 858   2020-01-12    Europe                      Macedonia          0
## 859   2020-01-12    Europe                         Monaco          0
## 860   2020-01-12    Europe                    Netherlands          0
## 861   2020-01-12    Europe                         Norway          0
## 862   2020-01-12    Europe                        Romania          0
## 863   2020-01-12    Europe                         Russia          0
## 864   2020-01-12    Europe                     San Marino          0
## 865   2020-01-12    Europe                          Spain          0
## 866   2020-01-12    Europe                         Sweden          0
## 867   2020-01-12    Europe                    Switzerland          0
## 868   2020-01-12    Europe                 United Kingdom          0
## 869   2020-01-12   Oceania                      Australia          0
## 870   2020-01-12   Oceania                    New Zealand          0
## 871   2020-01-12     Other                      not found          0
## 872   2020-01-13    Africa                        Algeria          0
## 873   2020-01-13    Africa                          Egypt          0
## 874   2020-01-13    Africa                        Nigeria          0
## 875   2020-01-13   America                         Brazil          0
## 876   2020-01-13   America                         Canada          0
## 877   2020-01-13   America             Dominican Republic          0
## 878   2020-01-13   America                        Ecuador          0
## 879   2020-01-13   America                         Mexico          0
## 880   2020-01-13   America                  United States          0
## 881   2020-01-13      Asia                    Afghanistan          0
## 882   2020-01-13      Asia                        Bahrain          0
## 883   2020-01-13      Asia                       Cambodia          0
## 884   2020-01-13      Asia                          China          0
## 885   2020-01-13      Asia                          India          0
## 886   2020-01-13      Asia                      Indonesia          0
## 887   2020-01-13      Asia                           Iran          0
## 888   2020-01-13      Asia                           Iraq          0
## 889   2020-01-13      Asia                         Israel          0
## 890   2020-01-13      Asia                          Japan          0
## 891   2020-01-13      Asia                         Kuwait          0
## 892   2020-01-13      Asia                        Lebanon          0
## 893   2020-01-13      Asia                       Malaysia          0
## 894   2020-01-13      Asia                          Nepal          0
## 895   2020-01-13      Asia                           Oman          0
## 896   2020-01-13      Asia                       Pakistan          0
## 897   2020-01-13      Asia                    Philippines          0
## 898   2020-01-13      Asia                          Qatar          0
## 899   2020-01-13      Asia                      Singapore          0
## 900   2020-01-13      Asia                    South Korea          0
## 901   2020-01-13      Asia                      Sri Lanka          0
## 902   2020-01-13      Asia                       Thailand          1
## 903   2020-01-13      Asia           United Arab Emirates          0
## 904   2020-01-13      Asia                        Vietnam          0
## 905   2020-01-13      Asia                      not found          0
## 906   2020-01-13    Europe                        Armenia          0
## 907   2020-01-13    Europe                        Austria          0
## 908   2020-01-13    Europe                     Azerbaijan          0
## 909   2020-01-13    Europe                        Belarus          0
## 910   2020-01-13    Europe                        Belgium          0
## 911   2020-01-13    Europe                        Croatia          0
## 912   2020-01-13    Europe                 Czech Republic          0
## 913   2020-01-13    Europe                        Denmark          0
## 914   2020-01-13    Europe                        Estonia          0
## 915   2020-01-13    Europe                        Finland          0
## 916   2020-01-13    Europe                         France          0
## 917   2020-01-13    Europe                        Georgia          0
## 918   2020-01-13    Europe                        Germany          0
## 919   2020-01-13    Europe                         Greece          0
## 920   2020-01-13    Europe                        Iceland          0
## 921   2020-01-13    Europe                        Ireland          0
## 922   2020-01-13    Europe                          Italy          0
## 923   2020-01-13    Europe                      Lithuania          0
## 924   2020-01-13    Europe                     Luxembourg          0
## 925   2020-01-13    Europe                      Macedonia          0
## 926   2020-01-13    Europe                         Monaco          0
## 927   2020-01-13    Europe                    Netherlands          0
## 928   2020-01-13    Europe                         Norway          0
## 929   2020-01-13    Europe                        Romania          0
## 930   2020-01-13    Europe                         Russia          0
## 931   2020-01-13    Europe                     San Marino          0
## 932   2020-01-13    Europe                          Spain          0
## 933   2020-01-13    Europe                         Sweden          0
## 934   2020-01-13    Europe                    Switzerland          0
## 935   2020-01-13    Europe                 United Kingdom          0
## 936   2020-01-13   Oceania                      Australia          0
## 937   2020-01-13   Oceania                    New Zealand          0
## 938   2020-01-13     Other                      not found          0
## 939   2020-01-14    Africa                        Algeria          0
## 940   2020-01-14    Africa                          Egypt          0
## 941   2020-01-14    Africa                        Nigeria          0
## 942   2020-01-14   America                         Brazil          0
## 943   2020-01-14   America                         Canada          0
## 944   2020-01-14   America             Dominican Republic          0
## 945   2020-01-14   America                        Ecuador          0
## 946   2020-01-14   America                         Mexico          0
## 947   2020-01-14   America                  United States          0
## 948   2020-01-14      Asia                    Afghanistan          0
## 949   2020-01-14      Asia                        Bahrain          0
## 950   2020-01-14      Asia                       Cambodia          0
## 951   2020-01-14      Asia                          China          0
## 952   2020-01-14      Asia                          India          0
## 953   2020-01-14      Asia                      Indonesia          0
## 954   2020-01-14      Asia                           Iran          0
## 955   2020-01-14      Asia                           Iraq          0
## 956   2020-01-14      Asia                         Israel          0
## 957   2020-01-14      Asia                          Japan          0
## 958   2020-01-14      Asia                         Kuwait          0
## 959   2020-01-14      Asia                        Lebanon          0
## 960   2020-01-14      Asia                       Malaysia          0
## 961   2020-01-14      Asia                          Nepal          0
## 962   2020-01-14      Asia                           Oman          0
## 963   2020-01-14      Asia                       Pakistan          0
## 964   2020-01-14      Asia                    Philippines          0
## 965   2020-01-14      Asia                          Qatar          0
## 966   2020-01-14      Asia                      Singapore          0
## 967   2020-01-14      Asia                    South Korea          0
## 968   2020-01-14      Asia                      Sri Lanka          0
## 969   2020-01-14      Asia                       Thailand          0
## 970   2020-01-14      Asia           United Arab Emirates          0
## 971   2020-01-14      Asia                        Vietnam          0
## 972   2020-01-14      Asia                      not found          0
## 973   2020-01-14    Europe                        Armenia          0
## 974   2020-01-14    Europe                        Austria          0
## 975   2020-01-14    Europe                     Azerbaijan          0
## 976   2020-01-14    Europe                        Belarus          0
## 977   2020-01-14    Europe                        Belgium          0
## 978   2020-01-14    Europe                        Croatia          0
## 979   2020-01-14    Europe                 Czech Republic          0
## 980   2020-01-14    Europe                        Denmark          0
## 981   2020-01-14    Europe                        Estonia          0
## 982   2020-01-14    Europe                        Finland          0
## 983   2020-01-14    Europe                         France          0
## 984   2020-01-14    Europe                        Georgia          0
## 985   2020-01-14    Europe                        Germany          0
## 986   2020-01-14    Europe                         Greece          0
## 987   2020-01-14    Europe                        Iceland          0
## 988   2020-01-14    Europe                        Ireland          0
## 989   2020-01-14    Europe                          Italy          0
## 990   2020-01-14    Europe                      Lithuania          0
## 991   2020-01-14    Europe                     Luxembourg          0
## 992   2020-01-14    Europe                      Macedonia          0
## 993   2020-01-14    Europe                         Monaco          0
## 994   2020-01-14    Europe                    Netherlands          0
## 995   2020-01-14    Europe                         Norway          0
## 996   2020-01-14    Europe                        Romania          0
## 997   2020-01-14    Europe                         Russia          0
## 998   2020-01-14    Europe                     San Marino          0
## 999   2020-01-14    Europe                          Spain          0
## 1000  2020-01-14    Europe                         Sweden          0
## 1001  2020-01-14    Europe                    Switzerland          0
## 1002  2020-01-14    Europe                 United Kingdom          0
## 1003  2020-01-14   Oceania                      Australia          0
## 1004  2020-01-14   Oceania                    New Zealand          0
## 1005  2020-01-14     Other                      not found          0
## 1006  2020-01-15    Africa                        Algeria          0
## 1007  2020-01-15    Africa                          Egypt          0
## 1008  2020-01-15    Africa                        Nigeria          0
## 1009  2020-01-15   America                         Brazil          0
## 1010  2020-01-15   America                         Canada          0
## 1011  2020-01-15   America             Dominican Republic          0
## 1012  2020-01-15   America                        Ecuador          0
## 1013  2020-01-15   America                         Mexico          0
## 1014  2020-01-15   America                  United States          0
## 1015  2020-01-15      Asia                    Afghanistan          0
## 1016  2020-01-15      Asia                        Bahrain          0
## 1017  2020-01-15      Asia                       Cambodia          0
## 1018  2020-01-15      Asia                          China          0
## 1019  2020-01-15      Asia                          India          0
## 1020  2020-01-15      Asia                      Indonesia          0
## 1021  2020-01-15      Asia                           Iran          0
## 1022  2020-01-15      Asia                           Iraq          0
## 1023  2020-01-15      Asia                         Israel          0
## 1024  2020-01-15      Asia                          Japan          1
## 1025  2020-01-15      Asia                         Kuwait          0
## 1026  2020-01-15      Asia                        Lebanon          0
## 1027  2020-01-15      Asia                       Malaysia          0
## 1028  2020-01-15      Asia                          Nepal          0
## 1029  2020-01-15      Asia                           Oman          0
## 1030  2020-01-15      Asia                       Pakistan          0
## 1031  2020-01-15      Asia                    Philippines          0
## 1032  2020-01-15      Asia                          Qatar          0
## 1033  2020-01-15      Asia                      Singapore          0
## 1034  2020-01-15      Asia                    South Korea          0
## 1035  2020-01-15      Asia                      Sri Lanka          0
## 1036  2020-01-15      Asia                       Thailand          0
## 1037  2020-01-15      Asia           United Arab Emirates          0
## 1038  2020-01-15      Asia                        Vietnam          0
## 1039  2020-01-15      Asia                      not found          0
## 1040  2020-01-15    Europe                        Armenia          0
## 1041  2020-01-15    Europe                        Austria          0
## 1042  2020-01-15    Europe                     Azerbaijan          0
## 1043  2020-01-15    Europe                        Belarus          0
## 1044  2020-01-15    Europe                        Belgium          0
## 1045  2020-01-15    Europe                        Croatia          0
## 1046  2020-01-15    Europe                 Czech Republic          0
## 1047  2020-01-15    Europe                        Denmark          0
## 1048  2020-01-15    Europe                        Estonia          0
## 1049  2020-01-15    Europe                        Finland          0
## 1050  2020-01-15    Europe                         France          0
## 1051  2020-01-15    Europe                        Georgia          0
## 1052  2020-01-15    Europe                        Germany          0
## 1053  2020-01-15    Europe                         Greece          0
## 1054  2020-01-15    Europe                        Iceland          0
## 1055  2020-01-15    Europe                        Ireland          0
## 1056  2020-01-15    Europe                          Italy          0
## 1057  2020-01-15    Europe                      Lithuania          0
## 1058  2020-01-15    Europe                     Luxembourg          0
## 1059  2020-01-15    Europe                      Macedonia          0
## 1060  2020-01-15    Europe                         Monaco          0
## 1061  2020-01-15    Europe                    Netherlands          0
## 1062  2020-01-15    Europe                         Norway          0
## 1063  2020-01-15    Europe                        Romania          0
## 1064  2020-01-15    Europe                         Russia          0
## 1065  2020-01-15    Europe                     San Marino          0
## 1066  2020-01-15    Europe                          Spain          0
## 1067  2020-01-15    Europe                         Sweden          0
## 1068  2020-01-15    Europe                    Switzerland          0
## 1069  2020-01-15    Europe                 United Kingdom          0
## 1070  2020-01-15   Oceania                      Australia          0
## 1071  2020-01-15   Oceania                    New Zealand          0
## 1072  2020-01-15     Other                      not found          0
## 1073  2020-01-16    Africa                        Algeria          0
## 1074  2020-01-16    Africa                          Egypt          0
## 1075  2020-01-16    Africa                        Nigeria          0
## 1076  2020-01-16   America                         Brazil          0
## 1077  2020-01-16   America                         Canada          0
## 1078  2020-01-16   America             Dominican Republic          0
## 1079  2020-01-16   America                        Ecuador          0
## 1080  2020-01-16   America                         Mexico          0
## 1081  2020-01-16   America                  United States          0
## 1082  2020-01-16      Asia                    Afghanistan          0
## 1083  2020-01-16      Asia                        Bahrain          0
## 1084  2020-01-16      Asia                       Cambodia          0
## 1085  2020-01-16      Asia                          China          0
## 1086  2020-01-16      Asia                          India          0
## 1087  2020-01-16      Asia                      Indonesia          0
## 1088  2020-01-16      Asia                           Iran          0
## 1089  2020-01-16      Asia                           Iraq          0
## 1090  2020-01-16      Asia                         Israel          0
## 1091  2020-01-16      Asia                          Japan          0
## 1092  2020-01-16      Asia                         Kuwait          0
## 1093  2020-01-16      Asia                        Lebanon          0
## 1094  2020-01-16      Asia                       Malaysia          0
## 1095  2020-01-16      Asia                          Nepal          0
## 1096  2020-01-16      Asia                           Oman          0
## 1097  2020-01-16      Asia                       Pakistan          0
## 1098  2020-01-16      Asia                    Philippines          0
## 1099  2020-01-16      Asia                          Qatar          0
## 1100  2020-01-16      Asia                      Singapore          0
## 1101  2020-01-16      Asia                    South Korea          0
## 1102  2020-01-16      Asia                      Sri Lanka          0
## 1103  2020-01-16      Asia                       Thailand          0
## 1104  2020-01-16      Asia           United Arab Emirates          0
## 1105  2020-01-16      Asia                        Vietnam          0
## 1106  2020-01-16      Asia                      not found          0
## 1107  2020-01-16    Europe                        Armenia          0
## 1108  2020-01-16    Europe                        Austria          0
## 1109  2020-01-16    Europe                     Azerbaijan          0
## 1110  2020-01-16    Europe                        Belarus          0
## 1111  2020-01-16    Europe                        Belgium          0
## 1112  2020-01-16    Europe                        Croatia          0
## 1113  2020-01-16    Europe                 Czech Republic          0
## 1114  2020-01-16    Europe                        Denmark          0
## 1115  2020-01-16    Europe                        Estonia          0
## 1116  2020-01-16    Europe                        Finland          0
## 1117  2020-01-16    Europe                         France          0
## 1118  2020-01-16    Europe                        Georgia          0
## 1119  2020-01-16    Europe                        Germany          0
## 1120  2020-01-16    Europe                         Greece          0
## 1121  2020-01-16    Europe                        Iceland          0
## 1122  2020-01-16    Europe                        Ireland          0
## 1123  2020-01-16    Europe                          Italy          0
## 1124  2020-01-16    Europe                      Lithuania          0
## 1125  2020-01-16    Europe                     Luxembourg          0
## 1126  2020-01-16    Europe                      Macedonia          0
## 1127  2020-01-16    Europe                         Monaco          0
## 1128  2020-01-16    Europe                    Netherlands          0
## 1129  2020-01-16    Europe                         Norway          0
## 1130  2020-01-16    Europe                        Romania          0
## 1131  2020-01-16    Europe                         Russia          0
## 1132  2020-01-16    Europe                     San Marino          0
## 1133  2020-01-16    Europe                          Spain          0
## 1134  2020-01-16    Europe                         Sweden          0
## 1135  2020-01-16    Europe                    Switzerland          0
## 1136  2020-01-16    Europe                 United Kingdom          0
## 1137  2020-01-16   Oceania                      Australia          0
## 1138  2020-01-16   Oceania                    New Zealand          0
## 1139  2020-01-16     Other                      not found          0
## 1140  2020-01-17    Africa                        Algeria          0
## 1141  2020-01-17    Africa                          Egypt          0
## 1142  2020-01-17    Africa                        Nigeria          0
## 1143  2020-01-17   America                         Brazil          0
## 1144  2020-01-17   America                         Canada          0
## 1145  2020-01-17   America             Dominican Republic          0
## 1146  2020-01-17   America                        Ecuador          0
## 1147  2020-01-17   America                         Mexico          0
## 1148  2020-01-17   America                  United States          0
## 1149  2020-01-17      Asia                    Afghanistan          0
## 1150  2020-01-17      Asia                        Bahrain          0
## 1151  2020-01-17      Asia                       Cambodia          0
## 1152  2020-01-17      Asia                          China          4
## 1153  2020-01-17      Asia                          India          0
## 1154  2020-01-17      Asia                      Indonesia          0
## 1155  2020-01-17      Asia                           Iran          0
## 1156  2020-01-17      Asia                           Iraq          0
## 1157  2020-01-17      Asia                         Israel          0
## 1158  2020-01-17      Asia                          Japan          0
## 1159  2020-01-17      Asia                         Kuwait          0
## 1160  2020-01-17      Asia                        Lebanon          0
## 1161  2020-01-17      Asia                       Malaysia          0
## 1162  2020-01-17      Asia                          Nepal          0
## 1163  2020-01-17      Asia                           Oman          0
## 1164  2020-01-17      Asia                       Pakistan          0
## 1165  2020-01-17      Asia                    Philippines          0
## 1166  2020-01-17      Asia                          Qatar          0
## 1167  2020-01-17      Asia                      Singapore          0
## 1168  2020-01-17      Asia                    South Korea          0
## 1169  2020-01-17      Asia                      Sri Lanka          0
## 1170  2020-01-17      Asia                       Thailand          1
## 1171  2020-01-17      Asia           United Arab Emirates          0
## 1172  2020-01-17      Asia                        Vietnam          0
## 1173  2020-01-17      Asia                      not found          0
## 1174  2020-01-17    Europe                        Armenia          0
## 1175  2020-01-17    Europe                        Austria          0
## 1176  2020-01-17    Europe                     Azerbaijan          0
## 1177  2020-01-17    Europe                        Belarus          0
## 1178  2020-01-17    Europe                        Belgium          0
## 1179  2020-01-17    Europe                        Croatia          0
## 1180  2020-01-17    Europe                 Czech Republic          0
## 1181  2020-01-17    Europe                        Denmark          0
## 1182  2020-01-17    Europe                        Estonia          0
## 1183  2020-01-17    Europe                        Finland          0
## 1184  2020-01-17    Europe                         France          0
## 1185  2020-01-17    Europe                        Georgia          0
## 1186  2020-01-17    Europe                        Germany          0
## 1187  2020-01-17    Europe                         Greece          0
## 1188  2020-01-17    Europe                        Iceland          0
## 1189  2020-01-17    Europe                        Ireland          0
## 1190  2020-01-17    Europe                          Italy          0
## 1191  2020-01-17    Europe                      Lithuania          0
## 1192  2020-01-17    Europe                     Luxembourg          0
## 1193  2020-01-17    Europe                      Macedonia          0
## 1194  2020-01-17    Europe                         Monaco          0
## 1195  2020-01-17    Europe                    Netherlands          0
## 1196  2020-01-17    Europe                         Norway          0
## 1197  2020-01-17    Europe                        Romania          0
## 1198  2020-01-17    Europe                         Russia          0
## 1199  2020-01-17    Europe                     San Marino          0
## 1200  2020-01-17    Europe                          Spain          0
## 1201  2020-01-17    Europe                         Sweden          0
## 1202  2020-01-17    Europe                    Switzerland          0
## 1203  2020-01-17    Europe                 United Kingdom          0
## 1204  2020-01-17   Oceania                      Australia          0
## 1205  2020-01-17   Oceania                    New Zealand          0
## 1206  2020-01-17     Other                      not found          0
## 1207  2020-01-18    Africa                        Algeria          0
## 1208  2020-01-18    Africa                          Egypt          0
## 1209  2020-01-18    Africa                        Nigeria          0
## 1210  2020-01-18   America                         Brazil          0
## 1211  2020-01-18   America                         Canada          0
## 1212  2020-01-18   America             Dominican Republic          0
## 1213  2020-01-18   America                        Ecuador          0
## 1214  2020-01-18   America                         Mexico          0
## 1215  2020-01-18   America                  United States          0
## 1216  2020-01-18      Asia                    Afghanistan          0
## 1217  2020-01-18      Asia                        Bahrain          0
## 1218  2020-01-18      Asia                       Cambodia          0
## 1219  2020-01-18      Asia                          China         17
## 1220  2020-01-18      Asia                          India          0
## 1221  2020-01-18      Asia                      Indonesia          0
## 1222  2020-01-18      Asia                           Iran          0
## 1223  2020-01-18      Asia                           Iraq          0
## 1224  2020-01-18      Asia                         Israel          0
## 1225  2020-01-18      Asia                          Japan          0
## 1226  2020-01-18      Asia                         Kuwait          0
## 1227  2020-01-18      Asia                        Lebanon          0
## 1228  2020-01-18      Asia                       Malaysia          0
## 1229  2020-01-18      Asia                          Nepal          0
## 1230  2020-01-18      Asia                           Oman          0
## 1231  2020-01-18      Asia                       Pakistan          0
## 1232  2020-01-18      Asia                    Philippines          0
## 1233  2020-01-18      Asia                          Qatar          0
## 1234  2020-01-18      Asia                      Singapore          0
## 1235  2020-01-18      Asia                    South Korea          0
## 1236  2020-01-18      Asia                      Sri Lanka          0
## 1237  2020-01-18      Asia                       Thailand          0
## 1238  2020-01-18      Asia           United Arab Emirates          0
## 1239  2020-01-18      Asia                        Vietnam          0
## 1240  2020-01-18      Asia                      not found          0
## 1241  2020-01-18    Europe                        Armenia          0
## 1242  2020-01-18    Europe                        Austria          0
## 1243  2020-01-18    Europe                     Azerbaijan          0
## 1244  2020-01-18    Europe                        Belarus          0
## 1245  2020-01-18    Europe                        Belgium          0
## 1246  2020-01-18    Europe                        Croatia          0
## 1247  2020-01-18    Europe                 Czech Republic          0
## 1248  2020-01-18    Europe                        Denmark          0
## 1249  2020-01-18    Europe                        Estonia          0
## 1250  2020-01-18    Europe                        Finland          0
## 1251  2020-01-18    Europe                         France          0
## 1252  2020-01-18    Europe                        Georgia          0
## 1253  2020-01-18    Europe                        Germany          0
## 1254  2020-01-18    Europe                         Greece          0
## 1255  2020-01-18    Europe                        Iceland          0
## 1256  2020-01-18    Europe                        Ireland          0
## 1257  2020-01-18    Europe                          Italy          0
## 1258  2020-01-18    Europe                      Lithuania          0
## 1259  2020-01-18    Europe                     Luxembourg          0
## 1260  2020-01-18    Europe                      Macedonia          0
## 1261  2020-01-18    Europe                         Monaco          0
## 1262  2020-01-18    Europe                    Netherlands          0
## 1263  2020-01-18    Europe                         Norway          0
## 1264  2020-01-18    Europe                        Romania          0
## 1265  2020-01-18    Europe                         Russia          0
## 1266  2020-01-18    Europe                     San Marino          0
## 1267  2020-01-18    Europe                          Spain          0
## 1268  2020-01-18    Europe                         Sweden          0
## 1269  2020-01-18    Europe                    Switzerland          0
## 1270  2020-01-18    Europe                 United Kingdom          0
## 1271  2020-01-18   Oceania                      Australia          0
## 1272  2020-01-18   Oceania                    New Zealand          0
## 1273  2020-01-18     Other                      not found          0
## 1274  2020-01-19    Africa                        Algeria          0
## 1275  2020-01-19    Africa                          Egypt          0
## 1276  2020-01-19    Africa                        Nigeria          0
## 1277  2020-01-19   America                         Brazil          0
## 1278  2020-01-19   America                         Canada          0
## 1279  2020-01-19   America             Dominican Republic          0
## 1280  2020-01-19   America                        Ecuador          0
## 1281  2020-01-19   America                         Mexico          0
## 1282  2020-01-19   America                  United States          0
## 1283  2020-01-19      Asia                    Afghanistan          0
## 1284  2020-01-19      Asia                        Bahrain          0
## 1285  2020-01-19      Asia                       Cambodia          0
## 1286  2020-01-19      Asia                          China        136
## 1287  2020-01-19      Asia                          India          0
## 1288  2020-01-19      Asia                      Indonesia          0
## 1289  2020-01-19      Asia                           Iran          0
## 1290  2020-01-19      Asia                           Iraq          0
## 1291  2020-01-19      Asia                         Israel          0
## 1292  2020-01-19      Asia                          Japan          0
## 1293  2020-01-19      Asia                         Kuwait          0
## 1294  2020-01-19      Asia                        Lebanon          0
## 1295  2020-01-19      Asia                       Malaysia          0
## 1296  2020-01-19      Asia                          Nepal          0
## 1297  2020-01-19      Asia                           Oman          0
## 1298  2020-01-19      Asia                       Pakistan          0
## 1299  2020-01-19      Asia                    Philippines          0
## 1300  2020-01-19      Asia                          Qatar          0
## 1301  2020-01-19      Asia                      Singapore          0
## 1302  2020-01-19      Asia                    South Korea          0
## 1303  2020-01-19      Asia                      Sri Lanka          0
## 1304  2020-01-19      Asia                       Thailand          0
## 1305  2020-01-19      Asia           United Arab Emirates          0
## 1306  2020-01-19      Asia                        Vietnam          0
## 1307  2020-01-19      Asia                      not found          0
## 1308  2020-01-19    Europe                        Armenia          0
## 1309  2020-01-19    Europe                        Austria          0
## 1310  2020-01-19    Europe                     Azerbaijan          0
## 1311  2020-01-19    Europe                        Belarus          0
## 1312  2020-01-19    Europe                        Belgium          0
## 1313  2020-01-19    Europe                        Croatia          0
## 1314  2020-01-19    Europe                 Czech Republic          0
## 1315  2020-01-19    Europe                        Denmark          0
## 1316  2020-01-19    Europe                        Estonia          0
## 1317  2020-01-19    Europe                        Finland          0
## 1318  2020-01-19    Europe                         France          0
## 1319  2020-01-19    Europe                        Georgia          0
## 1320  2020-01-19    Europe                        Germany          0
## 1321  2020-01-19    Europe                         Greece          0
## 1322  2020-01-19    Europe                        Iceland          0
## 1323  2020-01-19    Europe                        Ireland          0
## 1324  2020-01-19    Europe                          Italy          0
## 1325  2020-01-19    Europe                      Lithuania          0
## 1326  2020-01-19    Europe                     Luxembourg          0
## 1327  2020-01-19    Europe                      Macedonia          0
## 1328  2020-01-19    Europe                         Monaco          0
## 1329  2020-01-19    Europe                    Netherlands          0
## 1330  2020-01-19    Europe                         Norway          0
## 1331  2020-01-19    Europe                        Romania          0
## 1332  2020-01-19    Europe                         Russia          0
## 1333  2020-01-19    Europe                     San Marino          0
## 1334  2020-01-19    Europe                          Spain          0
## 1335  2020-01-19    Europe                         Sweden          0
## 1336  2020-01-19    Europe                    Switzerland          0
## 1337  2020-01-19    Europe                 United Kingdom          0
## 1338  2020-01-19   Oceania                      Australia          0
## 1339  2020-01-19   Oceania                    New Zealand          0
## 1340  2020-01-19     Other                      not found          0
## 1341  2020-01-20    Africa                        Algeria          0
## 1342  2020-01-20    Africa                          Egypt          0
## 1343  2020-01-20    Africa                        Nigeria          0
## 1344  2020-01-20   America                         Brazil          0
## 1345  2020-01-20   America                         Canada          0
## 1346  2020-01-20   America             Dominican Republic          0
## 1347  2020-01-20   America                        Ecuador          0
## 1348  2020-01-20   America                         Mexico          0
## 1349  2020-01-20   America                  United States          0
## 1350  2020-01-20      Asia                    Afghanistan          0
## 1351  2020-01-20      Asia                        Bahrain          0
## 1352  2020-01-20      Asia                       Cambodia          0
## 1353  2020-01-20      Asia                          China         19
## 1354  2020-01-20      Asia                          India          0
## 1355  2020-01-20      Asia                      Indonesia          0
## 1356  2020-01-20      Asia                           Iran          0
## 1357  2020-01-20      Asia                           Iraq          0
## 1358  2020-01-20      Asia                         Israel          0
## 1359  2020-01-20      Asia                          Japan          0
## 1360  2020-01-20      Asia                         Kuwait          0
## 1361  2020-01-20      Asia                        Lebanon          0
## 1362  2020-01-20      Asia                       Malaysia          0
## 1363  2020-01-20      Asia                          Nepal          0
## 1364  2020-01-20      Asia                           Oman          0
## 1365  2020-01-20      Asia                       Pakistan          0
## 1366  2020-01-20      Asia                    Philippines          0
## 1367  2020-01-20      Asia                          Qatar          0
## 1368  2020-01-20      Asia                      Singapore          0
## 1369  2020-01-20      Asia                    South Korea          1
## 1370  2020-01-20      Asia                      Sri Lanka          0
## 1371  2020-01-20      Asia                       Thailand          0
## 1372  2020-01-20      Asia           United Arab Emirates          0
## 1373  2020-01-20      Asia                        Vietnam          0
## 1374  2020-01-20      Asia                      not found          0
## 1375  2020-01-20    Europe                        Armenia          0
## 1376  2020-01-20    Europe                        Austria          0
## 1377  2020-01-20    Europe                     Azerbaijan          0
## 1378  2020-01-20    Europe                        Belarus          0
## 1379  2020-01-20    Europe                        Belgium          0
## 1380  2020-01-20    Europe                        Croatia          0
## 1381  2020-01-20    Europe                 Czech Republic          0
## 1382  2020-01-20    Europe                        Denmark          0
## 1383  2020-01-20    Europe                        Estonia          0
## 1384  2020-01-20    Europe                        Finland          0
## 1385  2020-01-20    Europe                         France          0
## 1386  2020-01-20    Europe                        Georgia          0
## 1387  2020-01-20    Europe                        Germany          0
## 1388  2020-01-20    Europe                         Greece          0
## 1389  2020-01-20    Europe                        Iceland          0
## 1390  2020-01-20    Europe                        Ireland          0
## 1391  2020-01-20    Europe                          Italy          0
## 1392  2020-01-20    Europe                      Lithuania          0
## 1393  2020-01-20    Europe                     Luxembourg          0
## 1394  2020-01-20    Europe                      Macedonia          0
## 1395  2020-01-20    Europe                         Monaco          0
## 1396  2020-01-20    Europe                    Netherlands          0
## 1397  2020-01-20    Europe                         Norway          0
## 1398  2020-01-20    Europe                        Romania          0
## 1399  2020-01-20    Europe                         Russia          0
## 1400  2020-01-20    Europe                     San Marino          0
## 1401  2020-01-20    Europe                          Spain          0
## 1402  2020-01-20    Europe                         Sweden          0
## 1403  2020-01-20    Europe                    Switzerland          0
## 1404  2020-01-20    Europe                 United Kingdom          0
## 1405  2020-01-20   Oceania                      Australia          0
## 1406  2020-01-20   Oceania                    New Zealand          0
## 1407  2020-01-20     Other                      not found          0
## 1408  2020-01-21    Africa                        Algeria          0
## 1409  2020-01-21    Africa                          Egypt          0
## 1410  2020-01-21    Africa                        Nigeria          0
## 1411  2020-01-21   America                         Brazil          0
## 1412  2020-01-21   America                         Canada          0
## 1413  2020-01-21   America             Dominican Republic          0
## 1414  2020-01-21   America                        Ecuador          0
## 1415  2020-01-21   America                         Mexico          0
## 1416  2020-01-21   America                  United States          1
## 1417  2020-01-21      Asia                    Afghanistan          0
## 1418  2020-01-21      Asia                        Bahrain          0
## 1419  2020-01-21      Asia                       Cambodia          0
## 1420  2020-01-21      Asia                          China        151
## 1421  2020-01-21      Asia                          India          0
## 1422  2020-01-21      Asia                      Indonesia          0
## 1423  2020-01-21      Asia                           Iran          0
## 1424  2020-01-21      Asia                           Iraq          0
## 1425  2020-01-21      Asia                         Israel          0
## 1426  2020-01-21      Asia                          Japan          0
## 1427  2020-01-21      Asia                         Kuwait          0
## 1428  2020-01-21      Asia                        Lebanon          0
## 1429  2020-01-21      Asia                       Malaysia          0
## 1430  2020-01-21      Asia                          Nepal          0
## 1431  2020-01-21      Asia                           Oman          0
## 1432  2020-01-21      Asia                       Pakistan          0
## 1433  2020-01-21      Asia                    Philippines          0
## 1434  2020-01-21      Asia                          Qatar          0
## 1435  2020-01-21      Asia                      Singapore          0
## 1436  2020-01-21      Asia                    South Korea          0
## 1437  2020-01-21      Asia                      Sri Lanka          0
## 1438  2020-01-21      Asia                       Thailand          0
## 1439  2020-01-21      Asia           United Arab Emirates          0
## 1440  2020-01-21      Asia                        Vietnam          0
## 1441  2020-01-21      Asia                      not found          1
## 1442  2020-01-21    Europe                        Armenia          0
## 1443  2020-01-21    Europe                        Austria          0
## 1444  2020-01-21    Europe                     Azerbaijan          0
## 1445  2020-01-21    Europe                        Belarus          0
## 1446  2020-01-21    Europe                        Belgium          0
## 1447  2020-01-21    Europe                        Croatia          0
## 1448  2020-01-21    Europe                 Czech Republic          0
## 1449  2020-01-21    Europe                        Denmark          0
## 1450  2020-01-21    Europe                        Estonia          0
## 1451  2020-01-21    Europe                        Finland          0
## 1452  2020-01-21    Europe                         France          0
## 1453  2020-01-21    Europe                        Georgia          0
## 1454  2020-01-21    Europe                        Germany          0
## 1455  2020-01-21    Europe                         Greece          0
## 1456  2020-01-21    Europe                        Iceland          0
## 1457  2020-01-21    Europe                        Ireland          0
## 1458  2020-01-21    Europe                          Italy          0
## 1459  2020-01-21    Europe                      Lithuania          0
## 1460  2020-01-21    Europe                     Luxembourg          0
## 1461  2020-01-21    Europe                      Macedonia          0
## 1462  2020-01-21    Europe                         Monaco          0
## 1463  2020-01-21    Europe                    Netherlands          0
## 1464  2020-01-21    Europe                         Norway          0
## 1465  2020-01-21    Europe                        Romania          0
## 1466  2020-01-21    Europe                         Russia          0
## 1467  2020-01-21    Europe                     San Marino          0
## 1468  2020-01-21    Europe                          Spain          0
## 1469  2020-01-21    Europe                         Sweden          0
## 1470  2020-01-21    Europe                    Switzerland          0
## 1471  2020-01-21    Europe                 United Kingdom          0
## 1472  2020-01-21   Oceania                      Australia          0
## 1473  2020-01-21   Oceania                    New Zealand          0
## 1474  2020-01-21     Other                      not found          0
## 1475  2020-01-22    Africa                        Algeria          0
## 1476  2020-01-22    Africa                          Egypt          0
## 1477  2020-01-22    Africa                        Nigeria          0
## 1478  2020-01-22   America                         Brazil          0
## 1479  2020-01-22   America                         Canada          0
## 1480  2020-01-22   America             Dominican Republic          0
## 1481  2020-01-22   America                        Ecuador          0
## 1482  2020-01-22   America                         Mexico          0
## 1483  2020-01-22   America                  United States          0
## 1484  2020-01-22      Asia                    Afghanistan          0
## 1485  2020-01-22      Asia                        Bahrain          0
## 1486  2020-01-22      Asia                       Cambodia          0
## 1487  2020-01-22      Asia                          China        140
## 1488  2020-01-22      Asia                          India          0
## 1489  2020-01-22      Asia                      Indonesia          0
## 1490  2020-01-22      Asia                           Iran          0
## 1491  2020-01-22      Asia                           Iraq          0
## 1492  2020-01-22      Asia                         Israel          0
## 1493  2020-01-22      Asia                          Japan          0
## 1494  2020-01-22      Asia                         Kuwait          0
## 1495  2020-01-22      Asia                        Lebanon          0
## 1496  2020-01-22      Asia                       Malaysia          0
## 1497  2020-01-22      Asia                          Nepal          0
## 1498  2020-01-22      Asia                           Oman          0
## 1499  2020-01-22      Asia                       Pakistan          0
## 1500  2020-01-22      Asia                    Philippines          0
## 1501  2020-01-22      Asia                          Qatar          0
## 1502  2020-01-22      Asia                      Singapore          0
## 1503  2020-01-22      Asia                    South Korea          0
## 1504  2020-01-22      Asia                      Sri Lanka          0
## 1505  2020-01-22      Asia                       Thailand          2
## 1506  2020-01-22      Asia           United Arab Emirates          0
## 1507  2020-01-22      Asia                        Vietnam          0
## 1508  2020-01-22      Asia                      not found          0
## 1509  2020-01-22    Europe                        Armenia          0
## 1510  2020-01-22    Europe                        Austria          0
## 1511  2020-01-22    Europe                     Azerbaijan          0
## 1512  2020-01-22    Europe                        Belarus          0
## 1513  2020-01-22    Europe                        Belgium          0
## 1514  2020-01-22    Europe                        Croatia          0
## 1515  2020-01-22    Europe                 Czech Republic          0
## 1516  2020-01-22    Europe                        Denmark          0
## 1517  2020-01-22    Europe                        Estonia          0
## 1518  2020-01-22    Europe                        Finland          0
## 1519  2020-01-22    Europe                         France          0
## 1520  2020-01-22    Europe                        Georgia          0
## 1521  2020-01-22    Europe                        Germany          0
## 1522  2020-01-22    Europe                         Greece          0
## 1523  2020-01-22    Europe                        Iceland          0
## 1524  2020-01-22    Europe                        Ireland          0
## 1525  2020-01-22    Europe                          Italy          0
## 1526  2020-01-22    Europe                      Lithuania          0
## 1527  2020-01-22    Europe                     Luxembourg          0
## 1528  2020-01-22    Europe                      Macedonia          0
## 1529  2020-01-22    Europe                         Monaco          0
## 1530  2020-01-22    Europe                    Netherlands          0
## 1531  2020-01-22    Europe                         Norway          0
## 1532  2020-01-22    Europe                        Romania          0
## 1533  2020-01-22    Europe                         Russia          0
## 1534  2020-01-22    Europe                     San Marino          0
## 1535  2020-01-22    Europe                          Spain          0
## 1536  2020-01-22    Europe                         Sweden          0
## 1537  2020-01-22    Europe                    Switzerland          0
## 1538  2020-01-22    Europe                 United Kingdom          0
## 1539  2020-01-22   Oceania                      Australia          0
## 1540  2020-01-22   Oceania                    New Zealand          0
## 1541  2020-01-22     Other                      not found          0
## 1542  2020-01-23    Africa                        Algeria          0
## 1543  2020-01-23    Africa                        Algeria          0
## 1544  2020-01-23    Africa                         Angola          0
## 1545  2020-01-23    Africa                          Benin          0
## 1546  2020-01-23    Africa                       Botswana          0
## 1547  2020-01-23    Africa                   Burkina Faso          0
## 1548  2020-01-23    Africa                        Burundi          0
## 1549  2020-01-23    Africa                     Cabo Verde          0
## 1550  2020-01-23    Africa                       Cameroon          0
## 1551  2020-01-23    Africa       Central African Republic          0
## 1552  2020-01-23    Africa                           Chad          0
## 1553  2020-01-23    Africa                        Comoros          0
## 1554  2020-01-23    Africa                 Congo Republic          0
## 1555  2020-01-23    Africa                  Cote d'Ivoire          0
## 1556  2020-01-23    Africa                       DR Congo          0
## 1557  2020-01-23    Africa                       Djibouti          0
## 1558  2020-01-23    Africa                          Egypt          0
## 1559  2020-01-23    Africa                          Egypt          0
## 1560  2020-01-23    Africa              Equatorial Guinea          0
## 1561  2020-01-23    Africa                        Eritrea          0
## 1562  2020-01-23    Africa                       Eswatini          0
## 1563  2020-01-23    Africa                       Ethiopia          0
## 1564  2020-01-23    Africa                          Gabon          0
## 1565  2020-01-23    Africa                         Gambia          0
## 1566  2020-01-23    Africa                          Ghana          0
## 1567  2020-01-23    Africa                         Guinea          0
## 1568  2020-01-23    Africa                  Guinea-Bissau          0
## 1569  2020-01-23    Africa                          Kenya          0
## 1570  2020-01-23    Africa                        Lesotho          0
## 1571  2020-01-23    Africa                        Liberia          0
## 1572  2020-01-23    Africa                          Libya          0
## 1573  2020-01-23    Africa                     Madagascar          0
## 1574  2020-01-23    Africa                         Malawi          0
## 1575  2020-01-23    Africa                           Mali          0
## 1576  2020-01-23    Africa                     Mauritania          0
## 1577  2020-01-23    Africa                      Mauritius          0
## 1578  2020-01-23    Africa                        Morocco          0
## 1579  2020-01-23    Africa                     Mozambique          0
## 1580  2020-01-23    Africa                        Namibia          0
## 1581  2020-01-23    Africa                          Niger          0
## 1582  2020-01-23    Africa                        Nigeria          0
## 1583  2020-01-23    Africa                        Nigeria          0
## 1584  2020-01-23    Africa                         Rwanda          0
## 1585  2020-01-23    Africa          Sao Tome and Principe          0
## 1586  2020-01-23    Africa                        Senegal          0
## 1587  2020-01-23    Africa                     Seychelles          0
## 1588  2020-01-23    Africa                   Sierra Leone          0
## 1589  2020-01-23    Africa                        Somalia          0
## 1590  2020-01-23    Africa                   South Africa          0
## 1591  2020-01-23    Africa                    South Sudan          0
## 1592  2020-01-23    Africa                          Sudan          0
## 1593  2020-01-23    Africa                       Tanzania          0
## 1594  2020-01-23    Africa                           Togo          0
## 1595  2020-01-23    Africa                        Tunisia          0
## 1596  2020-01-23    Africa                         Uganda          0
## 1597  2020-01-23    Africa                 Western Sahara          0
## 1598  2020-01-23    Africa                         Zambia          0
## 1599  2020-01-23    Africa                       Zimbabwe          0
## 1600  2020-01-23   America            Antigua and Barbuda          0
## 1601  2020-01-23   America                      Argentina          0
## 1602  2020-01-23   America                        Bahamas          0
## 1603  2020-01-23   America                       Barbados          0
## 1604  2020-01-23   America                         Belize          0
## 1605  2020-01-23   America                        Bolivia          0
## 1606  2020-01-23   America                         Brazil          0
## 1607  2020-01-23   America                         Brazil          0
## 1608  2020-01-23   America                         Canada          0
## 1609  2020-01-23   America                          Chile          0
## 1610  2020-01-23   America                       Colombia          0
## 1611  2020-01-23   America                     Costa Rica          0
## 1612  2020-01-23   America                           Cuba          0
## 1613  2020-01-23   America                       Dominica          0
## 1614  2020-01-23   America             Dominican Republic          0
## 1615  2020-01-23   America             Dominican Republic          0
## 1616  2020-01-23   America                        Ecuador          0
## 1617  2020-01-23   America                        Ecuador          0
## 1618  2020-01-23   America                    El Salvador          0
## 1619  2020-01-23   America                        Grenada          0
## 1620  2020-01-23   America                      Guatemala          0
## 1621  2020-01-23   America                         Guyana          0
## 1622  2020-01-23   America                          Haiti          0
## 1623  2020-01-23   America                       Honduras          0
## 1624  2020-01-23   America                        Jamaica          0
## 1625  2020-01-23   America                         Mexico          0
## 1626  2020-01-23   America                         Mexico          0
## 1627  2020-01-23   America                      Nicaragua          0
## 1628  2020-01-23   America                         Panama          0
## 1629  2020-01-23   America                       Paraguay          0
## 1630  2020-01-23   America                           Peru          0
## 1631  2020-01-23   America            St. Kitts and Nevis          0
## 1632  2020-01-23   America                      St. Lucia          0
## 1633  2020-01-23   America St. Vincent and the Grenadines          0
## 1634  2020-01-23   America                       Suriname          0
## 1635  2020-01-23   America            Trinidad and Tobago          0
## 1636  2020-01-23   America                  United States          0
## 1637  2020-01-23   America                  United States          0
## 1638  2020-01-23   America                        Uruguay          0
## 1639  2020-01-23   America                      Venezuela          0
## 1640  2020-01-23      Asia                    Afghanistan          0
## 1641  2020-01-23      Asia                    Afghanistan          0
## 1642  2020-01-23      Asia                        Bahrain          0
## 1643  2020-01-23      Asia                        Bahrain          0
## 1644  2020-01-23      Asia                     Bangladesh          0
## 1645  2020-01-23      Asia                         Bhutan          0
## 1646  2020-01-23      Asia              Brunei Darussalam          0
## 1647  2020-01-23      Asia                       Cambodia          0
## 1648  2020-01-23      Asia                       Cambodia          0
## 1649  2020-01-23      Asia                          China         97
## 1650  2020-01-23      Asia                          India          0
## 1651  2020-01-23      Asia                          India          0
## 1652  2020-01-23      Asia                      Indonesia          0
## 1653  2020-01-23      Asia                      Indonesia          0
## 1654  2020-01-23      Asia                           Iran          0
## 1655  2020-01-23      Asia                           Iran          0
## 1656  2020-01-23      Asia                           Iraq          0
## 1657  2020-01-23      Asia                           Iraq          0
## 1658  2020-01-23      Asia                         Israel          0
## 1659  2020-01-23      Asia                         Israel          0
## 1660  2020-01-23      Asia                          Japan          0
## 1661  2020-01-23      Asia                          Japan          0
## 1662  2020-01-23      Asia                         Jordan          0
## 1663  2020-01-23      Asia                     Kazakhstan          0
## 1664  2020-01-23      Asia                         Kuwait          0
## 1665  2020-01-23      Asia                         Kuwait          0
## 1666  2020-01-23      Asia                Kyrgyz Republic          0
## 1667  2020-01-23      Asia                           Laos          0
## 1668  2020-01-23      Asia                        Lebanon          0
## 1669  2020-01-23      Asia                        Lebanon          0
## 1670  2020-01-23      Asia                       Malaysia          0
## 1671  2020-01-23      Asia                       Malaysia          0
## 1672  2020-01-23      Asia                       Maldives          0
## 1673  2020-01-23      Asia                       Mongolia          0
## 1674  2020-01-23      Asia                        Myanmar          0
## 1675  2020-01-23      Asia                          Nepal          0
## 1676  2020-01-23      Asia                          Nepal          0
## 1677  2020-01-23      Asia                           Oman          0
## 1678  2020-01-23      Asia                           Oman          0
## 1679  2020-01-23      Asia                       Pakistan          0
## 1680  2020-01-23      Asia                       Pakistan          0
## 1681  2020-01-23      Asia                      Palestine          0
## 1682  2020-01-23      Asia                    Philippines          0
## 1683  2020-01-23      Asia                    Philippines          0
## 1684  2020-01-23      Asia                          Qatar          0
## 1685  2020-01-23      Asia                          Qatar          0
## 1686  2020-01-23      Asia                   Saudi Arabia          0
## 1687  2020-01-23      Asia                      Singapore          0
## 1688  2020-01-23      Asia                      Singapore          1
## 1689  2020-01-23      Asia                    South Korea          0
## 1690  2020-01-23      Asia                    South Korea          0
## 1691  2020-01-23      Asia                      Sri Lanka          0
## 1692  2020-01-23      Asia                      Sri Lanka          0
## 1693  2020-01-23      Asia                          Syria          0
## 1694  2020-01-23      Asia                     Tajikistan          0
## 1695  2020-01-23      Asia                       Thailand          0
## 1696  2020-01-23      Asia                       Thailand          1
## 1697  2020-01-23      Asia                    Timor-Leste          0
## 1698  2020-01-23      Asia                         Turkey          0
## 1699  2020-01-23      Asia           United Arab Emirates          0
## 1700  2020-01-23      Asia           United Arab Emirates          0
## 1701  2020-01-23      Asia                     Uzbekistan          0
## 1702  2020-01-23      Asia                        Vietnam          0
## 1703  2020-01-23      Asia                        Vietnam          2
## 1704  2020-01-23      Asia                          Yemen          0
## 1705  2020-01-23      Asia                      not found          0
## 1706  2020-01-23    Europe                        Albania          0
## 1707  2020-01-23    Europe                        Andorra          0
## 1708  2020-01-23    Europe                        Armenia          0
## 1709  2020-01-23    Europe                        Armenia          0
## 1710  2020-01-23    Europe                        Austria          0
## 1711  2020-01-23    Europe                        Austria          0
## 1712  2020-01-23    Europe                     Azerbaijan          0
## 1713  2020-01-23    Europe                     Azerbaijan          0
## 1714  2020-01-23    Europe                        Belarus          0
## 1715  2020-01-23    Europe                        Belarus          0
## 1716  2020-01-23    Europe                        Belgium          0
## 1717  2020-01-23    Europe                        Belgium          0
## 1718  2020-01-23    Europe         Bosnia and Herzegovina          0
## 1719  2020-01-23    Europe                       Bulgaria          0
## 1720  2020-01-23    Europe                        Croatia          0
## 1721  2020-01-23    Europe                        Croatia          0
## 1722  2020-01-23    Europe                         Cyprus          0
## 1723  2020-01-23    Europe                 Czech Republic          0
## 1724  2020-01-23    Europe                 Czech Republic          0
## 1725  2020-01-23    Europe                        Denmark          0
## 1726  2020-01-23    Europe                        Denmark          0
## 1727  2020-01-23    Europe                        Estonia          0
## 1728  2020-01-23    Europe                        Estonia          0
## 1729  2020-01-23    Europe                        Finland          0
## 1730  2020-01-23    Europe                        Finland          0
## 1731  2020-01-23    Europe                         France          0
## 1732  2020-01-23    Europe                         France          0
## 1733  2020-01-23    Europe                        Georgia          0
## 1734  2020-01-23    Europe                        Georgia          0
## 1735  2020-01-23    Europe                        Germany          0
## 1736  2020-01-23    Europe                        Germany          0
## 1737  2020-01-23    Europe                         Greece          0
## 1738  2020-01-23    Europe                         Greece          0
## 1739  2020-01-23    Europe                        Hungary          0
## 1740  2020-01-23    Europe                        Iceland          0
## 1741  2020-01-23    Europe                        Iceland          0
## 1742  2020-01-23    Europe                        Ireland          0
## 1743  2020-01-23    Europe                        Ireland          0
## 1744  2020-01-23    Europe                          Italy          0
## 1745  2020-01-23    Europe                          Italy          0
## 1746  2020-01-23    Europe                         Kosovo          0
## 1747  2020-01-23    Europe                         Latvia          0
## 1748  2020-01-23    Europe                  Liechtenstein          0
## 1749  2020-01-23    Europe                      Lithuania          0
## 1750  2020-01-23    Europe                      Lithuania          0
## 1751  2020-01-23    Europe                     Luxembourg          0
## 1752  2020-01-23    Europe                     Luxembourg          0
## 1753  2020-01-23    Europe                      Macedonia          0
## 1754  2020-01-23    Europe                      Macedonia          0
## 1755  2020-01-23    Europe                          Malta          0
## 1756  2020-01-23    Europe                        Moldova          0
## 1757  2020-01-23    Europe                         Monaco          0
## 1758  2020-01-23    Europe                         Monaco          0
## 1759  2020-01-23    Europe                     Montenegro          0
## 1760  2020-01-23    Europe                    Netherlands          0
## 1761  2020-01-23    Europe                    Netherlands          0
## 1762  2020-01-23    Europe                         Norway          0
## 1763  2020-01-23    Europe                         Norway          0
## 1764  2020-01-23    Europe                         Poland          0
## 1765  2020-01-23    Europe                       Portugal          0
## 1766  2020-01-23    Europe                        Romania          0
## 1767  2020-01-23    Europe                        Romania          0
## 1768  2020-01-23    Europe                         Russia          0
## 1769  2020-01-23    Europe                         Russia          0
## 1770  2020-01-23    Europe                     San Marino          0
## 1771  2020-01-23    Europe                     San Marino          0
## 1772  2020-01-23    Europe                         Serbia          0
## 1773  2020-01-23    Europe                       Slovakia          0
## 1774  2020-01-23    Europe                       Slovenia          0
## 1775  2020-01-23    Europe                          Spain          0
## 1776  2020-01-23    Europe                          Spain          0
## 1777  2020-01-23    Europe                         Sweden          0
## 1778  2020-01-23    Europe                         Sweden          0
## 1779  2020-01-23    Europe                    Switzerland          0
## 1780  2020-01-23    Europe                    Switzerland          0
## 1781  2020-01-23    Europe                        Ukraine          0
## 1782  2020-01-23    Europe                 United Kingdom          0
## 1783  2020-01-23    Europe                 United Kingdom          0
## 1784  2020-01-23    Europe                        Vatican          0
## 1785  2020-01-23   Oceania                      Australia          0
## 1786  2020-01-23   Oceania                           Fiji          0
## 1787  2020-01-23   Oceania                    New Zealand          0
## 1788  2020-01-23   Oceania                    New Zealand          0
## 1789  2020-01-23   Oceania               Papua New Guinea          0
## 1790  2020-01-23     Other                      not found          0
## 1791  2020-01-24    Africa                        Algeria          0
## 1792  2020-01-24    Africa                        Algeria          0
## 1793  2020-01-24    Africa                         Angola          0
## 1794  2020-01-24    Africa                          Benin          0
## 1795  2020-01-24    Africa                       Botswana          0
## 1796  2020-01-24    Africa                   Burkina Faso          0
## 1797  2020-01-24    Africa                        Burundi          0
## 1798  2020-01-24    Africa                     Cabo Verde          0
## 1799  2020-01-24    Africa                       Cameroon          0
## 1800  2020-01-24    Africa       Central African Republic          0
## 1801  2020-01-24    Africa                           Chad          0
## 1802  2020-01-24    Africa                        Comoros          0
## 1803  2020-01-24    Africa                 Congo Republic          0
## 1804  2020-01-24    Africa                  Cote d'Ivoire          0
## 1805  2020-01-24    Africa                       DR Congo          0
## 1806  2020-01-24    Africa                       Djibouti          0
## 1807  2020-01-24    Africa                          Egypt          0
## 1808  2020-01-24    Africa                          Egypt          0
## 1809  2020-01-24    Africa              Equatorial Guinea          0
## 1810  2020-01-24    Africa                        Eritrea          0
## 1811  2020-01-24    Africa                       Eswatini          0
## 1812  2020-01-24    Africa                       Ethiopia          0
## 1813  2020-01-24    Africa                          Gabon          0
## 1814  2020-01-24    Africa                         Gambia          0
## 1815  2020-01-24    Africa                          Ghana          0
## 1816  2020-01-24    Africa                         Guinea          0
## 1817  2020-01-24    Africa                  Guinea-Bissau          0
## 1818  2020-01-24    Africa                          Kenya          0
## 1819  2020-01-24    Africa                        Lesotho          0
## 1820  2020-01-24    Africa                        Liberia          0
## 1821  2020-01-24    Africa                          Libya          0
## 1822  2020-01-24    Africa                     Madagascar          0
## 1823  2020-01-24    Africa                         Malawi          0
## 1824  2020-01-24    Africa                           Mali          0
## 1825  2020-01-24    Africa                     Mauritania          0
## 1826  2020-01-24    Africa                      Mauritius          0
## 1827  2020-01-24    Africa                        Morocco          0
## 1828  2020-01-24    Africa                     Mozambique          0
## 1829  2020-01-24    Africa                        Namibia          0
## 1830  2020-01-24    Africa                          Niger          0
## 1831  2020-01-24    Africa                        Nigeria          0
## 1832  2020-01-24    Africa                        Nigeria          0
## 1833  2020-01-24    Africa                         Rwanda          0
## 1834  2020-01-24    Africa          Sao Tome and Principe          0
## 1835  2020-01-24    Africa                        Senegal          0
## 1836  2020-01-24    Africa                     Seychelles          0
## 1837  2020-01-24    Africa                   Sierra Leone          0
## 1838  2020-01-24    Africa                        Somalia          0
## 1839  2020-01-24    Africa                   South Africa          0
## 1840  2020-01-24    Africa                    South Sudan          0
## 1841  2020-01-24    Africa                          Sudan          0
## 1842  2020-01-24    Africa                       Tanzania          0
## 1843  2020-01-24    Africa                           Togo          0
## 1844  2020-01-24    Africa                        Tunisia          0
## 1845  2020-01-24    Africa                         Uganda          0
## 1846  2020-01-24    Africa                 Western Sahara          0
## 1847  2020-01-24    Africa                         Zambia          0
## 1848  2020-01-24    Africa                       Zimbabwe          0
## 1849  2020-01-24   America            Antigua and Barbuda          0
## 1850  2020-01-24   America                      Argentina          0
## 1851  2020-01-24   America                        Bahamas          0
## 1852  2020-01-24   America                       Barbados          0
## 1853  2020-01-24   America                         Belize          0
## 1854  2020-01-24   America                        Bolivia          0
## 1855  2020-01-24   America                         Brazil          0
## 1856  2020-01-24   America                         Brazil          0
## 1857  2020-01-24   America                         Canada          0
## 1858  2020-01-24   America                          Chile          0
## 1859  2020-01-24   America                       Colombia          0
## 1860  2020-01-24   America                     Costa Rica          0
## 1861  2020-01-24   America                           Cuba          0
## 1862  2020-01-24   America                       Dominica          0
## 1863  2020-01-24   America             Dominican Republic          0
## 1864  2020-01-24   America             Dominican Republic          0
## 1865  2020-01-24   America                        Ecuador          0
## 1866  2020-01-24   America                        Ecuador          0
## 1867  2020-01-24   America                    El Salvador          0
## 1868  2020-01-24   America                        Grenada          0
## 1869  2020-01-24   America                      Guatemala          0
## 1870  2020-01-24   America                         Guyana          0
## 1871  2020-01-24   America                          Haiti          0
## 1872  2020-01-24   America                       Honduras          0
## 1873  2020-01-24   America                        Jamaica          0
## 1874  2020-01-24   America                         Mexico          0
## 1875  2020-01-24   America                         Mexico          0
## 1876  2020-01-24   America                      Nicaragua          0
## 1877  2020-01-24   America                         Panama          0
## 1878  2020-01-24   America                       Paraguay          0
## 1879  2020-01-24   America                           Peru          0
## 1880  2020-01-24   America            St. Kitts and Nevis          0
## 1881  2020-01-24   America                      St. Lucia          0
## 1882  2020-01-24   America St. Vincent and the Grenadines          0
## 1883  2020-01-24   America                       Suriname          0
## 1884  2020-01-24   America            Trinidad and Tobago          0
## 1885  2020-01-24   America                  United States          0
## 1886  2020-01-24   America                  United States          1
## 1887  2020-01-24   America                        Uruguay          0
## 1888  2020-01-24   America                      Venezuela          0
## 1889  2020-01-24      Asia                    Afghanistan          0
## 1890  2020-01-24      Asia                    Afghanistan          0
## 1891  2020-01-24      Asia                        Bahrain          0
## 1892  2020-01-24      Asia                        Bahrain          0
## 1893  2020-01-24      Asia                     Bangladesh          0
## 1894  2020-01-24      Asia                         Bhutan          0
## 1895  2020-01-24      Asia              Brunei Darussalam          0
## 1896  2020-01-24      Asia                       Cambodia          0
## 1897  2020-01-24      Asia                       Cambodia          0
## 1898  2020-01-24      Asia                          China        259
## 1899  2020-01-24      Asia                          India          0
## 1900  2020-01-24      Asia                          India          0
## 1901  2020-01-24      Asia                      Indonesia          0
## 1902  2020-01-24      Asia                      Indonesia          0
## 1903  2020-01-24      Asia                           Iran          0
## 1904  2020-01-24      Asia                           Iran          0
## 1905  2020-01-24      Asia                           Iraq          0
## 1906  2020-01-24      Asia                           Iraq          0
## 1907  2020-01-24      Asia                         Israel          0
## 1908  2020-01-24      Asia                         Israel          0
## 1909  2020-01-24      Asia                          Japan          0
## 1910  2020-01-24      Asia                          Japan          1
## 1911  2020-01-24      Asia                         Jordan          0
## 1912  2020-01-24      Asia                     Kazakhstan          0
## 1913  2020-01-24      Asia                         Kuwait          0
## 1914  2020-01-24      Asia                         Kuwait          0
## 1915  2020-01-24      Asia                Kyrgyz Republic          0
## 1916  2020-01-24      Asia                           Laos          0
## 1917  2020-01-24      Asia                        Lebanon          0
## 1918  2020-01-24      Asia                        Lebanon          0
## 1919  2020-01-24      Asia                       Malaysia          0
## 1920  2020-01-24      Asia                       Malaysia          0
## 1921  2020-01-24      Asia                       Maldives          0
## 1922  2020-01-24      Asia                       Mongolia          0
## 1923  2020-01-24      Asia                        Myanmar          0
## 1924  2020-01-24      Asia                          Nepal          0
## 1925  2020-01-24      Asia                          Nepal          0
## 1926  2020-01-24      Asia                           Oman          0
## 1927  2020-01-24      Asia                           Oman          0
## 1928  2020-01-24      Asia                       Pakistan          0
## 1929  2020-01-24      Asia                       Pakistan          0
## 1930  2020-01-24      Asia                      Palestine          0
## 1931  2020-01-24      Asia                    Philippines          0
## 1932  2020-01-24      Asia                    Philippines          0
## 1933  2020-01-24      Asia                          Qatar          0
## 1934  2020-01-24      Asia                          Qatar          0
## 1935  2020-01-24      Asia                   Saudi Arabia          0
## 1936  2020-01-24      Asia                      Singapore          2
## 1937  2020-01-24      Asia                      Singapore          3
## 1938  2020-01-24      Asia                    South Korea          1
## 1939  2020-01-24      Asia                    South Korea          1
## 1940  2020-01-24      Asia                      Sri Lanka          0
## 1941  2020-01-24      Asia                      Sri Lanka          0
## 1942  2020-01-24      Asia                          Syria          0
## 1943  2020-01-24      Asia                     Tajikistan          0
## 1944  2020-01-24      Asia                       Thailand          0
## 1945  2020-01-24      Asia                       Thailand          2
## 1946  2020-01-24      Asia                    Timor-Leste          0
## 1947  2020-01-24      Asia                         Turkey          0
## 1948  2020-01-24      Asia           United Arab Emirates          0
## 1949  2020-01-24      Asia           United Arab Emirates          0
## 1950  2020-01-24      Asia                     Uzbekistan          0
## 1951  2020-01-24      Asia                        Vietnam          0
## 1952  2020-01-24      Asia                        Vietnam          2
## 1953  2020-01-24      Asia                          Yemen          0
## 1954  2020-01-24      Asia                      not found          0
## 1955  2020-01-24    Europe                        Albania          0
## 1956  2020-01-24    Europe                        Andorra          0
## 1957  2020-01-24    Europe                        Armenia          0
## 1958  2020-01-24    Europe                        Armenia          0
## 1959  2020-01-24    Europe                        Austria          0
## 1960  2020-01-24    Europe                        Austria          0
## 1961  2020-01-24    Europe                     Azerbaijan          0
## 1962  2020-01-24    Europe                     Azerbaijan          0
## 1963  2020-01-24    Europe                        Belarus          0
## 1964  2020-01-24    Europe                        Belarus          0
## 1965  2020-01-24    Europe                        Belgium          0
## 1966  2020-01-24    Europe                        Belgium          0
## 1967  2020-01-24    Europe         Bosnia and Herzegovina          0
## 1968  2020-01-24    Europe                       Bulgaria          0
## 1969  2020-01-24    Europe                        Croatia          0
## 1970  2020-01-24    Europe                        Croatia          0
## 1971  2020-01-24    Europe                         Cyprus          0
## 1972  2020-01-24    Europe                 Czech Republic          0
## 1973  2020-01-24    Europe                 Czech Republic          0
## 1974  2020-01-24    Europe                        Denmark          0
## 1975  2020-01-24    Europe                        Denmark          0
## 1976  2020-01-24    Europe                        Estonia          0
## 1977  2020-01-24    Europe                        Estonia          0
## 1978  2020-01-24    Europe                        Finland          0
## 1979  2020-01-24    Europe                        Finland          0
## 1980  2020-01-24    Europe                         France          0
## 1981  2020-01-24    Europe                         France          2
## 1982  2020-01-24    Europe                        Georgia          0
## 1983  2020-01-24    Europe                        Georgia          0
## 1984  2020-01-24    Europe                        Germany          0
## 1985  2020-01-24    Europe                        Germany          0
## 1986  2020-01-24    Europe                         Greece          0
## 1987  2020-01-24    Europe                         Greece          0
## 1988  2020-01-24    Europe                        Hungary          0
## 1989  2020-01-24    Europe                        Iceland          0
## 1990  2020-01-24    Europe                        Iceland          0
## 1991  2020-01-24    Europe                        Ireland          0
## 1992  2020-01-24    Europe                        Ireland          0
## 1993  2020-01-24    Europe                          Italy          0
## 1994  2020-01-24    Europe                          Italy          0
## 1995  2020-01-24    Europe                         Kosovo          0
## 1996  2020-01-24    Europe                         Latvia          0
## 1997  2020-01-24    Europe                  Liechtenstein          0
## 1998  2020-01-24    Europe                      Lithuania          0
## 1999  2020-01-24    Europe                      Lithuania          0
## 2000  2020-01-24    Europe                     Luxembourg          0
## 2001  2020-01-24    Europe                     Luxembourg          0
## 2002  2020-01-24    Europe                      Macedonia          0
## 2003  2020-01-24    Europe                      Macedonia          0
## 2004  2020-01-24    Europe                          Malta          0
## 2005  2020-01-24    Europe                        Moldova          0
## 2006  2020-01-24    Europe                         Monaco          0
## 2007  2020-01-24    Europe                         Monaco          0
## 2008  2020-01-24    Europe                     Montenegro          0
## 2009  2020-01-24    Europe                    Netherlands          0
## 2010  2020-01-24    Europe                    Netherlands          0
## 2011  2020-01-24    Europe                         Norway          0
## 2012  2020-01-24    Europe                         Norway          0
## 2013  2020-01-24    Europe                         Poland          0
## 2014  2020-01-24    Europe                       Portugal          0
## 2015  2020-01-24    Europe                        Romania          0
## 2016  2020-01-24    Europe                        Romania          0
## 2017  2020-01-24    Europe                         Russia          0
## 2018  2020-01-24    Europe                         Russia          0
## 2019  2020-01-24    Europe                     San Marino          0
## 2020  2020-01-24    Europe                     San Marino          0
## 2021  2020-01-24    Europe                         Serbia          0
## 2022  2020-01-24    Europe                       Slovakia          0
## 2023  2020-01-24    Europe                       Slovenia          0
## 2024  2020-01-24    Europe                          Spain          0
## 2025  2020-01-24    Europe                          Spain          0
## 2026  2020-01-24    Europe                         Sweden          0
## 2027  2020-01-24    Europe                         Sweden          0
## 2028  2020-01-24    Europe                    Switzerland          0
## 2029  2020-01-24    Europe                    Switzerland          0
## 2030  2020-01-24    Europe                        Ukraine          0
## 2031  2020-01-24    Europe                 United Kingdom          0
## 2032  2020-01-24    Europe                 United Kingdom          0
## 2033  2020-01-24    Europe                        Vatican          0
## 2034  2020-01-24   Oceania                      Australia          0
## 2035  2020-01-24   Oceania                           Fiji          0
## 2036  2020-01-24   Oceania                    New Zealand          0
## 2037  2020-01-24   Oceania                    New Zealand          0
## 2038  2020-01-24   Oceania               Papua New Guinea          0
## 2039  2020-01-24     Other                      not found          0
## 2040  2020-01-25    Africa                        Algeria          0
## 2041  2020-01-25    Africa                        Algeria          0
## 2042  2020-01-25    Africa                         Angola          0
## 2043  2020-01-25    Africa                          Benin          0
## 2044  2020-01-25    Africa                       Botswana          0
## 2045  2020-01-25    Africa                   Burkina Faso          0
## 2046  2020-01-25    Africa                        Burundi          0
## 2047  2020-01-25    Africa                     Cabo Verde          0
## 2048  2020-01-25    Africa                       Cameroon          0
## 2049  2020-01-25    Africa       Central African Republic          0
## 2050  2020-01-25    Africa                           Chad          0
## 2051  2020-01-25    Africa                        Comoros          0
## 2052  2020-01-25    Africa                 Congo Republic          0
## 2053  2020-01-25    Africa                  Cote d'Ivoire          0
## 2054  2020-01-25    Africa                       DR Congo          0
## 2055  2020-01-25    Africa                       Djibouti          0
## 2056  2020-01-25    Africa                          Egypt          0
## 2057  2020-01-25    Africa                          Egypt          0
## 2058  2020-01-25    Africa              Equatorial Guinea          0
## 2059  2020-01-25    Africa                        Eritrea          0
## 2060  2020-01-25    Africa                       Eswatini          0
## 2061  2020-01-25    Africa                       Ethiopia          0
## 2062  2020-01-25    Africa                          Gabon          0
## 2063  2020-01-25    Africa                         Gambia          0
## 2064  2020-01-25    Africa                          Ghana          0
## 2065  2020-01-25    Africa                         Guinea          0
## 2066  2020-01-25    Africa                  Guinea-Bissau          0
## 2067  2020-01-25    Africa                          Kenya          0
## 2068  2020-01-25    Africa                        Lesotho          0
## 2069  2020-01-25    Africa                        Liberia          0
## 2070  2020-01-25    Africa                          Libya          0
## 2071  2020-01-25    Africa                     Madagascar          0
## 2072  2020-01-25    Africa                         Malawi          0
## 2073  2020-01-25    Africa                           Mali          0
## 2074  2020-01-25    Africa                     Mauritania          0
## 2075  2020-01-25    Africa                      Mauritius          0
## 2076  2020-01-25    Africa                        Morocco          0
## 2077  2020-01-25    Africa                     Mozambique          0
## 2078  2020-01-25    Africa                        Namibia          0
## 2079  2020-01-25    Africa                          Niger          0
## 2080  2020-01-25    Africa                        Nigeria          0
## 2081  2020-01-25    Africa                        Nigeria          0
## 2082  2020-01-25    Africa                         Rwanda          0
## 2083  2020-01-25    Africa          Sao Tome and Principe          0
## 2084  2020-01-25    Africa                        Senegal          0
## 2085  2020-01-25    Africa                     Seychelles          0
## 2086  2020-01-25    Africa                   Sierra Leone          0
## 2087  2020-01-25    Africa                        Somalia          0
## 2088  2020-01-25    Africa                   South Africa          0
## 2089  2020-01-25    Africa                    South Sudan          0
## 2090  2020-01-25    Africa                          Sudan          0
## 2091  2020-01-25    Africa                       Tanzania          0
## 2092  2020-01-25    Africa                           Togo          0
## 2093  2020-01-25    Africa                        Tunisia          0
## 2094  2020-01-25    Africa                         Uganda          0
## 2095  2020-01-25    Africa                 Western Sahara          0
## 2096  2020-01-25    Africa                         Zambia          0
## 2097  2020-01-25    Africa                       Zimbabwe          0
## 2098  2020-01-25   America            Antigua and Barbuda          0
## 2099  2020-01-25   America                      Argentina          0
## 2100  2020-01-25   America                        Bahamas          0
## 2101  2020-01-25   America                       Barbados          0
## 2102  2020-01-25   America                         Belize          0
## 2103  2020-01-25   America                        Bolivia          0
## 2104  2020-01-25   America                         Brazil          0
## 2105  2020-01-25   America                         Brazil          0
## 2106  2020-01-25   America                         Canada          0
## 2107  2020-01-25   America                          Chile          0
## 2108  2020-01-25   America                       Colombia          0
## 2109  2020-01-25   America                     Costa Rica          0
## 2110  2020-01-25   America                           Cuba          0
## 2111  2020-01-25   America                       Dominica          0
## 2112  2020-01-25   America             Dominican Republic          0
## 2113  2020-01-25   America             Dominican Republic          0
## 2114  2020-01-25   America                        Ecuador          0
## 2115  2020-01-25   America                        Ecuador          0
## 2116  2020-01-25   America                    El Salvador          0
## 2117  2020-01-25   America                        Grenada          0
## 2118  2020-01-25   America                      Guatemala          0
## 2119  2020-01-25   America                         Guyana          0
## 2120  2020-01-25   America                          Haiti          0
## 2121  2020-01-25   America                       Honduras          0
## 2122  2020-01-25   America                        Jamaica          0
## 2123  2020-01-25   America                         Mexico          0
## 2124  2020-01-25   America                         Mexico          0
## 2125  2020-01-25   America                      Nicaragua          0
## 2126  2020-01-25   America                         Panama          0
## 2127  2020-01-25   America                       Paraguay          0
## 2128  2020-01-25   America                           Peru          0
## 2129  2020-01-25   America            St. Kitts and Nevis          0
## 2130  2020-01-25   America                      St. Lucia          0
## 2131  2020-01-25   America St. Vincent and the Grenadines          0
## 2132  2020-01-25   America                       Suriname          0
## 2133  2020-01-25   America            Trinidad and Tobago          0
## 2134  2020-01-25   America                  United States          0
## 2135  2020-01-25   America                  United States          1
## 2136  2020-01-25   America                        Uruguay          0
## 2137  2020-01-25   America                      Venezuela          0
## 2138  2020-01-25      Asia                    Afghanistan          0
## 2139  2020-01-25      Asia                    Afghanistan          0
## 2140  2020-01-25      Asia                        Bahrain          0
## 2141  2020-01-25      Asia                        Bahrain          0
## 2142  2020-01-25      Asia                     Bangladesh          0
## 2143  2020-01-25      Asia                         Bhutan          0
## 2144  2020-01-25      Asia              Brunei Darussalam          0
## 2145  2020-01-25      Asia                       Cambodia          0
## 2146  2020-01-25      Asia                       Cambodia          0
## 2147  2020-01-25      Asia                          China        441
## 2148  2020-01-25      Asia                          India          0
## 2149  2020-01-25      Asia                          India          0
## 2150  2020-01-25      Asia                      Indonesia          0
## 2151  2020-01-25      Asia                      Indonesia          0
## 2152  2020-01-25      Asia                           Iran          0
## 2153  2020-01-25      Asia                           Iran          0
## 2154  2020-01-25      Asia                           Iraq          0
## 2155  2020-01-25      Asia                           Iraq          0
## 2156  2020-01-25      Asia                         Israel          0
## 2157  2020-01-25      Asia                         Israel          0
## 2158  2020-01-25      Asia                          Japan          0
## 2159  2020-01-25      Asia                          Japan          0
## 2160  2020-01-25      Asia                         Jordan          0
## 2161  2020-01-25      Asia                     Kazakhstan          0
## 2162  2020-01-25      Asia                         Kuwait          0
## 2163  2020-01-25      Asia                         Kuwait          0
## 2164  2020-01-25      Asia                Kyrgyz Republic          0
## 2165  2020-01-25      Asia                           Laos          0
## 2166  2020-01-25      Asia                        Lebanon          0
## 2167  2020-01-25      Asia                        Lebanon          0
## 2168  2020-01-25      Asia                       Malaysia          3
## 2169  2020-01-25      Asia                       Malaysia          3
## 2170  2020-01-25      Asia                       Maldives          0
## 2171  2020-01-25      Asia                       Mongolia          0
## 2172  2020-01-25      Asia                        Myanmar          0
## 2173  2020-01-25      Asia                          Nepal          1
## 2174  2020-01-25      Asia                          Nepal          1
## 2175  2020-01-25      Asia                           Oman          0
## 2176  2020-01-25      Asia                           Oman          0
## 2177  2020-01-25      Asia                       Pakistan          0
## 2178  2020-01-25      Asia                       Pakistan          0
## 2179  2020-01-25      Asia                      Palestine          0
## 2180  2020-01-25      Asia                    Philippines          0
## 2181  2020-01-25      Asia                    Philippines          0
## 2182  2020-01-25      Asia                          Qatar          0
## 2183  2020-01-25      Asia                          Qatar          0
## 2184  2020-01-25      Asia                   Saudi Arabia          0
## 2185  2020-01-25      Asia                      Singapore          0
## 2186  2020-01-25      Asia                      Singapore          0
## 2187  2020-01-25      Asia                    South Korea          0
## 2188  2020-01-25      Asia                    South Korea          0
## 2189  2020-01-25      Asia                      Sri Lanka          0
## 2190  2020-01-25      Asia                      Sri Lanka          0
## 2191  2020-01-25      Asia                          Syria          0
## 2192  2020-01-25      Asia                     Tajikistan          0
## 2193  2020-01-25      Asia                       Thailand          1
## 2194  2020-01-25      Asia                       Thailand          2
## 2195  2020-01-25      Asia                    Timor-Leste          0
## 2196  2020-01-25      Asia                         Turkey          0
## 2197  2020-01-25      Asia           United Arab Emirates          0
## 2198  2020-01-25      Asia           United Arab Emirates          0
## 2199  2020-01-25      Asia                     Uzbekistan          0
## 2200  2020-01-25      Asia                        Vietnam          0
## 2201  2020-01-25      Asia                        Vietnam          0
## 2202  2020-01-25      Asia                          Yemen          0
## 2203  2020-01-25      Asia                      not found          2
## 2204  2020-01-25    Europe                        Albania          0
## 2205  2020-01-25    Europe                        Andorra          0
## 2206  2020-01-25    Europe                        Armenia          0
## 2207  2020-01-25    Europe                        Armenia          0
## 2208  2020-01-25    Europe                        Austria          0
## 2209  2020-01-25    Europe                        Austria          0
## 2210  2020-01-25    Europe                     Azerbaijan          0
## 2211  2020-01-25    Europe                     Azerbaijan          0
## 2212  2020-01-25    Europe                        Belarus          0
## 2213  2020-01-25    Europe                        Belarus          0
## 2214  2020-01-25    Europe                        Belgium          0
## 2215  2020-01-25    Europe                        Belgium          0
## 2216  2020-01-25    Europe         Bosnia and Herzegovina          0
## 2217  2020-01-25    Europe                       Bulgaria          0
## 2218  2020-01-25    Europe                        Croatia          0
## 2219  2020-01-25    Europe                        Croatia          0
## 2220  2020-01-25    Europe                         Cyprus          0
## 2221  2020-01-25    Europe                 Czech Republic          0
## 2222  2020-01-25    Europe                 Czech Republic          0
## 2223  2020-01-25    Europe                        Denmark          0
## 2224  2020-01-25    Europe                        Denmark          0
## 2225  2020-01-25    Europe                        Estonia          0
## 2226  2020-01-25    Europe                        Estonia          0
## 2227  2020-01-25    Europe                        Finland          0
## 2228  2020-01-25    Europe                        Finland          0
## 2229  2020-01-25    Europe                         France          1
## 2230  2020-01-25    Europe                         France          3
## 2231  2020-01-25    Europe                        Georgia          0
## 2232  2020-01-25    Europe                        Georgia          0
## 2233  2020-01-25    Europe                        Germany          0
## 2234  2020-01-25    Europe                        Germany          0
## 2235  2020-01-25    Europe                         Greece          0
## 2236  2020-01-25    Europe                         Greece          0
## 2237  2020-01-25    Europe                        Hungary          0
## 2238  2020-01-25    Europe                        Iceland          0
## 2239  2020-01-25    Europe                        Iceland          0
## 2240  2020-01-25    Europe                        Ireland          0
## 2241  2020-01-25    Europe                        Ireland          0
## 2242  2020-01-25    Europe                          Italy          0
## 2243  2020-01-25    Europe                          Italy          0
## 2244  2020-01-25    Europe                         Kosovo          0
## 2245  2020-01-25    Europe                         Latvia          0
## 2246  2020-01-25    Europe                  Liechtenstein          0
## 2247  2020-01-25    Europe                      Lithuania          0
## 2248  2020-01-25    Europe                      Lithuania          0
## 2249  2020-01-25    Europe                     Luxembourg          0
## 2250  2020-01-25    Europe                     Luxembourg          0
## 2251  2020-01-25    Europe                      Macedonia          0
## 2252  2020-01-25    Europe                      Macedonia          0
## 2253  2020-01-25    Europe                          Malta          0
## 2254  2020-01-25    Europe                        Moldova          0
## 2255  2020-01-25    Europe                         Monaco          0
## 2256  2020-01-25    Europe                         Monaco          0
## 2257  2020-01-25    Europe                     Montenegro          0
## 2258  2020-01-25    Europe                    Netherlands          0
## 2259  2020-01-25    Europe                    Netherlands          0
## 2260  2020-01-25    Europe                         Norway          0
## 2261  2020-01-25    Europe                         Norway          0
## 2262  2020-01-25    Europe                         Poland          0
## 2263  2020-01-25    Europe                       Portugal          0
## 2264  2020-01-25    Europe                        Romania          0
## 2265  2020-01-25    Europe                        Romania          0
## 2266  2020-01-25    Europe                         Russia          0
## 2267  2020-01-25    Europe                         Russia          0
## 2268  2020-01-25    Europe                     San Marino          0
## 2269  2020-01-25    Europe                     San Marino          0
## 2270  2020-01-25    Europe                         Serbia          0
## 2271  2020-01-25    Europe                       Slovakia          0
## 2272  2020-01-25    Europe                       Slovenia          0
## 2273  2020-01-25    Europe                          Spain          0
## 2274  2020-01-25    Europe                          Spain          0
## 2275  2020-01-25    Europe                         Sweden          0
## 2276  2020-01-25    Europe                         Sweden          0
## 2277  2020-01-25    Europe                    Switzerland          0
## 2278  2020-01-25    Europe                    Switzerland          0
## 2279  2020-01-25    Europe                        Ukraine          0
## 2280  2020-01-25    Europe                 United Kingdom          0
## 2281  2020-01-25    Europe                 United Kingdom          0
## 2282  2020-01-25    Europe                        Vatican          0
## 2283  2020-01-25   Oceania                      Australia          1
## 2284  2020-01-25   Oceania                           Fiji          0
## 2285  2020-01-25   Oceania                    New Zealand          0
## 2286  2020-01-25   Oceania                    New Zealand          0
## 2287  2020-01-25   Oceania               Papua New Guinea          0
## 2288  2020-01-25     Other                      not found          0
## 2289  2020-01-26    Africa                        Algeria          0
## 2290  2020-01-26    Africa                        Algeria          0
## 2291  2020-01-26    Africa                         Angola          0
## 2292  2020-01-26    Africa                          Benin          0
## 2293  2020-01-26    Africa                       Botswana          0
## 2294  2020-01-26    Africa                   Burkina Faso          0
## 2295  2020-01-26    Africa                        Burundi          0
## 2296  2020-01-26    Africa                     Cabo Verde          0
## 2297  2020-01-26    Africa                       Cameroon          0
## 2298  2020-01-26    Africa       Central African Republic          0
## 2299  2020-01-26    Africa                           Chad          0
## 2300  2020-01-26    Africa                        Comoros          0
## 2301  2020-01-26    Africa                 Congo Republic          0
## 2302  2020-01-26    Africa                  Cote d'Ivoire          0
## 2303  2020-01-26    Africa                       DR Congo          0
## 2304  2020-01-26    Africa                       Djibouti          0
## 2305  2020-01-26    Africa                          Egypt          0
## 2306  2020-01-26    Africa                          Egypt          0
## 2307  2020-01-26    Africa              Equatorial Guinea          0
## 2308  2020-01-26    Africa                        Eritrea          0
## 2309  2020-01-26    Africa                       Eswatini          0
## 2310  2020-01-26    Africa                       Ethiopia          0
## 2311  2020-01-26    Africa                          Gabon          0
## 2312  2020-01-26    Africa                         Gambia          0
## 2313  2020-01-26    Africa                          Ghana          0
## 2314  2020-01-26    Africa                         Guinea          0
## 2315  2020-01-26    Africa                  Guinea-Bissau          0
## 2316  2020-01-26    Africa                          Kenya          0
## 2317  2020-01-26    Africa                        Lesotho          0
## 2318  2020-01-26    Africa                        Liberia          0
## 2319  2020-01-26    Africa                          Libya          0
## 2320  2020-01-26    Africa                     Madagascar          0
## 2321  2020-01-26    Africa                         Malawi          0
## 2322  2020-01-26    Africa                           Mali          0
## 2323  2020-01-26    Africa                     Mauritania          0
## 2324  2020-01-26    Africa                      Mauritius          0
## 2325  2020-01-26    Africa                        Morocco          0
## 2326  2020-01-26    Africa                     Mozambique          0
## 2327  2020-01-26    Africa                        Namibia          0
## 2328  2020-01-26    Africa                          Niger          0
## 2329  2020-01-26    Africa                        Nigeria          0
## 2330  2020-01-26    Africa                        Nigeria          0
## 2331  2020-01-26    Africa                         Rwanda          0
## 2332  2020-01-26    Africa          Sao Tome and Principe          0
## 2333  2020-01-26    Africa                        Senegal          0
## 2334  2020-01-26    Africa                     Seychelles          0
## 2335  2020-01-26    Africa                   Sierra Leone          0
## 2336  2020-01-26    Africa                        Somalia          0
## 2337  2020-01-26    Africa                   South Africa          0
## 2338  2020-01-26    Africa                    South Sudan          0
## 2339  2020-01-26    Africa                          Sudan          0
## 2340  2020-01-26    Africa                       Tanzania          0
## 2341  2020-01-26    Africa                           Togo          0
## 2342  2020-01-26    Africa                        Tunisia          0
## 2343  2020-01-26    Africa                         Uganda          0
## 2344  2020-01-26    Africa                 Western Sahara          0
## 2345  2020-01-26    Africa                         Zambia          0
## 2346  2020-01-26    Africa                       Zimbabwe          0
## 2347  2020-01-26   America            Antigua and Barbuda          0
## 2348  2020-01-26   America                      Argentina          0
## 2349  2020-01-26   America                        Bahamas          0
## 2350  2020-01-26   America                       Barbados          0
## 2351  2020-01-26   America                         Belize          0
## 2352  2020-01-26   America                        Bolivia          0
## 2353  2020-01-26   America                         Brazil          0
## 2354  2020-01-26   America                         Brazil          0
## 2355  2020-01-26   America                         Canada          1
## 2356  2020-01-26   America                          Chile          0
## 2357  2020-01-26   America                       Colombia          0
## 2358  2020-01-26   America                     Costa Rica          0
## 2359  2020-01-26   America                           Cuba          0
## 2360  2020-01-26   America                       Dominica          0
## 2361  2020-01-26   America             Dominican Republic          0
## 2362  2020-01-26   America             Dominican Republic          0
## 2363  2020-01-26   America                        Ecuador          0
## 2364  2020-01-26   America                        Ecuador          0
## 2365  2020-01-26   America                    El Salvador          0
## 2366  2020-01-26   America                        Grenada          0
## 2367  2020-01-26   America                      Guatemala          0
## 2368  2020-01-26   America                         Guyana          0
## 2369  2020-01-26   America                          Haiti          0
## 2370  2020-01-26   America                       Honduras          0
## 2371  2020-01-26   America                        Jamaica          0
## 2372  2020-01-26   America                         Mexico          0
## 2373  2020-01-26   America                         Mexico          0
## 2374  2020-01-26   America                      Nicaragua          0
## 2375  2020-01-26   America                         Panama          0
## 2376  2020-01-26   America                       Paraguay          0
## 2377  2020-01-26   America                           Peru          0
## 2378  2020-01-26   America            St. Kitts and Nevis          0
## 2379  2020-01-26   America                      St. Lucia          0
## 2380  2020-01-26   America St. Vincent and the Grenadines          0
## 2381  2020-01-26   America                       Suriname          0
## 2382  2020-01-26   America            Trinidad and Tobago          0
## 2383  2020-01-26   America                  United States          0
## 2384  2020-01-26   America                  United States          3
## 2385  2020-01-26   America                        Uruguay          0
## 2386  2020-01-26   America                      Venezuela          0
## 2387  2020-01-26      Asia                    Afghanistan          0
## 2388  2020-01-26      Asia                    Afghanistan          0
## 2389  2020-01-26      Asia                        Bahrain          0
## 2390  2020-01-26      Asia                        Bahrain          0
## 2391  2020-01-26      Asia                     Bangladesh          0
## 2392  2020-01-26      Asia                         Bhutan          0
## 2393  2020-01-26      Asia              Brunei Darussalam          0
## 2394  2020-01-26      Asia                       Cambodia          0
## 2395  2020-01-26      Asia                       Cambodia          0
## 2396  2020-01-26      Asia                          China        665
## 2397  2020-01-26      Asia                          India          0
## 2398  2020-01-26      Asia                          India          0
## 2399  2020-01-26      Asia                      Indonesia          0
## 2400  2020-01-26      Asia                      Indonesia          0
## 2401  2020-01-26      Asia                           Iran          0
## 2402  2020-01-26      Asia                           Iran          0
## 2403  2020-01-26      Asia                           Iraq          0
## 2404  2020-01-26      Asia                           Iraq          0
## 2405  2020-01-26      Asia                         Israel          0
## 2406  2020-01-26      Asia                         Israel          0
## 2407  2020-01-26      Asia                          Japan          1
## 2408  2020-01-26      Asia                          Japan          2
## 2409  2020-01-26      Asia                         Jordan          0
## 2410  2020-01-26      Asia                     Kazakhstan          0
## 2411  2020-01-26      Asia                         Kuwait          0
## 2412  2020-01-26      Asia                         Kuwait          0
## 2413  2020-01-26      Asia                Kyrgyz Republic          0
## 2414  2020-01-26      Asia                           Laos          0
## 2415  2020-01-26      Asia                        Lebanon          0
## 2416  2020-01-26      Asia                        Lebanon          0
## 2417  2020-01-26      Asia                       Malaysia          1
## 2418  2020-01-26      Asia                       Malaysia          1
## 2419  2020-01-26      Asia                       Maldives          0
## 2420  2020-01-26      Asia                       Mongolia          0
## 2421  2020-01-26      Asia                        Myanmar          0
## 2422  2020-01-26      Asia                          Nepal          0
## 2423  2020-01-26      Asia                          Nepal          0
## 2424  2020-01-26      Asia                           Oman          0
## 2425  2020-01-26      Asia                           Oman          0
## 2426  2020-01-26      Asia                       Pakistan          0
## 2427  2020-01-26      Asia                       Pakistan          0
## 2428  2020-01-26      Asia                      Palestine          0
## 2429  2020-01-26      Asia                    Philippines          0
## 2430  2020-01-26      Asia                    Philippines          0
## 2431  2020-01-26      Asia                          Qatar          0
## 2432  2020-01-26      Asia                          Qatar          0
## 2433  2020-01-26      Asia                   Saudi Arabia          0
## 2434  2020-01-26      Asia                      Singapore          1
## 2435  2020-01-26      Asia                      Singapore          1
## 2436  2020-01-26      Asia                    South Korea          1
## 2437  2020-01-26      Asia                    South Korea          1
## 2438  2020-01-26      Asia                      Sri Lanka          0
## 2439  2020-01-26      Asia                      Sri Lanka          0
## 2440  2020-01-26      Asia                          Syria          0
## 2441  2020-01-26      Asia                     Tajikistan          0
## 2442  2020-01-26      Asia                       Thailand          0
## 2443  2020-01-26      Asia                       Thailand          1
## 2444  2020-01-26      Asia                    Timor-Leste          0
## 2445  2020-01-26      Asia                         Turkey          0
## 2446  2020-01-26      Asia           United Arab Emirates          0
## 2447  2020-01-26      Asia           United Arab Emirates          0
## 2448  2020-01-26      Asia                     Uzbekistan          0
## 2449  2020-01-26      Asia                        Vietnam          0
## 2450  2020-01-26      Asia                        Vietnam          0
## 2451  2020-01-26      Asia                          Yemen          0
## 2452  2020-01-26      Asia                      not found          0
## 2453  2020-01-26    Europe                        Albania          0
## 2454  2020-01-26    Europe                        Andorra          0
## 2455  2020-01-26    Europe                        Armenia          0
## 2456  2020-01-26    Europe                        Armenia          0
## 2457  2020-01-26    Europe                        Austria          0
## 2458  2020-01-26    Europe                        Austria          0
## 2459  2020-01-26    Europe                     Azerbaijan          0
## 2460  2020-01-26    Europe                     Azerbaijan          0
## 2461  2020-01-26    Europe                        Belarus          0
## 2462  2020-01-26    Europe                        Belarus          0
## 2463  2020-01-26    Europe                        Belgium          0
## 2464  2020-01-26    Europe                        Belgium          0
## 2465  2020-01-26    Europe         Bosnia and Herzegovina          0
## 2466  2020-01-26    Europe                       Bulgaria          0
## 2467  2020-01-26    Europe                        Croatia          0
## 2468  2020-01-26    Europe                        Croatia          0
## 2469  2020-01-26    Europe                         Cyprus          0
## 2470  2020-01-26    Europe                 Czech Republic          0
## 2471  2020-01-26    Europe                 Czech Republic          0
## 2472  2020-01-26    Europe                        Denmark          0
## 2473  2020-01-26    Europe                        Denmark          0
## 2474  2020-01-26    Europe                        Estonia          0
## 2475  2020-01-26    Europe                        Estonia          0
## 2476  2020-01-26    Europe                        Finland          0
## 2477  2020-01-26    Europe                        Finland          0
## 2478  2020-01-26    Europe                         France          0
## 2479  2020-01-26    Europe                         France          0
## 2480  2020-01-26    Europe                        Georgia          0
## 2481  2020-01-26    Europe                        Georgia          0
## 2482  2020-01-26    Europe                        Germany          0
## 2483  2020-01-26    Europe                        Germany          0
## 2484  2020-01-26    Europe                         Greece          0
## 2485  2020-01-26    Europe                         Greece          0
## 2486  2020-01-26    Europe                        Hungary          0
## 2487  2020-01-26    Europe                        Iceland          0
## 2488  2020-01-26    Europe                        Iceland          0
## 2489  2020-01-26    Europe                        Ireland          0
## 2490  2020-01-26    Europe                        Ireland          0
## 2491  2020-01-26    Europe                          Italy          0
## 2492  2020-01-26    Europe                          Italy          0
## 2493  2020-01-26    Europe                         Kosovo          0
## 2494  2020-01-26    Europe                         Latvia          0
## 2495  2020-01-26    Europe                  Liechtenstein          0
## 2496  2020-01-26    Europe                      Lithuania          0
## 2497  2020-01-26    Europe                      Lithuania          0
## 2498  2020-01-26    Europe                     Luxembourg          0
## 2499  2020-01-26    Europe                     Luxembourg          0
## 2500  2020-01-26    Europe                      Macedonia          0
## 2501  2020-01-26    Europe                      Macedonia          0
## 2502  2020-01-26    Europe                          Malta          0
## 2503  2020-01-26    Europe                        Moldova          0
## 2504  2020-01-26    Europe                         Monaco          0
## 2505  2020-01-26    Europe                         Monaco          0
## 2506  2020-01-26    Europe                     Montenegro          0
## 2507  2020-01-26    Europe                    Netherlands          0
## 2508  2020-01-26    Europe                    Netherlands          0
## 2509  2020-01-26    Europe                         Norway          0
## 2510  2020-01-26    Europe                         Norway          0
## 2511  2020-01-26    Europe                         Poland          0
## 2512  2020-01-26    Europe                       Portugal          0
## 2513  2020-01-26    Europe                        Romania          0
## 2514  2020-01-26    Europe                        Romania          0
## 2515  2020-01-26    Europe                         Russia          0
## 2516  2020-01-26    Europe                         Russia          0
## 2517  2020-01-26    Europe                     San Marino          0
## 2518  2020-01-26    Europe                     San Marino          0
## 2519  2020-01-26    Europe                         Serbia          0
## 2520  2020-01-26    Europe                       Slovakia          0
## 2521  2020-01-26    Europe                       Slovenia          0
## 2522  2020-01-26    Europe                          Spain          0
## 2523  2020-01-26    Europe                          Spain          0
## 2524  2020-01-26    Europe                         Sweden          0
## 2525  2020-01-26    Europe                         Sweden          0
## 2526  2020-01-26    Europe                    Switzerland          0
## 2527  2020-01-26    Europe                    Switzerland          0
## 2528  2020-01-26    Europe                        Ukraine          0
## 2529  2020-01-26    Europe                 United Kingdom          0
## 2530  2020-01-26    Europe                 United Kingdom          0
## 2531  2020-01-26    Europe                        Vatican          0
## 2532  2020-01-26   Oceania                      Australia          3
## 2533  2020-01-26   Oceania                           Fiji          0
## 2534  2020-01-26   Oceania                    New Zealand          0
## 2535  2020-01-26   Oceania                    New Zealand          0
## 2536  2020-01-26   Oceania               Papua New Guinea          0
## 2537  2020-01-26     Other                      not found          0
## 2538  2020-01-27    Africa                        Algeria          0
## 2539  2020-01-27    Africa                        Algeria          0
## 2540  2020-01-27    Africa                         Angola          0
## 2541  2020-01-27    Africa                          Benin          0
## 2542  2020-01-27    Africa                       Botswana          0
## 2543  2020-01-27    Africa                   Burkina Faso          0
## 2544  2020-01-27    Africa                        Burundi          0
## 2545  2020-01-27    Africa                     Cabo Verde          0
## 2546  2020-01-27    Africa                       Cameroon          0
## 2547  2020-01-27    Africa       Central African Republic          0
## 2548  2020-01-27    Africa                           Chad          0
## 2549  2020-01-27    Africa                        Comoros          0
## 2550  2020-01-27    Africa                 Congo Republic          0
## 2551  2020-01-27    Africa                  Cote d'Ivoire          0
## 2552  2020-01-27    Africa                       DR Congo          0
## 2553  2020-01-27    Africa                       Djibouti          0
## 2554  2020-01-27    Africa                          Egypt          0
## 2555  2020-01-27    Africa                          Egypt          0
## 2556  2020-01-27    Africa              Equatorial Guinea          0
## 2557  2020-01-27    Africa                        Eritrea          0
## 2558  2020-01-27    Africa                       Eswatini          0
## 2559  2020-01-27    Africa                       Ethiopia          0
## 2560  2020-01-27    Africa                          Gabon          0
## 2561  2020-01-27    Africa                         Gambia          0
## 2562  2020-01-27    Africa                          Ghana          0
## 2563  2020-01-27    Africa                         Guinea          0
## 2564  2020-01-27    Africa                  Guinea-Bissau          0
## 2565  2020-01-27    Africa                          Kenya          0
## 2566  2020-01-27    Africa                        Lesotho          0
## 2567  2020-01-27    Africa                        Liberia          0
## 2568  2020-01-27    Africa                          Libya          0
## 2569  2020-01-27    Africa                     Madagascar          0
## 2570  2020-01-27    Africa                         Malawi          0
## 2571  2020-01-27    Africa                           Mali          0
## 2572  2020-01-27    Africa                     Mauritania          0
## 2573  2020-01-27    Africa                      Mauritius          0
## 2574  2020-01-27    Africa                        Morocco          0
## 2575  2020-01-27    Africa                     Mozambique          0
## 2576  2020-01-27    Africa                        Namibia          0
## 2577  2020-01-27    Africa                          Niger          0
## 2578  2020-01-27    Africa                        Nigeria          0
## 2579  2020-01-27    Africa                        Nigeria          0
## 2580  2020-01-27    Africa                         Rwanda          0
## 2581  2020-01-27    Africa          Sao Tome and Principe          0
## 2582  2020-01-27    Africa                        Senegal          0
## 2583  2020-01-27    Africa                     Seychelles          0
## 2584  2020-01-27    Africa                   Sierra Leone          0
## 2585  2020-01-27    Africa                        Somalia          0
## 2586  2020-01-27    Africa                   South Africa          0
## 2587  2020-01-27    Africa                    South Sudan          0
## 2588  2020-01-27    Africa                          Sudan          0
## 2589  2020-01-27    Africa                       Tanzania          0
## 2590  2020-01-27    Africa                           Togo          0
## 2591  2020-01-27    Africa                        Tunisia          0
## 2592  2020-01-27    Africa                         Uganda          0
## 2593  2020-01-27    Africa                 Western Sahara          0
## 2594  2020-01-27    Africa                         Zambia          0
## 2595  2020-01-27    Africa                       Zimbabwe          0
## 2596  2020-01-27   America            Antigua and Barbuda          0
## 2597  2020-01-27   America                      Argentina          0
## 2598  2020-01-27   America                        Bahamas          0
## 2599  2020-01-27   America                       Barbados          0
## 2600  2020-01-27   America                         Belize          0
## 2601  2020-01-27   America                        Bolivia          0
## 2602  2020-01-27   America                         Brazil          0
## 2603  2020-01-27   America                         Brazil          0
## 2604  2020-01-27   America                         Canada          0
## 2605  2020-01-27   America                          Chile          0
## 2606  2020-01-27   America                       Colombia          0
## 2607  2020-01-27   America                     Costa Rica          0
## 2608  2020-01-27   America                           Cuba          0
## 2609  2020-01-27   America                       Dominica          0
## 2610  2020-01-27   America             Dominican Republic          0
## 2611  2020-01-27   America             Dominican Republic          0
## 2612  2020-01-27   America                        Ecuador          0
## 2613  2020-01-27   America                        Ecuador          0
## 2614  2020-01-27   America                    El Salvador          0
## 2615  2020-01-27   America                        Grenada          0
## 2616  2020-01-27   America                      Guatemala          0
## 2617  2020-01-27   America                         Guyana          0
## 2618  2020-01-27   America                          Haiti          0
## 2619  2020-01-27   America                       Honduras          0
## 2620  2020-01-27   America                        Jamaica          0
## 2621  2020-01-27   America                         Mexico          0
## 2622  2020-01-27   America                         Mexico          0
## 2623  2020-01-27   America                      Nicaragua          0
## 2624  2020-01-27   America                         Panama          0
## 2625  2020-01-27   America                       Paraguay          0
## 2626  2020-01-27   America                           Peru          0
## 2627  2020-01-27   America            St. Kitts and Nevis          0
## 2628  2020-01-27   America                      St. Lucia          0
## 2629  2020-01-27   America St. Vincent and the Grenadines          0
## 2630  2020-01-27   America                       Suriname          0
## 2631  2020-01-27   America            Trinidad and Tobago          0
## 2632  2020-01-27   America                  United States          0
## 2633  2020-01-27   America                  United States          3
## 2634  2020-01-27   America                        Uruguay          0
## 2635  2020-01-27   America                      Venezuela          0
## 2636  2020-01-27      Asia                    Afghanistan          0
## 2637  2020-01-27      Asia                    Afghanistan          0
## 2638  2020-01-27      Asia                        Bahrain          0
## 2639  2020-01-27      Asia                        Bahrain          0
## 2640  2020-01-27      Asia                     Bangladesh          0
## 2641  2020-01-27      Asia                         Bhutan          0
## 2642  2020-01-27      Asia              Brunei Darussalam          0
## 2643  2020-01-27      Asia                       Cambodia          0
## 2644  2020-01-27      Asia                       Cambodia          1
## 2645  2020-01-27      Asia                          China        787
## 2646  2020-01-27      Asia                          India          0
## 2647  2020-01-27      Asia                          India          0
## 2648  2020-01-27      Asia                      Indonesia          0
## 2649  2020-01-27      Asia                      Indonesia          0
## 2650  2020-01-27      Asia                           Iran          0
## 2651  2020-01-27      Asia                           Iran          0
## 2652  2020-01-27      Asia                           Iraq          0
## 2653  2020-01-27      Asia                           Iraq          0
## 2654  2020-01-27      Asia                         Israel          0
## 2655  2020-01-27      Asia                         Israel          0
## 2656  2020-01-27      Asia                          Japan          0
## 2657  2020-01-27      Asia                          Japan          0
## 2658  2020-01-27      Asia                         Jordan          0
## 2659  2020-01-27      Asia                     Kazakhstan          0
## 2660  2020-01-27      Asia                         Kuwait          0
## 2661  2020-01-27      Asia                         Kuwait          0
## 2662  2020-01-27      Asia                Kyrgyz Republic          0
## 2663  2020-01-27      Asia                           Laos          0
## 2664  2020-01-27      Asia                        Lebanon          0
## 2665  2020-01-27      Asia                        Lebanon          0
## 2666  2020-01-27      Asia                       Malaysia          0
## 2667  2020-01-27      Asia                       Malaysia          0
## 2668  2020-01-27      Asia                       Maldives          0
## 2669  2020-01-27      Asia                       Mongolia          0
## 2670  2020-01-27      Asia                        Myanmar          0
## 2671  2020-01-27      Asia                          Nepal          0
## 2672  2020-01-27      Asia                          Nepal          0
## 2673  2020-01-27      Asia                           Oman          0
## 2674  2020-01-27      Asia                           Oman          0
## 2675  2020-01-27      Asia                       Pakistan          0
## 2676  2020-01-27      Asia                       Pakistan          0
## 2677  2020-01-27      Asia                      Palestine          0
## 2678  2020-01-27      Asia                    Philippines          0
## 2679  2020-01-27      Asia                    Philippines          0
## 2680  2020-01-27      Asia                          Qatar          0
## 2681  2020-01-27      Asia                          Qatar          0
## 2682  2020-01-27      Asia                   Saudi Arabia          0
## 2683  2020-01-27      Asia                      Singapore          0
## 2684  2020-01-27      Asia                      Singapore          1
## 2685  2020-01-27      Asia                    South Korea          1
## 2686  2020-01-27      Asia                    South Korea          1
## 2687  2020-01-27      Asia                      Sri Lanka          0
## 2688  2020-01-27      Asia                      Sri Lanka          1
## 2689  2020-01-27      Asia                          Syria          0
## 2690  2020-01-27      Asia                     Tajikistan          0
## 2691  2020-01-27      Asia                       Thailand          0
## 2692  2020-01-27      Asia                       Thailand          3
## 2693  2020-01-27      Asia                    Timor-Leste          0
## 2694  2020-01-27      Asia                         Turkey          0
## 2695  2020-01-27      Asia           United Arab Emirates          0
## 2696  2020-01-27      Asia           United Arab Emirates          1
## 2697  2020-01-27      Asia                     Uzbekistan          0
## 2698  2020-01-27      Asia                        Vietnam          0
## 2699  2020-01-27      Asia                        Vietnam          0
## 2700  2020-01-27      Asia                          Yemen          0
## 2701  2020-01-27      Asia                      not found          2
## 2702  2020-01-27    Europe                        Albania          0
## 2703  2020-01-27    Europe                        Andorra          0
## 2704  2020-01-27    Europe                        Armenia          0
## 2705  2020-01-27    Europe                        Armenia          0
## 2706  2020-01-27    Europe                        Austria          0
## 2707  2020-01-27    Europe                        Austria          0
## 2708  2020-01-27    Europe                     Azerbaijan          0
## 2709  2020-01-27    Europe                     Azerbaijan          0
## 2710  2020-01-27    Europe                        Belarus          0
## 2711  2020-01-27    Europe                        Belarus          0
## 2712  2020-01-27    Europe                        Belgium          0
## 2713  2020-01-27    Europe                        Belgium          0
## 2714  2020-01-27    Europe         Bosnia and Herzegovina          0
## 2715  2020-01-27    Europe                       Bulgaria          0
## 2716  2020-01-27    Europe                        Croatia          0
## 2717  2020-01-27    Europe                        Croatia          0
## 2718  2020-01-27    Europe                         Cyprus          0
## 2719  2020-01-27    Europe                 Czech Republic          0
## 2720  2020-01-27    Europe                 Czech Republic          0
## 2721  2020-01-27    Europe                        Denmark          0
## 2722  2020-01-27    Europe                        Denmark          0
## 2723  2020-01-27    Europe                        Estonia          0
## 2724  2020-01-27    Europe                        Estonia          0
## 2725  2020-01-27    Europe                        Finland          0
## 2726  2020-01-27    Europe                        Finland          0
## 2727  2020-01-27    Europe                         France          0
## 2728  2020-01-27    Europe                         France          0
## 2729  2020-01-27    Europe                        Georgia          0
## 2730  2020-01-27    Europe                        Georgia          0
## 2731  2020-01-27    Europe                        Germany          0
## 2732  2020-01-27    Europe                        Germany          1
## 2733  2020-01-27    Europe                         Greece          0
## 2734  2020-01-27    Europe                         Greece          0
## 2735  2020-01-27    Europe                        Hungary          0
## 2736  2020-01-27    Europe                        Iceland          0
## 2737  2020-01-27    Europe                        Iceland          0
## 2738  2020-01-27    Europe                        Ireland          0
## 2739  2020-01-27    Europe                        Ireland          0
## 2740  2020-01-27    Europe                          Italy          0
## 2741  2020-01-27    Europe                          Italy          0
## 2742  2020-01-27    Europe                         Kosovo          0
## 2743  2020-01-27    Europe                         Latvia          0
## 2744  2020-01-27    Europe                  Liechtenstein          0
## 2745  2020-01-27    Europe                      Lithuania          0
## 2746  2020-01-27    Europe                      Lithuania          0
## 2747  2020-01-27    Europe                     Luxembourg          0
## 2748  2020-01-27    Europe                     Luxembourg          0
## 2749  2020-01-27    Europe                      Macedonia          0
## 2750  2020-01-27    Europe                      Macedonia          0
## 2751  2020-01-27    Europe                          Malta          0
## 2752  2020-01-27    Europe                        Moldova          0
## 2753  2020-01-27    Europe                         Monaco          0
## 2754  2020-01-27    Europe                         Monaco          0
## 2755  2020-01-27    Europe                     Montenegro          0
## 2756  2020-01-27    Europe                    Netherlands          0
## 2757  2020-01-27    Europe                    Netherlands          0
## 2758  2020-01-27    Europe                         Norway          0
## 2759  2020-01-27    Europe                         Norway          0
## 2760  2020-01-27    Europe                         Poland          0
## 2761  2020-01-27    Europe                       Portugal          0
## 2762  2020-01-27    Europe                        Romania          0
## 2763  2020-01-27    Europe                        Romania          0
## 2764  2020-01-27    Europe                         Russia          0
## 2765  2020-01-27    Europe                         Russia          0
## 2766  2020-01-27    Europe                     San Marino          0
## 2767  2020-01-27    Europe                     San Marino          0
## 2768  2020-01-27    Europe                         Serbia          0
## 2769  2020-01-27    Europe                       Slovakia          0
## 2770  2020-01-27    Europe                       Slovenia          0
## 2771  2020-01-27    Europe                          Spain          0
## 2772  2020-01-27    Europe                          Spain          0
## 2773  2020-01-27    Europe                         Sweden          0
## 2774  2020-01-27    Europe                         Sweden          0
## 2775  2020-01-27    Europe                    Switzerland          0
## 2776  2020-01-27    Europe                    Switzerland          0
## 2777  2020-01-27    Europe                        Ukraine          0
## 2778  2020-01-27    Europe                 United Kingdom          0
## 2779  2020-01-27    Europe                 United Kingdom          0
## 2780  2020-01-27    Europe                        Vatican          0
## 2781  2020-01-27   Oceania                      Australia          0
## 2782  2020-01-27   Oceania                           Fiji          0
## 2783  2020-01-27   Oceania                    New Zealand          0
## 2784  2020-01-27   Oceania                    New Zealand          0
## 2785  2020-01-27   Oceania               Papua New Guinea          0
## 2786  2020-01-27     Other                      not found          0
## 2787  2020-01-28    Africa                        Algeria          0
## 2788  2020-01-28    Africa                        Algeria          0
## 2789  2020-01-28    Africa                         Angola          0
## 2790  2020-01-28    Africa                          Benin          0
## 2791  2020-01-28    Africa                       Botswana          0
## 2792  2020-01-28    Africa                   Burkina Faso          0
## 2793  2020-01-28    Africa                        Burundi          0
## 2794  2020-01-28    Africa                     Cabo Verde          0
## 2795  2020-01-28    Africa                       Cameroon          0
## 2796  2020-01-28    Africa       Central African Republic          0
## 2797  2020-01-28    Africa                           Chad          0
## 2798  2020-01-28    Africa                        Comoros          0
## 2799  2020-01-28    Africa                 Congo Republic          0
## 2800  2020-01-28    Africa                  Cote d'Ivoire          0
## 2801  2020-01-28    Africa                       DR Congo          0
## 2802  2020-01-28    Africa                       Djibouti          0
## 2803  2020-01-28    Africa                          Egypt          0
## 2804  2020-01-28    Africa                          Egypt          0
## 2805  2020-01-28    Africa              Equatorial Guinea          0
## 2806  2020-01-28    Africa                        Eritrea          0
## 2807  2020-01-28    Africa                       Eswatini          0
## 2808  2020-01-28    Africa                       Ethiopia          0
## 2809  2020-01-28    Africa                          Gabon          0
## 2810  2020-01-28    Africa                         Gambia          0
## 2811  2020-01-28    Africa                          Ghana          0
## 2812  2020-01-28    Africa                         Guinea          0
## 2813  2020-01-28    Africa                  Guinea-Bissau          0
## 2814  2020-01-28    Africa                          Kenya          0
## 2815  2020-01-28    Africa                        Lesotho          0
## 2816  2020-01-28    Africa                        Liberia          0
## 2817  2020-01-28    Africa                          Libya          0
## 2818  2020-01-28    Africa                     Madagascar          0
## 2819  2020-01-28    Africa                         Malawi          0
## 2820  2020-01-28    Africa                           Mali          0
## 2821  2020-01-28    Africa                     Mauritania          0
## 2822  2020-01-28    Africa                      Mauritius          0
## 2823  2020-01-28    Africa                        Morocco          0
## 2824  2020-01-28    Africa                     Mozambique          0
## 2825  2020-01-28    Africa                        Namibia          0
## 2826  2020-01-28    Africa                          Niger          0
## 2827  2020-01-28    Africa                        Nigeria          0
## 2828  2020-01-28    Africa                        Nigeria          0
## 2829  2020-01-28    Africa                         Rwanda          0
## 2830  2020-01-28    Africa          Sao Tome and Principe          0
## 2831  2020-01-28    Africa                        Senegal          0
## 2832  2020-01-28    Africa                     Seychelles          0
## 2833  2020-01-28    Africa                   Sierra Leone          0
## 2834  2020-01-28    Africa                        Somalia          0
## 2835  2020-01-28    Africa                   South Africa          0
## 2836  2020-01-28    Africa                    South Sudan          0
## 2837  2020-01-28    Africa                          Sudan          0
## 2838  2020-01-28    Africa                       Tanzania          0
## 2839  2020-01-28    Africa                           Togo          0
## 2840  2020-01-28    Africa                        Tunisia          0
## 2841  2020-01-28    Africa                         Uganda          0
## 2842  2020-01-28    Africa                 Western Sahara          0
## 2843  2020-01-28    Africa                         Zambia          0
## 2844  2020-01-28    Africa                       Zimbabwe          0
## 2845  2020-01-28   America            Antigua and Barbuda          0
## 2846  2020-01-28   America                      Argentina          0
## 2847  2020-01-28   America                        Bahamas          0
## 2848  2020-01-28   America                       Barbados          0
## 2849  2020-01-28   America                         Belize          0
## 2850  2020-01-28   America                        Bolivia          0
## 2851  2020-01-28   America                         Brazil          0
## 2852  2020-01-28   America                         Brazil          0
## 2853  2020-01-28   America                         Canada          1
## 2854  2020-01-28   America                          Chile          0
## 2855  2020-01-28   America                       Colombia          0
## 2856  2020-01-28   America                     Costa Rica          0
## 2857  2020-01-28   America                           Cuba          0
## 2858  2020-01-28   America                       Dominica          0
## 2859  2020-01-28   America             Dominican Republic          0
## 2860  2020-01-28   America             Dominican Republic          0
## 2861  2020-01-28   America                        Ecuador          0
## 2862  2020-01-28   America                        Ecuador          0
## 2863  2020-01-28   America                    El Salvador          0
## 2864  2020-01-28   America                        Grenada          0
## 2865  2020-01-28   America                      Guatemala          0
## 2866  2020-01-28   America                         Guyana          0
## 2867  2020-01-28   America                          Haiti          0
## 2868  2020-01-28   America                       Honduras          0
## 2869  2020-01-28   America                        Jamaica          0
## 2870  2020-01-28   America                         Mexico          0
## 2871  2020-01-28   America                         Mexico          0
## 2872  2020-01-28   America                      Nicaragua          0
## 2873  2020-01-28   America                         Panama          0
## 2874  2020-01-28   America                       Paraguay          0
## 2875  2020-01-28   America                           Peru          0
## 2876  2020-01-28   America            St. Kitts and Nevis          0
## 2877  2020-01-28   America                      St. Lucia          0
## 2878  2020-01-28   America St. Vincent and the Grenadines          0
## 2879  2020-01-28   America                       Suriname          0
## 2880  2020-01-28   America            Trinidad and Tobago          0
## 2881  2020-01-28   America                  United States          0
## 2882  2020-01-28   America                  United States          0
## 2883  2020-01-28   America                        Uruguay          0
## 2884  2020-01-28   America                      Venezuela          0
## 2885  2020-01-28      Asia                    Afghanistan          0
## 2886  2020-01-28      Asia                    Afghanistan          0
## 2887  2020-01-28      Asia                        Bahrain          0
## 2888  2020-01-28      Asia                        Bahrain          0
## 2889  2020-01-28      Asia                     Bangladesh          0
## 2890  2020-01-28      Asia                         Bhutan          0
## 2891  2020-01-28      Asia              Brunei Darussalam          0
## 2892  2020-01-28      Asia                       Cambodia          0
## 2893  2020-01-28      Asia                       Cambodia          1
## 2894  2020-01-28      Asia                          China       1753
## 2895  2020-01-28      Asia                          India          0
## 2896  2020-01-28      Asia                          India          0
## 2897  2020-01-28      Asia                      Indonesia          0
## 2898  2020-01-28      Asia                      Indonesia          0
## 2899  2020-01-28      Asia                           Iran          0
## 2900  2020-01-28      Asia                           Iran          0
## 2901  2020-01-28      Asia                           Iraq          0
## 2902  2020-01-28      Asia                           Iraq          0
## 2903  2020-01-28      Asia                         Israel          0
## 2904  2020-01-28      Asia                         Israel          0
## 2905  2020-01-28      Asia                          Japan          1
## 2906  2020-01-28      Asia                          Japan          3
## 2907  2020-01-28      Asia                         Jordan          0
## 2908  2020-01-28      Asia                     Kazakhstan          0
## 2909  2020-01-28      Asia                         Kuwait          0
## 2910  2020-01-28      Asia                         Kuwait          0
## 2911  2020-01-28      Asia                Kyrgyz Republic          0
## 2912  2020-01-28      Asia                           Laos          0
## 2913  2020-01-28      Asia                        Lebanon          0
## 2914  2020-01-28      Asia                        Lebanon          0
## 2915  2020-01-28      Asia                       Malaysia          0
## 2916  2020-01-28      Asia                       Malaysia          0
## 2917  2020-01-28      Asia                       Maldives          0
## 2918  2020-01-28      Asia                       Mongolia          0
## 2919  2020-01-28      Asia                        Myanmar          0
## 2920  2020-01-28      Asia                          Nepal          0
## 2921  2020-01-28      Asia                          Nepal          0
## 2922  2020-01-28      Asia                           Oman          0
## 2923  2020-01-28      Asia                           Oman          0
## 2924  2020-01-28      Asia                       Pakistan          0
## 2925  2020-01-28      Asia                       Pakistan          0
## 2926  2020-01-28      Asia                      Palestine          0
## 2927  2020-01-28      Asia                    Philippines          0
## 2928  2020-01-28      Asia                    Philippines          0
## 2929  2020-01-28      Asia                          Qatar          0
## 2930  2020-01-28      Asia                          Qatar          0
## 2931  2020-01-28      Asia                   Saudi Arabia          0
## 2932  2020-01-28      Asia                      Singapore          1
## 2933  2020-01-28      Asia                      Singapore          2
## 2934  2020-01-28      Asia                    South Korea          0
## 2935  2020-01-28      Asia                    South Korea          0
## 2936  2020-01-28      Asia                      Sri Lanka          0
## 2937  2020-01-28      Asia                      Sri Lanka          1
## 2938  2020-01-28      Asia                          Syria          0
## 2939  2020-01-28      Asia                     Tajikistan          0
## 2940  2020-01-28      Asia                       Thailand          6
## 2941  2020-01-28      Asia                       Thailand          6
## 2942  2020-01-28      Asia                    Timor-Leste          0
## 2943  2020-01-28      Asia                         Turkey          0
## 2944  2020-01-28      Asia           United Arab Emirates          0
## 2945  2020-01-28      Asia           United Arab Emirates          0
## 2946  2020-01-28      Asia                     Uzbekistan          0
## 2947  2020-01-28      Asia                        Vietnam          0
## 2948  2020-01-28      Asia                        Vietnam          0
## 2949  2020-01-28      Asia                          Yemen          0
## 2950  2020-01-28      Asia                      not found          2
## 2951  2020-01-28    Europe                        Albania          0
## 2952  2020-01-28    Europe                        Andorra          0
## 2953  2020-01-28    Europe                        Armenia          0
## 2954  2020-01-28    Europe                        Armenia          0
## 2955  2020-01-28    Europe                        Austria          0
## 2956  2020-01-28    Europe                        Austria          0
## 2957  2020-01-28    Europe                     Azerbaijan          0
## 2958  2020-01-28    Europe                     Azerbaijan          0
## 2959  2020-01-28    Europe                        Belarus          0
## 2960  2020-01-28    Europe                        Belarus          0
## 2961  2020-01-28    Europe                        Belgium          0
## 2962  2020-01-28    Europe                        Belgium          0
## 2963  2020-01-28    Europe         Bosnia and Herzegovina          0
## 2964  2020-01-28    Europe                       Bulgaria          0
## 2965  2020-01-28    Europe                        Croatia          0
## 2966  2020-01-28    Europe                        Croatia          0
## 2967  2020-01-28    Europe                         Cyprus          0
## 2968  2020-01-28    Europe                 Czech Republic          0
## 2969  2020-01-28    Europe                 Czech Republic          0
## 2970  2020-01-28    Europe                        Denmark          0
## 2971  2020-01-28    Europe                        Denmark          0
## 2972  2020-01-28    Europe                        Estonia          0
## 2973  2020-01-28    Europe                        Estonia          0
## 2974  2020-01-28    Europe                        Finland          0
## 2975  2020-01-28    Europe                        Finland          0
## 2976  2020-01-28    Europe                         France          0
## 2977  2020-01-28    Europe                         France          1
## 2978  2020-01-28    Europe                        Georgia          0
## 2979  2020-01-28    Europe                        Georgia          0
## 2980  2020-01-28    Europe                        Germany          1
## 2981  2020-01-28    Europe                        Germany          3
## 2982  2020-01-28    Europe                         Greece          0
## 2983  2020-01-28    Europe                         Greece          0
## 2984  2020-01-28    Europe                        Hungary          0
## 2985  2020-01-28    Europe                        Iceland          0
## 2986  2020-01-28    Europe                        Iceland          0
## 2987  2020-01-28    Europe                        Ireland          0
## 2988  2020-01-28    Europe                        Ireland          0
## 2989  2020-01-28    Europe                          Italy          0
## 2990  2020-01-28    Europe                          Italy          0
## 2991  2020-01-28    Europe                         Kosovo          0
## 2992  2020-01-28    Europe                         Latvia          0
## 2993  2020-01-28    Europe                  Liechtenstein          0
## 2994  2020-01-28    Europe                      Lithuania          0
## 2995  2020-01-28    Europe                      Lithuania          0
## 2996  2020-01-28    Europe                     Luxembourg          0
## 2997  2020-01-28    Europe                     Luxembourg          0
## 2998  2020-01-28    Europe                      Macedonia          0
## 2999  2020-01-28    Europe                      Macedonia          0
## 3000  2020-01-28    Europe                          Malta          0
## 3001  2020-01-28    Europe                        Moldova          0
## 3002  2020-01-28    Europe                         Monaco          0
## 3003  2020-01-28    Europe                         Monaco          0
## 3004  2020-01-28    Europe                     Montenegro          0
## 3005  2020-01-28    Europe                    Netherlands          0
## 3006  2020-01-28    Europe                    Netherlands          0
## 3007  2020-01-28    Europe                         Norway          0
## 3008  2020-01-28    Europe                         Norway          0
## 3009  2020-01-28    Europe                         Poland          0
## 3010  2020-01-28    Europe                       Portugal          0
## 3011  2020-01-28    Europe                        Romania          0
## 3012  2020-01-28    Europe                        Romania          0
## 3013  2020-01-28    Europe                         Russia          0
## 3014  2020-01-28    Europe                         Russia          0
## 3015  2020-01-28    Europe                     San Marino          0
## 3016  2020-01-28    Europe                     San Marino          0
## 3017  2020-01-28    Europe                         Serbia          0
## 3018  2020-01-28    Europe                       Slovakia          0
## 3019  2020-01-28    Europe                       Slovenia          0
## 3020  2020-01-28    Europe                          Spain          0
## 3021  2020-01-28    Europe                          Spain          0
## 3022  2020-01-28    Europe                         Sweden          0
## 3023  2020-01-28    Europe                         Sweden          0
## 3024  2020-01-28    Europe                    Switzerland          0
## 3025  2020-01-28    Europe                    Switzerland          0
## 3026  2020-01-28    Europe                        Ukraine          0
## 3027  2020-01-28    Europe                 United Kingdom          0
## 3028  2020-01-28    Europe                 United Kingdom          0
## 3029  2020-01-28    Europe                        Vatican          0
## 3030  2020-01-28   Oceania                      Australia          0
## 3031  2020-01-28   Oceania                           Fiji          0
## 3032  2020-01-28   Oceania                    New Zealand          0
## 3033  2020-01-28   Oceania                    New Zealand          0
## 3034  2020-01-28   Oceania               Papua New Guinea          0
## 3035  2020-01-28     Other                      not found          0
## 3036  2020-01-29    Africa                        Algeria          0
## 3037  2020-01-29    Africa                        Algeria          0
## 3038  2020-01-29    Africa                         Angola          0
## 3039  2020-01-29    Africa                          Benin          0
## 3040  2020-01-29    Africa                       Botswana          0
## 3041  2020-01-29    Africa                   Burkina Faso          0
## 3042  2020-01-29    Africa                        Burundi          0
## 3043  2020-01-29    Africa                     Cabo Verde          0
## 3044  2020-01-29    Africa                       Cameroon          0
## 3045  2020-01-29    Africa       Central African Republic          0
## 3046  2020-01-29    Africa                           Chad          0
## 3047  2020-01-29    Africa                        Comoros          0
## 3048  2020-01-29    Africa                 Congo Republic          0
## 3049  2020-01-29    Africa                  Cote d'Ivoire          0
## 3050  2020-01-29    Africa                       DR Congo          0
## 3051  2020-01-29    Africa                       Djibouti          0
## 3052  2020-01-29    Africa                          Egypt          0
## 3053  2020-01-29    Africa                          Egypt          0
## 3054  2020-01-29    Africa              Equatorial Guinea          0
## 3055  2020-01-29    Africa                        Eritrea          0
## 3056  2020-01-29    Africa                       Eswatini          0
## 3057  2020-01-29    Africa                       Ethiopia          0
## 3058  2020-01-29    Africa                          Gabon          0
## 3059  2020-01-29    Africa                         Gambia          0
## 3060  2020-01-29    Africa                          Ghana          0
## 3061  2020-01-29    Africa                         Guinea          0
## 3062  2020-01-29    Africa                  Guinea-Bissau          0
## 3063  2020-01-29    Africa                          Kenya          0
## 3064  2020-01-29    Africa                        Lesotho          0
## 3065  2020-01-29    Africa                        Liberia          0
## 3066  2020-01-29    Africa                          Libya          0
## 3067  2020-01-29    Africa                     Madagascar          0
## 3068  2020-01-29    Africa                         Malawi          0
## 3069  2020-01-29    Africa                           Mali          0
## 3070  2020-01-29    Africa                     Mauritania          0
## 3071  2020-01-29    Africa                      Mauritius          0
## 3072  2020-01-29    Africa                        Morocco          0
## 3073  2020-01-29    Africa                     Mozambique          0
## 3074  2020-01-29    Africa                        Namibia          0
## 3075  2020-01-29    Africa                          Niger          0
## 3076  2020-01-29    Africa                        Nigeria          0
## 3077  2020-01-29    Africa                        Nigeria          0
## 3078  2020-01-29    Africa                         Rwanda          0
## 3079  2020-01-29    Africa          Sao Tome and Principe          0
## 3080  2020-01-29    Africa                        Senegal          0
## 3081  2020-01-29    Africa                     Seychelles          0
## 3082  2020-01-29    Africa                   Sierra Leone          0
## 3083  2020-01-29    Africa                        Somalia          0
## 3084  2020-01-29    Africa                   South Africa          0
## 3085  2020-01-29    Africa                    South Sudan          0
## 3086  2020-01-29    Africa                          Sudan          0
## 3087  2020-01-29    Africa                       Tanzania          0
## 3088  2020-01-29    Africa                           Togo          0
## 3089  2020-01-29    Africa                        Tunisia          0
## 3090  2020-01-29    Africa                         Uganda          0
## 3091  2020-01-29    Africa                 Western Sahara          0
## 3092  2020-01-29    Africa                         Zambia          0
## 3093  2020-01-29    Africa                       Zimbabwe          0
## 3094  2020-01-29   America            Antigua and Barbuda          0
## 3095  2020-01-29   America                      Argentina          0
## 3096  2020-01-29   America                        Bahamas          0
## 3097  2020-01-29   America                       Barbados          0
## 3098  2020-01-29   America                         Belize          0
## 3099  2020-01-29   America                        Bolivia          0
## 3100  2020-01-29   America                         Brazil          0
## 3101  2020-01-29   America                         Brazil          0
## 3102  2020-01-29   America                         Canada          1
## 3103  2020-01-29   America                          Chile          0
## 3104  2020-01-29   America                       Colombia          0
## 3105  2020-01-29   America                     Costa Rica          0
## 3106  2020-01-29   America                           Cuba          0
## 3107  2020-01-29   America                       Dominica          0
## 3108  2020-01-29   America             Dominican Republic          0
## 3109  2020-01-29   America             Dominican Republic          0
## 3110  2020-01-29   America                        Ecuador          0
## 3111  2020-01-29   America                        Ecuador          0
## 3112  2020-01-29   America                    El Salvador          0
## 3113  2020-01-29   America                        Grenada          0
## 3114  2020-01-29   America                      Guatemala          0
## 3115  2020-01-29   America                         Guyana          0
## 3116  2020-01-29   America                          Haiti          0
## 3117  2020-01-29   America                       Honduras          0
## 3118  2020-01-29   America                        Jamaica          0
## 3119  2020-01-29   America                         Mexico          0
## 3120  2020-01-29   America                         Mexico          0
## 3121  2020-01-29   America                      Nicaragua          0
## 3122  2020-01-29   America                         Panama          0
## 3123  2020-01-29   America                       Paraguay          0
## 3124  2020-01-29   America                           Peru          0
## 3125  2020-01-29   America            St. Kitts and Nevis          0
## 3126  2020-01-29   America                      St. Lucia          0
## 3127  2020-01-29   America St. Vincent and the Grenadines          0
## 3128  2020-01-29   America                       Suriname          0
## 3129  2020-01-29   America            Trinidad and Tobago          0
## 3130  2020-01-29   America                  United States          0
## 3131  2020-01-29   America                  United States          0
## 3132  2020-01-29   America                        Uruguay          0
## 3133  2020-01-29   America                      Venezuela          0
## 3134  2020-01-29      Asia                    Afghanistan          0
## 3135  2020-01-29      Asia                    Afghanistan          0
## 3136  2020-01-29      Asia                        Bahrain          0
## 3137  2020-01-29      Asia                        Bahrain          0
## 3138  2020-01-29      Asia                     Bangladesh          0
## 3139  2020-01-29      Asia                         Bhutan          0
## 3140  2020-01-29      Asia              Brunei Darussalam          0
## 3141  2020-01-29      Asia                       Cambodia          0
## 3142  2020-01-29      Asia                       Cambodia          0
## 3143  2020-01-29      Asia                          China       1466
## 3144  2020-01-29      Asia                          India          0
## 3145  2020-01-29      Asia                          India          0
## 3146  2020-01-29      Asia                      Indonesia          0
## 3147  2020-01-29      Asia                      Indonesia          0
## 3148  2020-01-29      Asia                           Iran          0
## 3149  2020-01-29      Asia                           Iran          0
## 3150  2020-01-29      Asia                           Iraq          0
## 3151  2020-01-29      Asia                           Iraq          0
## 3152  2020-01-29      Asia                         Israel          0
## 3153  2020-01-29      Asia                         Israel          0
## 3154  2020-01-29      Asia                          Japan          0
## 3155  2020-01-29      Asia                          Japan          3
## 3156  2020-01-29      Asia                         Jordan          0
## 3157  2020-01-29      Asia                     Kazakhstan          0
## 3158  2020-01-29      Asia                         Kuwait          0
## 3159  2020-01-29      Asia                         Kuwait          0
## 3160  2020-01-29      Asia                Kyrgyz Republic          0
## 3161  2020-01-29      Asia                           Laos          0
## 3162  2020-01-29      Asia                        Lebanon          0
## 3163  2020-01-29      Asia                        Lebanon          0
## 3164  2020-01-29      Asia                       Malaysia          3
## 3165  2020-01-29      Asia                       Malaysia          3
## 3166  2020-01-29      Asia                       Maldives          0
## 3167  2020-01-29      Asia                       Mongolia          0
## 3168  2020-01-29      Asia                        Myanmar          0
## 3169  2020-01-29      Asia                          Nepal          0
## 3170  2020-01-29      Asia                          Nepal          0
## 3171  2020-01-29      Asia                           Oman          0
## 3172  2020-01-29      Asia                           Oman          0
## 3173  2020-01-29      Asia                       Pakistan          0
## 3174  2020-01-29      Asia                       Pakistan          0
## 3175  2020-01-29      Asia                      Palestine          0
## 3176  2020-01-29      Asia                    Philippines          0
## 3177  2020-01-29      Asia                    Philippines          0
## 3178  2020-01-29      Asia                          Qatar          0
## 3179  2020-01-29      Asia                          Qatar          0
## 3180  2020-01-29      Asia                   Saudi Arabia          0
## 3181  2020-01-29      Asia                      Singapore          0
## 3182  2020-01-29      Asia                      Singapore          2
## 3183  2020-01-29      Asia                    South Korea          0
## 3184  2020-01-29      Asia                    South Korea          0
## 3185  2020-01-29      Asia                      Sri Lanka          0
## 3186  2020-01-29      Asia                      Sri Lanka          0
## 3187  2020-01-29      Asia                          Syria          0
## 3188  2020-01-29      Asia                     Tajikistan          0
## 3189  2020-01-29      Asia                       Thailand          0
## 3190  2020-01-29      Asia                       Thailand          0
## 3191  2020-01-29      Asia                    Timor-Leste          0
## 3192  2020-01-29      Asia                         Turkey          0
## 3193  2020-01-29      Asia           United Arab Emirates          0
## 3194  2020-01-29      Asia           United Arab Emirates          4
## 3195  2020-01-29      Asia                     Uzbekistan          0
## 3196  2020-01-29      Asia                        Vietnam          0
## 3197  2020-01-29      Asia                        Vietnam          0
## 3198  2020-01-29      Asia                          Yemen          0
## 3199  2020-01-29      Asia                      not found          1
## 3200  2020-01-29    Europe                        Albania          0
## 3201  2020-01-29    Europe                        Andorra          0
## 3202  2020-01-29    Europe                        Armenia          0
## 3203  2020-01-29    Europe                        Armenia          0
## 3204  2020-01-29    Europe                        Austria          0
## 3205  2020-01-29    Europe                        Austria          0
## 3206  2020-01-29    Europe                     Azerbaijan          0
## 3207  2020-01-29    Europe                     Azerbaijan          0
## 3208  2020-01-29    Europe                        Belarus          0
## 3209  2020-01-29    Europe                        Belarus          0
## 3210  2020-01-29    Europe                        Belgium          0
## 3211  2020-01-29    Europe                        Belgium          0
## 3212  2020-01-29    Europe         Bosnia and Herzegovina          0
## 3213  2020-01-29    Europe                       Bulgaria          0
## 3214  2020-01-29    Europe                        Croatia          0
## 3215  2020-01-29    Europe                        Croatia          0
## 3216  2020-01-29    Europe                         Cyprus          0
## 3217  2020-01-29    Europe                 Czech Republic          0
## 3218  2020-01-29    Europe                 Czech Republic          0
## 3219  2020-01-29    Europe                        Denmark          0
## 3220  2020-01-29    Europe                        Denmark          0
## 3221  2020-01-29    Europe                        Estonia          0
## 3222  2020-01-29    Europe                        Estonia          0
## 3223  2020-01-29    Europe                        Finland          0
## 3224  2020-01-29    Europe                        Finland          1
## 3225  2020-01-29    Europe                         France          1
## 3226  2020-01-29    Europe                         France          1
## 3227  2020-01-29    Europe                        Georgia          0
## 3228  2020-01-29    Europe                        Georgia          0
## 3229  2020-01-29    Europe                        Germany          0
## 3230  2020-01-29    Europe                        Germany          3
## 3231  2020-01-29    Europe                         Greece          0
## 3232  2020-01-29    Europe                         Greece          0
## 3233  2020-01-29    Europe                        Hungary          0
## 3234  2020-01-29    Europe                        Iceland          0
## 3235  2020-01-29    Europe                        Iceland          0
## 3236  2020-01-29    Europe                        Ireland          0
## 3237  2020-01-29    Europe                        Ireland          0
## 3238  2020-01-29    Europe                          Italy          0
## 3239  2020-01-29    Europe                          Italy          0
## 3240  2020-01-29    Europe                         Kosovo          0
## 3241  2020-01-29    Europe                         Latvia          0
## 3242  2020-01-29    Europe                  Liechtenstein          0
## 3243  2020-01-29    Europe                      Lithuania          0
## 3244  2020-01-29    Europe                      Lithuania          0
## 3245  2020-01-29    Europe                     Luxembourg          0
## 3246  2020-01-29    Europe                     Luxembourg          0
## 3247  2020-01-29    Europe                      Macedonia          0
## 3248  2020-01-29    Europe                      Macedonia          0
## 3249  2020-01-29    Europe                          Malta          0
## 3250  2020-01-29    Europe                        Moldova          0
## 3251  2020-01-29    Europe                         Monaco          0
## 3252  2020-01-29    Europe                         Monaco          0
## 3253  2020-01-29    Europe                     Montenegro          0
## 3254  2020-01-29    Europe                    Netherlands          0
## 3255  2020-01-29    Europe                    Netherlands          0
## 3256  2020-01-29    Europe                         Norway          0
## 3257  2020-01-29    Europe                         Norway          0
## 3258  2020-01-29    Europe                         Poland          0
## 3259  2020-01-29    Europe                       Portugal          0
## 3260  2020-01-29    Europe                        Romania          0
## 3261  2020-01-29    Europe                        Romania          0
## 3262  2020-01-29    Europe                         Russia          0
## 3263  2020-01-29    Europe                         Russia          0
## 3264  2020-01-29    Europe                     San Marino          0
## 3265  2020-01-29    Europe                     San Marino          0
## 3266  2020-01-29    Europe                         Serbia          0
## 3267  2020-01-29    Europe                       Slovakia          0
## 3268  2020-01-29    Europe                       Slovenia          0
## 3269  2020-01-29    Europe                          Spain          0
## 3270  2020-01-29    Europe                          Spain          0
## 3271  2020-01-29    Europe                         Sweden          0
## 3272  2020-01-29    Europe                         Sweden          0
## 3273  2020-01-29    Europe                    Switzerland          0
## 3274  2020-01-29    Europe                    Switzerland          0
## 3275  2020-01-29    Europe                        Ukraine          0
## 3276  2020-01-29    Europe                 United Kingdom          0
## 3277  2020-01-29    Europe                 United Kingdom          0
## 3278  2020-01-29    Europe                        Vatican          0
## 3279  2020-01-29   Oceania                      Australia          0
## 3280  2020-01-29   Oceania                           Fiji          0
## 3281  2020-01-29   Oceania                    New Zealand          0
## 3282  2020-01-29   Oceania                    New Zealand          0
## 3283  2020-01-29   Oceania               Papua New Guinea          0
## 3284  2020-01-29     Other                      not found          0
## 3285  2020-01-30    Africa                        Algeria          0
## 3286  2020-01-30    Africa                        Algeria          0
## 3287  2020-01-30    Africa                         Angola          0
## 3288  2020-01-30    Africa                          Benin          0
## 3289  2020-01-30    Africa                       Botswana          0
## 3290  2020-01-30    Africa                   Burkina Faso          0
## 3291  2020-01-30    Africa                        Burundi          0
## 3292  2020-01-30    Africa                     Cabo Verde          0
## 3293  2020-01-30    Africa                       Cameroon          0
## 3294  2020-01-30    Africa       Central African Republic          0
## 3295  2020-01-30    Africa                           Chad          0
## 3296  2020-01-30    Africa                        Comoros          0
## 3297  2020-01-30    Africa                 Congo Republic          0
## 3298  2020-01-30    Africa                  Cote d'Ivoire          0
## 3299  2020-01-30    Africa                       DR Congo          0
## 3300  2020-01-30    Africa                       Djibouti          0
## 3301  2020-01-30    Africa                          Egypt          0
## 3302  2020-01-30    Africa                          Egypt          0
## 3303  2020-01-30    Africa              Equatorial Guinea          0
## 3304  2020-01-30    Africa                        Eritrea          0
## 3305  2020-01-30    Africa                       Eswatini          0
## 3306  2020-01-30    Africa                       Ethiopia          0
## 3307  2020-01-30    Africa                          Gabon          0
## 3308  2020-01-30    Africa                         Gambia          0
## 3309  2020-01-30    Africa                          Ghana          0
## 3310  2020-01-30    Africa                         Guinea          0
## 3311  2020-01-30    Africa                  Guinea-Bissau          0
## 3312  2020-01-30    Africa                          Kenya          0
## 3313  2020-01-30    Africa                        Lesotho          0
## 3314  2020-01-30    Africa                        Liberia          0
## 3315  2020-01-30    Africa                          Libya          0
## 3316  2020-01-30    Africa                     Madagascar          0
## 3317  2020-01-30    Africa                         Malawi          0
## 3318  2020-01-30    Africa                           Mali          0
## 3319  2020-01-30    Africa                     Mauritania          0
## 3320  2020-01-30    Africa                      Mauritius          0
## 3321  2020-01-30    Africa                        Morocco          0
## 3322  2020-01-30    Africa                     Mozambique          0
## 3323  2020-01-30    Africa                        Namibia          0
## 3324  2020-01-30    Africa                          Niger          0
## 3325  2020-01-30    Africa                        Nigeria          0
## 3326  2020-01-30    Africa                        Nigeria          0
## 3327  2020-01-30    Africa                         Rwanda          0
## 3328  2020-01-30    Africa          Sao Tome and Principe          0
## 3329  2020-01-30    Africa                        Senegal          0
## 3330  2020-01-30    Africa                     Seychelles          0
## 3331  2020-01-30    Africa                   Sierra Leone          0
## 3332  2020-01-30    Africa                        Somalia          0
## 3333  2020-01-30    Africa                   South Africa          0
## 3334  2020-01-30    Africa                    South Sudan          0
## 3335  2020-01-30    Africa                          Sudan          0
## 3336  2020-01-30    Africa                       Tanzania          0
## 3337  2020-01-30    Africa                           Togo          0
## 3338  2020-01-30    Africa                        Tunisia          0
## 3339  2020-01-30    Africa                         Uganda          0
## 3340  2020-01-30    Africa                 Western Sahara          0
## 3341  2020-01-30    Africa                         Zambia          0
## 3342  2020-01-30    Africa                       Zimbabwe          0
## 3343  2020-01-30   America            Antigua and Barbuda          0
## 3344  2020-01-30   America                      Argentina          0
## 3345  2020-01-30   America                        Bahamas          0
## 3346  2020-01-30   America                       Barbados          0
## 3347  2020-01-30   America                         Belize          0
## 3348  2020-01-30   America                        Bolivia          0
## 3349  2020-01-30   America                         Brazil          0
## 3350  2020-01-30   America                         Brazil          0
## 3351  2020-01-30   America                         Canada          0
## 3352  2020-01-30   America                          Chile          0
## 3353  2020-01-30   America                       Colombia          0
## 3354  2020-01-30   America                     Costa Rica          0
## 3355  2020-01-30   America                           Cuba          0
## 3356  2020-01-30   America                       Dominica          0
## 3357  2020-01-30   America             Dominican Republic          0
## 3358  2020-01-30   America             Dominican Republic          0
## 3359  2020-01-30   America                        Ecuador          0
## 3360  2020-01-30   America                        Ecuador          0
## 3361  2020-01-30   America                    El Salvador          0
## 3362  2020-01-30   America                        Grenada          0
## 3363  2020-01-30   America                      Guatemala          0
## 3364  2020-01-30   America                         Guyana          0
## 3365  2020-01-30   America                          Haiti          0
## 3366  2020-01-30   America                       Honduras          0
## 3367  2020-01-30   America                        Jamaica          0
## 3368  2020-01-30   America                         Mexico          0
## 3369  2020-01-30   America                         Mexico          0
## 3370  2020-01-30   America                      Nicaragua          0
## 3371  2020-01-30   America                         Panama          0
## 3372  2020-01-30   America                       Paraguay          0
## 3373  2020-01-30   America                           Peru          0
## 3374  2020-01-30   America            St. Kitts and Nevis          0
## 3375  2020-01-30   America                      St. Lucia          0
## 3376  2020-01-30   America St. Vincent and the Grenadines          0
## 3377  2020-01-30   America                       Suriname          0
## 3378  2020-01-30   America            Trinidad and Tobago          0
## 3379  2020-01-30   America                  United States          0
## 3380  2020-01-30   America                  United States          0
## 3381  2020-01-30   America                        Uruguay          0
## 3382  2020-01-30   America                      Venezuela          0
## 3383  2020-01-30      Asia                    Afghanistan          0
## 3384  2020-01-30      Asia                    Afghanistan          0
## 3385  2020-01-30      Asia                        Bahrain          0
## 3386  2020-01-30      Asia                        Bahrain          0
## 3387  2020-01-30      Asia                     Bangladesh          0
## 3388  2020-01-30      Asia                         Bhutan          0
## 3389  2020-01-30      Asia              Brunei Darussalam          0
## 3390  2020-01-30      Asia                       Cambodia          0
## 3391  2020-01-30      Asia                       Cambodia          0
## 3392  2020-01-30      Asia                          China       1740
## 3393  2020-01-30      Asia                          India          1
## 3394  2020-01-30      Asia                          India          1
## 3395  2020-01-30      Asia                      Indonesia          0
## 3396  2020-01-30      Asia                      Indonesia          0
## 3397  2020-01-30      Asia                           Iran          0
## 3398  2020-01-30      Asia                           Iran          0
## 3399  2020-01-30      Asia                           Iraq          0
## 3400  2020-01-30      Asia                           Iraq          0
## 3401  2020-01-30      Asia                         Israel          0
## 3402  2020-01-30      Asia                         Israel          0
## 3403  2020-01-30      Asia                          Japan          4
## 3404  2020-01-30      Asia                          Japan          4
## 3405  2020-01-30      Asia                         Jordan          0
## 3406  2020-01-30      Asia                     Kazakhstan          0
## 3407  2020-01-30      Asia                         Kuwait          0
## 3408  2020-01-30      Asia                         Kuwait          0
## 3409  2020-01-30      Asia                Kyrgyz Republic          0
## 3410  2020-01-30      Asia                           Laos          0
## 3411  2020-01-30      Asia                        Lebanon          0
## 3412  2020-01-30      Asia                        Lebanon          0
## 3413  2020-01-30      Asia                       Malaysia          0
## 3414  2020-01-30      Asia                       Malaysia          1
## 3415  2020-01-30      Asia                       Maldives          0
## 3416  2020-01-30      Asia                       Mongolia          0
## 3417  2020-01-30      Asia                        Myanmar          0
## 3418  2020-01-30      Asia                          Nepal          0
## 3419  2020-01-30      Asia                          Nepal          0
## 3420  2020-01-30      Asia                           Oman          0
## 3421  2020-01-30      Asia                           Oman          0
## 3422  2020-01-30      Asia                       Pakistan          0
## 3423  2020-01-30      Asia                       Pakistan          0
## 3424  2020-01-30      Asia                      Palestine          0
## 3425  2020-01-30      Asia                    Philippines          1
## 3426  2020-01-30      Asia                    Philippines          1
## 3427  2020-01-30      Asia                          Qatar          0
## 3428  2020-01-30      Asia                          Qatar          0
## 3429  2020-01-30      Asia                   Saudi Arabia          0
## 3430  2020-01-30      Asia                      Singapore          3
## 3431  2020-01-30      Asia                      Singapore          3
## 3432  2020-01-30      Asia                    South Korea          0
## 3433  2020-01-30      Asia                    South Korea          0
## 3434  2020-01-30      Asia                      Sri Lanka          0
## 3435  2020-01-30      Asia                      Sri Lanka          0
## 3436  2020-01-30      Asia                          Syria          0
## 3437  2020-01-30      Asia                     Tajikistan          0
## 3438  2020-01-30      Asia                       Thailand          0
## 3439  2020-01-30      Asia                       Thailand          0
## 3440  2020-01-30      Asia                    Timor-Leste          0
## 3441  2020-01-30      Asia                         Turkey          0
## 3442  2020-01-30      Asia           United Arab Emirates          0
## 3443  2020-01-30      Asia           United Arab Emirates          3
## 3444  2020-01-30      Asia                     Uzbekistan          0
## 3445  2020-01-30      Asia                        Vietnam          0
## 3446  2020-01-30      Asia                        Vietnam          0
## 3447  2020-01-30      Asia                          Yemen          0
## 3448  2020-01-30      Asia                      not found          0
## 3449  2020-01-30    Europe                        Albania          0
## 3450  2020-01-30    Europe                        Andorra          0
## 3451  2020-01-30    Europe                        Armenia          0
## 3452  2020-01-30    Europe                        Armenia          0
## 3453  2020-01-30    Europe                        Austria          0
## 3454  2020-01-30    Europe                        Austria          0
## 3455  2020-01-30    Europe                     Azerbaijan          0
## 3456  2020-01-30    Europe                     Azerbaijan          0
## 3457  2020-01-30    Europe                        Belarus          0
## 3458  2020-01-30    Europe                        Belarus          0
## 3459  2020-01-30    Europe                        Belgium          0
## 3460  2020-01-30    Europe                        Belgium          0
## 3461  2020-01-30    Europe         Bosnia and Herzegovina          0
## 3462  2020-01-30    Europe                       Bulgaria          0
## 3463  2020-01-30    Europe                        Croatia          0
## 3464  2020-01-30    Europe                        Croatia          0
## 3465  2020-01-30    Europe                         Cyprus          0
## 3466  2020-01-30    Europe                 Czech Republic          0
## 3467  2020-01-30    Europe                 Czech Republic          0
## 3468  2020-01-30    Europe                        Denmark          0
## 3469  2020-01-30    Europe                        Denmark          0
## 3470  2020-01-30    Europe                        Estonia          0
## 3471  2020-01-30    Europe                        Estonia          0
## 3472  2020-01-30    Europe                        Finland          0
## 3473  2020-01-30    Europe                        Finland          1
## 3474  2020-01-30    Europe                         France          0
## 3475  2020-01-30    Europe                         France          1
## 3476  2020-01-30    Europe                        Georgia          0
## 3477  2020-01-30    Europe                        Georgia          0
## 3478  2020-01-30    Europe                        Germany          0
## 3479  2020-01-30    Europe                        Germany          0
## 3480  2020-01-30    Europe                         Greece          0
## 3481  2020-01-30    Europe                         Greece          0
## 3482  2020-01-30    Europe                        Hungary          0
## 3483  2020-01-30    Europe                        Iceland          0
## 3484  2020-01-30    Europe                        Iceland          0
## 3485  2020-01-30    Europe                        Ireland          0
## 3486  2020-01-30    Europe                        Ireland          0
## 3487  2020-01-30    Europe                          Italy          0
## 3488  2020-01-30    Europe                          Italy          0
## 3489  2020-01-30    Europe                         Kosovo          0
## 3490  2020-01-30    Europe                         Latvia          0
## 3491  2020-01-30    Europe                  Liechtenstein          0
## 3492  2020-01-30    Europe                      Lithuania          0
## 3493  2020-01-30    Europe                      Lithuania          0
## 3494  2020-01-30    Europe                     Luxembourg          0
## 3495  2020-01-30    Europe                     Luxembourg          0
## 3496  2020-01-30    Europe                      Macedonia          0
## 3497  2020-01-30    Europe                      Macedonia          0
## 3498  2020-01-30    Europe                          Malta          0
## 3499  2020-01-30    Europe                        Moldova          0
## 3500  2020-01-30    Europe                         Monaco          0
## 3501  2020-01-30    Europe                         Monaco          0
## 3502  2020-01-30    Europe                     Montenegro          0
## 3503  2020-01-30    Europe                    Netherlands          0
## 3504  2020-01-30    Europe                    Netherlands          0
## 3505  2020-01-30    Europe                         Norway          0
## 3506  2020-01-30    Europe                         Norway          0
## 3507  2020-01-30    Europe                         Poland          0
## 3508  2020-01-30    Europe                       Portugal          0
## 3509  2020-01-30    Europe                        Romania          0
## 3510  2020-01-30    Europe                        Romania          0
## 3511  2020-01-30    Europe                         Russia          0
## 3512  2020-01-30    Europe                         Russia          0
## 3513  2020-01-30    Europe                     San Marino          0
## 3514  2020-01-30    Europe                     San Marino          0
## 3515  2020-01-30    Europe                         Serbia          0
## 3516  2020-01-30    Europe                       Slovakia          0
## 3517  2020-01-30    Europe                       Slovenia          0
## 3518  2020-01-30    Europe                          Spain          0
## 3519  2020-01-30    Europe                          Spain          0
## 3520  2020-01-30    Europe                         Sweden          0
## 3521  2020-01-30    Europe                         Sweden          0
## 3522  2020-01-30    Europe                    Switzerland          0
## 3523  2020-01-30    Europe                    Switzerland          0
## 3524  2020-01-30    Europe                        Ukraine          0
## 3525  2020-01-30    Europe                 United Kingdom          0
## 3526  2020-01-30    Europe                 United Kingdom          0
## 3527  2020-01-30    Europe                        Vatican          0
## 3528  2020-01-30   Oceania                      Australia          2
## 3529  2020-01-30   Oceania                           Fiji          0
## 3530  2020-01-30   Oceania                    New Zealand          0
## 3531  2020-01-30   Oceania                    New Zealand          0
## 3532  2020-01-30   Oceania               Papua New Guinea          0
## 3533  2020-01-30     Other                      not found          0
## 3534  2020-01-31    Africa                        Algeria          0
## 3535  2020-01-31    Africa                        Algeria          0
## 3536  2020-01-31    Africa                         Angola          0
## 3537  2020-01-31    Africa                          Benin          0
## 3538  2020-01-31    Africa                       Botswana          0
## 3539  2020-01-31    Africa                   Burkina Faso          0
## 3540  2020-01-31    Africa                        Burundi          0
## 3541  2020-01-31    Africa                     Cabo Verde          0
## 3542  2020-01-31    Africa                       Cameroon          0
## 3543  2020-01-31    Africa       Central African Republic          0
## 3544  2020-01-31    Africa                           Chad          0
## 3545  2020-01-31    Africa                        Comoros          0
## 3546  2020-01-31    Africa                 Congo Republic          0
## 3547  2020-01-31    Africa                  Cote d'Ivoire          0
## 3548  2020-01-31    Africa                       DR Congo          0
## 3549  2020-01-31    Africa                       Djibouti          0
## 3550  2020-01-31    Africa                          Egypt          0
## 3551  2020-01-31    Africa                          Egypt          0
## 3552  2020-01-31    Africa              Equatorial Guinea          0
## 3553  2020-01-31    Africa                        Eritrea          0
## 3554  2020-01-31    Africa                       Eswatini          0
## 3555  2020-01-31    Africa                       Ethiopia          0
## 3556  2020-01-31    Africa                          Gabon          0
## 3557  2020-01-31    Africa                         Gambia          0
## 3558  2020-01-31    Africa                          Ghana          0
## 3559  2020-01-31    Africa                         Guinea          0
## 3560  2020-01-31    Africa                  Guinea-Bissau          0
## 3561  2020-01-31    Africa                          Kenya          0
## 3562  2020-01-31    Africa                        Lesotho          0
## 3563  2020-01-31    Africa                        Liberia          0
## 3564  2020-01-31    Africa                          Libya          0
## 3565  2020-01-31    Africa                     Madagascar          0
## 3566  2020-01-31    Africa                         Malawi          0
## 3567  2020-01-31    Africa                           Mali          0
## 3568  2020-01-31    Africa                     Mauritania          0
## 3569  2020-01-31    Africa                      Mauritius          0
## 3570  2020-01-31    Africa                        Morocco          0
## 3571  2020-01-31    Africa                     Mozambique          0
## 3572  2020-01-31    Africa                        Namibia          0
## 3573  2020-01-31    Africa                          Niger          0
## 3574  2020-01-31    Africa                        Nigeria          0
## 3575  2020-01-31    Africa                        Nigeria          0
## 3576  2020-01-31    Africa                         Rwanda          0
## 3577  2020-01-31    Africa          Sao Tome and Principe          0
## 3578  2020-01-31    Africa                        Senegal          0
## 3579  2020-01-31    Africa                     Seychelles          0
## 3580  2020-01-31    Africa                   Sierra Leone          0
## 3581  2020-01-31    Africa                        Somalia          0
## 3582  2020-01-31    Africa                   South Africa          0
## 3583  2020-01-31    Africa                    South Sudan          0
## 3584  2020-01-31    Africa                          Sudan          0
## 3585  2020-01-31    Africa                       Tanzania          0
## 3586  2020-01-31    Africa                           Togo          0
## 3587  2020-01-31    Africa                        Tunisia          0
## 3588  2020-01-31    Africa                         Uganda          0
## 3589  2020-01-31    Africa                 Western Sahara          0
## 3590  2020-01-31    Africa                         Zambia          0
## 3591  2020-01-31    Africa                       Zimbabwe          0
## 3592  2020-01-31   America            Antigua and Barbuda          0
## 3593  2020-01-31   America                      Argentina          0
## 3594  2020-01-31   America                        Bahamas          0
## 3595  2020-01-31   America                       Barbados          0
## 3596  2020-01-31   America                         Belize          0
## 3597  2020-01-31   America                        Bolivia          0
## 3598  2020-01-31   America                         Brazil          0
## 3599  2020-01-31   America                         Brazil          0
## 3600  2020-01-31   America                         Canada          0
## 3601  2020-01-31   America                          Chile          0
## 3602  2020-01-31   America                       Colombia          0
## 3603  2020-01-31   America                     Costa Rica          0
## 3604  2020-01-31   America                           Cuba          0
## 3605  2020-01-31   America                       Dominica          0
## 3606  2020-01-31   America             Dominican Republic          0
## 3607  2020-01-31   America             Dominican Republic          0
## 3608  2020-01-31   America                        Ecuador          0
## 3609  2020-01-31   America                        Ecuador          0
## 3610  2020-01-31   America                    El Salvador          0
## 3611  2020-01-31   America                        Grenada          0
## 3612  2020-01-31   America                      Guatemala          0
## 3613  2020-01-31   America                         Guyana          0
## 3614  2020-01-31   America                          Haiti          0
## 3615  2020-01-31   America                       Honduras          0
## 3616  2020-01-31   America                        Jamaica          0
## 3617  2020-01-31   America                         Mexico          0
## 3618  2020-01-31   America                         Mexico          0
## 3619  2020-01-31   America                      Nicaragua          0
## 3620  2020-01-31   America                         Panama          0
## 3621  2020-01-31   America                       Paraguay          0
## 3622  2020-01-31   America                           Peru          0
## 3623  2020-01-31   America            St. Kitts and Nevis          0
## 3624  2020-01-31   America                      St. Lucia          0
## 3625  2020-01-31   America St. Vincent and the Grenadines          0
## 3626  2020-01-31   America                       Suriname          0
## 3627  2020-01-31   America            Trinidad and Tobago          0
## 3628  2020-01-31   America                  United States          1
## 3629  2020-01-31   America                  United States          2
## 3630  2020-01-31   America                        Uruguay          0
## 3631  2020-01-31   America                      Venezuela          0
## 3632  2020-01-31      Asia                    Afghanistan          0
## 3633  2020-01-31      Asia                    Afghanistan          0
## 3634  2020-01-31      Asia                        Bahrain          0
## 3635  2020-01-31      Asia                        Bahrain          0
## 3636  2020-01-31      Asia                     Bangladesh          0
## 3637  2020-01-31      Asia                         Bhutan          0
## 3638  2020-01-31      Asia              Brunei Darussalam          0
## 3639  2020-01-31      Asia                       Cambodia          0
## 3640  2020-01-31      Asia                       Cambodia          0
## 3641  2020-01-31      Asia                          China       1980
## 3642  2020-01-31      Asia                          India          0
## 3643  2020-01-31      Asia                          India          0
## 3644  2020-01-31      Asia                      Indonesia          0
## 3645  2020-01-31      Asia                      Indonesia          0
## 3646  2020-01-31      Asia                           Iran          0
## 3647  2020-01-31      Asia                           Iran          0
## 3648  2020-01-31      Asia                           Iraq          0
## 3649  2020-01-31      Asia                           Iraq          0
## 3650  2020-01-31      Asia                         Israel          0
## 3651  2020-01-31      Asia                         Israel          0
## 3652  2020-01-31      Asia                          Japan          3
## 3653  2020-01-31      Asia                          Japan          4
## 3654  2020-01-31      Asia                         Jordan          0
## 3655  2020-01-31      Asia                     Kazakhstan          0
## 3656  2020-01-31      Asia                         Kuwait          0
## 3657  2020-01-31      Asia                         Kuwait          0
## 3658  2020-01-31      Asia                Kyrgyz Republic          0
## 3659  2020-01-31      Asia                           Laos          0
## 3660  2020-01-31      Asia                        Lebanon          0
## 3661  2020-01-31      Asia                        Lebanon          0
## 3662  2020-01-31      Asia                       Malaysia          0
## 3663  2020-01-31      Asia                       Malaysia          1
## 3664  2020-01-31      Asia                       Maldives          0
## 3665  2020-01-31      Asia                       Mongolia          0
## 3666  2020-01-31      Asia                        Myanmar          0
## 3667  2020-01-31      Asia                          Nepal          0
## 3668  2020-01-31      Asia                          Nepal          0
## 3669  2020-01-31      Asia                           Oman          0
## 3670  2020-01-31      Asia                           Oman          0
## 3671  2020-01-31      Asia                       Pakistan          0
## 3672  2020-01-31      Asia                       Pakistan          0
## 3673  2020-01-31      Asia                      Palestine          0
## 3674  2020-01-31      Asia                    Philippines          0
## 3675  2020-01-31      Asia                    Philippines          0
## 3676  2020-01-31      Asia                          Qatar          0
## 3677  2020-01-31      Asia                          Qatar          0
## 3678  2020-01-31      Asia                   Saudi Arabia          0
## 3679  2020-01-31      Asia                      Singapore          3
## 3680  2020-01-31      Asia                      Singapore          3
## 3681  2020-01-31      Asia                    South Korea          3
## 3682  2020-01-31      Asia                    South Korea          7
## 3683  2020-01-31      Asia                      Sri Lanka          0
## 3684  2020-01-31      Asia                      Sri Lanka          0
## 3685  2020-01-31      Asia                          Syria          0
## 3686  2020-01-31      Asia                     Tajikistan          0
## 3687  2020-01-31      Asia                       Thailand          0
## 3688  2020-01-31      Asia                       Thailand          5
## 3689  2020-01-31      Asia                    Timor-Leste          0
## 3690  2020-01-31      Asia                         Turkey          0
## 3691  2020-01-31      Asia           United Arab Emirates          0
## 3692  2020-01-31      Asia           United Arab Emirates          0
## 3693  2020-01-31      Asia                     Uzbekistan          0
## 3694  2020-01-31      Asia                        Vietnam          0
## 3695  2020-01-31      Asia                        Vietnam          3
## 3696  2020-01-31      Asia                          Yemen          0
## 3697  2020-01-31      Asia                      not found          1
## 3698  2020-01-31    Europe                        Albania          0
## 3699  2020-01-31    Europe                        Andorra          0
## 3700  2020-01-31    Europe                        Armenia          0
## 3701  2020-01-31    Europe                        Armenia          0
## 3702  2020-01-31    Europe                        Austria          0
## 3703  2020-01-31    Europe                        Austria          0
## 3704  2020-01-31    Europe                     Azerbaijan          0
## 3705  2020-01-31    Europe                     Azerbaijan          0
## 3706  2020-01-31    Europe                        Belarus          0
## 3707  2020-01-31    Europe                        Belarus          0
## 3708  2020-01-31    Europe                        Belgium          0
## 3709  2020-01-31    Europe                        Belgium          0
## 3710  2020-01-31    Europe         Bosnia and Herzegovina          0
## 3711  2020-01-31    Europe                       Bulgaria          0
## 3712  2020-01-31    Europe                        Croatia          0
## 3713  2020-01-31    Europe                        Croatia          0
## 3714  2020-01-31    Europe                         Cyprus          0
## 3715  2020-01-31    Europe                 Czech Republic          0
## 3716  2020-01-31    Europe                 Czech Republic          0
## 3717  2020-01-31    Europe                        Denmark          0
## 3718  2020-01-31    Europe                        Denmark          0
## 3719  2020-01-31    Europe                        Estonia          0
## 3720  2020-01-31    Europe                        Estonia          0
## 3721  2020-01-31    Europe                        Finland          0
## 3722  2020-01-31    Europe                        Finland          0
## 3723  2020-01-31    Europe                         France          0
## 3724  2020-01-31    Europe                         France          1
## 3725  2020-01-31    Europe                        Georgia          0
## 3726  2020-01-31    Europe                        Georgia          0
## 3727  2020-01-31    Europe                        Germany          1
## 3728  2020-01-31    Europe                        Germany          1
## 3729  2020-01-31    Europe                         Greece          0
## 3730  2020-01-31    Europe                         Greece          0
## 3731  2020-01-31    Europe                        Hungary          0
## 3732  2020-01-31    Europe                        Iceland          0
## 3733  2020-01-31    Europe                        Iceland          0
## 3734  2020-01-31    Europe                        Ireland          0
## 3735  2020-01-31    Europe                        Ireland          0
## 3736  2020-01-31    Europe                          Italy          2
## 3737  2020-01-31    Europe                          Italy          3
## 3738  2020-01-31    Europe                         Kosovo          0
## 3739  2020-01-31    Europe                         Latvia          0
## 3740  2020-01-31    Europe                  Liechtenstein          0
## 3741  2020-01-31    Europe                      Lithuania          0
## 3742  2020-01-31    Europe                      Lithuania          0
## 3743  2020-01-31    Europe                     Luxembourg          0
## 3744  2020-01-31    Europe                     Luxembourg          0
## 3745  2020-01-31    Europe                      Macedonia          0
## 3746  2020-01-31    Europe                      Macedonia          0
## 3747  2020-01-31    Europe                          Malta          0
## 3748  2020-01-31    Europe                        Moldova          0
## 3749  2020-01-31    Europe                         Monaco          0
## 3750  2020-01-31    Europe                         Monaco          0
## 3751  2020-01-31    Europe                     Montenegro          0
## 3752  2020-01-31    Europe                    Netherlands          0
## 3753  2020-01-31    Europe                    Netherlands          0
## 3754  2020-01-31    Europe                         Norway          0
## 3755  2020-01-31    Europe                         Norway          0
## 3756  2020-01-31    Europe                         Poland          0
## 3757  2020-01-31    Europe                       Portugal          0
## 3758  2020-01-31    Europe                        Romania          0
## 3759  2020-01-31    Europe                        Romania          0
## 3760  2020-01-31    Europe                         Russia          0
## 3761  2020-01-31    Europe                         Russia          2
## 3762  2020-01-31    Europe                     San Marino          0
## 3763  2020-01-31    Europe                     San Marino          0
## 3764  2020-01-31    Europe                         Serbia          0
## 3765  2020-01-31    Europe                       Slovakia          0
## 3766  2020-01-31    Europe                       Slovenia          0
## 3767  2020-01-31    Europe                          Spain          0
## 3768  2020-01-31    Europe                          Spain          0
## 3769  2020-01-31    Europe                         Sweden          0
## 3770  2020-01-31    Europe                         Sweden          1
## 3771  2020-01-31    Europe                    Switzerland          0
## 3772  2020-01-31    Europe                    Switzerland          0
## 3773  2020-01-31    Europe                        Ukraine          0
## 3774  2020-01-31    Europe                 United Kingdom          2
## 3775  2020-01-31    Europe                 United Kingdom          2
## 3776  2020-01-31    Europe                        Vatican          0
## 3777  2020-01-31   Oceania                      Australia          1
## 3778  2020-01-31   Oceania                           Fiji          0
## 3779  2020-01-31   Oceania                    New Zealand          0
## 3780  2020-01-31   Oceania                    New Zealand          0
## 3781  2020-01-31   Oceania               Papua New Guinea          0
## 3782  2020-01-31     Other                      not found          0
## 3783  2020-02-01    Africa                        Algeria          0
## 3784  2020-02-01    Africa                        Algeria          0
## 3785  2020-02-01    Africa                         Angola          0
## 3786  2020-02-01    Africa                          Benin          0
## 3787  2020-02-01    Africa                       Botswana          0
## 3788  2020-02-01    Africa                   Burkina Faso          0
## 3789  2020-02-01    Africa                        Burundi          0
## 3790  2020-02-01    Africa                     Cabo Verde          0
## 3791  2020-02-01    Africa                       Cameroon          0
## 3792  2020-02-01    Africa       Central African Republic          0
## 3793  2020-02-01    Africa                           Chad          0
## 3794  2020-02-01    Africa                        Comoros          0
## 3795  2020-02-01    Africa                 Congo Republic          0
## 3796  2020-02-01    Africa                  Cote d'Ivoire          0
## 3797  2020-02-01    Africa                       DR Congo          0
## 3798  2020-02-01    Africa                       Djibouti          0
## 3799  2020-02-01    Africa                          Egypt          0
## 3800  2020-02-01    Africa                          Egypt          0
## 3801  2020-02-01    Africa              Equatorial Guinea          0
## 3802  2020-02-01    Africa                        Eritrea          0
## 3803  2020-02-01    Africa                       Eswatini          0
## 3804  2020-02-01    Africa                       Ethiopia          0
## 3805  2020-02-01    Africa                          Gabon          0
## 3806  2020-02-01    Africa                         Gambia          0
## 3807  2020-02-01    Africa                          Ghana          0
## 3808  2020-02-01    Africa                         Guinea          0
## 3809  2020-02-01    Africa                  Guinea-Bissau          0
## 3810  2020-02-01    Africa                          Kenya          0
## 3811  2020-02-01    Africa                        Lesotho          0
## 3812  2020-02-01    Africa                        Liberia          0
## 3813  2020-02-01    Africa                          Libya          0
## 3814  2020-02-01    Africa                     Madagascar          0
## 3815  2020-02-01    Africa                         Malawi          0
## 3816  2020-02-01    Africa                           Mali          0
## 3817  2020-02-01    Africa                     Mauritania          0
## 3818  2020-02-01    Africa                      Mauritius          0
## 3819  2020-02-01    Africa                        Morocco          0
## 3820  2020-02-01    Africa                     Mozambique          0
## 3821  2020-02-01    Africa                        Namibia          0
## 3822  2020-02-01    Africa                          Niger          0
## 3823  2020-02-01    Africa                        Nigeria          0
## 3824  2020-02-01    Africa                        Nigeria          0
## 3825  2020-02-01    Africa                         Rwanda          0
## 3826  2020-02-01    Africa          Sao Tome and Principe          0
## 3827  2020-02-01    Africa                        Senegal          0
## 3828  2020-02-01    Africa                     Seychelles          0
## 3829  2020-02-01    Africa                   Sierra Leone          0
## 3830  2020-02-01    Africa                        Somalia          0
## 3831  2020-02-01    Africa                   South Africa          0
## 3832  2020-02-01    Africa                    South Sudan          0
## 3833  2020-02-01    Africa                          Sudan          0
## 3834  2020-02-01    Africa                       Tanzania          0
## 3835  2020-02-01    Africa                           Togo          0
## 3836  2020-02-01    Africa                        Tunisia          0
## 3837  2020-02-01    Africa                         Uganda          0
## 3838  2020-02-01    Africa                 Western Sahara          0
## 3839  2020-02-01    Africa                         Zambia          0
## 3840  2020-02-01    Africa                       Zimbabwe          0
## 3841  2020-02-01   America            Antigua and Barbuda          0
## 3842  2020-02-01   America                      Argentina          0
## 3843  2020-02-01   America                        Bahamas          0
## 3844  2020-02-01   America                       Barbados          0
## 3845  2020-02-01   America                         Belize          0
## 3846  2020-02-01   America                        Bolivia          0
## 3847  2020-02-01   America                         Brazil          0
## 3848  2020-02-01   America                         Brazil          0
## 3849  2020-02-01   America                         Canada          1
## 3850  2020-02-01   America                          Chile          0
## 3851  2020-02-01   America                       Colombia          0
## 3852  2020-02-01   America                     Costa Rica          0
## 3853  2020-02-01   America                           Cuba          0
## 3854  2020-02-01   America                       Dominica          0
## 3855  2020-02-01   America             Dominican Republic          0
## 3856  2020-02-01   America             Dominican Republic          0
## 3857  2020-02-01   America                        Ecuador          0
## 3858  2020-02-01   America                        Ecuador          0
## 3859  2020-02-01   America                    El Salvador          0
## 3860  2020-02-01   America                        Grenada          0
## 3861  2020-02-01   America                      Guatemala          0
## 3862  2020-02-01   America                         Guyana          0
## 3863  2020-02-01   America                          Haiti          0
## 3864  2020-02-01   America                       Honduras          0
## 3865  2020-02-01   America                        Jamaica          0
## 3866  2020-02-01   America                         Mexico          0
## 3867  2020-02-01   America                         Mexico          0
## 3868  2020-02-01   America                      Nicaragua          0
## 3869  2020-02-01   America                         Panama          0
## 3870  2020-02-01   America                       Paraguay          0
## 3871  2020-02-01   America                           Peru          0
## 3872  2020-02-01   America            St. Kitts and Nevis          0
## 3873  2020-02-01   America                      St. Lucia          0
## 3874  2020-02-01   America St. Vincent and the Grenadines          0
## 3875  2020-02-01   America                       Suriname          0
## 3876  2020-02-01   America            Trinidad and Tobago          0
## 3877  2020-02-01   America                  United States          1
## 3878  2020-02-01   America                  United States          1
## 3879  2020-02-01   America                        Uruguay          0
## 3880  2020-02-01   America                      Venezuela          0
## 3881  2020-02-01      Asia                    Afghanistan          0
## 3882  2020-02-01      Asia                    Afghanistan          0
## 3883  2020-02-01      Asia                        Bahrain          0
## 3884  2020-02-01      Asia                        Bahrain          0
## 3885  2020-02-01      Asia                     Bangladesh          0
## 3886  2020-02-01      Asia                         Bhutan          0
## 3887  2020-02-01      Asia              Brunei Darussalam          0
## 3888  2020-02-01      Asia                       Cambodia          0
## 3889  2020-02-01      Asia                       Cambodia          0
## 3890  2020-02-01      Asia                          China       2095
## 3891  2020-02-01      Asia                          India          0
## 3892  2020-02-01      Asia                          India          0
## 3893  2020-02-01      Asia                      Indonesia          0
## 3894  2020-02-01      Asia                      Indonesia          0
## 3895  2020-02-01      Asia                           Iran          0
## 3896  2020-02-01      Asia                           Iran          0
## 3897  2020-02-01      Asia                           Iraq          0
## 3898  2020-02-01      Asia                           Iraq          0
## 3899  2020-02-01      Asia                         Israel          0
## 3900  2020-02-01      Asia                         Israel          0
## 3901  2020-02-01      Asia                          Japan          1
## 3902  2020-02-01      Asia                          Japan          5
## 3903  2020-02-01      Asia                         Jordan          0
## 3904  2020-02-01      Asia                     Kazakhstan          0
## 3905  2020-02-01      Asia                         Kuwait          0
## 3906  2020-02-01      Asia                         Kuwait          0
## 3907  2020-02-01      Asia                Kyrgyz Republic          0
## 3908  2020-02-01      Asia                           Laos          0
## 3909  2020-02-01      Asia                        Lebanon          0
## 3910  2020-02-01      Asia                        Lebanon          0
## 3911  2020-02-01      Asia                       Malaysia          0
## 3912  2020-02-01      Asia                       Malaysia          0
## 3913  2020-02-01      Asia                       Maldives          0
## 3914  2020-02-01      Asia                       Mongolia          0
## 3915  2020-02-01      Asia                        Myanmar          0
## 3916  2020-02-01      Asia                          Nepal          0
## 3917  2020-02-01      Asia                          Nepal          0
## 3918  2020-02-01      Asia                           Oman          0
## 3919  2020-02-01      Asia                           Oman          0
## 3920  2020-02-01      Asia                       Pakistan          0
## 3921  2020-02-01      Asia                       Pakistan          0
## 3922  2020-02-01      Asia                      Palestine          0
## 3923  2020-02-01      Asia                    Philippines          0
## 3924  2020-02-01      Asia                    Philippines          0
## 3925  2020-02-01      Asia                          Qatar          0
## 3926  2020-02-01      Asia                          Qatar          0
## 3927  2020-02-01      Asia                   Saudi Arabia          0
## 3928  2020-02-01      Asia                      Singapore          3
## 3929  2020-02-01      Asia                      Singapore          3
## 3930  2020-02-01      Asia                    South Korea          1
## 3931  2020-02-01      Asia                    South Korea          5
## 3932  2020-02-01      Asia                      Sri Lanka          0
## 3933  2020-02-01      Asia                      Sri Lanka          0
## 3934  2020-02-01      Asia                          Syria          0
## 3935  2020-02-01      Asia                     Tajikistan          0
## 3936  2020-02-01      Asia                       Thailand          0
## 3937  2020-02-01      Asia                       Thailand          5
## 3938  2020-02-01      Asia                    Timor-Leste          0
## 3939  2020-02-01      Asia                         Turkey          0
## 3940  2020-02-01      Asia           United Arab Emirates          0
## 3941  2020-02-01      Asia           United Arab Emirates          0
## 3942  2020-02-01      Asia                     Uzbekistan          0
## 3943  2020-02-01      Asia                        Vietnam          0
## 3944  2020-02-01      Asia                        Vietnam          4
## 3945  2020-02-01      Asia                          Yemen          0
## 3946  2020-02-01      Asia                      not found          1
## 3947  2020-02-01    Europe                        Albania          0
## 3948  2020-02-01    Europe                        Andorra          0
## 3949  2020-02-01    Europe                        Armenia          0
## 3950  2020-02-01    Europe                        Armenia          0
## 3951  2020-02-01    Europe                        Austria          0
## 3952  2020-02-01    Europe                        Austria          0
## 3953  2020-02-01    Europe                     Azerbaijan          0
## 3954  2020-02-01    Europe                     Azerbaijan          0
## 3955  2020-02-01    Europe                        Belarus          0
## 3956  2020-02-01    Europe                        Belarus          0
## 3957  2020-02-01    Europe                        Belgium          0
## 3958  2020-02-01    Europe                        Belgium          0
## 3959  2020-02-01    Europe         Bosnia and Herzegovina          0
## 3960  2020-02-01    Europe                       Bulgaria          0
## 3961  2020-02-01    Europe                        Croatia          0
## 3962  2020-02-01    Europe                        Croatia          0
## 3963  2020-02-01    Europe                         Cyprus          0
## 3964  2020-02-01    Europe                 Czech Republic          0
## 3965  2020-02-01    Europe                 Czech Republic          0
## 3966  2020-02-01    Europe                        Denmark          0
## 3967  2020-02-01    Europe                        Denmark          0
## 3968  2020-02-01    Europe                        Estonia          0
## 3969  2020-02-01    Europe                        Estonia          0
## 3970  2020-02-01    Europe                        Finland          0
## 3971  2020-02-01    Europe                        Finland          0
## 3972  2020-02-01    Europe                         France          0
## 3973  2020-02-01    Europe                         France          1
## 3974  2020-02-01    Europe                        Georgia          0
## 3975  2020-02-01    Europe                        Georgia          0
## 3976  2020-02-01    Europe                        Germany          2
## 3977  2020-02-01    Europe                        Germany          3
## 3978  2020-02-01    Europe                         Greece          0
## 3979  2020-02-01    Europe                         Greece          0
## 3980  2020-02-01    Europe                        Hungary          0
## 3981  2020-02-01    Europe                        Iceland          0
## 3982  2020-02-01    Europe                        Iceland          0
## 3983  2020-02-01    Europe                        Ireland          0
## 3984  2020-02-01    Europe                        Ireland          0
## 3985  2020-02-01    Europe                          Italy          0
## 3986  2020-02-01    Europe                          Italy          0
## 3987  2020-02-01    Europe                         Kosovo          0
## 3988  2020-02-01    Europe                         Latvia          0
## 3989  2020-02-01    Europe                  Liechtenstein          0
## 3990  2020-02-01    Europe                      Lithuania          0
## 3991  2020-02-01    Europe                      Lithuania          0
## 3992  2020-02-01    Europe                     Luxembourg          0
## 3993  2020-02-01    Europe                     Luxembourg          0
## 3994  2020-02-01    Europe                      Macedonia          0
## 3995  2020-02-01    Europe                      Macedonia          0
## 3996  2020-02-01    Europe                          Malta          0
## 3997  2020-02-01    Europe                        Moldova          0
## 3998  2020-02-01    Europe                         Monaco          0
## 3999  2020-02-01    Europe                         Monaco          0
## 4000  2020-02-01    Europe                     Montenegro          0
## 4001  2020-02-01    Europe                    Netherlands          0
## 4002  2020-02-01    Europe                    Netherlands          0
## 4003  2020-02-01    Europe                         Norway          0
## 4004  2020-02-01    Europe                         Norway          0
## 4005  2020-02-01    Europe                         Poland          0
## 4006  2020-02-01    Europe                       Portugal          0
## 4007  2020-02-01    Europe                        Romania          0
## 4008  2020-02-01    Europe                        Romania          0
## 4009  2020-02-01    Europe                         Russia          0
## 4010  2020-02-01    Europe                         Russia          2
## 4011  2020-02-01    Europe                     San Marino          0
## 4012  2020-02-01    Europe                     San Marino          0
## 4013  2020-02-01    Europe                         Serbia          0
## 4014  2020-02-01    Europe                       Slovakia          0
## 4015  2020-02-01    Europe                       Slovenia          0
## 4016  2020-02-01    Europe                          Spain          1
## 4017  2020-02-01    Europe                          Spain          1
## 4018  2020-02-01    Europe                         Sweden          0
## 4019  2020-02-01    Europe                         Sweden          1
## 4020  2020-02-01    Europe                    Switzerland          0
## 4021  2020-02-01    Europe                    Switzerland          0
## 4022  2020-02-01    Europe                        Ukraine          0
## 4023  2020-02-01    Europe                 United Kingdom          0
## 4024  2020-02-01    Europe                 United Kingdom          0
## 4025  2020-02-01    Europe                        Vatican          0
## 4026  2020-02-01   Oceania                      Australia          2
## 4027  2020-02-01   Oceania                           Fiji          0
## 4028  2020-02-01   Oceania                    New Zealand          0
## 4029  2020-02-01   Oceania                    New Zealand          0
## 4030  2020-02-01   Oceania               Papua New Guinea          0
## 4031  2020-02-01     Other                      not found          0
## 4032  2020-02-02    Africa                        Algeria          0
## 4033  2020-02-02    Africa                        Algeria          0
## 4034  2020-02-02    Africa                         Angola          0
## 4035  2020-02-02    Africa                          Benin          0
## 4036  2020-02-02    Africa                       Botswana          0
## 4037  2020-02-02    Africa                   Burkina Faso          0
## 4038  2020-02-02    Africa                        Burundi          0
## 4039  2020-02-02    Africa                     Cabo Verde          0
## 4040  2020-02-02    Africa                       Cameroon          0
## 4041  2020-02-02    Africa       Central African Republic          0
## 4042  2020-02-02    Africa                           Chad          0
## 4043  2020-02-02    Africa                        Comoros          0
## 4044  2020-02-02    Africa                 Congo Republic          0
## 4045  2020-02-02    Africa                  Cote d'Ivoire          0
## 4046  2020-02-02    Africa                       DR Congo          0
## 4047  2020-02-02    Africa                       Djibouti          0
## 4048  2020-02-02    Africa                          Egypt          0
## 4049  2020-02-02    Africa                          Egypt          0
## 4050  2020-02-02    Africa              Equatorial Guinea          0
## 4051  2020-02-02    Africa                        Eritrea          0
## 4052  2020-02-02    Africa                       Eswatini          0
## 4053  2020-02-02    Africa                       Ethiopia          0
## 4054  2020-02-02    Africa                          Gabon          0
## 4055  2020-02-02    Africa                         Gambia          0
## 4056  2020-02-02    Africa                          Ghana          0
## 4057  2020-02-02    Africa                         Guinea          0
## 4058  2020-02-02    Africa                  Guinea-Bissau          0
## 4059  2020-02-02    Africa                          Kenya          0
## 4060  2020-02-02    Africa                        Lesotho          0
## 4061  2020-02-02    Africa                        Liberia          0
## 4062  2020-02-02    Africa                          Libya          0
## 4063  2020-02-02    Africa                     Madagascar          0
## 4064  2020-02-02    Africa                         Malawi          0
## 4065  2020-02-02    Africa                           Mali          0
## 4066  2020-02-02    Africa                     Mauritania          0
## 4067  2020-02-02    Africa                      Mauritius          0
## 4068  2020-02-02    Africa                        Morocco          0
## 4069  2020-02-02    Africa                     Mozambique          0
## 4070  2020-02-02    Africa                        Namibia          0
## 4071  2020-02-02    Africa                          Niger          0
## 4072  2020-02-02    Africa                        Nigeria          0
## 4073  2020-02-02    Africa                        Nigeria          0
## 4074  2020-02-02    Africa                         Rwanda          0
## 4075  2020-02-02    Africa          Sao Tome and Principe          0
## 4076  2020-02-02    Africa                        Senegal          0
## 4077  2020-02-02    Africa                     Seychelles          0
## 4078  2020-02-02    Africa                   Sierra Leone          0
## 4079  2020-02-02    Africa                        Somalia          0
## 4080  2020-02-02    Africa                   South Africa          0
## 4081  2020-02-02    Africa                    South Sudan          0
## 4082  2020-02-02    Africa                          Sudan          0
## 4083  2020-02-02    Africa                       Tanzania          0
## 4084  2020-02-02    Africa                           Togo          0
## 4085  2020-02-02    Africa                        Tunisia          0
## 4086  2020-02-02    Africa                         Uganda          0
## 4087  2020-02-02    Africa                 Western Sahara          0
## 4088  2020-02-02    Africa                         Zambia          0
## 4089  2020-02-02    Africa                       Zimbabwe          0
## 4090  2020-02-02   America            Antigua and Barbuda          0
## 4091  2020-02-02   America                      Argentina          0
## 4092  2020-02-02   America                        Bahamas          0
## 4093  2020-02-02   America                       Barbados          0
## 4094  2020-02-02   America                         Belize          0
## 4095  2020-02-02   America                        Bolivia          0
## 4096  2020-02-02   America                         Brazil          0
## 4097  2020-02-02   America                         Brazil          0
## 4098  2020-02-02   America                         Canada          0
## 4099  2020-02-02   America                          Chile          0
## 4100  2020-02-02   America                       Colombia          0
## 4101  2020-02-02   America                     Costa Rica          0
## 4102  2020-02-02   America                           Cuba          0
## 4103  2020-02-02   America                       Dominica          0
## 4104  2020-02-02   America             Dominican Republic          0
## 4105  2020-02-02   America             Dominican Republic          0
## 4106  2020-02-02   America                        Ecuador          0
## 4107  2020-02-02   America                        Ecuador          0
## 4108  2020-02-02   America                    El Salvador          0
## 4109  2020-02-02   America                        Grenada          0
## 4110  2020-02-02   America                      Guatemala          0
## 4111  2020-02-02   America                         Guyana          0
## 4112  2020-02-02   America                          Haiti          0
## 4113  2020-02-02   America                       Honduras          0
## 4114  2020-02-02   America                        Jamaica          0
## 4115  2020-02-02   America                         Mexico          0
## 4116  2020-02-02   America                         Mexico          0
## 4117  2020-02-02   America                      Nicaragua          0
## 4118  2020-02-02   America                         Panama          0
## 4119  2020-02-02   America                       Paraguay          0
## 4120  2020-02-02   America                           Peru          0
## 4121  2020-02-02   America            St. Kitts and Nevis          0
## 4122  2020-02-02   America                      St. Lucia          0
## 4123  2020-02-02   America St. Vincent and the Grenadines          0
## 4124  2020-02-02   America                       Suriname          0
## 4125  2020-02-02   America            Trinidad and Tobago          0
## 4126  2020-02-02   America                  United States          0
## 4127  2020-02-02   America                  United States          1
## 4128  2020-02-02   America                        Uruguay          0
## 4129  2020-02-02   America                      Venezuela          0
## 4130  2020-02-02      Asia                    Afghanistan          0
## 4131  2020-02-02      Asia                    Afghanistan          0
## 4132  2020-02-02      Asia                        Bahrain          0
## 4133  2020-02-02      Asia                        Bahrain          0
## 4134  2020-02-02      Asia                     Bangladesh          0
## 4135  2020-02-02      Asia                         Bhutan          0
## 4136  2020-02-02      Asia              Brunei Darussalam          0
## 4137  2020-02-02      Asia                       Cambodia          0
## 4138  2020-02-02      Asia                       Cambodia          0
## 4139  2020-02-02      Asia                          China       2590
## 4140  2020-02-02      Asia                          India          1
## 4141  2020-02-02      Asia                          India          1
## 4142  2020-02-02      Asia                      Indonesia          0
## 4143  2020-02-02      Asia                      Indonesia          0
## 4144  2020-02-02      Asia                           Iran          0
## 4145  2020-02-02      Asia                           Iran          0
## 4146  2020-02-02      Asia                           Iraq          0
## 4147  2020-02-02      Asia                           Iraq          0
## 4148  2020-02-02      Asia                         Israel          0
## 4149  2020-02-02      Asia                         Israel          0
## 4150  2020-02-02      Asia                          Japan          0
## 4151  2020-02-02      Asia                          Japan          4
## 4152  2020-02-02      Asia                         Jordan          0
## 4153  2020-02-02      Asia                     Kazakhstan          0
## 4154  2020-02-02      Asia                         Kuwait          0
## 4155  2020-02-02      Asia                         Kuwait          0
## 4156  2020-02-02      Asia                Kyrgyz Republic          0
## 4157  2020-02-02      Asia                           Laos          0
## 4158  2020-02-02      Asia                        Lebanon          0
## 4159  2020-02-02      Asia                        Lebanon          0
## 4160  2020-02-02      Asia                       Malaysia          0
## 4161  2020-02-02      Asia                       Malaysia          0
## 4162  2020-02-02      Asia                       Maldives          0
## 4163  2020-02-02      Asia                       Mongolia          0
## 4164  2020-02-02      Asia                        Myanmar          0
## 4165  2020-02-02      Asia                          Nepal          0
## 4166  2020-02-02      Asia                          Nepal          0
## 4167  2020-02-02      Asia                           Oman          0
## 4168  2020-02-02      Asia                           Oman          0
## 4169  2020-02-02      Asia                       Pakistan          0
## 4170  2020-02-02      Asia                       Pakistan          0
## 4171  2020-02-02      Asia                      Palestine          0
## 4172  2020-02-02      Asia                    Philippines          1
## 4173  2020-02-02      Asia                    Philippines          1
## 4174  2020-02-02      Asia                          Qatar          0
## 4175  2020-02-02      Asia                          Qatar          0
## 4176  2020-02-02      Asia                   Saudi Arabia          0
## 4177  2020-02-02      Asia                      Singapore          2
## 4178  2020-02-02      Asia                      Singapore          2
## 4179  2020-02-02      Asia                    South Korea          3
## 4180  2020-02-02      Asia                    South Korea          3
## 4181  2020-02-02      Asia                      Sri Lanka          0
## 4182  2020-02-02      Asia                      Sri Lanka          0
## 4183  2020-02-02      Asia                          Syria          0
## 4184  2020-02-02      Asia                     Tajikistan          0
## 4185  2020-02-02      Asia                       Thailand          0
## 4186  2020-02-02      Asia                       Thailand          0
## 4187  2020-02-02      Asia                    Timor-Leste          0
## 4188  2020-02-02      Asia                         Turkey          0
## 4189  2020-02-02      Asia           United Arab Emirates          1
## 4190  2020-02-02      Asia           United Arab Emirates          1
## 4191  2020-02-02      Asia                     Uzbekistan          0
## 4192  2020-02-02      Asia                        Vietnam          0
## 4193  2020-02-02      Asia                        Vietnam          2
## 4194  2020-02-02      Asia                          Yemen          0
## 4195  2020-02-02      Asia                      not found          0
## 4196  2020-02-02    Europe                        Albania          0
## 4197  2020-02-02    Europe                        Andorra          0
## 4198  2020-02-02    Europe                        Armenia          0
## 4199  2020-02-02    Europe                        Armenia          0
## 4200  2020-02-02    Europe                        Austria          0
## 4201  2020-02-02    Europe                        Austria          0
## 4202  2020-02-02    Europe                     Azerbaijan          0
## 4203  2020-02-02    Europe                     Azerbaijan          0
## 4204  2020-02-02    Europe                        Belarus          0
## 4205  2020-02-02    Europe                        Belarus          0
## 4206  2020-02-02    Europe                        Belgium          0
## 4207  2020-02-02    Europe                        Belgium          0
## 4208  2020-02-02    Europe         Bosnia and Herzegovina          0
## 4209  2020-02-02    Europe                       Bulgaria          0
## 4210  2020-02-02    Europe                        Croatia          0
## 4211  2020-02-02    Europe                        Croatia          0
## 4212  2020-02-02    Europe                         Cyprus          0
## 4213  2020-02-02    Europe                 Czech Republic          0
## 4214  2020-02-02    Europe                 Czech Republic          0
## 4215  2020-02-02    Europe                        Denmark          0
## 4216  2020-02-02    Europe                        Denmark          0
## 4217  2020-02-02    Europe                        Estonia          0
## 4218  2020-02-02    Europe                        Estonia          0
## 4219  2020-02-02    Europe                        Finland          0
## 4220  2020-02-02    Europe                        Finland          0
## 4221  2020-02-02    Europe                         France          0
## 4222  2020-02-02    Europe                         France          0
## 4223  2020-02-02    Europe                        Georgia          0
## 4224  2020-02-02    Europe                        Georgia          0
## 4225  2020-02-02    Europe                        Germany          1
## 4226  2020-02-02    Europe                        Germany          2
## 4227  2020-02-02    Europe                         Greece          0
## 4228  2020-02-02    Europe                         Greece          0
## 4229  2020-02-02    Europe                        Hungary          0
## 4230  2020-02-02    Europe                        Iceland          0
## 4231  2020-02-02    Europe                        Iceland          0
## 4232  2020-02-02    Europe                        Ireland          0
## 4233  2020-02-02    Europe                        Ireland          0
## 4234  2020-02-02    Europe                          Italy          0
## 4235  2020-02-02    Europe                          Italy          0
## 4236  2020-02-02    Europe                         Kosovo          0
## 4237  2020-02-02    Europe                         Latvia          0
## 4238  2020-02-02    Europe                  Liechtenstein          0
## 4239  2020-02-02    Europe                      Lithuania          0
## 4240  2020-02-02    Europe                      Lithuania          0
## 4241  2020-02-02    Europe                     Luxembourg          0
## 4242  2020-02-02    Europe                     Luxembourg          0
## 4243  2020-02-02    Europe                      Macedonia          0
## 4244  2020-02-02    Europe                      Macedonia          0
## 4245  2020-02-02    Europe                          Malta          0
## 4246  2020-02-02    Europe                        Moldova          0
## 4247  2020-02-02    Europe                         Monaco          0
## 4248  2020-02-02    Europe                         Monaco          0
## 4249  2020-02-02    Europe                     Montenegro          0
## 4250  2020-02-02    Europe                    Netherlands          0
## 4251  2020-02-02    Europe                    Netherlands          0
## 4252  2020-02-02    Europe                         Norway          0
## 4253  2020-02-02    Europe                         Norway          0
## 4254  2020-02-02    Europe                         Poland          0
## 4255  2020-02-02    Europe                       Portugal          0
## 4256  2020-02-02    Europe                        Romania          0
## 4257  2020-02-02    Europe                        Romania          0
## 4258  2020-02-02    Europe                         Russia          0
## 4259  2020-02-02    Europe                         Russia          0
## 4260  2020-02-02    Europe                     San Marino          0
## 4261  2020-02-02    Europe                     San Marino          0
## 4262  2020-02-02    Europe                         Serbia          0
## 4263  2020-02-02    Europe                       Slovakia          0
## 4264  2020-02-02    Europe                       Slovenia          0
## 4265  2020-02-02    Europe                          Spain          0
## 4266  2020-02-02    Europe                          Spain          0
## 4267  2020-02-02    Europe                         Sweden          0
## 4268  2020-02-02    Europe                         Sweden          0
## 4269  2020-02-02    Europe                    Switzerland          0
## 4270  2020-02-02    Europe                    Switzerland          0
## 4271  2020-02-02    Europe                        Ukraine          0
## 4272  2020-02-02    Europe                 United Kingdom          0
## 4273  2020-02-02    Europe                 United Kingdom          0
## 4274  2020-02-02    Europe                        Vatican          0
## 4275  2020-02-02   Oceania                      Australia          2
## 4276  2020-02-02   Oceania                           Fiji          0
## 4277  2020-02-02   Oceania                    New Zealand          0
## 4278  2020-02-02   Oceania                    New Zealand          0
## 4279  2020-02-02   Oceania               Papua New Guinea          0
## 4280  2020-02-02     Other                      not found          0
## 4281  2020-02-03    Africa                        Algeria          0
## 4282  2020-02-03    Africa                        Algeria          0
## 4283  2020-02-03    Africa                         Angola          0
## 4284  2020-02-03    Africa                          Benin          0
## 4285  2020-02-03    Africa                       Botswana          0
## 4286  2020-02-03    Africa                   Burkina Faso          0
## 4287  2020-02-03    Africa                        Burundi          0
## 4288  2020-02-03    Africa                     Cabo Verde          0
## 4289  2020-02-03    Africa                       Cameroon          0
## 4290  2020-02-03    Africa       Central African Republic          0
## 4291  2020-02-03    Africa                           Chad          0
## 4292  2020-02-03    Africa                        Comoros          0
## 4293  2020-02-03    Africa                 Congo Republic          0
## 4294  2020-02-03    Africa                  Cote d'Ivoire          0
## 4295  2020-02-03    Africa                       DR Congo          0
## 4296  2020-02-03    Africa                       Djibouti          0
## 4297  2020-02-03    Africa                          Egypt          0
## 4298  2020-02-03    Africa                          Egypt          0
## 4299  2020-02-03    Africa              Equatorial Guinea          0
## 4300  2020-02-03    Africa                        Eritrea          0
## 4301  2020-02-03    Africa                       Eswatini          0
## 4302  2020-02-03    Africa                       Ethiopia          0
## 4303  2020-02-03    Africa                          Gabon          0
## 4304  2020-02-03    Africa                         Gambia          0
## 4305  2020-02-03    Africa                          Ghana          0
## 4306  2020-02-03    Africa                         Guinea          0
## 4307  2020-02-03    Africa                  Guinea-Bissau          0
## 4308  2020-02-03    Africa                          Kenya          0
## 4309  2020-02-03    Africa                        Lesotho          0
## 4310  2020-02-03    Africa                        Liberia          0
## 4311  2020-02-03    Africa                          Libya          0
## 4312  2020-02-03    Africa                     Madagascar          0
## 4313  2020-02-03    Africa                         Malawi          0
## 4314  2020-02-03    Africa                           Mali          0
## 4315  2020-02-03    Africa                     Mauritania          0
## 4316  2020-02-03    Africa                      Mauritius          0
## 4317  2020-02-03    Africa                        Morocco          0
## 4318  2020-02-03    Africa                     Mozambique          0
## 4319  2020-02-03    Africa                        Namibia          0
## 4320  2020-02-03    Africa                          Niger          0
## 4321  2020-02-03    Africa                        Nigeria          0
## 4322  2020-02-03    Africa                        Nigeria          0
## 4323  2020-02-03    Africa                         Rwanda          0
## 4324  2020-02-03    Africa          Sao Tome and Principe          0
## 4325  2020-02-03    Africa                        Senegal          0
## 4326  2020-02-03    Africa                     Seychelles          0
## 4327  2020-02-03    Africa                   Sierra Leone          0
## 4328  2020-02-03    Africa                        Somalia          0
## 4329  2020-02-03    Africa                   South Africa          0
## 4330  2020-02-03    Africa                    South Sudan          0
## 4331  2020-02-03    Africa                          Sudan          0
## 4332  2020-02-03    Africa                       Tanzania          0
## 4333  2020-02-03    Africa                           Togo          0
## 4334  2020-02-03    Africa                        Tunisia          0
## 4335  2020-02-03    Africa                         Uganda          0
## 4336  2020-02-03    Africa                 Western Sahara          0
## 4337  2020-02-03    Africa                         Zambia          0
## 4338  2020-02-03    Africa                       Zimbabwe          0
## 4339  2020-02-03   America            Antigua and Barbuda          0
## 4340  2020-02-03   America                      Argentina          0
## 4341  2020-02-03   America                        Bahamas          0
## 4342  2020-02-03   America                       Barbados          0
## 4343  2020-02-03   America                         Belize          0
## 4344  2020-02-03   America                        Bolivia          0
## 4345  2020-02-03   America                         Brazil          0
## 4346  2020-02-03   America                         Brazil          0
## 4347  2020-02-03   America                         Canada          0
## 4348  2020-02-03   America                          Chile          0
## 4349  2020-02-03   America                       Colombia          0
## 4350  2020-02-03   America                     Costa Rica          0
## 4351  2020-02-03   America                           Cuba          0
## 4352  2020-02-03   America                       Dominica          0
## 4353  2020-02-03   America             Dominican Republic          0
## 4354  2020-02-03   America             Dominican Republic          0
## 4355  2020-02-03   America                        Ecuador          0
## 4356  2020-02-03   America                        Ecuador          0
## 4357  2020-02-03   America                    El Salvador          0
## 4358  2020-02-03   America                        Grenada          0
## 4359  2020-02-03   America                      Guatemala          0
## 4360  2020-02-03   America                         Guyana          0
## 4361  2020-02-03   America                          Haiti          0
## 4362  2020-02-03   America                       Honduras          0
## 4363  2020-02-03   America                        Jamaica          0
## 4364  2020-02-03   America                         Mexico          0
## 4365  2020-02-03   America                         Mexico          0
## 4366  2020-02-03   America                      Nicaragua          0
## 4367  2020-02-03   America                         Panama          0
## 4368  2020-02-03   America                       Paraguay          0
## 4369  2020-02-03   America                           Peru          0
## 4370  2020-02-03   America            St. Kitts and Nevis          0
## 4371  2020-02-03   America                      St. Lucia          0
## 4372  2020-02-03   America St. Vincent and the Grenadines          0
## 4373  2020-02-03   America                       Suriname          0
## 4374  2020-02-03   America            Trinidad and Tobago          0
## 4375  2020-02-03   America                  United States          3
## 4376  2020-02-03   America                  United States          3
## 4377  2020-02-03   America                        Uruguay          0
## 4378  2020-02-03   America                      Venezuela          0
## 4379  2020-02-03      Asia                    Afghanistan          0
## 4380  2020-02-03      Asia                    Afghanistan          0
## 4381  2020-02-03      Asia                        Bahrain          0
## 4382  2020-02-03      Asia                        Bahrain          0
## 4383  2020-02-03      Asia                     Bangladesh          0
## 4384  2020-02-03      Asia                         Bhutan          0
## 4385  2020-02-03      Asia              Brunei Darussalam          0
## 4386  2020-02-03      Asia                       Cambodia          0
## 4387  2020-02-03      Asia                       Cambodia          0
## 4388  2020-02-03      Asia                          China       2812
## 4389  2020-02-03      Asia                          India          0
## 4390  2020-02-03      Asia                          India          1
## 4391  2020-02-03      Asia                      Indonesia          0
## 4392  2020-02-03      Asia                      Indonesia          0
## 4393  2020-02-03      Asia                           Iran          0
## 4394  2020-02-03      Asia                           Iran          0
## 4395  2020-02-03      Asia                           Iraq          0
## 4396  2020-02-03      Asia                           Iraq          0
## 4397  2020-02-03      Asia                         Israel          0
## 4398  2020-02-03      Asia                         Israel          0
## 4399  2020-02-03      Asia                          Japan          0
## 4400  2020-02-03      Asia                          Japan          1
## 4401  2020-02-03      Asia                         Jordan          0
## 4402  2020-02-03      Asia                     Kazakhstan          0
## 4403  2020-02-03      Asia                         Kuwait          0
## 4404  2020-02-03      Asia                         Kuwait          0
## 4405  2020-02-03      Asia                Kyrgyz Republic          0
## 4406  2020-02-03      Asia                           Laos          0
## 4407  2020-02-03      Asia                        Lebanon          0
## 4408  2020-02-03      Asia                        Lebanon          0
## 4409  2020-02-03      Asia                       Malaysia          0
## 4410  2020-02-03      Asia                       Malaysia          0
## 4411  2020-02-03      Asia                       Maldives          0
## 4412  2020-02-03      Asia                       Mongolia          0
## 4413  2020-02-03      Asia                        Myanmar          0
## 4414  2020-02-03      Asia                          Nepal          0
## 4415  2020-02-03      Asia                          Nepal          0
## 4416  2020-02-03      Asia                           Oman          0
## 4417  2020-02-03      Asia                           Oman          0
## 4418  2020-02-03      Asia                       Pakistan          0
## 4419  2020-02-03      Asia                       Pakistan          0
## 4420  2020-02-03      Asia                      Palestine          0
## 4421  2020-02-03      Asia                    Philippines          0
## 4422  2020-02-03      Asia                    Philippines          0
## 4423  2020-02-03      Asia                          Qatar          0
## 4424  2020-02-03      Asia                          Qatar          0
## 4425  2020-02-03      Asia                   Saudi Arabia          0
## 4426  2020-02-03      Asia                      Singapore          0
## 4427  2020-02-03      Asia                      Singapore          0
## 4428  2020-02-03      Asia                    South Korea          0
## 4429  2020-02-03      Asia                    South Korea          0
## 4430  2020-02-03      Asia                      Sri Lanka          0
## 4431  2020-02-03      Asia                      Sri Lanka          0
## 4432  2020-02-03      Asia                          Syria          0
## 4433  2020-02-03      Asia                     Tajikistan          0
## 4434  2020-02-03      Asia                       Thailand          0
## 4435  2020-02-03      Asia                       Thailand          0
## 4436  2020-02-03      Asia                    Timor-Leste          0
## 4437  2020-02-03      Asia                         Turkey          0
## 4438  2020-02-03      Asia           United Arab Emirates          0
## 4439  2020-02-03      Asia           United Arab Emirates          0
## 4440  2020-02-03      Asia                     Uzbekistan          0
## 4441  2020-02-03      Asia                        Vietnam          1
## 4442  2020-02-03      Asia                        Vietnam          2
## 4443  2020-02-03      Asia                          Yemen          0
## 4444  2020-02-03      Asia                      not found          0
## 4445  2020-02-03    Europe                        Albania          0
## 4446  2020-02-03    Europe                        Andorra          0
## 4447  2020-02-03    Europe                        Armenia          0
## 4448  2020-02-03    Europe                        Armenia          0
## 4449  2020-02-03    Europe                        Austria          0
## 4450  2020-02-03    Europe                        Austria          0
## 4451  2020-02-03    Europe                     Azerbaijan          0
## 4452  2020-02-03    Europe                     Azerbaijan          0
## 4453  2020-02-03    Europe                        Belarus          0
## 4454  2020-02-03    Europe                        Belarus          0
## 4455  2020-02-03    Europe                        Belgium          0
## 4456  2020-02-03    Europe                        Belgium          0
## 4457  2020-02-03    Europe         Bosnia and Herzegovina          0
## 4458  2020-02-03    Europe                       Bulgaria          0
## 4459  2020-02-03    Europe                        Croatia          0
## 4460  2020-02-03    Europe                        Croatia          0
## 4461  2020-02-03    Europe                         Cyprus          0
## 4462  2020-02-03    Europe                 Czech Republic          0
## 4463  2020-02-03    Europe                 Czech Republic          0
## 4464  2020-02-03    Europe                        Denmark          0
## 4465  2020-02-03    Europe                        Denmark          0
## 4466  2020-02-03    Europe                        Estonia          0
## 4467  2020-02-03    Europe                        Estonia          0
## 4468  2020-02-03    Europe                        Finland          0
## 4469  2020-02-03    Europe                        Finland          0
## 4470  2020-02-03    Europe                         France          0
## 4471  2020-02-03    Europe                         France          0
## 4472  2020-02-03    Europe                        Georgia          0
## 4473  2020-02-03    Europe                        Georgia          0
## 4474  2020-02-03    Europe                        Germany          1
## 4475  2020-02-03    Europe                        Germany          2
## 4476  2020-02-03    Europe                         Greece          0
## 4477  2020-02-03    Europe                         Greece          0
## 4478  2020-02-03    Europe                        Hungary          0
## 4479  2020-02-03    Europe                        Iceland          0
## 4480  2020-02-03    Europe                        Iceland          0
## 4481  2020-02-03    Europe                        Ireland          0
## 4482  2020-02-03    Europe                        Ireland          0
## 4483  2020-02-03    Europe                          Italy          0
## 4484  2020-02-03    Europe                          Italy          0
## 4485  2020-02-03    Europe                         Kosovo          0
## 4486  2020-02-03    Europe                         Latvia          0
## 4487  2020-02-03    Europe                  Liechtenstein          0
## 4488  2020-02-03    Europe                      Lithuania          0
## 4489  2020-02-03    Europe                      Lithuania          0
## 4490  2020-02-03    Europe                     Luxembourg          0
## 4491  2020-02-03    Europe                     Luxembourg          0
## 4492  2020-02-03    Europe                      Macedonia          0
## 4493  2020-02-03    Europe                      Macedonia          0
## 4494  2020-02-03    Europe                          Malta          0
## 4495  2020-02-03    Europe                        Moldova          0
## 4496  2020-02-03    Europe                         Monaco          0
## 4497  2020-02-03    Europe                         Monaco          0
## 4498  2020-02-03    Europe                     Montenegro          0
## 4499  2020-02-03    Europe                    Netherlands          0
## 4500  2020-02-03    Europe                    Netherlands          0
## 4501  2020-02-03    Europe                         Norway          0
## 4502  2020-02-03    Europe                         Norway          0
## 4503  2020-02-03    Europe                         Poland          0
## 4504  2020-02-03    Europe                       Portugal          0
## 4505  2020-02-03    Europe                        Romania          0
## 4506  2020-02-03    Europe                        Romania          0
## 4507  2020-02-03    Europe                         Russia          0
## 4508  2020-02-03    Europe                         Russia          0
## 4509  2020-02-03    Europe                     San Marino          0
## 4510  2020-02-03    Europe                     San Marino          0
## 4511  2020-02-03    Europe                         Serbia          0
## 4512  2020-02-03    Europe                       Slovakia          0
## 4513  2020-02-03    Europe                       Slovenia          0
## 4514  2020-02-03    Europe                          Spain          0
## 4515  2020-02-03    Europe                          Spain          0
## 4516  2020-02-03    Europe                         Sweden          0
## 4517  2020-02-03    Europe                         Sweden          0
## 4518  2020-02-03    Europe                    Switzerland          0
## 4519  2020-02-03    Europe                    Switzerland          0
## 4520  2020-02-03    Europe                        Ukraine          0
## 4521  2020-02-03    Europe                 United Kingdom          0
## 4522  2020-02-03    Europe                 United Kingdom          0
## 4523  2020-02-03    Europe                        Vatican          0
## 4524  2020-02-03   Oceania                      Australia          0
## 4525  2020-02-03   Oceania                           Fiji          0
## 4526  2020-02-03   Oceania                    New Zealand          0
## 4527  2020-02-03   Oceania                    New Zealand          0
## 4528  2020-02-03   Oceania               Papua New Guinea          0
## 4529  2020-02-03     Other                      not found          0
## 4530  2020-02-04    Africa                        Algeria          0
## 4531  2020-02-04    Africa                        Algeria          0
## 4532  2020-02-04    Africa                         Angola          0
## 4533  2020-02-04    Africa                          Benin          0
## 4534  2020-02-04    Africa                       Botswana          0
## 4535  2020-02-04    Africa                   Burkina Faso          0
## 4536  2020-02-04    Africa                        Burundi          0
## 4537  2020-02-04    Africa                     Cabo Verde          0
## 4538  2020-02-04    Africa                       Cameroon          0
## 4539  2020-02-04    Africa       Central African Republic          0
## 4540  2020-02-04    Africa                           Chad          0
## 4541  2020-02-04    Africa                        Comoros          0
## 4542  2020-02-04    Africa                 Congo Republic          0
## 4543  2020-02-04    Africa                  Cote d'Ivoire          0
## 4544  2020-02-04    Africa                       DR Congo          0
## 4545  2020-02-04    Africa                       Djibouti          0
## 4546  2020-02-04    Africa                          Egypt          0
## 4547  2020-02-04    Africa                          Egypt          0
## 4548  2020-02-04    Africa              Equatorial Guinea          0
## 4549  2020-02-04    Africa                        Eritrea          0
## 4550  2020-02-04    Africa                       Eswatini          0
## 4551  2020-02-04    Africa                       Ethiopia          0
## 4552  2020-02-04    Africa                          Gabon          0
## 4553  2020-02-04    Africa                         Gambia          0
## 4554  2020-02-04    Africa                          Ghana          0
## 4555  2020-02-04    Africa                         Guinea          0
## 4556  2020-02-04    Africa                  Guinea-Bissau          0
## 4557  2020-02-04    Africa                          Kenya          0
## 4558  2020-02-04    Africa                        Lesotho          0
## 4559  2020-02-04    Africa                        Liberia          0
## 4560  2020-02-04    Africa                          Libya          0
## 4561  2020-02-04    Africa                     Madagascar          0
## 4562  2020-02-04    Africa                         Malawi          0
## 4563  2020-02-04    Africa                           Mali          0
## 4564  2020-02-04    Africa                     Mauritania          0
## 4565  2020-02-04    Africa                      Mauritius          0
## 4566  2020-02-04    Africa                        Morocco          0
## 4567  2020-02-04    Africa                     Mozambique          0
## 4568  2020-02-04    Africa                        Namibia          0
## 4569  2020-02-04    Africa                          Niger          0
## 4570  2020-02-04    Africa                        Nigeria          0
## 4571  2020-02-04    Africa                        Nigeria          0
## 4572  2020-02-04    Africa                         Rwanda          0
## 4573  2020-02-04    Africa          Sao Tome and Principe          0
## 4574  2020-02-04    Africa                        Senegal          0
## 4575  2020-02-04    Africa                     Seychelles          0
## 4576  2020-02-04    Africa                   Sierra Leone          0
## 4577  2020-02-04    Africa                        Somalia          0
## 4578  2020-02-04    Africa                   South Africa          0
## 4579  2020-02-04    Africa                    South Sudan          0
## 4580  2020-02-04    Africa                          Sudan          0
## 4581  2020-02-04    Africa                       Tanzania          0
## 4582  2020-02-04    Africa                           Togo          0
## 4583  2020-02-04    Africa                        Tunisia          0
## 4584  2020-02-04    Africa                         Uganda          0
## 4585  2020-02-04    Africa                 Western Sahara          0
## 4586  2020-02-04    Africa                         Zambia          0
## 4587  2020-02-04    Africa                       Zimbabwe          0
## 4588  2020-02-04   America            Antigua and Barbuda          0
## 4589  2020-02-04   America                      Argentina          0
## 4590  2020-02-04   America                        Bahamas          0
## 4591  2020-02-04   America                       Barbados          0
## 4592  2020-02-04   America                         Belize          0
## 4593  2020-02-04   America                        Bolivia          0
## 4594  2020-02-04   America                         Brazil          0
## 4595  2020-02-04   America                         Brazil          0
## 4596  2020-02-04   America                         Canada          0
## 4597  2020-02-04   America                          Chile          0
## 4598  2020-02-04   America                       Colombia          0
## 4599  2020-02-04   America                     Costa Rica          0
## 4600  2020-02-04   America                           Cuba          0
## 4601  2020-02-04   America                       Dominica          0
## 4602  2020-02-04   America             Dominican Republic          0
## 4603  2020-02-04   America             Dominican Republic          0
## 4604  2020-02-04   America                        Ecuador          0
## 4605  2020-02-04   America                        Ecuador          0
## 4606  2020-02-04   America                    El Salvador          0
## 4607  2020-02-04   America                        Grenada          0
## 4608  2020-02-04   America                      Guatemala          0
## 4609  2020-02-04   America                         Guyana          0
## 4610  2020-02-04   America                          Haiti          0
## 4611  2020-02-04   America                       Honduras          0
## 4612  2020-02-04   America                        Jamaica          0
## 4613  2020-02-04   America                         Mexico          0
## 4614  2020-02-04   America                         Mexico          0
## 4615  2020-02-04   America                      Nicaragua          0
## 4616  2020-02-04   America                         Panama          0
## 4617  2020-02-04   America                       Paraguay          0
## 4618  2020-02-04   America                           Peru          0
## 4619  2020-02-04   America            St. Kitts and Nevis          0
## 4620  2020-02-04   America                      St. Lucia          0
## 4621  2020-02-04   America St. Vincent and the Grenadines          0
## 4622  2020-02-04   America                       Suriname          0
## 4623  2020-02-04   America            Trinidad and Tobago          0
## 4624  2020-02-04   America                  United States          0
## 4625  2020-02-04   America                  United States          0
## 4626  2020-02-04   America                        Uruguay          0
## 4627  2020-02-04   America                      Venezuela          0
## 4628  2020-02-04      Asia                    Afghanistan          0
## 4629  2020-02-04      Asia                    Afghanistan          0
## 4630  2020-02-04      Asia                        Bahrain          0
## 4631  2020-02-04      Asia                        Bahrain          0
## 4632  2020-02-04      Asia                     Bangladesh          0
## 4633  2020-02-04      Asia                         Bhutan          0
## 4634  2020-02-04      Asia              Brunei Darussalam          0
## 4635  2020-02-04      Asia                       Cambodia          0
## 4636  2020-02-04      Asia                       Cambodia          0
## 4637  2020-02-04      Asia                          China       3237
## 4638  2020-02-04      Asia                          India          0
## 4639  2020-02-04      Asia                          India          1
## 4640  2020-02-04      Asia                      Indonesia          0
## 4641  2020-02-04      Asia                      Indonesia          0
## 4642  2020-02-04      Asia                           Iran          0
## 4643  2020-02-04      Asia                           Iran          0
## 4644  2020-02-04      Asia                           Iraq          0
## 4645  2020-02-04      Asia                           Iraq          0
## 4646  2020-02-04      Asia                         Israel          0
## 4647  2020-02-04      Asia                         Israel          0
## 4648  2020-02-04      Asia                          Japan          0
## 4649  2020-02-04      Asia                          Japan          2
## 4650  2020-02-04      Asia                         Jordan          0
## 4651  2020-02-04      Asia                     Kazakhstan          0
## 4652  2020-02-04      Asia                         Kuwait          0
## 4653  2020-02-04      Asia                         Kuwait          0
## 4654  2020-02-04      Asia                Kyrgyz Republic          0
## 4655  2020-02-04      Asia                           Laos          0
## 4656  2020-02-04      Asia                        Lebanon          0
## 4657  2020-02-04      Asia                        Lebanon          0
## 4658  2020-02-04      Asia                       Malaysia          0
## 4659  2020-02-04      Asia                       Malaysia          2
## 4660  2020-02-04      Asia                       Maldives          0
## 4661  2020-02-04      Asia                       Mongolia          0
## 4662  2020-02-04      Asia                        Myanmar          0
## 4663  2020-02-04      Asia                          Nepal          0
## 4664  2020-02-04      Asia                          Nepal          0
## 4665  2020-02-04      Asia                           Oman          0
## 4666  2020-02-04      Asia                           Oman          0
## 4667  2020-02-04      Asia                       Pakistan          0
## 4668  2020-02-04      Asia                       Pakistan          0
## 4669  2020-02-04      Asia                      Palestine          0
## 4670  2020-02-04      Asia                    Philippines          0
## 4671  2020-02-04      Asia                    Philippines          0
## 4672  2020-02-04      Asia                          Qatar          0
## 4673  2020-02-04      Asia                          Qatar          0
## 4674  2020-02-04      Asia                   Saudi Arabia          0
## 4675  2020-02-04      Asia                      Singapore          0
## 4676  2020-02-04      Asia                      Singapore          6
## 4677  2020-02-04      Asia                    South Korea          1
## 4678  2020-02-04      Asia                    South Korea          1
## 4679  2020-02-04      Asia                      Sri Lanka          0
## 4680  2020-02-04      Asia                      Sri Lanka          0
## 4681  2020-02-04      Asia                          Syria          0
## 4682  2020-02-04      Asia                     Tajikistan          0
## 4683  2020-02-04      Asia                       Thailand          0
## 4684  2020-02-04      Asia                       Thailand          6
## 4685  2020-02-04      Asia                    Timor-Leste          0
## 4686  2020-02-04      Asia                         Turkey          0
## 4687  2020-02-04      Asia           United Arab Emirates          0
## 4688  2020-02-04      Asia           United Arab Emirates          0
## 4689  2020-02-04      Asia                     Uzbekistan          0
## 4690  2020-02-04      Asia                        Vietnam          0
## 4691  2020-02-04      Asia                        Vietnam          1
## 4692  2020-02-04      Asia                          Yemen          0
## 4693  2020-02-04      Asia                      not found          0
## 4694  2020-02-04    Europe                        Albania          0
## 4695  2020-02-04    Europe                        Andorra          0
## 4696  2020-02-04    Europe                        Armenia          0
## 4697  2020-02-04    Europe                        Armenia          0
## 4698  2020-02-04    Europe                        Austria          0
## 4699  2020-02-04    Europe                        Austria          0
## 4700  2020-02-04    Europe                     Azerbaijan          0
## 4701  2020-02-04    Europe                     Azerbaijan          0
## 4702  2020-02-04    Europe                        Belarus          0
## 4703  2020-02-04    Europe                        Belarus          0
## 4704  2020-02-04    Europe                        Belgium          1
## 4705  2020-02-04    Europe                        Belgium          1
## 4706  2020-02-04    Europe         Bosnia and Herzegovina          0
## 4707  2020-02-04    Europe                       Bulgaria          0
## 4708  2020-02-04    Europe                        Croatia          0
## 4709  2020-02-04    Europe                        Croatia          0
## 4710  2020-02-04    Europe                         Cyprus          0
## 4711  2020-02-04    Europe                 Czech Republic          0
## 4712  2020-02-04    Europe                 Czech Republic          0
## 4713  2020-02-04    Europe                        Denmark          0
## 4714  2020-02-04    Europe                        Denmark          0
## 4715  2020-02-04    Europe                        Estonia          0
## 4716  2020-02-04    Europe                        Estonia          0
## 4717  2020-02-04    Europe                        Finland          0
## 4718  2020-02-04    Europe                        Finland          0
## 4719  2020-02-04    Europe                         France          0
## 4720  2020-02-04    Europe                         France          0
## 4721  2020-02-04    Europe                        Georgia          0
## 4722  2020-02-04    Europe                        Georgia          0
## 4723  2020-02-04    Europe                        Germany          0
## 4724  2020-02-04    Europe                        Germany          2
## 4725  2020-02-04    Europe                         Greece          0
## 4726  2020-02-04    Europe                         Greece          0
## 4727  2020-02-04    Europe                        Hungary          0
## 4728  2020-02-04    Europe                        Iceland          0
## 4729  2020-02-04    Europe                        Iceland          0
## 4730  2020-02-04    Europe                        Ireland          0
## 4731  2020-02-04    Europe                        Ireland          0
## 4732  2020-02-04    Europe                          Italy          0
## 4733  2020-02-04    Europe                          Italy          0
## 4734  2020-02-04    Europe                         Kosovo          0
## 4735  2020-02-04    Europe                         Latvia          0
## 4736  2020-02-04    Europe                  Liechtenstein          0
## 4737  2020-02-04    Europe                      Lithuania          0
## 4738  2020-02-04    Europe                      Lithuania          0
## 4739  2020-02-04    Europe                     Luxembourg          0
## 4740  2020-02-04    Europe                     Luxembourg          0
## 4741  2020-02-04    Europe                      Macedonia          0
## 4742  2020-02-04    Europe                      Macedonia          0
## 4743  2020-02-04    Europe                          Malta          0
## 4744  2020-02-04    Europe                        Moldova          0
## 4745  2020-02-04    Europe                         Monaco          0
## 4746  2020-02-04    Europe                         Monaco          0
## 4747  2020-02-04    Europe                     Montenegro          0
## 4748  2020-02-04    Europe                    Netherlands          0
## 4749  2020-02-04    Europe                    Netherlands          0
## 4750  2020-02-04    Europe                         Norway          0
## 4751  2020-02-04    Europe                         Norway          0
## 4752  2020-02-04    Europe                         Poland          0
## 4753  2020-02-04    Europe                       Portugal          0
## 4754  2020-02-04    Europe                        Romania          0
## 4755  2020-02-04    Europe                        Romania          0
## 4756  2020-02-04    Europe                         Russia          0
## 4757  2020-02-04    Europe                         Russia          0
## 4758  2020-02-04    Europe                     San Marino          0
## 4759  2020-02-04    Europe                     San Marino          0
## 4760  2020-02-04    Europe                         Serbia          0
## 4761  2020-02-04    Europe                       Slovakia          0
## 4762  2020-02-04    Europe                       Slovenia          0
## 4763  2020-02-04    Europe                          Spain          0
## 4764  2020-02-04    Europe                          Spain          0
## 4765  2020-02-04    Europe                         Sweden          0
## 4766  2020-02-04    Europe                         Sweden          0
## 4767  2020-02-04    Europe                    Switzerland          0
## 4768  2020-02-04    Europe                    Switzerland          0
## 4769  2020-02-04    Europe                        Ukraine          0
## 4770  2020-02-04    Europe                 United Kingdom          0
## 4771  2020-02-04    Europe                 United Kingdom          0
## 4772  2020-02-04    Europe                        Vatican          0
## 4773  2020-02-04   Oceania                      Australia          0
## 4774  2020-02-04   Oceania                           Fiji          0
## 4775  2020-02-04   Oceania                    New Zealand          0
## 4776  2020-02-04   Oceania                    New Zealand          0
## 4777  2020-02-04   Oceania               Papua New Guinea          0
## 4778  2020-02-04     Other                      not found          0
## 4779  2020-02-05    Africa                        Algeria          0
## 4780  2020-02-05    Africa                        Algeria          0
## 4781  2020-02-05    Africa                         Angola          0
## 4782  2020-02-05    Africa                          Benin          0
## 4783  2020-02-05    Africa                       Botswana          0
## 4784  2020-02-05    Africa                   Burkina Faso          0
## 4785  2020-02-05    Africa                        Burundi          0
## 4786  2020-02-05    Africa                     Cabo Verde          0
## 4787  2020-02-05    Africa                       Cameroon          0
## 4788  2020-02-05    Africa       Central African Republic          0
## 4789  2020-02-05    Africa                           Chad          0
## 4790  2020-02-05    Africa                        Comoros          0
## 4791  2020-02-05    Africa                 Congo Republic          0
## 4792  2020-02-05    Africa                  Cote d'Ivoire          0
## 4793  2020-02-05    Africa                       DR Congo          0
## 4794  2020-02-05    Africa                       Djibouti          0
## 4795  2020-02-05    Africa                          Egypt          0
## 4796  2020-02-05    Africa                          Egypt          0
## 4797  2020-02-05    Africa              Equatorial Guinea          0
## 4798  2020-02-05    Africa                        Eritrea          0
## 4799  2020-02-05    Africa                       Eswatini          0
## 4800  2020-02-05    Africa                       Ethiopia          0
## 4801  2020-02-05    Africa                          Gabon          0
## 4802  2020-02-05    Africa                         Gambia          0
## 4803  2020-02-05    Africa                          Ghana          0
## 4804  2020-02-05    Africa                         Guinea          0
## 4805  2020-02-05    Africa                  Guinea-Bissau          0
## 4806  2020-02-05    Africa                          Kenya          0
## 4807  2020-02-05    Africa                        Lesotho          0
## 4808  2020-02-05    Africa                        Liberia          0
## 4809  2020-02-05    Africa                          Libya          0
## 4810  2020-02-05    Africa                     Madagascar          0
## 4811  2020-02-05    Africa                         Malawi          0
## 4812  2020-02-05    Africa                           Mali          0
## 4813  2020-02-05    Africa                     Mauritania          0
## 4814  2020-02-05    Africa                      Mauritius          0
## 4815  2020-02-05    Africa                        Morocco          0
## 4816  2020-02-05    Africa                     Mozambique          0
## 4817  2020-02-05    Africa                        Namibia          0
## 4818  2020-02-05    Africa                          Niger          0
## 4819  2020-02-05    Africa                        Nigeria          0
## 4820  2020-02-05    Africa                        Nigeria          0
## 4821  2020-02-05    Africa                         Rwanda          0
## 4822  2020-02-05    Africa          Sao Tome and Principe          0
## 4823  2020-02-05    Africa                        Senegal          0
## 4824  2020-02-05    Africa                     Seychelles          0
## 4825  2020-02-05    Africa                   Sierra Leone          0
## 4826  2020-02-05    Africa                        Somalia          0
## 4827  2020-02-05    Africa                   South Africa          0
## 4828  2020-02-05    Africa                    South Sudan          0
## 4829  2020-02-05    Africa                          Sudan          0
## 4830  2020-02-05    Africa                       Tanzania          0
## 4831  2020-02-05    Africa                           Togo          0
## 4832  2020-02-05    Africa                        Tunisia          0
## 4833  2020-02-05    Africa                         Uganda          0
## 4834  2020-02-05    Africa                 Western Sahara          0
## 4835  2020-02-05    Africa                         Zambia          0
## 4836  2020-02-05    Africa                       Zimbabwe          0
## 4837  2020-02-05   America            Antigua and Barbuda          0
## 4838  2020-02-05   America                      Argentina          0
## 4839  2020-02-05   America                        Bahamas          0
## 4840  2020-02-05   America                       Barbados          0
## 4841  2020-02-05   America                         Belize          0
## 4842  2020-02-05   America                        Bolivia          0
## 4843  2020-02-05   America                         Brazil          0
## 4844  2020-02-05   America                         Brazil          0
## 4845  2020-02-05   America                         Canada          1
## 4846  2020-02-05   America                          Chile          0
## 4847  2020-02-05   America                       Colombia          0
## 4848  2020-02-05   America                     Costa Rica          0
## 4849  2020-02-05   America                           Cuba          0
## 4850  2020-02-05   America                       Dominica          0
## 4851  2020-02-05   America             Dominican Republic          0
## 4852  2020-02-05   America             Dominican Republic          0
## 4853  2020-02-05   America                        Ecuador          0
## 4854  2020-02-05   America                        Ecuador          0
## 4855  2020-02-05   America                    El Salvador          0
## 4856  2020-02-05   America                        Grenada          0
## 4857  2020-02-05   America                      Guatemala          0
## 4858  2020-02-05   America                         Guyana          0
## 4859  2020-02-05   America                          Haiti          0
## 4860  2020-02-05   America                       Honduras          0
## 4861  2020-02-05   America                        Jamaica          0
## 4862  2020-02-05   America                         Mexico          0
## 4863  2020-02-05   America                         Mexico          0
## 4864  2020-02-05   America                      Nicaragua          0
## 4865  2020-02-05   America                         Panama          0
## 4866  2020-02-05   America                       Paraguay          0
## 4867  2020-02-05   America                           Peru          0
## 4868  2020-02-05   America            St. Kitts and Nevis          0
## 4869  2020-02-05   America                      St. Lucia          0
## 4870  2020-02-05   America St. Vincent and the Grenadines          0
## 4871  2020-02-05   America                       Suriname          0
## 4872  2020-02-05   America            Trinidad and Tobago          0
## 4873  2020-02-05   America                  United States          0
## 4874  2020-02-05   America                  United States          0
## 4875  2020-02-05   America                        Uruguay          0
## 4876  2020-02-05   America                      Venezuela          0
## 4877  2020-02-05      Asia                    Afghanistan          0
## 4878  2020-02-05      Asia                    Afghanistan          0
## 4879  2020-02-05      Asia                        Bahrain          0
## 4880  2020-02-05      Asia                        Bahrain          0
## 4881  2020-02-05      Asia                     Bangladesh          0
## 4882  2020-02-05      Asia                         Bhutan          0
## 4883  2020-02-05      Asia              Brunei Darussalam          0
## 4884  2020-02-05      Asia                       Cambodia          0
## 4885  2020-02-05      Asia                       Cambodia          0
## 4886  2020-02-05      Asia                          China       3872
## 4887  2020-02-05      Asia                          India          0
## 4888  2020-02-05      Asia                          India          0
## 4889  2020-02-05      Asia                      Indonesia          0
## 4890  2020-02-05      Asia                      Indonesia          0
## 4891  2020-02-05      Asia                           Iran          0
## 4892  2020-02-05      Asia                           Iran          0
## 4893  2020-02-05      Asia                           Iraq          0
## 4894  2020-02-05      Asia                           Iraq          0
## 4895  2020-02-05      Asia                         Israel          0
## 4896  2020-02-05      Asia                         Israel          0
## 4897  2020-02-05      Asia                          Japan          0
## 4898  2020-02-05      Asia                          Japan          5
## 4899  2020-02-05      Asia                         Jordan          0
## 4900  2020-02-05      Asia                     Kazakhstan          0
## 4901  2020-02-05      Asia                         Kuwait          0
## 4902  2020-02-05      Asia                         Kuwait          0
## 4903  2020-02-05      Asia                Kyrgyz Republic          0
## 4904  2020-02-05      Asia                           Laos          0
## 4905  2020-02-05      Asia                        Lebanon          0
## 4906  2020-02-05      Asia                        Lebanon          0
## 4907  2020-02-05      Asia                       Malaysia          2
## 4908  2020-02-05      Asia                       Malaysia          2
## 4909  2020-02-05      Asia                       Maldives          0
## 4910  2020-02-05      Asia                       Mongolia          0
## 4911  2020-02-05      Asia                        Myanmar          0
## 4912  2020-02-05      Asia                          Nepal          0
## 4913  2020-02-05      Asia                          Nepal          0
## 4914  2020-02-05      Asia                           Oman          0
## 4915  2020-02-05      Asia                           Oman          0
## 4916  2020-02-05      Asia                       Pakistan          0
## 4917  2020-02-05      Asia                       Pakistan          0
## 4918  2020-02-05      Asia                      Palestine          0
## 4919  2020-02-05      Asia                    Philippines          0
## 4920  2020-02-05      Asia                    Philippines          0
## 4921  2020-02-05      Asia                          Qatar          0
## 4922  2020-02-05      Asia                          Qatar          0
## 4923  2020-02-05      Asia                   Saudi Arabia          0
## 4924  2020-02-05      Asia                      Singapore          4
## 4925  2020-02-05      Asia                      Singapore          6
## 4926  2020-02-05      Asia                    South Korea          2
## 4927  2020-02-05      Asia                    South Korea          3
## 4928  2020-02-05      Asia                      Sri Lanka          0
## 4929  2020-02-05      Asia                      Sri Lanka          0
## 4930  2020-02-05      Asia                          Syria          0
## 4931  2020-02-05      Asia                     Tajikistan          0
## 4932  2020-02-05      Asia                       Thailand          0
## 4933  2020-02-05      Asia                       Thailand          6
## 4934  2020-02-05      Asia                    Timor-Leste          0
## 4935  2020-02-05      Asia                         Turkey          0
## 4936  2020-02-05      Asia           United Arab Emirates          0
## 4937  2020-02-05      Asia           United Arab Emirates          0
## 4938  2020-02-05      Asia                     Uzbekistan          0
## 4939  2020-02-05      Asia                        Vietnam          0
## 4940  2020-02-05      Asia                        Vietnam          1
## 4941  2020-02-05      Asia                          Yemen          0
## 4942  2020-02-05      Asia                      not found          1
## 4943  2020-02-05    Europe                        Albania          0
## 4944  2020-02-05    Europe                        Andorra          0
## 4945  2020-02-05    Europe                        Armenia          0
## 4946  2020-02-05    Europe                        Armenia          0
## 4947  2020-02-05    Europe                        Austria          0
## 4948  2020-02-05    Europe                        Austria          0
## 4949  2020-02-05    Europe                     Azerbaijan          0
## 4950  2020-02-05    Europe                     Azerbaijan          0
## 4951  2020-02-05    Europe                        Belarus          0
## 4952  2020-02-05    Europe                        Belarus          0
## 4953  2020-02-05    Europe                        Belgium          0
## 4954  2020-02-05    Europe                        Belgium          0
## 4955  2020-02-05    Europe         Bosnia and Herzegovina          0
## 4956  2020-02-05    Europe                       Bulgaria          0
## 4957  2020-02-05    Europe                        Croatia          0
## 4958  2020-02-05    Europe                        Croatia          0
## 4959  2020-02-05    Europe                         Cyprus          0
## 4960  2020-02-05    Europe                 Czech Republic          0
## 4961  2020-02-05    Europe                 Czech Republic          0
## 4962  2020-02-05    Europe                        Denmark          0
## 4963  2020-02-05    Europe                        Denmark          0
## 4964  2020-02-05    Europe                        Estonia          0
## 4965  2020-02-05    Europe                        Estonia          0
## 4966  2020-02-05    Europe                        Finland          0
## 4967  2020-02-05    Europe                        Finland          0
## 4968  2020-02-05    Europe                         France          0
## 4969  2020-02-05    Europe                         France          0
## 4970  2020-02-05    Europe                        Georgia          0
## 4971  2020-02-05    Europe                        Georgia          0
## 4972  2020-02-05    Europe                        Germany          0
## 4973  2020-02-05    Europe                        Germany          0
## 4974  2020-02-05    Europe                         Greece          0
## 4975  2020-02-05    Europe                         Greece          0
## 4976  2020-02-05    Europe                        Hungary          0
## 4977  2020-02-05    Europe                        Iceland          0
## 4978  2020-02-05    Europe                        Iceland          0
## 4979  2020-02-05    Europe                        Ireland          0
## 4980  2020-02-05    Europe                        Ireland          0
## 4981  2020-02-05    Europe                          Italy          0
## 4982  2020-02-05    Europe                          Italy          0
## 4983  2020-02-05    Europe                         Kosovo          0
## 4984  2020-02-05    Europe                         Latvia          0
## 4985  2020-02-05    Europe                  Liechtenstein          0
## 4986  2020-02-05    Europe                      Lithuania          0
## 4987  2020-02-05    Europe                      Lithuania          0
## 4988  2020-02-05    Europe                     Luxembourg          0
## 4989  2020-02-05    Europe                     Luxembourg          0
## 4990  2020-02-05    Europe                      Macedonia          0
## 4991  2020-02-05    Europe                      Macedonia          0
## 4992  2020-02-05    Europe                          Malta          0
## 4993  2020-02-05    Europe                        Moldova          0
## 4994  2020-02-05    Europe                         Monaco          0
## 4995  2020-02-05    Europe                         Monaco          0
## 4996  2020-02-05    Europe                     Montenegro          0
## 4997  2020-02-05    Europe                    Netherlands          0
## 4998  2020-02-05    Europe                    Netherlands          0
## 4999  2020-02-05    Europe                         Norway          0
## 5000  2020-02-05    Europe                         Norway          0
## 5001  2020-02-05    Europe                         Poland          0
## 5002  2020-02-05    Europe                       Portugal          0
## 5003  2020-02-05    Europe                        Romania          0
## 5004  2020-02-05    Europe                        Romania          0
## 5005  2020-02-05    Europe                         Russia          0
## 5006  2020-02-05    Europe                         Russia          0
## 5007  2020-02-05    Europe                     San Marino          0
## 5008  2020-02-05    Europe                     San Marino          0
## 5009  2020-02-05    Europe                         Serbia          0
## 5010  2020-02-05    Europe                       Slovakia          0
## 5011  2020-02-05    Europe                       Slovenia          0
## 5012  2020-02-05    Europe                          Spain          0
## 5013  2020-02-05    Europe                          Spain          0
## 5014  2020-02-05    Europe                         Sweden          0
## 5015  2020-02-05    Europe                         Sweden          0
## 5016  2020-02-05    Europe                    Switzerland          0
## 5017  2020-02-05    Europe                    Switzerland          0
## 5018  2020-02-05    Europe                        Ukraine          0
## 5019  2020-02-05    Europe                 United Kingdom          0
## 5020  2020-02-05    Europe                 United Kingdom          0
## 5021  2020-02-05    Europe                        Vatican          0
## 5022  2020-02-05   Oceania                      Australia          1
## 5023  2020-02-05   Oceania                           Fiji          0
## 5024  2020-02-05   Oceania                    New Zealand          0
## 5025  2020-02-05   Oceania                    New Zealand          0
## 5026  2020-02-05   Oceania               Papua New Guinea          0
## 5027  2020-02-05     Other                      not found         10
## 5028  2020-02-06    Africa                        Algeria          0
## 5029  2020-02-06    Africa                        Algeria          0
## 5030  2020-02-06    Africa                         Angola          0
## 5031  2020-02-06    Africa                          Benin          0
## 5032  2020-02-06    Africa                       Botswana          0
## 5033  2020-02-06    Africa                   Burkina Faso          0
## 5034  2020-02-06    Africa                        Burundi          0
## 5035  2020-02-06    Africa                     Cabo Verde          0
## 5036  2020-02-06    Africa                       Cameroon          0
## 5037  2020-02-06    Africa       Central African Republic          0
## 5038  2020-02-06    Africa                           Chad          0
## 5039  2020-02-06    Africa                        Comoros          0
## 5040  2020-02-06    Africa                 Congo Republic          0
## 5041  2020-02-06    Africa                  Cote d'Ivoire          0
## 5042  2020-02-06    Africa                       DR Congo          0
## 5043  2020-02-06    Africa                       Djibouti          0
## 5044  2020-02-06    Africa                          Egypt          0
## 5045  2020-02-06    Africa                          Egypt          0
## 5046  2020-02-06    Africa              Equatorial Guinea          0
## 5047  2020-02-06    Africa                        Eritrea          0
## 5048  2020-02-06    Africa                       Eswatini          0
## 5049  2020-02-06    Africa                       Ethiopia          0
## 5050  2020-02-06    Africa                          Gabon          0
## 5051  2020-02-06    Africa                         Gambia          0
## 5052  2020-02-06    Africa                          Ghana          0
## 5053  2020-02-06    Africa                         Guinea          0
## 5054  2020-02-06    Africa                  Guinea-Bissau          0
## 5055  2020-02-06    Africa                          Kenya          0
## 5056  2020-02-06    Africa                        Lesotho          0
## 5057  2020-02-06    Africa                        Liberia          0
## 5058  2020-02-06    Africa                          Libya          0
## 5059  2020-02-06    Africa                     Madagascar          0
## 5060  2020-02-06    Africa                         Malawi          0
## 5061  2020-02-06    Africa                           Mali          0
## 5062  2020-02-06    Africa                     Mauritania          0
## 5063  2020-02-06    Africa                      Mauritius          0
## 5064  2020-02-06    Africa                        Morocco          0
## 5065  2020-02-06    Africa                     Mozambique          0
## 5066  2020-02-06    Africa                        Namibia          0
## 5067  2020-02-06    Africa                          Niger          0
## 5068  2020-02-06    Africa                        Nigeria          0
## 5069  2020-02-06    Africa                        Nigeria          0
## 5070  2020-02-06    Africa                         Rwanda          0
## 5071  2020-02-06    Africa          Sao Tome and Principe          0
## 5072  2020-02-06    Africa                        Senegal          0
## 5073  2020-02-06    Africa                     Seychelles          0
## 5074  2020-02-06    Africa                   Sierra Leone          0
## 5075  2020-02-06    Africa                        Somalia          0
## 5076  2020-02-06    Africa                   South Africa          0
## 5077  2020-02-06    Africa                    South Sudan          0
## 5078  2020-02-06    Africa                          Sudan          0
## 5079  2020-02-06    Africa                       Tanzania          0
## 5080  2020-02-06    Africa                           Togo          0
## 5081  2020-02-06    Africa                        Tunisia          0
## 5082  2020-02-06    Africa                         Uganda          0
## 5083  2020-02-06    Africa                 Western Sahara          0
## 5084  2020-02-06    Africa                         Zambia          0
## 5085  2020-02-06    Africa                       Zimbabwe          0
## 5086  2020-02-06   America            Antigua and Barbuda          0
## 5087  2020-02-06   America                      Argentina          0
## 5088  2020-02-06   America                        Bahamas          0
## 5089  2020-02-06   America                       Barbados          0
## 5090  2020-02-06   America                         Belize          0
## 5091  2020-02-06   America                        Bolivia          0
## 5092  2020-02-06   America                         Brazil          0
## 5093  2020-02-06   America                         Brazil          0
## 5094  2020-02-06   America                         Canada          0
## 5095  2020-02-06   America                          Chile          0
## 5096  2020-02-06   America                       Colombia          0
## 5097  2020-02-06   America                     Costa Rica          0
## 5098  2020-02-06   America                           Cuba          0
## 5099  2020-02-06   America                       Dominica          0
## 5100  2020-02-06   America             Dominican Republic          0
## 5101  2020-02-06   America             Dominican Republic          0
## 5102  2020-02-06   America                        Ecuador          0
## 5103  2020-02-06   America                        Ecuador          0
## 5104  2020-02-06   America                    El Salvador          0
## 5105  2020-02-06   America                        Grenada          0
## 5106  2020-02-06   America                      Guatemala          0
## 5107  2020-02-06   America                         Guyana          0
## 5108  2020-02-06   America                          Haiti          0
## 5109  2020-02-06   America                       Honduras          0
## 5110  2020-02-06   America                        Jamaica          0
## 5111  2020-02-06   America                         Mexico          0
## 5112  2020-02-06   America                         Mexico          0
## 5113  2020-02-06   America                      Nicaragua          0
## 5114  2020-02-06   America                         Panama          0
## 5115  2020-02-06   America                       Paraguay          0
## 5116  2020-02-06   America                           Peru          0
## 5117  2020-02-06   America            St. Kitts and Nevis          0
## 5118  2020-02-06   America                      St. Lucia          0
## 5119  2020-02-06   America St. Vincent and the Grenadines          0
## 5120  2020-02-06   America                       Suriname          0
## 5121  2020-02-06   America            Trinidad and Tobago          0
## 5122  2020-02-06   America                  United States          0
## 5123  2020-02-06   America                  United States          1
## 5124  2020-02-06   America                        Uruguay          0
## 5125  2020-02-06   America                      Venezuela          0
## 5126  2020-02-06      Asia                    Afghanistan          0
## 5127  2020-02-06      Asia                    Afghanistan          0
## 5128  2020-02-06      Asia                        Bahrain          0
## 5129  2020-02-06      Asia                        Bahrain          0
## 5130  2020-02-06      Asia                     Bangladesh          0
## 5131  2020-02-06      Asia                         Bhutan          0
## 5132  2020-02-06      Asia              Brunei Darussalam          0
## 5133  2020-02-06      Asia                       Cambodia          0
## 5134  2020-02-06      Asia                       Cambodia          0
## 5135  2020-02-06      Asia                          China       3727
## 5136  2020-02-06      Asia                          India          0
## 5137  2020-02-06      Asia                          India          0
## 5138  2020-02-06      Asia                      Indonesia          0
## 5139  2020-02-06      Asia                      Indonesia          0
## 5140  2020-02-06      Asia                           Iran          0
## 5141  2020-02-06      Asia                           Iran          0
## 5142  2020-02-06      Asia                           Iraq          0
## 5143  2020-02-06      Asia                           Iraq          0
## 5144  2020-02-06      Asia                         Israel          0
## 5145  2020-02-06      Asia                         Israel          0
## 5146  2020-02-06      Asia                          Japan          0
## 5147  2020-02-06      Asia                          Japan          0
## 5148  2020-02-06      Asia                         Jordan          0
## 5149  2020-02-06      Asia                     Kazakhstan          0
## 5150  2020-02-06      Asia                         Kuwait          0
## 5151  2020-02-06      Asia                         Kuwait          0
## 5152  2020-02-06      Asia                Kyrgyz Republic          0
## 5153  2020-02-06      Asia                           Laos          0
## 5154  2020-02-06      Asia                        Lebanon          0
## 5155  2020-02-06      Asia                        Lebanon          0
## 5156  2020-02-06      Asia                       Malaysia          0
## 5157  2020-02-06      Asia                       Malaysia          2
## 5158  2020-02-06      Asia                       Maldives          0
## 5159  2020-02-06      Asia                       Mongolia          0
## 5160  2020-02-06      Asia                        Myanmar          0
## 5161  2020-02-06      Asia                          Nepal          0
## 5162  2020-02-06      Asia                          Nepal          0
## 5163  2020-02-06      Asia                           Oman          0
## 5164  2020-02-06      Asia                           Oman          0
## 5165  2020-02-06      Asia                       Pakistan          0
## 5166  2020-02-06      Asia                       Pakistan          0
## 5167  2020-02-06      Asia                      Palestine          0
## 5168  2020-02-06      Asia                    Philippines          0
## 5169  2020-02-06      Asia                    Philippines          1
## 5170  2020-02-06      Asia                          Qatar          0
## 5171  2020-02-06      Asia                          Qatar          0
## 5172  2020-02-06      Asia                   Saudi Arabia          0
## 5173  2020-02-06      Asia                      Singapore          0
## 5174  2020-02-06      Asia                      Singapore          4
## 5175  2020-02-06      Asia                    South Korea          4
## 5176  2020-02-06      Asia                    South Korea          5
## 5177  2020-02-06      Asia                      Sri Lanka          0
## 5178  2020-02-06      Asia                      Sri Lanka          0
## 5179  2020-02-06      Asia                          Syria          0
## 5180  2020-02-06      Asia                     Tajikistan          0
## 5181  2020-02-06      Asia                       Thailand          0
## 5182  2020-02-06      Asia                       Thailand          0
## 5183  2020-02-06      Asia                    Timor-Leste          0
## 5184  2020-02-06      Asia                         Turkey          0
## 5185  2020-02-06      Asia           United Arab Emirates          0
## 5186  2020-02-06      Asia           United Arab Emirates          0
## 5187  2020-02-06      Asia                     Uzbekistan          0
## 5188  2020-02-06      Asia                        Vietnam          0
## 5189  2020-02-06      Asia                        Vietnam          2
## 5190  2020-02-06      Asia                          Yemen          0
## 5191  2020-02-06      Asia                      not found          0
## 5192  2020-02-06    Europe                        Albania          0
## 5193  2020-02-06    Europe                        Andorra          0
## 5194  2020-02-06    Europe                        Armenia          0
## 5195  2020-02-06    Europe                        Armenia          0
## 5196  2020-02-06    Europe                        Austria          0
## 5197  2020-02-06    Europe                        Austria          0
## 5198  2020-02-06    Europe                     Azerbaijan          0
## 5199  2020-02-06    Europe                     Azerbaijan          0
## 5200  2020-02-06    Europe                        Belarus          0
## 5201  2020-02-06    Europe                        Belarus          0
## 5202  2020-02-06    Europe                        Belgium          0
## 5203  2020-02-06    Europe                        Belgium          0
## 5204  2020-02-06    Europe         Bosnia and Herzegovina          0
## 5205  2020-02-06    Europe                       Bulgaria          0
## 5206  2020-02-06    Europe                        Croatia          0
## 5207  2020-02-06    Europe                        Croatia          0
## 5208  2020-02-06    Europe                         Cyprus          0
## 5209  2020-02-06    Europe                 Czech Republic          0
## 5210  2020-02-06    Europe                 Czech Republic          0
## 5211  2020-02-06    Europe                        Denmark          0
## 5212  2020-02-06    Europe                        Denmark          0
## 5213  2020-02-06    Europe                        Estonia          0
## 5214  2020-02-06    Europe                        Estonia          0
## 5215  2020-02-06    Europe                        Finland          0
## 5216  2020-02-06    Europe                        Finland          0
## 5217  2020-02-06    Europe                         France          0
## 5218  2020-02-06    Europe                         France          0
## 5219  2020-02-06    Europe                        Georgia          0
## 5220  2020-02-06    Europe                        Georgia          0
## 5221  2020-02-06    Europe                        Germany          0
## 5222  2020-02-06    Europe                        Germany          0
## 5223  2020-02-06    Europe                         Greece          0
## 5224  2020-02-06    Europe                         Greece          0
## 5225  2020-02-06    Europe                        Hungary          0
## 5226  2020-02-06    Europe                        Iceland          0
## 5227  2020-02-06    Europe                        Iceland          0
## 5228  2020-02-06    Europe                        Ireland          0
## 5229  2020-02-06    Europe                        Ireland          0
## 5230  2020-02-06    Europe                          Italy          0
## 5231  2020-02-06    Europe                          Italy          0
## 5232  2020-02-06    Europe                         Kosovo          0
## 5233  2020-02-06    Europe                         Latvia          0
## 5234  2020-02-06    Europe                  Liechtenstein          0
## 5235  2020-02-06    Europe                      Lithuania          0
## 5236  2020-02-06    Europe                      Lithuania          0
## 5237  2020-02-06    Europe                     Luxembourg          0
## 5238  2020-02-06    Europe                     Luxembourg          0
## 5239  2020-02-06    Europe                      Macedonia          0
## 5240  2020-02-06    Europe                      Macedonia          0
## 5241  2020-02-06    Europe                          Malta          0
## 5242  2020-02-06    Europe                        Moldova          0
## 5243  2020-02-06    Europe                         Monaco          0
## 5244  2020-02-06    Europe                         Monaco          0
## 5245  2020-02-06    Europe                     Montenegro          0
## 5246  2020-02-06    Europe                    Netherlands          0
## 5247  2020-02-06    Europe                    Netherlands          0
## 5248  2020-02-06    Europe                         Norway          0
## 5249  2020-02-06    Europe                         Norway          0
## 5250  2020-02-06    Europe                         Poland          0
## 5251  2020-02-06    Europe                       Portugal          0
## 5252  2020-02-06    Europe                        Romania          0
## 5253  2020-02-06    Europe                        Romania          0
## 5254  2020-02-06    Europe                         Russia          0
## 5255  2020-02-06    Europe                         Russia          0
## 5256  2020-02-06    Europe                     San Marino          0
## 5257  2020-02-06    Europe                     San Marino          0
## 5258  2020-02-06    Europe                         Serbia          0
## 5259  2020-02-06    Europe                       Slovakia          0
## 5260  2020-02-06    Europe                       Slovenia          0
## 5261  2020-02-06    Europe                          Spain          0
## 5262  2020-02-06    Europe                          Spain          0
## 5263  2020-02-06    Europe                         Sweden          0
## 5264  2020-02-06    Europe                         Sweden          0
## 5265  2020-02-06    Europe                    Switzerland          0
## 5266  2020-02-06    Europe                    Switzerland          0
## 5267  2020-02-06    Europe                        Ukraine          0
## 5268  2020-02-06    Europe                 United Kingdom          0
## 5269  2020-02-06    Europe                 United Kingdom          0
## 5270  2020-02-06    Europe                        Vatican          0
## 5271  2020-02-06   Oceania                      Australia          1
## 5272  2020-02-06   Oceania                           Fiji          0
## 5273  2020-02-06   Oceania                    New Zealand          0
## 5274  2020-02-06   Oceania                    New Zealand          0
## 5275  2020-02-06   Oceania               Papua New Guinea          0
## 5276  2020-02-06     Other                      not found         10
## 5277  2020-02-07    Africa                        Algeria          0
## 5278  2020-02-07    Africa                        Algeria          0
## 5279  2020-02-07    Africa                         Angola          0
## 5280  2020-02-07    Africa                          Benin          0
## 5281  2020-02-07    Africa                       Botswana          0
## 5282  2020-02-07    Africa                   Burkina Faso          0
## 5283  2020-02-07    Africa                        Burundi          0
## 5284  2020-02-07    Africa                     Cabo Verde          0
## 5285  2020-02-07    Africa                       Cameroon          0
## 5286  2020-02-07    Africa       Central African Republic          0
## 5287  2020-02-07    Africa                           Chad          0
## 5288  2020-02-07    Africa                        Comoros          0
## 5289  2020-02-07    Africa                 Congo Republic          0
## 5290  2020-02-07    Africa                  Cote d'Ivoire          0
## 5291  2020-02-07    Africa                       DR Congo          0
## 5292  2020-02-07    Africa                       Djibouti          0
## 5293  2020-02-07    Africa                          Egypt          0
## 5294  2020-02-07    Africa                          Egypt          0
## 5295  2020-02-07    Africa              Equatorial Guinea          0
## 5296  2020-02-07    Africa                        Eritrea          0
## 5297  2020-02-07    Africa                       Eswatini          0
## 5298  2020-02-07    Africa                       Ethiopia          0
## 5299  2020-02-07    Africa                          Gabon          0
## 5300  2020-02-07    Africa                         Gambia          0
## 5301  2020-02-07    Africa                          Ghana          0
## 5302  2020-02-07    Africa                         Guinea          0
## 5303  2020-02-07    Africa                  Guinea-Bissau          0
## 5304  2020-02-07    Africa                          Kenya          0
## 5305  2020-02-07    Africa                        Lesotho          0
## 5306  2020-02-07    Africa                        Liberia          0
## 5307  2020-02-07    Africa                          Libya          0
## 5308  2020-02-07    Africa                     Madagascar          0
## 5309  2020-02-07    Africa                         Malawi          0
## 5310  2020-02-07    Africa                           Mali          0
## 5311  2020-02-07    Africa                     Mauritania          0
## 5312  2020-02-07    Africa                      Mauritius          0
## 5313  2020-02-07    Africa                        Morocco          0
## 5314  2020-02-07    Africa                     Mozambique          0
## 5315  2020-02-07    Africa                        Namibia          0
## 5316  2020-02-07    Africa                          Niger          0
## 5317  2020-02-07    Africa                        Nigeria          0
## 5318  2020-02-07    Africa                        Nigeria          0
## 5319  2020-02-07    Africa                         Rwanda          0
## 5320  2020-02-07    Africa          Sao Tome and Principe          0
## 5321  2020-02-07    Africa                        Senegal          0
## 5322  2020-02-07    Africa                     Seychelles          0
## 5323  2020-02-07    Africa                   Sierra Leone          0
## 5324  2020-02-07    Africa                        Somalia          0
## 5325  2020-02-07    Africa                   South Africa          0
## 5326  2020-02-07    Africa                    South Sudan          0
## 5327  2020-02-07    Africa                          Sudan          0
## 5328  2020-02-07    Africa                       Tanzania          0
## 5329  2020-02-07    Africa                           Togo          0
## 5330  2020-02-07    Africa                        Tunisia          0
## 5331  2020-02-07    Africa                         Uganda          0
## 5332  2020-02-07    Africa                 Western Sahara          0
## 5333  2020-02-07    Africa                         Zambia          0
## 5334  2020-02-07    Africa                       Zimbabwe          0
## 5335  2020-02-07   America            Antigua and Barbuda          0
## 5336  2020-02-07   America                      Argentina          0
## 5337  2020-02-07   America                        Bahamas          0
## 5338  2020-02-07   America                       Barbados          0
## 5339  2020-02-07   America                         Belize          0
## 5340  2020-02-07   America                        Bolivia          0
## 5341  2020-02-07   America                         Brazil          0
## 5342  2020-02-07   America                         Brazil          0
## 5343  2020-02-07   America                         Canada          2
## 5344  2020-02-07   America                          Chile          0
## 5345  2020-02-07   America                       Colombia          0
## 5346  2020-02-07   America                     Costa Rica          0
## 5347  2020-02-07   America                           Cuba          0
## 5348  2020-02-07   America                       Dominica          0
## 5349  2020-02-07   America             Dominican Republic          0
## 5350  2020-02-07   America             Dominican Republic          0
## 5351  2020-02-07   America                        Ecuador          0
## 5352  2020-02-07   America                        Ecuador          0
## 5353  2020-02-07   America                    El Salvador          0
## 5354  2020-02-07   America                        Grenada          0
## 5355  2020-02-07   America                      Guatemala          0
## 5356  2020-02-07   America                         Guyana          0
## 5357  2020-02-07   America                          Haiti          0
## 5358  2020-02-07   America                       Honduras          0
## 5359  2020-02-07   America                        Jamaica          0
## 5360  2020-02-07   America                         Mexico          0
## 5361  2020-02-07   America                         Mexico          0
## 5362  2020-02-07   America                      Nicaragua          0
## 5363  2020-02-07   America                         Panama          0
## 5364  2020-02-07   America                       Paraguay          0
## 5365  2020-02-07   America                           Peru          0
## 5366  2020-02-07   America            St. Kitts and Nevis          0
## 5367  2020-02-07   America                      St. Lucia          0
## 5368  2020-02-07   America St. Vincent and the Grenadines          0
## 5369  2020-02-07   America                       Suriname          0
## 5370  2020-02-07   America            Trinidad and Tobago          0
## 5371  2020-02-07   America                  United States          0
## 5372  2020-02-07   America                  United States          0
## 5373  2020-02-07   America                        Uruguay          0
## 5374  2020-02-07   America                      Venezuela          0
## 5375  2020-02-07      Asia                    Afghanistan          0
## 5376  2020-02-07      Asia                    Afghanistan          0
## 5377  2020-02-07      Asia                        Bahrain          0
## 5378  2020-02-07      Asia                        Bahrain          0
## 5379  2020-02-07      Asia                     Bangladesh          0
## 5380  2020-02-07      Asia                         Bhutan          0
## 5381  2020-02-07      Asia              Brunei Darussalam          0
## 5382  2020-02-07      Asia                       Cambodia          0
## 5383  2020-02-07      Asia                       Cambodia          0
## 5384  2020-02-07      Asia                          China       3160
## 5385  2020-02-07      Asia                          India          0
## 5386  2020-02-07      Asia                          India          0
## 5387  2020-02-07      Asia                      Indonesia          0
## 5388  2020-02-07      Asia                      Indonesia          0
## 5389  2020-02-07      Asia                           Iran          0
## 5390  2020-02-07      Asia                           Iran          0
## 5391  2020-02-07      Asia                           Iraq          0
## 5392  2020-02-07      Asia                           Iraq          0
## 5393  2020-02-07      Asia                         Israel          0
## 5394  2020-02-07      Asia                         Israel          0
## 5395  2020-02-07      Asia                          Japan          0
## 5396  2020-02-07      Asia                          Japan          3
## 5397  2020-02-07      Asia                         Jordan          0
## 5398  2020-02-07      Asia                     Kazakhstan          0
## 5399  2020-02-07      Asia                         Kuwait          0
## 5400  2020-02-07      Asia                         Kuwait          0
## 5401  2020-02-07      Asia                Kyrgyz Republic          0
## 5402  2020-02-07      Asia                           Laos          0
## 5403  2020-02-07      Asia                        Lebanon          0
## 5404  2020-02-07      Asia                        Lebanon          0
## 5405  2020-02-07      Asia                       Malaysia          0
## 5406  2020-02-07      Asia                       Malaysia          2
## 5407  2020-02-07      Asia                       Maldives          0
## 5408  2020-02-07      Asia                       Mongolia          0
## 5409  2020-02-07      Asia                        Myanmar          0
## 5410  2020-02-07      Asia                          Nepal          0
## 5411  2020-02-07      Asia                          Nepal          0
## 5412  2020-02-07      Asia                           Oman          0
## 5413  2020-02-07      Asia                           Oman          0
## 5414  2020-02-07      Asia                       Pakistan          0
## 5415  2020-02-07      Asia                       Pakistan          0
## 5416  2020-02-07      Asia                      Palestine          0
## 5417  2020-02-07      Asia                    Philippines          0
## 5418  2020-02-07      Asia                    Philippines          1
## 5419  2020-02-07      Asia                          Qatar          0
## 5420  2020-02-07      Asia                          Qatar          0
## 5421  2020-02-07      Asia                   Saudi Arabia          0
## 5422  2020-02-07      Asia                      Singapore          2
## 5423  2020-02-07      Asia                      Singapore          2
## 5424  2020-02-07      Asia                    South Korea          1
## 5425  2020-02-07      Asia                    South Korea          1
## 5426  2020-02-07      Asia                      Sri Lanka          0
## 5427  2020-02-07      Asia                      Sri Lanka          0
## 5428  2020-02-07      Asia                          Syria          0
## 5429  2020-02-07      Asia                     Tajikistan          0
## 5430  2020-02-07      Asia                       Thailand          0
## 5431  2020-02-07      Asia                       Thailand          0
## 5432  2020-02-07      Asia                    Timor-Leste          0
## 5433  2020-02-07      Asia                         Turkey          0
## 5434  2020-02-07      Asia           United Arab Emirates          0
## 5435  2020-02-07      Asia           United Arab Emirates          0
## 5436  2020-02-07      Asia                     Uzbekistan          0
## 5437  2020-02-07      Asia                        Vietnam          0
## 5438  2020-02-07      Asia                        Vietnam          2
## 5439  2020-02-07      Asia                          Yemen          0
## 5440  2020-02-07      Asia                      not found          5
## 5441  2020-02-07    Europe                        Albania          0
## 5442  2020-02-07    Europe                        Andorra          0
## 5443  2020-02-07    Europe                        Armenia          0
## 5444  2020-02-07    Europe                        Armenia          0
## 5445  2020-02-07    Europe                        Austria          0
## 5446  2020-02-07    Europe                        Austria          0
## 5447  2020-02-07    Europe                     Azerbaijan          0
## 5448  2020-02-07    Europe                     Azerbaijan          0
## 5449  2020-02-07    Europe                        Belarus          0
## 5450  2020-02-07    Europe                        Belarus          0
## 5451  2020-02-07    Europe                        Belgium          0
## 5452  2020-02-07    Europe                        Belgium          0
## 5453  2020-02-07    Europe         Bosnia and Herzegovina          0
## 5454  2020-02-07    Europe                       Bulgaria          0
## 5455  2020-02-07    Europe                        Croatia          0
## 5456  2020-02-07    Europe                        Croatia          0
## 5457  2020-02-07    Europe                         Cyprus          0
## 5458  2020-02-07    Europe                 Czech Republic          0
## 5459  2020-02-07    Europe                 Czech Republic          0
## 5460  2020-02-07    Europe                        Denmark          0
## 5461  2020-02-07    Europe                        Denmark          0
## 5462  2020-02-07    Europe                        Estonia          0
## 5463  2020-02-07    Europe                        Estonia          0
## 5464  2020-02-07    Europe                        Finland          0
## 5465  2020-02-07    Europe                        Finland          0
## 5466  2020-02-07    Europe                         France          0
## 5467  2020-02-07    Europe                         France          0
## 5468  2020-02-07    Europe                        Georgia          0
## 5469  2020-02-07    Europe                        Georgia          0
## 5470  2020-02-07    Europe                        Germany          1
## 5471  2020-02-07    Europe                        Germany          1
## 5472  2020-02-07    Europe                         Greece          0
## 5473  2020-02-07    Europe                         Greece          0
## 5474  2020-02-07    Europe                        Hungary          0
## 5475  2020-02-07    Europe                        Iceland          0
## 5476  2020-02-07    Europe                        Iceland          0
## 5477  2020-02-07    Europe                        Ireland          0
## 5478  2020-02-07    Europe                        Ireland          0
## 5479  2020-02-07    Europe                          Italy          0
## 5480  2020-02-07    Europe                          Italy          1
## 5481  2020-02-07    Europe                         Kosovo          0
## 5482  2020-02-07    Europe                         Latvia          0
## 5483  2020-02-07    Europe                  Liechtenstein          0
## 5484  2020-02-07    Europe                      Lithuania          0
## 5485  2020-02-07    Europe                      Lithuania          0
## 5486  2020-02-07    Europe                     Luxembourg          0
## 5487  2020-02-07    Europe                     Luxembourg          0
## 5488  2020-02-07    Europe                      Macedonia          0
## 5489  2020-02-07    Europe                      Macedonia          0
## 5490  2020-02-07    Europe                          Malta          0
## 5491  2020-02-07    Europe                        Moldova          0
## 5492  2020-02-07    Europe                         Monaco          0
## 5493  2020-02-07    Europe                         Monaco          0
## 5494  2020-02-07    Europe                     Montenegro          0
## 5495  2020-02-07    Europe                    Netherlands          0
## 5496  2020-02-07    Europe                    Netherlands          0
## 5497  2020-02-07    Europe                         Norway          0
## 5498  2020-02-07    Europe                         Norway          0
## 5499  2020-02-07    Europe                         Poland          0
## 5500  2020-02-07    Europe                       Portugal          0
## 5501  2020-02-07    Europe                        Romania          0
## 5502  2020-02-07    Europe                        Romania          0
## 5503  2020-02-07    Europe                         Russia          0
## 5504  2020-02-07    Europe                         Russia          0
## 5505  2020-02-07    Europe                     San Marino          0
## 5506  2020-02-07    Europe                     San Marino          0
## 5507  2020-02-07    Europe                         Serbia          0
## 5508  2020-02-07    Europe                       Slovakia          0
## 5509  2020-02-07    Europe                       Slovenia          0
## 5510  2020-02-07    Europe                          Spain          0
## 5511  2020-02-07    Europe                          Spain          0
## 5512  2020-02-07    Europe                         Sweden          0
## 5513  2020-02-07    Europe                         Sweden          0
## 5514  2020-02-07    Europe                    Switzerland          0
## 5515  2020-02-07    Europe                    Switzerland          0
## 5516  2020-02-07    Europe                        Ukraine          0
## 5517  2020-02-07    Europe                 United Kingdom          1
## 5518  2020-02-07    Europe                 United Kingdom          1
## 5519  2020-02-07    Europe                        Vatican          0
## 5520  2020-02-07   Oceania                      Australia          1
## 5521  2020-02-07   Oceania                           Fiji          0
## 5522  2020-02-07   Oceania                    New Zealand          0
## 5523  2020-02-07   Oceania                    New Zealand          0
## 5524  2020-02-07   Oceania               Papua New Guinea          0
## 5525  2020-02-07     Other                      not found         41
## 5526  2020-02-08    Africa                        Algeria          0
## 5527  2020-02-08    Africa                        Algeria          0
## 5528  2020-02-08    Africa                         Angola          0
## 5529  2020-02-08    Africa                          Benin          0
## 5530  2020-02-08    Africa                       Botswana          0
## 5531  2020-02-08    Africa                   Burkina Faso          0
## 5532  2020-02-08    Africa                        Burundi          0
## 5533  2020-02-08    Africa                     Cabo Verde          0
## 5534  2020-02-08    Africa                       Cameroon          0
## 5535  2020-02-08    Africa       Central African Republic          0
## 5536  2020-02-08    Africa                           Chad          0
## 5537  2020-02-08    Africa                        Comoros          0
## 5538  2020-02-08    Africa                 Congo Republic          0
## 5539  2020-02-08    Africa                  Cote d'Ivoire          0
## 5540  2020-02-08    Africa                       DR Congo          0
## 5541  2020-02-08    Africa                       Djibouti          0
## 5542  2020-02-08    Africa                          Egypt          0
## 5543  2020-02-08    Africa                          Egypt          0
## 5544  2020-02-08    Africa              Equatorial Guinea          0
## 5545  2020-02-08    Africa                        Eritrea          0
## 5546  2020-02-08    Africa                       Eswatini          0
## 5547  2020-02-08    Africa                       Ethiopia          0
## 5548  2020-02-08    Africa                          Gabon          0
## 5549  2020-02-08    Africa                         Gambia          0
## 5550  2020-02-08    Africa                          Ghana          0
## 5551  2020-02-08    Africa                         Guinea          0
## 5552  2020-02-08    Africa                  Guinea-Bissau          0
## 5553  2020-02-08    Africa                          Kenya          0
## 5554  2020-02-08    Africa                        Lesotho          0
## 5555  2020-02-08    Africa                        Liberia          0
## 5556  2020-02-08    Africa                          Libya          0
## 5557  2020-02-08    Africa                     Madagascar          0
## 5558  2020-02-08    Africa                         Malawi          0
## 5559  2020-02-08    Africa                           Mali          0
## 5560  2020-02-08    Africa                     Mauritania          0
## 5561  2020-02-08    Africa                      Mauritius          0
## 5562  2020-02-08    Africa                        Morocco          0
## 5563  2020-02-08    Africa                     Mozambique          0
## 5564  2020-02-08    Africa                        Namibia          0
## 5565  2020-02-08    Africa                          Niger          0
## 5566  2020-02-08    Africa                        Nigeria          0
## 5567  2020-02-08    Africa                        Nigeria          0
## 5568  2020-02-08    Africa                         Rwanda          0
## 5569  2020-02-08    Africa          Sao Tome and Principe          0
## 5570  2020-02-08    Africa                        Senegal          0
## 5571  2020-02-08    Africa                     Seychelles          0
## 5572  2020-02-08    Africa                   Sierra Leone          0
## 5573  2020-02-08    Africa                        Somalia          0
## 5574  2020-02-08    Africa                   South Africa          0
## 5575  2020-02-08    Africa                    South Sudan          0
## 5576  2020-02-08    Africa                          Sudan          0
## 5577  2020-02-08    Africa                       Tanzania          0
## 5578  2020-02-08    Africa                           Togo          0
## 5579  2020-02-08    Africa                        Tunisia          0
## 5580  2020-02-08    Africa                         Uganda          0
## 5581  2020-02-08    Africa                 Western Sahara          0
## 5582  2020-02-08    Africa                         Zambia          0
## 5583  2020-02-08    Africa                       Zimbabwe          0
## 5584  2020-02-08   America            Antigua and Barbuda          0
## 5585  2020-02-08   America                      Argentina          0
## 5586  2020-02-08   America                        Bahamas          0
## 5587  2020-02-08   America                       Barbados          0
## 5588  2020-02-08   America                         Belize          0
## 5589  2020-02-08   America                        Bolivia          0
## 5590  2020-02-08   America                         Brazil          0
## 5591  2020-02-08   America                         Brazil          0
## 5592  2020-02-08   America                         Canada          0
## 5593  2020-02-08   America                          Chile          0
## 5594  2020-02-08   America                       Colombia          0
## 5595  2020-02-08   America                     Costa Rica          0
## 5596  2020-02-08   America                           Cuba          0
## 5597  2020-02-08   America                       Dominica          0
## 5598  2020-02-08   America             Dominican Republic          0
## 5599  2020-02-08   America             Dominican Republic          0
## 5600  2020-02-08   America                        Ecuador          0
## 5601  2020-02-08   America                        Ecuador          0
## 5602  2020-02-08   America                    El Salvador          0
## 5603  2020-02-08   America                        Grenada          0
## 5604  2020-02-08   America                      Guatemala          0
## 5605  2020-02-08   America                         Guyana          0
## 5606  2020-02-08   America                          Haiti          0
## 5607  2020-02-08   America                       Honduras          0
## 5608  2020-02-08   America                        Jamaica          0
## 5609  2020-02-08   America                         Mexico          0
## 5610  2020-02-08   America                         Mexico          0
## 5611  2020-02-08   America                      Nicaragua          0
## 5612  2020-02-08   America                         Panama          0
## 5613  2020-02-08   America                       Paraguay          0
## 5614  2020-02-08   America                           Peru          0
## 5615  2020-02-08   America            St. Kitts and Nevis          0
## 5616  2020-02-08   America                      St. Lucia          0
## 5617  2020-02-08   America St. Vincent and the Grenadines          0
## 5618  2020-02-08   America                       Suriname          0
## 5619  2020-02-08   America            Trinidad and Tobago          0
## 5620  2020-02-08   America                  United States          0
## 5621  2020-02-08   America                  United States          0
## 5622  2020-02-08   America                        Uruguay          0
## 5623  2020-02-08   America                      Venezuela          0
## 5624  2020-02-08      Asia                    Afghanistan          0
## 5625  2020-02-08      Asia                    Afghanistan          0
## 5626  2020-02-08      Asia                        Bahrain          0
## 5627  2020-02-08      Asia                        Bahrain          0
## 5628  2020-02-08      Asia                     Bangladesh          0
## 5629  2020-02-08      Asia                         Bhutan          0
## 5630  2020-02-08      Asia              Brunei Darussalam          0
## 5631  2020-02-08      Asia                       Cambodia          0
## 5632  2020-02-08      Asia                       Cambodia          0
## 5633  2020-02-08      Asia                          China       3418
## 5634  2020-02-08      Asia                          India          0
## 5635  2020-02-08      Asia                          India          0
## 5636  2020-02-08      Asia                      Indonesia          0
## 5637  2020-02-08      Asia                      Indonesia          0
## 5638  2020-02-08      Asia                           Iran          0
## 5639  2020-02-08      Asia                           Iran          0
## 5640  2020-02-08      Asia                           Iraq          0
## 5641  2020-02-08      Asia                           Iraq          0
## 5642  2020-02-08      Asia                         Israel          0
## 5643  2020-02-08      Asia                         Israel          0
## 5644  2020-02-08      Asia                          Japan          0
## 5645  2020-02-08      Asia                          Japan          0
## 5646  2020-02-08      Asia                         Jordan          0
## 5647  2020-02-08      Asia                     Kazakhstan          0
## 5648  2020-02-08      Asia                         Kuwait          0
## 5649  2020-02-08      Asia                         Kuwait          0
## 5650  2020-02-08      Asia                Kyrgyz Republic          0
## 5651  2020-02-08      Asia                           Laos          0
## 5652  2020-02-08      Asia                        Lebanon          0
## 5653  2020-02-08      Asia                        Lebanon          0
## 5654  2020-02-08      Asia                       Malaysia          1
## 5655  2020-02-08      Asia                       Malaysia          4
## 5656  2020-02-08      Asia                       Maldives          0
## 5657  2020-02-08      Asia                       Mongolia          0
## 5658  2020-02-08      Asia                        Myanmar          0
## 5659  2020-02-08      Asia                          Nepal          0
## 5660  2020-02-08      Asia                          Nepal          0
## 5661  2020-02-08      Asia                           Oman          0
## 5662  2020-02-08      Asia                           Oman          0
## 5663  2020-02-08      Asia                       Pakistan          0
## 5664  2020-02-08      Asia                       Pakistan          0
## 5665  2020-02-08      Asia                      Palestine          0
## 5666  2020-02-08      Asia                    Philippines          0
## 5667  2020-02-08      Asia                    Philippines          0
## 5668  2020-02-08      Asia                          Qatar          0
## 5669  2020-02-08      Asia                          Qatar          0
## 5670  2020-02-08      Asia                   Saudi Arabia          0
## 5671  2020-02-08      Asia                      Singapore          3
## 5672  2020-02-08      Asia                      Singapore          3
## 5673  2020-02-08      Asia                    South Korea          0
## 5674  2020-02-08      Asia                    South Korea          0
## 5675  2020-02-08      Asia                      Sri Lanka          0
## 5676  2020-02-08      Asia                      Sri Lanka          0
## 5677  2020-02-08      Asia                          Syria          0
## 5678  2020-02-08      Asia                     Tajikistan          0
## 5679  2020-02-08      Asia                       Thailand          7
## 5680  2020-02-08      Asia                       Thailand          7
## 5681  2020-02-08      Asia                    Timor-Leste          0
## 5682  2020-02-08      Asia                         Turkey          0
## 5683  2020-02-08      Asia           United Arab Emirates          2
## 5684  2020-02-08      Asia           United Arab Emirates          2
## 5685  2020-02-08      Asia                     Uzbekistan          0
## 5686  2020-02-08      Asia                        Vietnam          1
## 5687  2020-02-08      Asia                        Vietnam          3
## 5688  2020-02-08      Asia                          Yemen          0
## 5689  2020-02-08      Asia                      not found          1
## 5690  2020-02-08    Europe                        Albania          0
## 5691  2020-02-08    Europe                        Andorra          0
## 5692  2020-02-08    Europe                        Armenia          0
## 5693  2020-02-08    Europe                        Armenia          0
## 5694  2020-02-08    Europe                        Austria          0
## 5695  2020-02-08    Europe                        Austria          0
## 5696  2020-02-08    Europe                     Azerbaijan          0
## 5697  2020-02-08    Europe                     Azerbaijan          0
## 5698  2020-02-08    Europe                        Belarus          0
## 5699  2020-02-08    Europe                        Belarus          0
## 5700  2020-02-08    Europe                        Belgium          0
## 5701  2020-02-08    Europe                        Belgium          0
## 5702  2020-02-08    Europe         Bosnia and Herzegovina          0
## 5703  2020-02-08    Europe                       Bulgaria          0
## 5704  2020-02-08    Europe                        Croatia          0
## 5705  2020-02-08    Europe                        Croatia          0
## 5706  2020-02-08    Europe                         Cyprus          0
## 5707  2020-02-08    Europe                 Czech Republic          0
## 5708  2020-02-08    Europe                 Czech Republic          0
## 5709  2020-02-08    Europe                        Denmark          0
## 5710  2020-02-08    Europe                        Denmark          0
## 5711  2020-02-08    Europe                        Estonia          0
## 5712  2020-02-08    Europe                        Estonia          0
## 5713  2020-02-08    Europe                        Finland          0
## 5714  2020-02-08    Europe                        Finland          0
## 5715  2020-02-08    Europe                         France          5
## 5716  2020-02-08    Europe                         France          5
## 5717  2020-02-08    Europe                        Georgia          0
## 5718  2020-02-08    Europe                        Georgia          0
## 5719  2020-02-08    Europe                        Germany          0
## 5720  2020-02-08    Europe                        Germany          1
## 5721  2020-02-08    Europe                         Greece          0
## 5722  2020-02-08    Europe                         Greece          0
## 5723  2020-02-08    Europe                        Hungary          0
## 5724  2020-02-08    Europe                        Iceland          0
## 5725  2020-02-08    Europe                        Iceland          0
## 5726  2020-02-08    Europe                        Ireland          0
## 5727  2020-02-08    Europe                        Ireland          0
## 5728  2020-02-08    Europe                          Italy          0
## 5729  2020-02-08    Europe                          Italy          0
## 5730  2020-02-08    Europe                         Kosovo          0
## 5731  2020-02-08    Europe                         Latvia          0
## 5732  2020-02-08    Europe                  Liechtenstein          0
## 5733  2020-02-08    Europe                      Lithuania          0
## 5734  2020-02-08    Europe                      Lithuania          0
## 5735  2020-02-08    Europe                     Luxembourg          0
## 5736  2020-02-08    Europe                     Luxembourg          0
## 5737  2020-02-08    Europe                      Macedonia          0
## 5738  2020-02-08    Europe                      Macedonia          0
## 5739  2020-02-08    Europe                          Malta          0
## 5740  2020-02-08    Europe                        Moldova          0
## 5741  2020-02-08    Europe                         Monaco          0
## 5742  2020-02-08    Europe                         Monaco          0
## 5743  2020-02-08    Europe                     Montenegro          0
## 5744  2020-02-08    Europe                    Netherlands          0
## 5745  2020-02-08    Europe                    Netherlands          0
## 5746  2020-02-08    Europe                         Norway          0
## 5747  2020-02-08    Europe                         Norway          0
## 5748  2020-02-08    Europe                         Poland          0
## 5749  2020-02-08    Europe                       Portugal          0
## 5750  2020-02-08    Europe                        Romania          0
## 5751  2020-02-08    Europe                        Romania          0
## 5752  2020-02-08    Europe                         Russia          0
## 5753  2020-02-08    Europe                         Russia          0
## 5754  2020-02-08    Europe                     San Marino          0
## 5755  2020-02-08    Europe                     San Marino          0
## 5756  2020-02-08    Europe                         Serbia          0
## 5757  2020-02-08    Europe                       Slovakia          0
## 5758  2020-02-08    Europe                       Slovenia          0
## 5759  2020-02-08    Europe                          Spain          0
## 5760  2020-02-08    Europe                          Spain          0
## 5761  2020-02-08    Europe                         Sweden          0
## 5762  2020-02-08    Europe                         Sweden          0
## 5763  2020-02-08    Europe                    Switzerland          0
## 5764  2020-02-08    Europe                    Switzerland          0
## 5765  2020-02-08    Europe                        Ukraine          0
## 5766  2020-02-08    Europe                 United Kingdom          0
## 5767  2020-02-08    Europe                 United Kingdom          0
## 5768  2020-02-08    Europe                        Vatican          0
## 5769  2020-02-08   Oceania                      Australia          0
## 5770  2020-02-08   Oceania                           Fiji          0
## 5771  2020-02-08   Oceania                    New Zealand          0
## 5772  2020-02-08   Oceania                    New Zealand          0
## 5773  2020-02-08   Oceania               Papua New Guinea          0
## 5774  2020-02-08     Other                      not found          3
## 5775  2020-02-09    Africa                        Algeria          0
## 5776  2020-02-09    Africa                        Algeria          0
## 5777  2020-02-09    Africa                         Angola          0
## 5778  2020-02-09    Africa                          Benin          0
## 5779  2020-02-09    Africa                       Botswana          0
## 5780  2020-02-09    Africa                   Burkina Faso          0
## 5781  2020-02-09    Africa                        Burundi          0
## 5782  2020-02-09    Africa                     Cabo Verde          0
## 5783  2020-02-09    Africa                       Cameroon          0
## 5784  2020-02-09    Africa       Central African Republic          0
## 5785  2020-02-09    Africa                           Chad          0
## 5786  2020-02-09    Africa                        Comoros          0
## 5787  2020-02-09    Africa                 Congo Republic          0
## 5788  2020-02-09    Africa                  Cote d'Ivoire          0
## 5789  2020-02-09    Africa                       DR Congo          0
## 5790  2020-02-09    Africa                       Djibouti          0
## 5791  2020-02-09    Africa                          Egypt          0
## 5792  2020-02-09    Africa                          Egypt          0
## 5793  2020-02-09    Africa              Equatorial Guinea          0
## 5794  2020-02-09    Africa                        Eritrea          0
## 5795  2020-02-09    Africa                       Eswatini          0
## 5796  2020-02-09    Africa                       Ethiopia          0
## 5797  2020-02-09    Africa                          Gabon          0
## 5798  2020-02-09    Africa                         Gambia          0
## 5799  2020-02-09    Africa                          Ghana          0
## 5800  2020-02-09    Africa                         Guinea          0
## 5801  2020-02-09    Africa                  Guinea-Bissau          0
## 5802  2020-02-09    Africa                          Kenya          0
## 5803  2020-02-09    Africa                        Lesotho          0
## 5804  2020-02-09    Africa                        Liberia          0
## 5805  2020-02-09    Africa                          Libya          0
## 5806  2020-02-09    Africa                     Madagascar          0
## 5807  2020-02-09    Africa                         Malawi          0
## 5808  2020-02-09    Africa                           Mali          0
## 5809  2020-02-09    Africa                     Mauritania          0
## 5810  2020-02-09    Africa                      Mauritius          0
## 5811  2020-02-09    Africa                        Morocco          0
## 5812  2020-02-09    Africa                     Mozambique          0
## 5813  2020-02-09    Africa                        Namibia          0
## 5814  2020-02-09    Africa                          Niger          0
## 5815  2020-02-09    Africa                        Nigeria          0
## 5816  2020-02-09    Africa                        Nigeria          0
## 5817  2020-02-09    Africa                         Rwanda          0
## 5818  2020-02-09    Africa          Sao Tome and Principe          0
## 5819  2020-02-09    Africa                        Senegal          0
## 5820  2020-02-09    Africa                     Seychelles          0
## 5821  2020-02-09    Africa                   Sierra Leone          0
## 5822  2020-02-09    Africa                        Somalia          0
## 5823  2020-02-09    Africa                   South Africa          0
## 5824  2020-02-09    Africa                    South Sudan          0
## 5825  2020-02-09    Africa                          Sudan          0
## 5826  2020-02-09    Africa                       Tanzania          0
## 5827  2020-02-09    Africa                           Togo          0
## 5828  2020-02-09    Africa                        Tunisia          0
## 5829  2020-02-09    Africa                         Uganda          0
## 5830  2020-02-09    Africa                 Western Sahara          0
## 5831  2020-02-09    Africa                         Zambia          0
## 5832  2020-02-09    Africa                       Zimbabwe          0
## 5833  2020-02-09   America            Antigua and Barbuda          0
## 5834  2020-02-09   America                      Argentina          0
## 5835  2020-02-09   America                        Bahamas          0
## 5836  2020-02-09   America                       Barbados          0
## 5837  2020-02-09   America                         Belize          0
## 5838  2020-02-09   America                        Bolivia          0
## 5839  2020-02-09   America                         Brazil          0
## 5840  2020-02-09   America                         Brazil          0
## 5841  2020-02-09   America                         Canada          0
## 5842  2020-02-09   America                          Chile          0
## 5843  2020-02-09   America                       Colombia          0
## 5844  2020-02-09   America                     Costa Rica          0
## 5845  2020-02-09   America                           Cuba          0
## 5846  2020-02-09   America                       Dominica          0
## 5847  2020-02-09   America             Dominican Republic          0
## 5848  2020-02-09   America             Dominican Republic          0
## 5849  2020-02-09   America                        Ecuador          0
## 5850  2020-02-09   America                        Ecuador          0
## 5851  2020-02-09   America                    El Salvador          0
## 5852  2020-02-09   America                        Grenada          0
## 5853  2020-02-09   America                      Guatemala          0
## 5854  2020-02-09   America                         Guyana          0
## 5855  2020-02-09   America                          Haiti          0
## 5856  2020-02-09   America                       Honduras          0
## 5857  2020-02-09   America                        Jamaica          0
## 5858  2020-02-09   America                         Mexico          0
## 5859  2020-02-09   America                         Mexico          0
## 5860  2020-02-09   America                      Nicaragua          0
## 5861  2020-02-09   America                         Panama          0
## 5862  2020-02-09   America                       Paraguay          0
## 5863  2020-02-09   America                           Peru          0
## 5864  2020-02-09   America            St. Kitts and Nevis          0
## 5865  2020-02-09   America                      St. Lucia          0
## 5866  2020-02-09   America St. Vincent and the Grenadines          0
## 5867  2020-02-09   America                       Suriname          0
## 5868  2020-02-09   America            Trinidad and Tobago          0
## 5869  2020-02-09   America                  United States          0
## 5870  2020-02-09   America                  United States          0
## 5871  2020-02-09   America                        Uruguay          0
## 5872  2020-02-09   America                      Venezuela          0
## 5873  2020-02-09      Asia                    Afghanistan          0
## 5874  2020-02-09      Asia                    Afghanistan          0
## 5875  2020-02-09      Asia                        Bahrain          0
## 5876  2020-02-09      Asia                        Bahrain          0
## 5877  2020-02-09      Asia                     Bangladesh          0
## 5878  2020-02-09      Asia                         Bhutan          0
## 5879  2020-02-09      Asia              Brunei Darussalam          0
## 5880  2020-02-09      Asia                       Cambodia          0
## 5881  2020-02-09      Asia                       Cambodia          0
## 5882  2020-02-09      Asia                          China       2607
## 5883  2020-02-09      Asia                          India          0
## 5884  2020-02-09      Asia                          India          0
## 5885  2020-02-09      Asia                      Indonesia          0
## 5886  2020-02-09      Asia                      Indonesia          0
## 5887  2020-02-09      Asia                           Iran          0
## 5888  2020-02-09      Asia                           Iran          0
## 5889  2020-02-09      Asia                           Iraq          0
## 5890  2020-02-09      Asia                           Iraq          0
## 5891  2020-02-09      Asia                         Israel          0
## 5892  2020-02-09      Asia                         Israel          0
## 5893  2020-02-09      Asia                          Japan          0
## 5894  2020-02-09      Asia                          Japan          1
## 5895  2020-02-09      Asia                         Jordan          0
## 5896  2020-02-09      Asia                     Kazakhstan          0
## 5897  2020-02-09      Asia                         Kuwait          0
## 5898  2020-02-09      Asia                         Kuwait          0
## 5899  2020-02-09      Asia                Kyrgyz Republic          0
## 5900  2020-02-09      Asia                           Laos          0
## 5901  2020-02-09      Asia                        Lebanon          0
## 5902  2020-02-09      Asia                        Lebanon          0
## 5903  2020-02-09      Asia                       Malaysia          0
## 5904  2020-02-09      Asia                       Malaysia          1
## 5905  2020-02-09      Asia                       Maldives          0
## 5906  2020-02-09      Asia                       Mongolia          0
## 5907  2020-02-09      Asia                        Myanmar          0
## 5908  2020-02-09      Asia                          Nepal          0
## 5909  2020-02-09      Asia                          Nepal          0
## 5910  2020-02-09      Asia                           Oman          0
## 5911  2020-02-09      Asia                           Oman          0
## 5912  2020-02-09      Asia                       Pakistan          0
## 5913  2020-02-09      Asia                       Pakistan          0
## 5914  2020-02-09      Asia                      Palestine          0
## 5915  2020-02-09      Asia                    Philippines          0
## 5916  2020-02-09      Asia                    Philippines          0
## 5917  2020-02-09      Asia                          Qatar          0
## 5918  2020-02-09      Asia                          Qatar          0
## 5919  2020-02-09      Asia                   Saudi Arabia          0
## 5920  2020-02-09      Asia                      Singapore          7
## 5921  2020-02-09      Asia                      Singapore          7
## 5922  2020-02-09      Asia                    South Korea          1
## 5923  2020-02-09      Asia                    South Korea          1
## 5924  2020-02-09      Asia                      Sri Lanka          0
## 5925  2020-02-09      Asia                      Sri Lanka          0
## 5926  2020-02-09      Asia                          Syria          0
## 5927  2020-02-09      Asia                     Tajikistan          0
## 5928  2020-02-09      Asia                       Thailand          0
## 5929  2020-02-09      Asia                       Thailand          0
## 5930  2020-02-09      Asia                    Timor-Leste          0
## 5931  2020-02-09      Asia                         Turkey          0
## 5932  2020-02-09      Asia           United Arab Emirates          0
## 5933  2020-02-09      Asia           United Arab Emirates          0
## 5934  2020-02-09      Asia                     Uzbekistan          0
## 5935  2020-02-09      Asia                        Vietnam          0
## 5936  2020-02-09      Asia                        Vietnam          1
## 5937  2020-02-09      Asia                          Yemen          0
## 5938  2020-02-09      Asia                      not found          1
## 5939  2020-02-09    Europe                        Albania          0
## 5940  2020-02-09    Europe                        Andorra          0
## 5941  2020-02-09    Europe                        Armenia          0
## 5942  2020-02-09    Europe                        Armenia          0
## 5943  2020-02-09    Europe                        Austria          0
## 5944  2020-02-09    Europe                        Austria          0
## 5945  2020-02-09    Europe                     Azerbaijan          0
## 5946  2020-02-09    Europe                     Azerbaijan          0
## 5947  2020-02-09    Europe                        Belarus          0
## 5948  2020-02-09    Europe                        Belarus          0
## 5949  2020-02-09    Europe                        Belgium          0
## 5950  2020-02-09    Europe                        Belgium          0
## 5951  2020-02-09    Europe         Bosnia and Herzegovina          0
## 5952  2020-02-09    Europe                       Bulgaria          0
## 5953  2020-02-09    Europe                        Croatia          0
## 5954  2020-02-09    Europe                        Croatia          0
## 5955  2020-02-09    Europe                         Cyprus          0
## 5956  2020-02-09    Europe                 Czech Republic          0
## 5957  2020-02-09    Europe                 Czech Republic          0
## 5958  2020-02-09    Europe                        Denmark          0
## 5959  2020-02-09    Europe                        Denmark          0
## 5960  2020-02-09    Europe                        Estonia          0
## 5961  2020-02-09    Europe                        Estonia          0
## 5962  2020-02-09    Europe                        Finland          0
## 5963  2020-02-09    Europe                        Finland          0
## 5964  2020-02-09    Europe                         France          0
## 5965  2020-02-09    Europe                         France          0
## 5966  2020-02-09    Europe                        Georgia          0
## 5967  2020-02-09    Europe                        Georgia          0
## 5968  2020-02-09    Europe                        Germany          0
## 5969  2020-02-09    Europe                        Germany          1
## 5970  2020-02-09    Europe                         Greece          0
## 5971  2020-02-09    Europe                         Greece          0
## 5972  2020-02-09    Europe                        Hungary          0
## 5973  2020-02-09    Europe                        Iceland          0
## 5974  2020-02-09    Europe                        Iceland          0
## 5975  2020-02-09    Europe                        Ireland          0
## 5976  2020-02-09    Europe                        Ireland          0
## 5977  2020-02-09    Europe                          Italy          0
## 5978  2020-02-09    Europe                          Italy          0
## 5979  2020-02-09    Europe                         Kosovo          0
## 5980  2020-02-09    Europe                         Latvia          0
## 5981  2020-02-09    Europe                  Liechtenstein          0
## 5982  2020-02-09    Europe                      Lithuania          0
## 5983  2020-02-09    Europe                      Lithuania          0
## 5984  2020-02-09    Europe                     Luxembourg          0
## 5985  2020-02-09    Europe                     Luxembourg          0
## 5986  2020-02-09    Europe                      Macedonia          0
## 5987  2020-02-09    Europe                      Macedonia          0
## 5988  2020-02-09    Europe                          Malta          0
## 5989  2020-02-09    Europe                        Moldova          0
## 5990  2020-02-09    Europe                         Monaco          0
## 5991  2020-02-09    Europe                         Monaco          0
## 5992  2020-02-09    Europe                     Montenegro          0
## 5993  2020-02-09    Europe                    Netherlands          0
## 5994  2020-02-09    Europe                    Netherlands          0
## 5995  2020-02-09    Europe                         Norway          0
## 5996  2020-02-09    Europe                         Norway          0
## 5997  2020-02-09    Europe                         Poland          0
## 5998  2020-02-09    Europe                       Portugal          0
## 5999  2020-02-09    Europe                        Romania          0
## 6000  2020-02-09    Europe                        Romania          0
## 6001  2020-02-09    Europe                         Russia          0
## 6002  2020-02-09    Europe                         Russia          0
## 6003  2020-02-09    Europe                     San Marino          0
## 6004  2020-02-09    Europe                     San Marino          0
## 6005  2020-02-09    Europe                         Serbia          0
## 6006  2020-02-09    Europe                       Slovakia          0
## 6007  2020-02-09    Europe                       Slovenia          0
## 6008  2020-02-09    Europe                          Spain          0
## 6009  2020-02-09    Europe                          Spain          1
## 6010  2020-02-09    Europe                         Sweden          0
## 6011  2020-02-09    Europe                         Sweden          0
## 6012  2020-02-09    Europe                    Switzerland          0
## 6013  2020-02-09    Europe                    Switzerland          0
## 6014  2020-02-09    Europe                        Ukraine          0
## 6015  2020-02-09    Europe                 United Kingdom          0
## 6016  2020-02-09    Europe                 United Kingdom          1
## 6017  2020-02-09    Europe                        Vatican          0
## 6018  2020-02-09   Oceania                      Australia          0
## 6019  2020-02-09   Oceania                           Fiji          0
## 6020  2020-02-09   Oceania                    New Zealand          0
## 6021  2020-02-09   Oceania                    New Zealand          0
## 6022  2020-02-09   Oceania               Papua New Guinea          0
## 6023  2020-02-09     Other                      not found          0
## 6024  2020-02-10    Africa                        Algeria          0
## 6025  2020-02-10    Africa                        Algeria          0
## 6026  2020-02-10    Africa                         Angola          0
## 6027  2020-02-10    Africa                          Benin          0
## 6028  2020-02-10    Africa                       Botswana          0
## 6029  2020-02-10    Africa                   Burkina Faso          0
## 6030  2020-02-10    Africa                        Burundi          0
## 6031  2020-02-10    Africa                     Cabo Verde          0
## 6032  2020-02-10    Africa                       Cameroon          0
## 6033  2020-02-10    Africa       Central African Republic          0
## 6034  2020-02-10    Africa                           Chad          0
## 6035  2020-02-10    Africa                        Comoros          0
## 6036  2020-02-10    Africa                 Congo Republic          0
## 6037  2020-02-10    Africa                  Cote d'Ivoire          0
## 6038  2020-02-10    Africa                       DR Congo          0
## 6039  2020-02-10    Africa                       Djibouti          0
## 6040  2020-02-10    Africa                          Egypt          0
## 6041  2020-02-10    Africa                          Egypt          0
## 6042  2020-02-10    Africa              Equatorial Guinea          0
## 6043  2020-02-10    Africa                        Eritrea          0
## 6044  2020-02-10    Africa                       Eswatini          0
## 6045  2020-02-10    Africa                       Ethiopia          0
## 6046  2020-02-10    Africa                          Gabon          0
## 6047  2020-02-10    Africa                         Gambia          0
## 6048  2020-02-10    Africa                          Ghana          0
## 6049  2020-02-10    Africa                         Guinea          0
## 6050  2020-02-10    Africa                  Guinea-Bissau          0
## 6051  2020-02-10    Africa                          Kenya          0
## 6052  2020-02-10    Africa                        Lesotho          0
## 6053  2020-02-10    Africa                        Liberia          0
## 6054  2020-02-10    Africa                          Libya          0
## 6055  2020-02-10    Africa                     Madagascar          0
## 6056  2020-02-10    Africa                         Malawi          0
## 6057  2020-02-10    Africa                           Mali          0
## 6058  2020-02-10    Africa                     Mauritania          0
## 6059  2020-02-10    Africa                      Mauritius          0
## 6060  2020-02-10    Africa                        Morocco          0
## 6061  2020-02-10    Africa                     Mozambique          0
## 6062  2020-02-10    Africa                        Namibia          0
## 6063  2020-02-10    Africa                          Niger          0
## 6064  2020-02-10    Africa                        Nigeria          0
## 6065  2020-02-10    Africa                        Nigeria          0
## 6066  2020-02-10    Africa                         Rwanda          0
## 6067  2020-02-10    Africa          Sao Tome and Principe          0
## 6068  2020-02-10    Africa                        Senegal          0
## 6069  2020-02-10    Africa                     Seychelles          0
## 6070  2020-02-10    Africa                   Sierra Leone          0
## 6071  2020-02-10    Africa                        Somalia          0
## 6072  2020-02-10    Africa                   South Africa          0
## 6073  2020-02-10    Africa                    South Sudan          0
## 6074  2020-02-10    Africa                          Sudan          0
## 6075  2020-02-10    Africa                       Tanzania          0
## 6076  2020-02-10    Africa                           Togo          0
## 6077  2020-02-10    Africa                        Tunisia          0
## 6078  2020-02-10    Africa                         Uganda          0
## 6079  2020-02-10    Africa                 Western Sahara          0
## 6080  2020-02-10    Africa                         Zambia          0
## 6081  2020-02-10    Africa                       Zimbabwe          0
## 6082  2020-02-10   America            Antigua and Barbuda          0
## 6083  2020-02-10   America                      Argentina          0
## 6084  2020-02-10   America                        Bahamas          0
## 6085  2020-02-10   America                       Barbados          0
## 6086  2020-02-10   America                         Belize          0
## 6087  2020-02-10   America                        Bolivia          0
## 6088  2020-02-10   America                         Brazil          0
## 6089  2020-02-10   America                         Brazil          0
## 6090  2020-02-10   America                         Canada          0
## 6091  2020-02-10   America                          Chile          0
## 6092  2020-02-10   America                       Colombia          0
## 6093  2020-02-10   America                     Costa Rica          0
## 6094  2020-02-10   America                           Cuba          0
## 6095  2020-02-10   America                       Dominica          0
## 6096  2020-02-10   America             Dominican Republic          0
## 6097  2020-02-10   America             Dominican Republic          0
## 6098  2020-02-10   America                        Ecuador          0
## 6099  2020-02-10   America                        Ecuador          0
## 6100  2020-02-10   America                    El Salvador          0
## 6101  2020-02-10   America                        Grenada          0
## 6102  2020-02-10   America                      Guatemala          0
## 6103  2020-02-10   America                         Guyana          0
## 6104  2020-02-10   America                          Haiti          0
## 6105  2020-02-10   America                       Honduras          0
## 6106  2020-02-10   America                        Jamaica          0
## 6107  2020-02-10   America                         Mexico          0
## 6108  2020-02-10   America                         Mexico          0
## 6109  2020-02-10   America                      Nicaragua          0
## 6110  2020-02-10   America                         Panama          0
## 6111  2020-02-10   America                       Paraguay          0
## 6112  2020-02-10   America                           Peru          0
## 6113  2020-02-10   America            St. Kitts and Nevis          0
## 6114  2020-02-10   America                      St. Lucia          0
## 6115  2020-02-10   America St. Vincent and the Grenadines          0
## 6116  2020-02-10   America                       Suriname          0
## 6117  2020-02-10   America            Trinidad and Tobago          0
## 6118  2020-02-10   America                  United States          0
## 6119  2020-02-10   America                  United States          0
## 6120  2020-02-10   America                        Uruguay          0
## 6121  2020-02-10   America                      Venezuela          0
## 6122  2020-02-10      Asia                    Afghanistan          0
## 6123  2020-02-10      Asia                    Afghanistan          0
## 6124  2020-02-10      Asia                        Bahrain          0
## 6125  2020-02-10      Asia                        Bahrain          0
## 6126  2020-02-10      Asia                     Bangladesh          0
## 6127  2020-02-10      Asia                         Bhutan          0
## 6128  2020-02-10      Asia              Brunei Darussalam          0
## 6129  2020-02-10      Asia                       Cambodia          0
## 6130  2020-02-10      Asia                       Cambodia          0
## 6131  2020-02-10      Asia                          China       2974
## 6132  2020-02-10      Asia                          India          0
## 6133  2020-02-10      Asia                          India          0
## 6134  2020-02-10      Asia                      Indonesia          0
## 6135  2020-02-10      Asia                      Indonesia          0
## 6136  2020-02-10      Asia                           Iran          0
## 6137  2020-02-10      Asia                           Iran          0
## 6138  2020-02-10      Asia                           Iraq          0
## 6139  2020-02-10      Asia                           Iraq          0
## 6140  2020-02-10      Asia                         Israel          0
## 6141  2020-02-10      Asia                         Israel          0
## 6142  2020-02-10      Asia                          Japan          0
## 6143  2020-02-10      Asia                          Japan          0
## 6144  2020-02-10      Asia                         Jordan          0
## 6145  2020-02-10      Asia                     Kazakhstan          0
## 6146  2020-02-10      Asia                         Kuwait          0
## 6147  2020-02-10      Asia                         Kuwait          0
## 6148  2020-02-10      Asia                Kyrgyz Republic          0
## 6149  2020-02-10      Asia                           Laos          0
## 6150  2020-02-10      Asia                        Lebanon          0
## 6151  2020-02-10      Asia                        Lebanon          0
## 6152  2020-02-10      Asia                       Malaysia          2
## 6153  2020-02-10      Asia                       Malaysia          2
## 6154  2020-02-10      Asia                       Maldives          0
## 6155  2020-02-10      Asia                       Mongolia          0
## 6156  2020-02-10      Asia                        Myanmar          0
## 6157  2020-02-10      Asia                          Nepal          0
## 6158  2020-02-10      Asia                          Nepal          0
## 6159  2020-02-10      Asia                           Oman          0
## 6160  2020-02-10      Asia                           Oman          0
## 6161  2020-02-10      Asia                       Pakistan          0
## 6162  2020-02-10      Asia                       Pakistan          0
## 6163  2020-02-10      Asia                      Palestine          0
## 6164  2020-02-10      Asia                    Philippines          0
## 6165  2020-02-10      Asia                    Philippines          0
## 6166  2020-02-10      Asia                          Qatar          0
## 6167  2020-02-10      Asia                          Qatar          0
## 6168  2020-02-10      Asia                   Saudi Arabia          0
## 6169  2020-02-10      Asia                      Singapore          3
## 6170  2020-02-10      Asia                      Singapore          5
## 6171  2020-02-10      Asia                    South Korea          2
## 6172  2020-02-10      Asia                    South Korea          2
## 6173  2020-02-10      Asia                      Sri Lanka          0
## 6174  2020-02-10      Asia                      Sri Lanka          0
## 6175  2020-02-10      Asia                          Syria          0
## 6176  2020-02-10      Asia                     Tajikistan          0
## 6177  2020-02-10      Asia                       Thailand          0
## 6178  2020-02-10      Asia                       Thailand          0
## 6179  2020-02-10      Asia                    Timor-Leste          0
## 6180  2020-02-10      Asia                         Turkey          0
## 6181  2020-02-10      Asia           United Arab Emirates          0
## 6182  2020-02-10      Asia           United Arab Emirates          1
## 6183  2020-02-10      Asia                     Uzbekistan          0
## 6184  2020-02-10      Asia                        Vietnam          0
## 6185  2020-02-10      Asia                        Vietnam          1
## 6186  2020-02-10      Asia                          Yemen          0
## 6187  2020-02-10      Asia                      not found          0
## 6188  2020-02-10    Europe                        Albania          0
## 6189  2020-02-10    Europe                        Andorra          0
## 6190  2020-02-10    Europe                        Armenia          0
## 6191  2020-02-10    Europe                        Armenia          0
## 6192  2020-02-10    Europe                        Austria          0
## 6193  2020-02-10    Europe                        Austria          0
## 6194  2020-02-10    Europe                     Azerbaijan          0
## 6195  2020-02-10    Europe                     Azerbaijan          0
## 6196  2020-02-10    Europe                        Belarus          0
## 6197  2020-02-10    Europe                        Belarus          0
## 6198  2020-02-10    Europe                        Belgium          0
## 6199  2020-02-10    Europe                        Belgium          0
## 6200  2020-02-10    Europe         Bosnia and Herzegovina          0
## 6201  2020-02-10    Europe                       Bulgaria          0
## 6202  2020-02-10    Europe                        Croatia          0
## 6203  2020-02-10    Europe                        Croatia          0
## 6204  2020-02-10    Europe                         Cyprus          0
## 6205  2020-02-10    Europe                 Czech Republic          0
## 6206  2020-02-10    Europe                 Czech Republic          0
## 6207  2020-02-10    Europe                        Denmark          0
## 6208  2020-02-10    Europe                        Denmark          0
## 6209  2020-02-10    Europe                        Estonia          0
## 6210  2020-02-10    Europe                        Estonia          0
## 6211  2020-02-10    Europe                        Finland          0
## 6212  2020-02-10    Europe                        Finland          0
## 6213  2020-02-10    Europe                         France          0
## 6214  2020-02-10    Europe                         France          0
## 6215  2020-02-10    Europe                        Georgia          0
## 6216  2020-02-10    Europe                        Georgia          0
## 6217  2020-02-10    Europe                        Germany          0
## 6218  2020-02-10    Europe                        Germany          0
## 6219  2020-02-10    Europe                         Greece          0
## 6220  2020-02-10    Europe                         Greece          0
## 6221  2020-02-10    Europe                        Hungary          0
## 6222  2020-02-10    Europe                        Iceland          0
## 6223  2020-02-10    Europe                        Iceland          0
## 6224  2020-02-10    Europe                        Ireland          0
## 6225  2020-02-10    Europe                        Ireland          0
## 6226  2020-02-10    Europe                          Italy          0
## 6227  2020-02-10    Europe                          Italy          0
## 6228  2020-02-10    Europe                         Kosovo          0
## 6229  2020-02-10    Europe                         Latvia          0
## 6230  2020-02-10    Europe                  Liechtenstein          0
## 6231  2020-02-10    Europe                      Lithuania          0
## 6232  2020-02-10    Europe                      Lithuania          0
## 6233  2020-02-10    Europe                     Luxembourg          0
## 6234  2020-02-10    Europe                     Luxembourg          0
## 6235  2020-02-10    Europe                      Macedonia          0
## 6236  2020-02-10    Europe                      Macedonia          0
## 6237  2020-02-10    Europe                          Malta          0
## 6238  2020-02-10    Europe                        Moldova          0
## 6239  2020-02-10    Europe                         Monaco          0
## 6240  2020-02-10    Europe                         Monaco          0
## 6241  2020-02-10    Europe                     Montenegro          0
## 6242  2020-02-10    Europe                    Netherlands          0
## 6243  2020-02-10    Europe                    Netherlands          0
## 6244  2020-02-10    Europe                         Norway          0
## 6245  2020-02-10    Europe                         Norway          0
## 6246  2020-02-10    Europe                         Poland          0
## 6247  2020-02-10    Europe                       Portugal          0
## 6248  2020-02-10    Europe                        Romania          0
## 6249  2020-02-10    Europe                        Romania          0
## 6250  2020-02-10    Europe                         Russia          0
## 6251  2020-02-10    Europe                         Russia          0
## 6252  2020-02-10    Europe                     San Marino          0
## 6253  2020-02-10    Europe                     San Marino          0
## 6254  2020-02-10    Europe                         Serbia          0
## 6255  2020-02-10    Europe                       Slovakia          0
## 6256  2020-02-10    Europe                       Slovenia          0
## 6257  2020-02-10    Europe                          Spain          0
## 6258  2020-02-10    Europe                          Spain          1
## 6259  2020-02-10    Europe                         Sweden          0
## 6260  2020-02-10    Europe                         Sweden          0
## 6261  2020-02-10    Europe                    Switzerland          0
## 6262  2020-02-10    Europe                    Switzerland          0
## 6263  2020-02-10    Europe                        Ukraine          0
## 6264  2020-02-10    Europe                 United Kingdom          0
## 6265  2020-02-10    Europe                 United Kingdom          5
## 6266  2020-02-10    Europe                        Vatican          0
## 6267  2020-02-10   Oceania                      Australia          0
## 6268  2020-02-10   Oceania                           Fiji          0
## 6269  2020-02-10   Oceania                    New Zealand          0
## 6270  2020-02-10   Oceania                    New Zealand          0
## 6271  2020-02-10   Oceania               Papua New Guinea          0
## 6272  2020-02-10     Other                      not found          6
## 6273  2020-02-11    Africa                        Algeria          0
## 6274  2020-02-11    Africa                        Algeria          0
## 6275  2020-02-11    Africa                         Angola          0
## 6276  2020-02-11    Africa                          Benin          0
## 6277  2020-02-11    Africa                       Botswana          0
## 6278  2020-02-11    Africa                   Burkina Faso          0
## 6279  2020-02-11    Africa                        Burundi          0
## 6280  2020-02-11    Africa                     Cabo Verde          0
## 6281  2020-02-11    Africa                       Cameroon          0
## 6282  2020-02-11    Africa       Central African Republic          0
## 6283  2020-02-11    Africa                           Chad          0
## 6284  2020-02-11    Africa                        Comoros          0
## 6285  2020-02-11    Africa                 Congo Republic          0
## 6286  2020-02-11    Africa                  Cote d'Ivoire          0
## 6287  2020-02-11    Africa                       DR Congo          0
## 6288  2020-02-11    Africa                       Djibouti          0
## 6289  2020-02-11    Africa                          Egypt          0
## 6290  2020-02-11    Africa                          Egypt          0
## 6291  2020-02-11    Africa              Equatorial Guinea          0
## 6292  2020-02-11    Africa                        Eritrea          0
## 6293  2020-02-11    Africa                       Eswatini          0
## 6294  2020-02-11    Africa                       Ethiopia          0
## 6295  2020-02-11    Africa                          Gabon          0
## 6296  2020-02-11    Africa                         Gambia          0
## 6297  2020-02-11    Africa                          Ghana          0
## 6298  2020-02-11    Africa                         Guinea          0
## 6299  2020-02-11    Africa                  Guinea-Bissau          0
## 6300  2020-02-11    Africa                          Kenya          0
## 6301  2020-02-11    Africa                        Lesotho          0
## 6302  2020-02-11    Africa                        Liberia          0
## 6303  2020-02-11    Africa                          Libya          0
## 6304  2020-02-11    Africa                     Madagascar          0
## 6305  2020-02-11    Africa                         Malawi          0
## 6306  2020-02-11    Africa                           Mali          0
## 6307  2020-02-11    Africa                     Mauritania          0
## 6308  2020-02-11    Africa                      Mauritius          0
## 6309  2020-02-11    Africa                        Morocco          0
## 6310  2020-02-11    Africa                     Mozambique          0
## 6311  2020-02-11    Africa                        Namibia          0
## 6312  2020-02-11    Africa                          Niger          0
## 6313  2020-02-11    Africa                        Nigeria          0
## 6314  2020-02-11    Africa                        Nigeria          0
## 6315  2020-02-11    Africa                         Rwanda          0
## 6316  2020-02-11    Africa          Sao Tome and Principe          0
## 6317  2020-02-11    Africa                        Senegal          0
## 6318  2020-02-11    Africa                     Seychelles          0
## 6319  2020-02-11    Africa                   Sierra Leone          0
## 6320  2020-02-11    Africa                        Somalia          0
## 6321  2020-02-11    Africa                   South Africa          0
## 6322  2020-02-11    Africa                    South Sudan          0
## 6323  2020-02-11    Africa                          Sudan          0
## 6324  2020-02-11    Africa                       Tanzania          0
## 6325  2020-02-11    Africa                           Togo          0
## 6326  2020-02-11    Africa                        Tunisia          0
## 6327  2020-02-11    Africa                         Uganda          0
## 6328  2020-02-11    Africa                 Western Sahara          0
## 6329  2020-02-11    Africa                         Zambia          0
## 6330  2020-02-11    Africa                       Zimbabwe          0
## 6331  2020-02-11   America            Antigua and Barbuda          0
## 6332  2020-02-11   America                      Argentina          0
## 6333  2020-02-11   America                        Bahamas          0
## 6334  2020-02-11   America                       Barbados          0
## 6335  2020-02-11   America                         Belize          0
## 6336  2020-02-11   America                        Bolivia          0
## 6337  2020-02-11   America                         Brazil          0
## 6338  2020-02-11   America                         Brazil          0
## 6339  2020-02-11   America                         Canada          0
## 6340  2020-02-11   America                          Chile          0
## 6341  2020-02-11   America                       Colombia          0
## 6342  2020-02-11   America                     Costa Rica          0
## 6343  2020-02-11   America                           Cuba          0
## 6344  2020-02-11   America                       Dominica          0
## 6345  2020-02-11   America             Dominican Republic          0
## 6346  2020-02-11   America             Dominican Republic          0
## 6347  2020-02-11   America                        Ecuador          0
## 6348  2020-02-11   America                        Ecuador          0
## 6349  2020-02-11   America                    El Salvador          0
## 6350  2020-02-11   America                        Grenada          0
## 6351  2020-02-11   America                      Guatemala          0
## 6352  2020-02-11   America                         Guyana          0
## 6353  2020-02-11   America                          Haiti          0
## 6354  2020-02-11   America                       Honduras          0
## 6355  2020-02-11   America                        Jamaica          0
## 6356  2020-02-11   America                         Mexico          0
## 6357  2020-02-11   America                         Mexico          0
## 6358  2020-02-11   America                      Nicaragua          0
## 6359  2020-02-11   America                         Panama          0
## 6360  2020-02-11   America                       Paraguay          0
## 6361  2020-02-11   America                           Peru          0
## 6362  2020-02-11   America            St. Kitts and Nevis          0
## 6363  2020-02-11   America                      St. Lucia          0
## 6364  2020-02-11   America St. Vincent and the Grenadines          0
## 6365  2020-02-11   America                       Suriname          0
## 6366  2020-02-11   America            Trinidad and Tobago          0
## 6367  2020-02-11   America                  United States          1
## 6368  2020-02-11   America                  United States          1
## 6369  2020-02-11   America                        Uruguay          0
## 6370  2020-02-11   America                      Venezuela          0
## 6371  2020-02-11      Asia                    Afghanistan          0
## 6372  2020-02-11      Asia                    Afghanistan          0
## 6373  2020-02-11      Asia                        Bahrain          0
## 6374  2020-02-11      Asia                        Bahrain          0
## 6375  2020-02-11      Asia                     Bangladesh          0
## 6376  2020-02-11      Asia                         Bhutan          0
## 6377  2020-02-11      Asia              Brunei Darussalam          0
## 6378  2020-02-11      Asia                       Cambodia          0
## 6379  2020-02-11      Asia                       Cambodia          0
## 6380  2020-02-11      Asia                          China       2490
## 6381  2020-02-11      Asia                          India          0
## 6382  2020-02-11      Asia                          India          0
## 6383  2020-02-11      Asia                      Indonesia          0
## 6384  2020-02-11      Asia                      Indonesia          0
## 6385  2020-02-11      Asia                           Iran          0
## 6386  2020-02-11      Asia                           Iran          0
## 6387  2020-02-11      Asia                           Iraq          0
## 6388  2020-02-11      Asia                           Iraq          0
## 6389  2020-02-11      Asia                         Israel          0
## 6390  2020-02-11      Asia                         Israel          0
## 6391  2020-02-11      Asia                          Japan          0
## 6392  2020-02-11      Asia                          Japan          0
## 6393  2020-02-11      Asia                         Jordan          0
## 6394  2020-02-11      Asia                     Kazakhstan          0
## 6395  2020-02-11      Asia                         Kuwait          0
## 6396  2020-02-11      Asia                         Kuwait          0
## 6397  2020-02-11      Asia                Kyrgyz Republic          0
## 6398  2020-02-11      Asia                           Laos          0
## 6399  2020-02-11      Asia                        Lebanon          0
## 6400  2020-02-11      Asia                        Lebanon          0
## 6401  2020-02-11      Asia                       Malaysia          0
## 6402  2020-02-11      Asia                       Malaysia          0
## 6403  2020-02-11      Asia                       Maldives          0
## 6404  2020-02-11      Asia                       Mongolia          0
## 6405  2020-02-11      Asia                        Myanmar          0
## 6406  2020-02-11      Asia                          Nepal          0
## 6407  2020-02-11      Asia                          Nepal          0
## 6408  2020-02-11      Asia                           Oman          0
## 6409  2020-02-11      Asia                           Oman          0
## 6410  2020-02-11      Asia                       Pakistan          0
## 6411  2020-02-11      Asia                       Pakistan          0
## 6412  2020-02-11      Asia                      Palestine          0
## 6413  2020-02-11      Asia                    Philippines          0
## 6414  2020-02-11      Asia                    Philippines          0
## 6415  2020-02-11      Asia                          Qatar          0
## 6416  2020-02-11      Asia                          Qatar          0
## 6417  2020-02-11      Asia                   Saudi Arabia          0
## 6418  2020-02-11      Asia                      Singapore          2
## 6419  2020-02-11      Asia                      Singapore          2
## 6420  2020-02-11      Asia                    South Korea          1
## 6421  2020-02-11      Asia                    South Korea          1
## 6422  2020-02-11      Asia                      Sri Lanka          0
## 6423  2020-02-11      Asia                      Sri Lanka          0
## 6424  2020-02-11      Asia                          Syria          0
## 6425  2020-02-11      Asia                     Tajikistan          0
## 6426  2020-02-11      Asia                       Thailand          0
## 6427  2020-02-11      Asia                       Thailand          1
## 6428  2020-02-11      Asia                    Timor-Leste          0
## 6429  2020-02-11      Asia                         Turkey          0
## 6430  2020-02-11      Asia           United Arab Emirates          0
## 6431  2020-02-11      Asia           United Arab Emirates          1
## 6432  2020-02-11      Asia                     Uzbekistan          0
## 6433  2020-02-11      Asia                        Vietnam          1
## 6434  2020-02-11      Asia                        Vietnam          1
## 6435  2020-02-11      Asia                          Yemen          0
## 6436  2020-02-11      Asia                      not found          0
## 6437  2020-02-11    Europe                        Albania          0
## 6438  2020-02-11    Europe                        Andorra          0
## 6439  2020-02-11    Europe                        Armenia          0
## 6440  2020-02-11    Europe                        Armenia          0
## 6441  2020-02-11    Europe                        Austria          0
## 6442  2020-02-11    Europe                        Austria          0
## 6443  2020-02-11    Europe                     Azerbaijan          0
## 6444  2020-02-11    Europe                     Azerbaijan          0
## 6445  2020-02-11    Europe                        Belarus          0
## 6446  2020-02-11    Europe                        Belarus          0
## 6447  2020-02-11    Europe                        Belgium          0
## 6448  2020-02-11    Europe                        Belgium          0
## 6449  2020-02-11    Europe         Bosnia and Herzegovina          0
## 6450  2020-02-11    Europe                       Bulgaria          0
## 6451  2020-02-11    Europe                        Croatia          0
## 6452  2020-02-11    Europe                        Croatia          0
## 6453  2020-02-11    Europe                         Cyprus          0
## 6454  2020-02-11    Europe                 Czech Republic          0
## 6455  2020-02-11    Europe                 Czech Republic          0
## 6456  2020-02-11    Europe                        Denmark          0
## 6457  2020-02-11    Europe                        Denmark          0
## 6458  2020-02-11    Europe                        Estonia          0
## 6459  2020-02-11    Europe                        Estonia          0
## 6460  2020-02-11    Europe                        Finland          0
## 6461  2020-02-11    Europe                        Finland          0
## 6462  2020-02-11    Europe                         France          0
## 6463  2020-02-11    Europe                         France          0
## 6464  2020-02-11    Europe                        Georgia          0
## 6465  2020-02-11    Europe                        Georgia          0
## 6466  2020-02-11    Europe                        Germany          0
## 6467  2020-02-11    Europe                        Germany          2
## 6468  2020-02-11    Europe                         Greece          0
## 6469  2020-02-11    Europe                         Greece          0
## 6470  2020-02-11    Europe                        Hungary          0
## 6471  2020-02-11    Europe                        Iceland          0
## 6472  2020-02-11    Europe                        Iceland          0
## 6473  2020-02-11    Europe                        Ireland          0
## 6474  2020-02-11    Europe                        Ireland          0
## 6475  2020-02-11    Europe                          Italy          0
## 6476  2020-02-11    Europe                          Italy          0
## 6477  2020-02-11    Europe                         Kosovo          0
## 6478  2020-02-11    Europe                         Latvia          0
## 6479  2020-02-11    Europe                  Liechtenstein          0
## 6480  2020-02-11    Europe                      Lithuania          0
## 6481  2020-02-11    Europe                      Lithuania          0
## 6482  2020-02-11    Europe                     Luxembourg          0
## 6483  2020-02-11    Europe                     Luxembourg          0
## 6484  2020-02-11    Europe                      Macedonia          0
## 6485  2020-02-11    Europe                      Macedonia          0
## 6486  2020-02-11    Europe                          Malta          0
## 6487  2020-02-11    Europe                        Moldova          0
## 6488  2020-02-11    Europe                         Monaco          0
## 6489  2020-02-11    Europe                         Monaco          0
## 6490  2020-02-11    Europe                     Montenegro          0
## 6491  2020-02-11    Europe                    Netherlands          0
## 6492  2020-02-11    Europe                    Netherlands          0
## 6493  2020-02-11    Europe                         Norway          0
## 6494  2020-02-11    Europe                         Norway          0
## 6495  2020-02-11    Europe                         Poland          0
## 6496  2020-02-11    Europe                       Portugal          0
## 6497  2020-02-11    Europe                        Romania          0
## 6498  2020-02-11    Europe                        Romania          0
## 6499  2020-02-11    Europe                         Russia          0
## 6500  2020-02-11    Europe                         Russia          0
## 6501  2020-02-11    Europe                     San Marino          0
## 6502  2020-02-11    Europe                     San Marino          0
## 6503  2020-02-11    Europe                         Serbia          0
## 6504  2020-02-11    Europe                       Slovakia          0
## 6505  2020-02-11    Europe                       Slovenia          0
## 6506  2020-02-11    Europe                          Spain          0
## 6507  2020-02-11    Europe                          Spain          0
## 6508  2020-02-11    Europe                         Sweden          0
## 6509  2020-02-11    Europe                         Sweden          0
## 6510  2020-02-11    Europe                    Switzerland          0
## 6511  2020-02-11    Europe                    Switzerland          0
## 6512  2020-02-11    Europe                        Ukraine          0
## 6513  2020-02-11    Europe                 United Kingdom          0
## 6514  2020-02-11    Europe                 United Kingdom          4
## 6515  2020-02-11    Europe                        Vatican          0
## 6516  2020-02-11   Oceania                      Australia          0
## 6517  2020-02-11   Oceania                           Fiji          0
## 6518  2020-02-11   Oceania                    New Zealand          0
## 6519  2020-02-11   Oceania                    New Zealand          0
## 6520  2020-02-11   Oceania               Papua New Guinea          0
## 6521  2020-02-11     Other                      not found         65
## 6522  2020-02-12    Africa                        Algeria          0
## 6523  2020-02-12    Africa                        Algeria          0
## 6524  2020-02-12    Africa                         Angola          0
## 6525  2020-02-12    Africa                          Benin          0
## 6526  2020-02-12    Africa                       Botswana          0
## 6527  2020-02-12    Africa                   Burkina Faso          0
## 6528  2020-02-12    Africa                        Burundi          0
## 6529  2020-02-12    Africa                     Cabo Verde          0
## 6530  2020-02-12    Africa                       Cameroon          0
## 6531  2020-02-12    Africa       Central African Republic          0
## 6532  2020-02-12    Africa                           Chad          0
## 6533  2020-02-12    Africa                        Comoros          0
## 6534  2020-02-12    Africa                 Congo Republic          0
## 6535  2020-02-12    Africa                  Cote d'Ivoire          0
## 6536  2020-02-12    Africa                       DR Congo          0
## 6537  2020-02-12    Africa                       Djibouti          0
## 6538  2020-02-12    Africa                          Egypt          0
## 6539  2020-02-12    Africa                          Egypt          0
## 6540  2020-02-12    Africa              Equatorial Guinea          0
## 6541  2020-02-12    Africa                        Eritrea          0
## 6542  2020-02-12    Africa                       Eswatini          0
## 6543  2020-02-12    Africa                       Ethiopia          0
## 6544  2020-02-12    Africa                          Gabon          0
## 6545  2020-02-12    Africa                         Gambia          0
## 6546  2020-02-12    Africa                          Ghana          0
## 6547  2020-02-12    Africa                         Guinea          0
## 6548  2020-02-12    Africa                  Guinea-Bissau          0
## 6549  2020-02-12    Africa                          Kenya          0
## 6550  2020-02-12    Africa                        Lesotho          0
## 6551  2020-02-12    Africa                        Liberia          0
## 6552  2020-02-12    Africa                          Libya          0
## 6553  2020-02-12    Africa                     Madagascar          0
## 6554  2020-02-12    Africa                         Malawi          0
## 6555  2020-02-12    Africa                           Mali          0
## 6556  2020-02-12    Africa                     Mauritania          0
## 6557  2020-02-12    Africa                      Mauritius          0
## 6558  2020-02-12    Africa                        Morocco          0
## 6559  2020-02-12    Africa                     Mozambique          0
## 6560  2020-02-12    Africa                        Namibia          0
## 6561  2020-02-12    Africa                          Niger          0
## 6562  2020-02-12    Africa                        Nigeria          0
## 6563  2020-02-12    Africa                        Nigeria          0
## 6564  2020-02-12    Africa                         Rwanda          0
## 6565  2020-02-12    Africa          Sao Tome and Principe          0
## 6566  2020-02-12    Africa                        Senegal          0
## 6567  2020-02-12    Africa                     Seychelles          0
## 6568  2020-02-12    Africa                   Sierra Leone          0
## 6569  2020-02-12    Africa                        Somalia          0
## 6570  2020-02-12    Africa                   South Africa          0
## 6571  2020-02-12    Africa                    South Sudan          0
## 6572  2020-02-12    Africa                          Sudan          0
## 6573  2020-02-12    Africa                       Tanzania          0
## 6574  2020-02-12    Africa                           Togo          0
## 6575  2020-02-12    Africa                        Tunisia          0
## 6576  2020-02-12    Africa                         Uganda          0
## 6577  2020-02-12    Africa                 Western Sahara          0
## 6578  2020-02-12    Africa                         Zambia          0
## 6579  2020-02-12    Africa                       Zimbabwe          0
## 6580  2020-02-12   America            Antigua and Barbuda          0
## 6581  2020-02-12   America                      Argentina          0
## 6582  2020-02-12   America                        Bahamas          0
## 6583  2020-02-12   America                       Barbados          0
## 6584  2020-02-12   America                         Belize          0
## 6585  2020-02-12   America                        Bolivia          0
## 6586  2020-02-12   America                         Brazil          0
## 6587  2020-02-12   America                         Brazil          0
## 6588  2020-02-12   America                         Canada          0
## 6589  2020-02-12   America                          Chile          0
## 6590  2020-02-12   America                       Colombia          0
## 6591  2020-02-12   America                     Costa Rica          0
## 6592  2020-02-12   America                           Cuba          0
## 6593  2020-02-12   America                       Dominica          0
## 6594  2020-02-12   America             Dominican Republic          0
## 6595  2020-02-12   America             Dominican Republic          0
## 6596  2020-02-12   America                        Ecuador          0
## 6597  2020-02-12   America                        Ecuador          0
## 6598  2020-02-12   America                    El Salvador          0
## 6599  2020-02-12   America                        Grenada          0
## 6600  2020-02-12   America                      Guatemala          0
## 6601  2020-02-12   America                         Guyana          0
## 6602  2020-02-12   America                          Haiti          0
## 6603  2020-02-12   America                       Honduras          0
## 6604  2020-02-12   America                        Jamaica          0
## 6605  2020-02-12   America                         Mexico          0
## 6606  2020-02-12   America                         Mexico          0
## 6607  2020-02-12   America                      Nicaragua          0
## 6608  2020-02-12   America                         Panama          0
## 6609  2020-02-12   America                       Paraguay          0
## 6610  2020-02-12   America                           Peru          0
## 6611  2020-02-12   America            St. Kitts and Nevis          0
## 6612  2020-02-12   America                      St. Lucia          0
## 6613  2020-02-12   America St. Vincent and the Grenadines          0
## 6614  2020-02-12   America                       Suriname          0
## 6615  2020-02-12   America            Trinidad and Tobago          0
## 6616  2020-02-12   America                  United States          0
## 6617  2020-02-12   America                  United States          0
## 6618  2020-02-12   America                        Uruguay          0
## 6619  2020-02-12   America                      Venezuela          0
## 6620  2020-02-12      Asia                    Afghanistan          0
## 6621  2020-02-12      Asia                    Afghanistan          0
## 6622  2020-02-12      Asia                        Bahrain          0
## 6623  2020-02-12      Asia                        Bahrain          0
## 6624  2020-02-12      Asia                     Bangladesh          0
## 6625  2020-02-12      Asia                         Bhutan          0
## 6626  2020-02-12      Asia              Brunei Darussalam          0
## 6627  2020-02-12      Asia                       Cambodia          0
## 6628  2020-02-12      Asia                       Cambodia          0
## 6629  2020-02-12      Asia                          China       2028
## 6630  2020-02-12      Asia                          India          0
## 6631  2020-02-12      Asia                          India          0
## 6632  2020-02-12      Asia                      Indonesia          0
## 6633  2020-02-12      Asia                      Indonesia          0
## 6634  2020-02-12      Asia                           Iran          0
## 6635  2020-02-12      Asia                           Iran          0
## 6636  2020-02-12      Asia                           Iraq          0
## 6637  2020-02-12      Asia                           Iraq          0
## 6638  2020-02-12      Asia                         Israel          0
## 6639  2020-02-12      Asia                         Israel          0
## 6640  2020-02-12      Asia                          Japan          0
## 6641  2020-02-12      Asia                          Japan          2
## 6642  2020-02-12      Asia                         Jordan          0
## 6643  2020-02-12      Asia                     Kazakhstan          0
## 6644  2020-02-12      Asia                         Kuwait          0
## 6645  2020-02-12      Asia                         Kuwait          0
## 6646  2020-02-12      Asia                Kyrgyz Republic          0
## 6647  2020-02-12      Asia                           Laos          0
## 6648  2020-02-12      Asia                        Lebanon          0
## 6649  2020-02-12      Asia                        Lebanon          0
## 6650  2020-02-12      Asia                       Malaysia          0
## 6651  2020-02-12      Asia                       Malaysia          0
## 6652  2020-02-12      Asia                       Maldives          0
## 6653  2020-02-12      Asia                       Mongolia          0
## 6654  2020-02-12      Asia                        Myanmar          0
## 6655  2020-02-12      Asia                          Nepal          0
## 6656  2020-02-12      Asia                          Nepal          0
## 6657  2020-02-12      Asia                           Oman          0
## 6658  2020-02-12      Asia                           Oman          0
## 6659  2020-02-12      Asia                       Pakistan          0
## 6660  2020-02-12      Asia                       Pakistan          0
## 6661  2020-02-12      Asia                      Palestine          0
## 6662  2020-02-12      Asia                    Philippines          0
## 6663  2020-02-12      Asia                    Philippines          0
## 6664  2020-02-12      Asia                          Qatar          0
## 6665  2020-02-12      Asia                          Qatar          0
## 6666  2020-02-12      Asia                   Saudi Arabia          0
## 6667  2020-02-12      Asia                      Singapore          2
## 6668  2020-02-12      Asia                      Singapore          3
## 6669  2020-02-12      Asia                    South Korea          0
## 6670  2020-02-12      Asia                    South Korea          0
## 6671  2020-02-12      Asia                      Sri Lanka          0
## 6672  2020-02-12      Asia                      Sri Lanka          0
## 6673  2020-02-12      Asia                          Syria          0
## 6674  2020-02-12      Asia                     Tajikistan          0
## 6675  2020-02-12      Asia                       Thailand          0
## 6676  2020-02-12      Asia                       Thailand          1
## 6677  2020-02-12      Asia                    Timor-Leste          0
## 6678  2020-02-12      Asia                         Turkey          0
## 6679  2020-02-12      Asia           United Arab Emirates          0
## 6680  2020-02-12      Asia           United Arab Emirates          0
## 6681  2020-02-12      Asia                     Uzbekistan          0
## 6682  2020-02-12      Asia                        Vietnam          0
## 6683  2020-02-12      Asia                        Vietnam          0
## 6684  2020-02-12      Asia                          Yemen          0
## 6685  2020-02-12      Asia                      not found          0
## 6686  2020-02-12    Europe                        Albania          0
## 6687  2020-02-12    Europe                        Andorra          0
## 6688  2020-02-12    Europe                        Armenia          0
## 6689  2020-02-12    Europe                        Armenia          0
## 6690  2020-02-12    Europe                        Austria          0
## 6691  2020-02-12    Europe                        Austria          0
## 6692  2020-02-12    Europe                     Azerbaijan          0
## 6693  2020-02-12    Europe                     Azerbaijan          0
## 6694  2020-02-12    Europe                        Belarus          0
## 6695  2020-02-12    Europe                        Belarus          0
## 6696  2020-02-12    Europe                        Belgium          0
## 6697  2020-02-12    Europe                        Belgium          0
## 6698  2020-02-12    Europe         Bosnia and Herzegovina          0
## 6699  2020-02-12    Europe                       Bulgaria          0
## 6700  2020-02-12    Europe                        Croatia          0
## 6701  2020-02-12    Europe                        Croatia          0
## 6702  2020-02-12    Europe                         Cyprus          0
## 6703  2020-02-12    Europe                 Czech Republic          0
## 6704  2020-02-12    Europe                 Czech Republic          0
## 6705  2020-02-12    Europe                        Denmark          0
## 6706  2020-02-12    Europe                        Denmark          0
## 6707  2020-02-12    Europe                        Estonia          0
## 6708  2020-02-12    Europe                        Estonia          0
## 6709  2020-02-12    Europe                        Finland          0
## 6710  2020-02-12    Europe                        Finland          0
## 6711  2020-02-12    Europe                         France          0
## 6712  2020-02-12    Europe                         France          0
## 6713  2020-02-12    Europe                        Georgia          0
## 6714  2020-02-12    Europe                        Georgia          0
## 6715  2020-02-12    Europe                        Germany          0
## 6716  2020-02-12    Europe                        Germany          2
## 6717  2020-02-12    Europe                         Greece          0
## 6718  2020-02-12    Europe                         Greece          0
## 6719  2020-02-12    Europe                        Hungary          0
## 6720  2020-02-12    Europe                        Iceland          0
## 6721  2020-02-12    Europe                        Iceland          0
## 6722  2020-02-12    Europe                        Ireland          0
## 6723  2020-02-12    Europe                        Ireland          0
## 6724  2020-02-12    Europe                          Italy          0
## 6725  2020-02-12    Europe                          Italy          0
## 6726  2020-02-12    Europe                         Kosovo          0
## 6727  2020-02-12    Europe                         Latvia          0
## 6728  2020-02-12    Europe                  Liechtenstein          0
## 6729  2020-02-12    Europe                      Lithuania          0
## 6730  2020-02-12    Europe                      Lithuania          0
## 6731  2020-02-12    Europe                     Luxembourg          0
## 6732  2020-02-12    Europe                     Luxembourg          0
## 6733  2020-02-12    Europe                      Macedonia          0
## 6734  2020-02-12    Europe                      Macedonia          0
## 6735  2020-02-12    Europe                          Malta          0
## 6736  2020-02-12    Europe                        Moldova          0
## 6737  2020-02-12    Europe                         Monaco          0
## 6738  2020-02-12    Europe                         Monaco          0
## 6739  2020-02-12    Europe                     Montenegro          0
## 6740  2020-02-12    Europe                    Netherlands          0
## 6741  2020-02-12    Europe                    Netherlands          0
## 6742  2020-02-12    Europe                         Norway          0
## 6743  2020-02-12    Europe                         Norway          0
## 6744  2020-02-12    Europe                         Poland          0
## 6745  2020-02-12    Europe                       Portugal          0
## 6746  2020-02-12    Europe                        Romania          0
## 6747  2020-02-12    Europe                        Romania          0
## 6748  2020-02-12    Europe                         Russia          0
## 6749  2020-02-12    Europe                         Russia          0
## 6750  2020-02-12    Europe                     San Marino          0
## 6751  2020-02-12    Europe                     San Marino          0
## 6752  2020-02-12    Europe                         Serbia          0
## 6753  2020-02-12    Europe                       Slovakia          0
## 6754  2020-02-12    Europe                       Slovenia          0
## 6755  2020-02-12    Europe                          Spain          0
## 6756  2020-02-12    Europe                          Spain          0
## 6757  2020-02-12    Europe                         Sweden          0
## 6758  2020-02-12    Europe                         Sweden          0
## 6759  2020-02-12    Europe                    Switzerland          0
## 6760  2020-02-12    Europe                    Switzerland          0
## 6761  2020-02-12    Europe                        Ukraine          0
## 6762  2020-02-12    Europe                 United Kingdom          0
## 6763  2020-02-12    Europe                 United Kingdom          1
## 6764  2020-02-12    Europe                        Vatican          0
## 6765  2020-02-12   Oceania                      Australia          0
## 6766  2020-02-12   Oceania                           Fiji          0
## 6767  2020-02-12   Oceania                    New Zealand          0
## 6768  2020-02-12   Oceania                    New Zealand          0
## 6769  2020-02-12   Oceania               Papua New Guinea          0
## 6770  2020-02-12     Other                      not found         39
## 6771  2020-02-13    Africa                        Algeria          0
## 6772  2020-02-13    Africa                        Algeria          0
## 6773  2020-02-13    Africa                         Angola          0
## 6774  2020-02-13    Africa                          Benin          0
## 6775  2020-02-13    Africa                       Botswana          0
## 6776  2020-02-13    Africa                   Burkina Faso          0
## 6777  2020-02-13    Africa                        Burundi          0
## 6778  2020-02-13    Africa                     Cabo Verde          0
## 6779  2020-02-13    Africa                       Cameroon          0
## 6780  2020-02-13    Africa       Central African Republic          0
## 6781  2020-02-13    Africa                           Chad          0
## 6782  2020-02-13    Africa                        Comoros          0
## 6783  2020-02-13    Africa                 Congo Republic          0
## 6784  2020-02-13    Africa                  Cote d'Ivoire          0
## 6785  2020-02-13    Africa                       DR Congo          0
## 6786  2020-02-13    Africa                       Djibouti          0
## 6787  2020-02-13    Africa                          Egypt          0
## 6788  2020-02-13    Africa                          Egypt          0
## 6789  2020-02-13    Africa              Equatorial Guinea          0
## 6790  2020-02-13    Africa                        Eritrea          0
## 6791  2020-02-13    Africa                       Eswatini          0
## 6792  2020-02-13    Africa                       Ethiopia          0
## 6793  2020-02-13    Africa                          Gabon          0
## 6794  2020-02-13    Africa                         Gambia          0
## 6795  2020-02-13    Africa                          Ghana          0
## 6796  2020-02-13    Africa                         Guinea          0
## 6797  2020-02-13    Africa                  Guinea-Bissau          0
## 6798  2020-02-13    Africa                          Kenya          0
## 6799  2020-02-13    Africa                        Lesotho          0
## 6800  2020-02-13    Africa                        Liberia          0
## 6801  2020-02-13    Africa                          Libya          0
## 6802  2020-02-13    Africa                     Madagascar          0
## 6803  2020-02-13    Africa                         Malawi          0
## 6804  2020-02-13    Africa                           Mali          0
## 6805  2020-02-13    Africa                     Mauritania          0
## 6806  2020-02-13    Africa                      Mauritius          0
## 6807  2020-02-13    Africa                        Morocco          0
## 6808  2020-02-13    Africa                     Mozambique          0
## 6809  2020-02-13    Africa                        Namibia          0
## 6810  2020-02-13    Africa                          Niger          0
## 6811  2020-02-13    Africa                        Nigeria          0
## 6812  2020-02-13    Africa                        Nigeria          0
## 6813  2020-02-13    Africa                         Rwanda          0
## 6814  2020-02-13    Africa          Sao Tome and Principe          0
## 6815  2020-02-13    Africa                        Senegal          0
## 6816  2020-02-13    Africa                     Seychelles          0
## 6817  2020-02-13    Africa                   Sierra Leone          0
## 6818  2020-02-13    Africa                        Somalia          0
## 6819  2020-02-13    Africa                   South Africa          0
## 6820  2020-02-13    Africa                    South Sudan          0
## 6821  2020-02-13    Africa                          Sudan          0
## 6822  2020-02-13    Africa                       Tanzania          0
## 6823  2020-02-13    Africa                           Togo          0
## 6824  2020-02-13    Africa                        Tunisia          0
## 6825  2020-02-13    Africa                         Uganda          0
## 6826  2020-02-13    Africa                 Western Sahara          0
## 6827  2020-02-13    Africa                         Zambia          0
## 6828  2020-02-13    Africa                       Zimbabwe          0
## 6829  2020-02-13   America            Antigua and Barbuda          0
## 6830  2020-02-13   America                      Argentina          0
## 6831  2020-02-13   America                        Bahamas          0
## 6832  2020-02-13   America                       Barbados          0
## 6833  2020-02-13   America                         Belize          0
## 6834  2020-02-13   America                        Bolivia          0
## 6835  2020-02-13   America                         Brazil          0
## 6836  2020-02-13   America                         Brazil          0
## 6837  2020-02-13   America                         Canada          0
## 6838  2020-02-13   America                          Chile          0
## 6839  2020-02-13   America                       Colombia          0
## 6840  2020-02-13   America                     Costa Rica          0
## 6841  2020-02-13   America                           Cuba          0
## 6842  2020-02-13   America                       Dominica          0
## 6843  2020-02-13   America             Dominican Republic          0
## 6844  2020-02-13   America             Dominican Republic          0
## 6845  2020-02-13   America                        Ecuador          0
## 6846  2020-02-13   America                        Ecuador          0
## 6847  2020-02-13   America                    El Salvador          0
## 6848  2020-02-13   America                        Grenada          0
## 6849  2020-02-13   America                      Guatemala          0
## 6850  2020-02-13   America                         Guyana          0
## 6851  2020-02-13   America                          Haiti          0
## 6852  2020-02-13   America                       Honduras          0
## 6853  2020-02-13   America                        Jamaica          0
## 6854  2020-02-13   America                         Mexico          0
## 6855  2020-02-13   America                         Mexico          0
## 6856  2020-02-13   America                      Nicaragua          0
## 6857  2020-02-13   America                         Panama          0
## 6858  2020-02-13   America                       Paraguay          0
## 6859  2020-02-13   America                           Peru          0
## 6860  2020-02-13   America            St. Kitts and Nevis          0
## 6861  2020-02-13   America                      St. Lucia          0
## 6862  2020-02-13   America St. Vincent and the Grenadines          0
## 6863  2020-02-13   America                       Suriname          0
## 6864  2020-02-13   America            Trinidad and Tobago          0
## 6865  2020-02-13   America                  United States          1
## 6866  2020-02-13   America                  United States          1
## 6867  2020-02-13   America                        Uruguay          0
## 6868  2020-02-13   America                      Venezuela          0
## 6869  2020-02-13      Asia                    Afghanistan          0
## 6870  2020-02-13      Asia                    Afghanistan          0
## 6871  2020-02-13      Asia                        Bahrain          0
## 6872  2020-02-13      Asia                        Bahrain          0
## 6873  2020-02-13      Asia                     Bangladesh          0
## 6874  2020-02-13      Asia                         Bhutan          0
## 6875  2020-02-13      Asia              Brunei Darussalam          0
## 6876  2020-02-13      Asia                       Cambodia          0
## 6877  2020-02-13      Asia                       Cambodia          0
## 6878  2020-02-13      Asia                          China      15141
## 6879  2020-02-13      Asia                          India          0
## 6880  2020-02-13      Asia                          India          0
## 6881  2020-02-13      Asia                      Indonesia          0
## 6882  2020-02-13      Asia                      Indonesia          0
## 6883  2020-02-13      Asia                           Iran          0
## 6884  2020-02-13      Asia                           Iran          0
## 6885  2020-02-13      Asia                           Iraq          0
## 6886  2020-02-13      Asia                           Iraq          0
## 6887  2020-02-13      Asia                         Israel          0
## 6888  2020-02-13      Asia                         Israel          0
## 6889  2020-02-13      Asia                          Japan          0
## 6890  2020-02-13      Asia                          Japan          4
## 6891  2020-02-13      Asia                         Jordan          0
## 6892  2020-02-13      Asia                     Kazakhstan          0
## 6893  2020-02-13      Asia                         Kuwait          0
## 6894  2020-02-13      Asia                         Kuwait          0
## 6895  2020-02-13      Asia                Kyrgyz Republic          0
## 6896  2020-02-13      Asia                           Laos          0
## 6897  2020-02-13      Asia                        Lebanon          0
## 6898  2020-02-13      Asia                        Lebanon          0
## 6899  2020-02-13      Asia                       Malaysia          0
## 6900  2020-02-13      Asia                       Malaysia          1
## 6901  2020-02-13      Asia                       Maldives          0
## 6902  2020-02-13      Asia                       Mongolia          0
## 6903  2020-02-13      Asia                        Myanmar          0
## 6904  2020-02-13      Asia                          Nepal          0
## 6905  2020-02-13      Asia                          Nepal          0
## 6906  2020-02-13      Asia                           Oman          0
## 6907  2020-02-13      Asia                           Oman          0
## 6908  2020-02-13      Asia                       Pakistan          0
## 6909  2020-02-13      Asia                       Pakistan          0
## 6910  2020-02-13      Asia                      Palestine          0
## 6911  2020-02-13      Asia                    Philippines          0
## 6912  2020-02-13      Asia                    Philippines          0
## 6913  2020-02-13      Asia                          Qatar          0
## 6914  2020-02-13      Asia                          Qatar          0
## 6915  2020-02-13      Asia                   Saudi Arabia          0
## 6916  2020-02-13      Asia                      Singapore          3
## 6917  2020-02-13      Asia                      Singapore          8
## 6918  2020-02-13      Asia                    South Korea          0
## 6919  2020-02-13      Asia                    South Korea          0
## 6920  2020-02-13      Asia                      Sri Lanka          0
## 6921  2020-02-13      Asia                      Sri Lanka          0
## 6922  2020-02-13      Asia                          Syria          0
## 6923  2020-02-13      Asia                     Tajikistan          0
## 6924  2020-02-13      Asia                       Thailand          0
## 6925  2020-02-13      Asia                       Thailand          0
## 6926  2020-02-13      Asia                    Timor-Leste          0
## 6927  2020-02-13      Asia                         Turkey          0
## 6928  2020-02-13      Asia           United Arab Emirates          0
## 6929  2020-02-13      Asia           United Arab Emirates          0
## 6930  2020-02-13      Asia                     Uzbekistan          0
## 6931  2020-02-13      Asia                        Vietnam          1
## 6932  2020-02-13      Asia                        Vietnam          1
## 6933  2020-02-13      Asia                          Yemen          0
## 6934  2020-02-13      Asia                      not found          0
## 6935  2020-02-13    Europe                        Albania          0
## 6936  2020-02-13    Europe                        Andorra          0
## 6937  2020-02-13    Europe                        Armenia          0
## 6938  2020-02-13    Europe                        Armenia          0
## 6939  2020-02-13    Europe                        Austria          0
## 6940  2020-02-13    Europe                        Austria          0
## 6941  2020-02-13    Europe                     Azerbaijan          0
## 6942  2020-02-13    Europe                     Azerbaijan          0
## 6943  2020-02-13    Europe                        Belarus          0
## 6944  2020-02-13    Europe                        Belarus          0
## 6945  2020-02-13    Europe                        Belgium          0
## 6946  2020-02-13    Europe                        Belgium          0
## 6947  2020-02-13    Europe         Bosnia and Herzegovina          0
## 6948  2020-02-13    Europe                       Bulgaria          0
## 6949  2020-02-13    Europe                        Croatia          0
## 6950  2020-02-13    Europe                        Croatia          0
## 6951  2020-02-13    Europe                         Cyprus          0
## 6952  2020-02-13    Europe                 Czech Republic          0
## 6953  2020-02-13    Europe                 Czech Republic          0
## 6954  2020-02-13    Europe                        Denmark          0
## 6955  2020-02-13    Europe                        Denmark          0
## 6956  2020-02-13    Europe                        Estonia          0
## 6957  2020-02-13    Europe                        Estonia          0
## 6958  2020-02-13    Europe                        Finland          0
## 6959  2020-02-13    Europe                        Finland          0
## 6960  2020-02-13    Europe                         France          0
## 6961  2020-02-13    Europe                         France          0
## 6962  2020-02-13    Europe                        Georgia          0
## 6963  2020-02-13    Europe                        Georgia          0
## 6964  2020-02-13    Europe                        Germany          0
## 6965  2020-02-13    Europe                        Germany          0
## 6966  2020-02-13    Europe                         Greece          0
## 6967  2020-02-13    Europe                         Greece          0
## 6968  2020-02-13    Europe                        Hungary          0
## 6969  2020-02-13    Europe                        Iceland          0
## 6970  2020-02-13    Europe                        Iceland          0
## 6971  2020-02-13    Europe                        Ireland          0
## 6972  2020-02-13    Europe                        Ireland          0
## 6973  2020-02-13    Europe                          Italy          0
## 6974  2020-02-13    Europe                          Italy          0
## 6975  2020-02-13    Europe                         Kosovo          0
## 6976  2020-02-13    Europe                         Latvia          0
## 6977  2020-02-13    Europe                  Liechtenstein          0
## 6978  2020-02-13    Europe                      Lithuania          0
## 6979  2020-02-13    Europe                      Lithuania          0
## 6980  2020-02-13    Europe                     Luxembourg          0
## 6981  2020-02-13    Europe                     Luxembourg          0
## 6982  2020-02-13    Europe                      Macedonia          0
## 6983  2020-02-13    Europe                      Macedonia          0
## 6984  2020-02-13    Europe                          Malta          0
## 6985  2020-02-13    Europe                        Moldova          0
## 6986  2020-02-13    Europe                         Monaco          0
## 6987  2020-02-13    Europe                         Monaco          0
## 6988  2020-02-13    Europe                     Montenegro          0
## 6989  2020-02-13    Europe                    Netherlands          0
## 6990  2020-02-13    Europe                    Netherlands          0
## 6991  2020-02-13    Europe                         Norway          0
## 6992  2020-02-13    Europe                         Norway          0
## 6993  2020-02-13    Europe                         Poland          0
## 6994  2020-02-13    Europe                       Portugal          0
## 6995  2020-02-13    Europe                        Romania          0
## 6996  2020-02-13    Europe                        Romania          0
## 6997  2020-02-13    Europe                         Russia          0
## 6998  2020-02-13    Europe                         Russia          0
## 6999  2020-02-13    Europe                     San Marino          0
## 7000  2020-02-13    Europe                     San Marino          0
## 7001  2020-02-13    Europe                         Serbia          0
## 7002  2020-02-13    Europe                       Slovakia          0
## 7003  2020-02-13    Europe                       Slovenia          0
## 7004  2020-02-13    Europe                          Spain          0
## 7005  2020-02-13    Europe                          Spain          0
## 7006  2020-02-13    Europe                         Sweden          0
## 7007  2020-02-13    Europe                         Sweden          0
## 7008  2020-02-13    Europe                    Switzerland          0
## 7009  2020-02-13    Europe                    Switzerland          0
## 7010  2020-02-13    Europe                        Ukraine          0
## 7011  2020-02-13    Europe                 United Kingdom          0
## 7012  2020-02-13    Europe                 United Kingdom          1
## 7013  2020-02-13    Europe                        Vatican          0
## 7014  2020-02-13   Oceania                      Australia          0
## 7015  2020-02-13   Oceania                           Fiji          0
## 7016  2020-02-13   Oceania                    New Zealand          0
## 7017  2020-02-13   Oceania                    New Zealand          0
## 7018  2020-02-13   Oceania               Papua New Guinea          0
## 7019  2020-02-13     Other                      not found          0
## 7020  2020-02-14    Africa                        Algeria          0
## 7021  2020-02-14    Africa                        Algeria          0
## 7022  2020-02-14    Africa                         Angola          0
## 7023  2020-02-14    Africa                          Benin          0
## 7024  2020-02-14    Africa                       Botswana          0
## 7025  2020-02-14    Africa                   Burkina Faso          0
## 7026  2020-02-14    Africa                        Burundi          0
## 7027  2020-02-14    Africa                     Cabo Verde          0
## 7028  2020-02-14    Africa                       Cameroon          0
## 7029  2020-02-14    Africa       Central African Republic          0
## 7030  2020-02-14    Africa                           Chad          0
## 7031  2020-02-14    Africa                        Comoros          0
## 7032  2020-02-14    Africa                 Congo Republic          0
## 7033  2020-02-14    Africa                  Cote d'Ivoire          0
## 7034  2020-02-14    Africa                       DR Congo          0
## 7035  2020-02-14    Africa                       Djibouti          0
## 7036  2020-02-14    Africa                          Egypt          0
## 7037  2020-02-14    Africa                          Egypt          1
## 7038  2020-02-14    Africa              Equatorial Guinea          0
## 7039  2020-02-14    Africa                        Eritrea          0
## 7040  2020-02-14    Africa                       Eswatini          0
## 7041  2020-02-14    Africa                       Ethiopia          0
## 7042  2020-02-14    Africa                          Gabon          0
## 7043  2020-02-14    Africa                         Gambia          0
## 7044  2020-02-14    Africa                          Ghana          0
## 7045  2020-02-14    Africa                         Guinea          0
## 7046  2020-02-14    Africa                  Guinea-Bissau          0
## 7047  2020-02-14    Africa                          Kenya          0
## 7048  2020-02-14    Africa                        Lesotho          0
## 7049  2020-02-14    Africa                        Liberia          0
## 7050  2020-02-14    Africa                          Libya          0
## 7051  2020-02-14    Africa                     Madagascar          0
## 7052  2020-02-14    Africa                         Malawi          0
## 7053  2020-02-14    Africa                           Mali          0
## 7054  2020-02-14    Africa                     Mauritania          0
## 7055  2020-02-14    Africa                      Mauritius          0
## 7056  2020-02-14    Africa                        Morocco          0
## 7057  2020-02-14    Africa                     Mozambique          0
## 7058  2020-02-14    Africa                        Namibia          0
## 7059  2020-02-14    Africa                          Niger          0
## 7060  2020-02-14    Africa                        Nigeria          0
## 7061  2020-02-14    Africa                        Nigeria          0
## 7062  2020-02-14    Africa                         Rwanda          0
## 7063  2020-02-14    Africa          Sao Tome and Principe          0
## 7064  2020-02-14    Africa                        Senegal          0
## 7065  2020-02-14    Africa                     Seychelles          0
## 7066  2020-02-14    Africa                   Sierra Leone          0
## 7067  2020-02-14    Africa                        Somalia          0
## 7068  2020-02-14    Africa                   South Africa          0
## 7069  2020-02-14    Africa                    South Sudan          0
## 7070  2020-02-14    Africa                          Sudan          0
## 7071  2020-02-14    Africa                       Tanzania          0
## 7072  2020-02-14    Africa                           Togo          0
## 7073  2020-02-14    Africa                        Tunisia          0
## 7074  2020-02-14    Africa                         Uganda          0
## 7075  2020-02-14    Africa                 Western Sahara          0
## 7076  2020-02-14    Africa                         Zambia          0
## 7077  2020-02-14    Africa                       Zimbabwe          0
## 7078  2020-02-14   America            Antigua and Barbuda          0
## 7079  2020-02-14   America                      Argentina          0
## 7080  2020-02-14   America                        Bahamas          0
## 7081  2020-02-14   America                       Barbados          0
## 7082  2020-02-14   America                         Belize          0
## 7083  2020-02-14   America                        Bolivia          0
## 7084  2020-02-14   America                         Brazil          0
## 7085  2020-02-14   America                         Brazil          0
## 7086  2020-02-14   America                         Canada          0
## 7087  2020-02-14   America                          Chile          0
## 7088  2020-02-14   America                       Colombia          0
## 7089  2020-02-14   America                     Costa Rica          0
## 7090  2020-02-14   America                           Cuba          0
## 7091  2020-02-14   America                       Dominica          0
## 7092  2020-02-14   America             Dominican Republic          0
## 7093  2020-02-14   America             Dominican Republic          0
## 7094  2020-02-14   America                        Ecuador          0
## 7095  2020-02-14   America                        Ecuador          0
## 7096  2020-02-14   America                    El Salvador          0
## 7097  2020-02-14   America                        Grenada          0
## 7098  2020-02-14   America                      Guatemala          0
## 7099  2020-02-14   America                         Guyana          0
## 7100  2020-02-14   America                          Haiti          0
## 7101  2020-02-14   America                       Honduras          0
## 7102  2020-02-14   America                        Jamaica          0
## 7103  2020-02-14   America                         Mexico          0
## 7104  2020-02-14   America                         Mexico          0
## 7105  2020-02-14   America                      Nicaragua          0
## 7106  2020-02-14   America                         Panama          0
## 7107  2020-02-14   America                       Paraguay          0
## 7108  2020-02-14   America                           Peru          0
## 7109  2020-02-14   America            St. Kitts and Nevis          0
## 7110  2020-02-14   America                      St. Lucia          0
## 7111  2020-02-14   America St. Vincent and the Grenadines          0
## 7112  2020-02-14   America                       Suriname          0
## 7113  2020-02-14   America            Trinidad and Tobago          0
## 7114  2020-02-14   America                  United States          0
## 7115  2020-02-14   America                  United States          1
## 7116  2020-02-14   America                        Uruguay          0
## 7117  2020-02-14   America                      Venezuela          0
## 7118  2020-02-14      Asia                    Afghanistan          0
## 7119  2020-02-14      Asia                    Afghanistan          0
## 7120  2020-02-14      Asia                        Bahrain          0
## 7121  2020-02-14      Asia                        Bahrain          0
## 7122  2020-02-14      Asia                     Bangladesh          0
## 7123  2020-02-14      Asia                         Bhutan          0
## 7124  2020-02-14      Asia              Brunei Darussalam          0
## 7125  2020-02-14      Asia                       Cambodia          0
## 7126  2020-02-14      Asia                       Cambodia          0
## 7127  2020-02-14      Asia                          China       4156
## 7128  2020-02-14      Asia                          India          0
## 7129  2020-02-14      Asia                          India          0
## 7130  2020-02-14      Asia                      Indonesia          0
## 7131  2020-02-14      Asia                      Indonesia          0
## 7132  2020-02-14      Asia                           Iran          0
## 7133  2020-02-14      Asia                           Iran          0
## 7134  2020-02-14      Asia                           Iraq          0
## 7135  2020-02-14      Asia                           Iraq          0
## 7136  2020-02-14      Asia                         Israel          0
## 7137  2020-02-14      Asia                         Israel          0
## 7138  2020-02-14      Asia                          Japan          1
## 7139  2020-02-14      Asia                          Japan          1
## 7140  2020-02-14      Asia                         Jordan          0
## 7141  2020-02-14      Asia                     Kazakhstan          0
## 7142  2020-02-14      Asia                         Kuwait          0
## 7143  2020-02-14      Asia                         Kuwait          0
## 7144  2020-02-14      Asia                Kyrgyz Republic          0
## 7145  2020-02-14      Asia                           Laos          0
## 7146  2020-02-14      Asia                        Lebanon          0
## 7147  2020-02-14      Asia                        Lebanon          0
## 7148  2020-02-14      Asia                       Malaysia          0
## 7149  2020-02-14      Asia                       Malaysia          1
## 7150  2020-02-14      Asia                       Maldives          0
## 7151  2020-02-14      Asia                       Mongolia          0
## 7152  2020-02-14      Asia                        Myanmar          0
## 7153  2020-02-14      Asia                          Nepal          0
## 7154  2020-02-14      Asia                          Nepal          0
## 7155  2020-02-14      Asia                           Oman          0
## 7156  2020-02-14      Asia                           Oman          0
## 7157  2020-02-14      Asia                       Pakistan          0
## 7158  2020-02-14      Asia                       Pakistan          0
## 7159  2020-02-14      Asia                      Palestine          0
## 7160  2020-02-14      Asia                    Philippines          0
## 7161  2020-02-14      Asia                    Philippines          0
## 7162  2020-02-14      Asia                          Qatar          0
## 7163  2020-02-14      Asia                          Qatar          0
## 7164  2020-02-14      Asia                   Saudi Arabia          0
## 7165  2020-02-14      Asia                      Singapore          8
## 7166  2020-02-14      Asia                      Singapore          9
## 7167  2020-02-14      Asia                    South Korea          0
## 7168  2020-02-14      Asia                    South Korea          0
## 7169  2020-02-14      Asia                      Sri Lanka          0
## 7170  2020-02-14      Asia                      Sri Lanka          0
## 7171  2020-02-14      Asia                          Syria          0
## 7172  2020-02-14      Asia                     Tajikistan          0
## 7173  2020-02-14      Asia                       Thailand          0
## 7174  2020-02-14      Asia                       Thailand          0
## 7175  2020-02-14      Asia                    Timor-Leste          0
## 7176  2020-02-14      Asia                         Turkey          0
## 7177  2020-02-14      Asia           United Arab Emirates          0
## 7178  2020-02-14      Asia           United Arab Emirates          0
## 7179  2020-02-14      Asia                     Uzbekistan          0
## 7180  2020-02-14      Asia                        Vietnam          0
## 7181  2020-02-14      Asia                        Vietnam          0
## 7182  2020-02-14      Asia                          Yemen          0
## 7183  2020-02-14      Asia                      not found          0
## 7184  2020-02-14    Europe                        Albania          0
## 7185  2020-02-14    Europe                        Andorra          0
## 7186  2020-02-14    Europe                        Armenia          0
## 7187  2020-02-14    Europe                        Armenia          0
## 7188  2020-02-14    Europe                        Austria          0
## 7189  2020-02-14    Europe                        Austria          0
## 7190  2020-02-14    Europe                     Azerbaijan          0
## 7191  2020-02-14    Europe                     Azerbaijan          0
## 7192  2020-02-14    Europe                        Belarus          0
## 7193  2020-02-14    Europe                        Belarus          0
## 7194  2020-02-14    Europe                        Belgium          0
## 7195  2020-02-14    Europe                        Belgium          0
## 7196  2020-02-14    Europe         Bosnia and Herzegovina          0
## 7197  2020-02-14    Europe                       Bulgaria          0
## 7198  2020-02-14    Europe                        Croatia          0
## 7199  2020-02-14    Europe                        Croatia          0
## 7200  2020-02-14    Europe                         Cyprus          0
## 7201  2020-02-14    Europe                 Czech Republic          0
## 7202  2020-02-14    Europe                 Czech Republic          0
## 7203  2020-02-14    Europe                        Denmark          0
## 7204  2020-02-14    Europe                        Denmark          0
## 7205  2020-02-14    Europe                        Estonia          0
## 7206  2020-02-14    Europe                        Estonia          0
## 7207  2020-02-14    Europe                        Finland          0
## 7208  2020-02-14    Europe                        Finland          0
## 7209  2020-02-14    Europe                         France          0
## 7210  2020-02-14    Europe                         France          0
## 7211  2020-02-14    Europe                        Georgia          0
## 7212  2020-02-14    Europe                        Georgia          0
## 7213  2020-02-14    Europe                        Germany          0
## 7214  2020-02-14    Europe                        Germany          0
## 7215  2020-02-14    Europe                         Greece          0
## 7216  2020-02-14    Europe                         Greece          0
## 7217  2020-02-14    Europe                        Hungary          0
## 7218  2020-02-14    Europe                        Iceland          0
## 7219  2020-02-14    Europe                        Iceland          0
## 7220  2020-02-14    Europe                        Ireland          0
## 7221  2020-02-14    Europe                        Ireland          0
## 7222  2020-02-14    Europe                          Italy          0
## 7223  2020-02-14    Europe                          Italy          0
## 7224  2020-02-14    Europe                         Kosovo          0
## 7225  2020-02-14    Europe                         Latvia          0
## 7226  2020-02-14    Europe                  Liechtenstein          0
## 7227  2020-02-14    Europe                      Lithuania          0
## 7228  2020-02-14    Europe                      Lithuania          0
## 7229  2020-02-14    Europe                     Luxembourg          0
## 7230  2020-02-14    Europe                     Luxembourg          0
## 7231  2020-02-14    Europe                      Macedonia          0
## 7232  2020-02-14    Europe                      Macedonia          0
## 7233  2020-02-14    Europe                          Malta          0
## 7234  2020-02-14    Europe                        Moldova          0
## 7235  2020-02-14    Europe                         Monaco          0
## 7236  2020-02-14    Europe                         Monaco          0
## 7237  2020-02-14    Europe                     Montenegro          0
## 7238  2020-02-14    Europe                    Netherlands          0
## 7239  2020-02-14    Europe                    Netherlands          0
## 7240  2020-02-14    Europe                         Norway          0
## 7241  2020-02-14    Europe                         Norway          0
## 7242  2020-02-14    Europe                         Poland          0
## 7243  2020-02-14    Europe                       Portugal          0
## 7244  2020-02-14    Europe                        Romania          0
## 7245  2020-02-14    Europe                        Romania          0
## 7246  2020-02-14    Europe                         Russia          0
## 7247  2020-02-14    Europe                         Russia          0
## 7248  2020-02-14    Europe                     San Marino          0
## 7249  2020-02-14    Europe                     San Marino          0
## 7250  2020-02-14    Europe                         Serbia          0
## 7251  2020-02-14    Europe                       Slovakia          0
## 7252  2020-02-14    Europe                       Slovenia          0
## 7253  2020-02-14    Europe                          Spain          0
## 7254  2020-02-14    Europe                          Spain          0
## 7255  2020-02-14    Europe                         Sweden          0
## 7256  2020-02-14    Europe                         Sweden          0
## 7257  2020-02-14    Europe                    Switzerland          0
## 7258  2020-02-14    Europe                    Switzerland          0
## 7259  2020-02-14    Europe                        Ukraine          0
## 7260  2020-02-14    Europe                 United Kingdom          0
## 7261  2020-02-14    Europe                 United Kingdom          0
## 7262  2020-02-14    Europe                        Vatican          0
## 7263  2020-02-14   Oceania                      Australia          1
## 7264  2020-02-14   Oceania                           Fiji          0
## 7265  2020-02-14   Oceania                    New Zealand          0
## 7266  2020-02-14   Oceania                    New Zealand          0
## 7267  2020-02-14   Oceania               Papua New Guinea          0
## 7268  2020-02-14     Other                      not found         47
## 7269  2020-02-15    Africa                        Algeria          0
## 7270  2020-02-15    Africa                        Algeria          0
## 7271  2020-02-15    Africa                         Angola          0
## 7272  2020-02-15    Africa                          Benin          0
## 7273  2020-02-15    Africa                       Botswana          0
## 7274  2020-02-15    Africa                   Burkina Faso          0
## 7275  2020-02-15    Africa                        Burundi          0
## 7276  2020-02-15    Africa                     Cabo Verde          0
## 7277  2020-02-15    Africa                       Cameroon          0
## 7278  2020-02-15    Africa       Central African Republic          0
## 7279  2020-02-15    Africa                           Chad          0
## 7280  2020-02-15    Africa                        Comoros          0
## 7281  2020-02-15    Africa                 Congo Republic          0
## 7282  2020-02-15    Africa                  Cote d'Ivoire          0
## 7283  2020-02-15    Africa                       DR Congo          0
## 7284  2020-02-15    Africa                       Djibouti          0
## 7285  2020-02-15    Africa                          Egypt          0
## 7286  2020-02-15    Africa                          Egypt          1
## 7287  2020-02-15    Africa              Equatorial Guinea          0
## 7288  2020-02-15    Africa                        Eritrea          0
## 7289  2020-02-15    Africa                       Eswatini          0
## 7290  2020-02-15    Africa                       Ethiopia          0
## 7291  2020-02-15    Africa                          Gabon          0
## 7292  2020-02-15    Africa                         Gambia          0
## 7293  2020-02-15    Africa                          Ghana          0
## 7294  2020-02-15    Africa                         Guinea          0
## 7295  2020-02-15    Africa                  Guinea-Bissau          0
## 7296  2020-02-15    Africa                          Kenya          0
## 7297  2020-02-15    Africa                        Lesotho          0
## 7298  2020-02-15    Africa                        Liberia          0
## 7299  2020-02-15    Africa                          Libya          0
## 7300  2020-02-15    Africa                     Madagascar          0
## 7301  2020-02-15    Africa                         Malawi          0
## 7302  2020-02-15    Africa                           Mali          0
## 7303  2020-02-15    Africa                     Mauritania          0
## 7304  2020-02-15    Africa                      Mauritius          0
## 7305  2020-02-15    Africa                        Morocco          0
## 7306  2020-02-15    Africa                     Mozambique          0
## 7307  2020-02-15    Africa                        Namibia          0
## 7308  2020-02-15    Africa                          Niger          0
## 7309  2020-02-15    Africa                        Nigeria          0
## 7310  2020-02-15    Africa                        Nigeria          0
## 7311  2020-02-15    Africa                         Rwanda          0
## 7312  2020-02-15    Africa          Sao Tome and Principe          0
## 7313  2020-02-15    Africa                        Senegal          0
## 7314  2020-02-15    Africa                     Seychelles          0
## 7315  2020-02-15    Africa                   Sierra Leone          0
## 7316  2020-02-15    Africa                        Somalia          0
## 7317  2020-02-15    Africa                   South Africa          0
## 7318  2020-02-15    Africa                    South Sudan          0
## 7319  2020-02-15    Africa                          Sudan          0
## 7320  2020-02-15    Africa                       Tanzania          0
## 7321  2020-02-15    Africa                           Togo          0
## 7322  2020-02-15    Africa                        Tunisia          0
## 7323  2020-02-15    Africa                         Uganda          0
## 7324  2020-02-15    Africa                 Western Sahara          0
## 7325  2020-02-15    Africa                         Zambia          0
## 7326  2020-02-15    Africa                       Zimbabwe          0
## 7327  2020-02-15   America            Antigua and Barbuda          0
## 7328  2020-02-15   America                      Argentina          0
## 7329  2020-02-15   America                        Bahamas          0
## 7330  2020-02-15   America                       Barbados          0
## 7331  2020-02-15   America                         Belize          0
## 7332  2020-02-15   America                        Bolivia          0
## 7333  2020-02-15   America                         Brazil          0
## 7334  2020-02-15   America                         Brazil          0
## 7335  2020-02-15   America                         Canada          1
## 7336  2020-02-15   America                          Chile          0
## 7337  2020-02-15   America                       Colombia          0
## 7338  2020-02-15   America                     Costa Rica          0
## 7339  2020-02-15   America                           Cuba          0
## 7340  2020-02-15   America                       Dominica          0
## 7341  2020-02-15   America             Dominican Republic          0
## 7342  2020-02-15   America             Dominican Republic          0
## 7343  2020-02-15   America                        Ecuador          0
## 7344  2020-02-15   America                        Ecuador          0
## 7345  2020-02-15   America                    El Salvador          0
## 7346  2020-02-15   America                        Grenada          0
## 7347  2020-02-15   America                      Guatemala          0
## 7348  2020-02-15   America                         Guyana          0
## 7349  2020-02-15   America                          Haiti          0
## 7350  2020-02-15   America                       Honduras          0
## 7351  2020-02-15   America                        Jamaica          0
## 7352  2020-02-15   America                         Mexico          0
## 7353  2020-02-15   America                         Mexico          0
## 7354  2020-02-15   America                      Nicaragua          0
## 7355  2020-02-15   America                         Panama          0
## 7356  2020-02-15   America                       Paraguay          0
## 7357  2020-02-15   America                           Peru          0
## 7358  2020-02-15   America            St. Kitts and Nevis          0
## 7359  2020-02-15   America                      St. Lucia          0
## 7360  2020-02-15   America St. Vincent and the Grenadines          0
## 7361  2020-02-15   America                       Suriname          0
## 7362  2020-02-15   America            Trinidad and Tobago          0
## 7363  2020-02-15   America                  United States          0
## 7364  2020-02-15   America                  United States          0
## 7365  2020-02-15   America                        Uruguay          0
## 7366  2020-02-15   America                      Venezuela          0
## 7367  2020-02-15      Asia                    Afghanistan          0
## 7368  2020-02-15      Asia                    Afghanistan          0
## 7369  2020-02-15      Asia                        Bahrain          0
## 7370  2020-02-15      Asia                        Bahrain          0
## 7371  2020-02-15      Asia                     Bangladesh          0
## 7372  2020-02-15      Asia                         Bhutan          0
## 7373  2020-02-15      Asia              Brunei Darussalam          0
## 7374  2020-02-15      Asia                       Cambodia          0
## 7375  2020-02-15      Asia                       Cambodia          0
## 7376  2020-02-15      Asia                          China       2538
## 7377  2020-02-15      Asia                          India          0
## 7378  2020-02-15      Asia                          India          0
## 7379  2020-02-15      Asia                      Indonesia          0
## 7380  2020-02-15      Asia                      Indonesia          0
## 7381  2020-02-15      Asia                           Iran          0
## 7382  2020-02-15      Asia                           Iran          0
## 7383  2020-02-15      Asia                           Iraq          0
## 7384  2020-02-15      Asia                           Iraq          0
## 7385  2020-02-15      Asia                         Israel          0
## 7386  2020-02-15      Asia                         Israel          0
## 7387  2020-02-15      Asia                          Japan          8
## 7388  2020-02-15      Asia                          Japan         14
## 7389  2020-02-15      Asia                         Jordan          0
## 7390  2020-02-15      Asia                     Kazakhstan          0
## 7391  2020-02-15      Asia                         Kuwait          0
## 7392  2020-02-15      Asia                         Kuwait          0
## 7393  2020-02-15      Asia                Kyrgyz Republic          0
## 7394  2020-02-15      Asia                           Laos          0
## 7395  2020-02-15      Asia                        Lebanon          0
## 7396  2020-02-15      Asia                        Lebanon          0
## 7397  2020-02-15      Asia                       Malaysia          2
## 7398  2020-02-15      Asia                       Malaysia          3
## 7399  2020-02-15      Asia                       Maldives          0
## 7400  2020-02-15      Asia                       Mongolia          0
## 7401  2020-02-15      Asia                        Myanmar          0
## 7402  2020-02-15      Asia                          Nepal          0
## 7403  2020-02-15      Asia                          Nepal          0
## 7404  2020-02-15      Asia                           Oman          0
## 7405  2020-02-15      Asia                           Oman          0
## 7406  2020-02-15      Asia                       Pakistan          0
## 7407  2020-02-15      Asia                       Pakistan          0
## 7408  2020-02-15      Asia                      Palestine          0
## 7409  2020-02-15      Asia                    Philippines          0
## 7410  2020-02-15      Asia                    Philippines          0
## 7411  2020-02-15      Asia                          Qatar          0
## 7412  2020-02-15      Asia                          Qatar          0
## 7413  2020-02-15      Asia                   Saudi Arabia          0
## 7414  2020-02-15      Asia                      Singapore          5
## 7415  2020-02-15      Asia                      Singapore          9
## 7416  2020-02-15      Asia                    South Korea          0
## 7417  2020-02-15      Asia                    South Korea          0
## 7418  2020-02-15      Asia                      Sri Lanka          0
## 7419  2020-02-15      Asia                      Sri Lanka          0
## 7420  2020-02-15      Asia                          Syria          0
## 7421  2020-02-15      Asia                     Tajikistan          0
## 7422  2020-02-15      Asia                       Thailand          0
## 7423  2020-02-15      Asia                       Thailand          1
## 7424  2020-02-15      Asia                    Timor-Leste          0
## 7425  2020-02-15      Asia                         Turkey          0
## 7426  2020-02-15      Asia           United Arab Emirates          0
## 7427  2020-02-15      Asia           United Arab Emirates          0
## 7428  2020-02-15      Asia                     Uzbekistan          0
## 7429  2020-02-15      Asia                        Vietnam          0
## 7430  2020-02-15      Asia                        Vietnam          0
## 7431  2020-02-15      Asia                          Yemen          0
## 7432  2020-02-15      Asia                      not found          0
## 7433  2020-02-15    Europe                        Albania          0
## 7434  2020-02-15    Europe                        Andorra          0
## 7435  2020-02-15    Europe                        Armenia          0
## 7436  2020-02-15    Europe                        Armenia          0
## 7437  2020-02-15    Europe                        Austria          0
## 7438  2020-02-15    Europe                        Austria          0
## 7439  2020-02-15    Europe                     Azerbaijan          0
## 7440  2020-02-15    Europe                     Azerbaijan          0
## 7441  2020-02-15    Europe                        Belarus          0
## 7442  2020-02-15    Europe                        Belarus          0
## 7443  2020-02-15    Europe                        Belgium          0
## 7444  2020-02-15    Europe                        Belgium          0
## 7445  2020-02-15    Europe         Bosnia and Herzegovina          0
## 7446  2020-02-15    Europe                       Bulgaria          0
## 7447  2020-02-15    Europe                        Croatia          0
## 7448  2020-02-15    Europe                        Croatia          0
## 7449  2020-02-15    Europe                         Cyprus          0
## 7450  2020-02-15    Europe                 Czech Republic          0
## 7451  2020-02-15    Europe                 Czech Republic          0
## 7452  2020-02-15    Europe                        Denmark          0
## 7453  2020-02-15    Europe                        Denmark          0
## 7454  2020-02-15    Europe                        Estonia          0
## 7455  2020-02-15    Europe                        Estonia          0
## 7456  2020-02-15    Europe                        Finland          0
## 7457  2020-02-15    Europe                        Finland          0
## 7458  2020-02-15    Europe                         France          0
## 7459  2020-02-15    Europe                         France          1
## 7460  2020-02-15    Europe                        Georgia          0
## 7461  2020-02-15    Europe                        Georgia          0
## 7462  2020-02-15    Europe                        Germany          0
## 7463  2020-02-15    Europe                        Germany          0
## 7464  2020-02-15    Europe                         Greece          0
## 7465  2020-02-15    Europe                         Greece          0
## 7466  2020-02-15    Europe                        Hungary          0
## 7467  2020-02-15    Europe                        Iceland          0
## 7468  2020-02-15    Europe                        Iceland          0
## 7469  2020-02-15    Europe                        Ireland          0
## 7470  2020-02-15    Europe                        Ireland          0
## 7471  2020-02-15    Europe                          Italy          0
## 7472  2020-02-15    Europe                          Italy          0
## 7473  2020-02-15    Europe                         Kosovo          0
## 7474  2020-02-15    Europe                         Latvia          0
## 7475  2020-02-15    Europe                  Liechtenstein          0
## 7476  2020-02-15    Europe                      Lithuania          0
## 7477  2020-02-15    Europe                      Lithuania          0
## 7478  2020-02-15    Europe                     Luxembourg          0
## 7479  2020-02-15    Europe                     Luxembourg          0
## 7480  2020-02-15    Europe                      Macedonia          0
## 7481  2020-02-15    Europe                      Macedonia          0
## 7482  2020-02-15    Europe                          Malta          0
## 7483  2020-02-15    Europe                        Moldova          0
## 7484  2020-02-15    Europe                         Monaco          0
## 7485  2020-02-15    Europe                         Monaco          0
## 7486  2020-02-15    Europe                     Montenegro          0
## 7487  2020-02-15    Europe                    Netherlands          0
## 7488  2020-02-15    Europe                    Netherlands          0
## 7489  2020-02-15    Europe                         Norway          0
## 7490  2020-02-15    Europe                         Norway          0
## 7491  2020-02-15    Europe                         Poland          0
## 7492  2020-02-15    Europe                       Portugal          0
## 7493  2020-02-15    Europe                        Romania          0
## 7494  2020-02-15    Europe                        Romania          0
## 7495  2020-02-15    Europe                         Russia          0
## 7496  2020-02-15    Europe                         Russia          0
## 7497  2020-02-15    Europe                     San Marino          0
## 7498  2020-02-15    Europe                     San Marino          0
## 7499  2020-02-15    Europe                         Serbia          0
## 7500  2020-02-15    Europe                       Slovakia          0
## 7501  2020-02-15    Europe                       Slovenia          0
## 7502  2020-02-15    Europe                          Spain          0
## 7503  2020-02-15    Europe                          Spain          0
## 7504  2020-02-15    Europe                         Sweden          0
## 7505  2020-02-15    Europe                         Sweden          0
## 7506  2020-02-15    Europe                    Switzerland          0
## 7507  2020-02-15    Europe                    Switzerland          0
## 7508  2020-02-15    Europe                        Ukraine          0
## 7509  2020-02-15    Europe                 United Kingdom          0
## 7510  2020-02-15    Europe                 United Kingdom          0
## 7511  2020-02-15    Europe                        Vatican          0
## 7512  2020-02-15   Oceania                      Australia          0
## 7513  2020-02-15   Oceania                           Fiji          0
## 7514  2020-02-15   Oceania                    New Zealand          0
## 7515  2020-02-15   Oceania                    New Zealand          0
## 7516  2020-02-15   Oceania               Papua New Guinea          0
## 7517  2020-02-15     Other                      not found          0
## 7518  2020-02-16    Africa                        Algeria          0
## 7519  2020-02-16    Africa                        Algeria          0
## 7520  2020-02-16    Africa                         Angola          0
## 7521  2020-02-16    Africa                          Benin          0
## 7522  2020-02-16    Africa                       Botswana          0
## 7523  2020-02-16    Africa                   Burkina Faso          0
## 7524  2020-02-16    Africa                        Burundi          0
## 7525  2020-02-16    Africa                     Cabo Verde          0
## 7526  2020-02-16    Africa                       Cameroon          0
## 7527  2020-02-16    Africa       Central African Republic          0
## 7528  2020-02-16    Africa                           Chad          0
## 7529  2020-02-16    Africa                        Comoros          0
## 7530  2020-02-16    Africa                 Congo Republic          0
## 7531  2020-02-16    Africa                  Cote d'Ivoire          0
## 7532  2020-02-16    Africa                       DR Congo          0
## 7533  2020-02-16    Africa                       Djibouti          0
## 7534  2020-02-16    Africa                          Egypt          0
## 7535  2020-02-16    Africa                          Egypt          0
## 7536  2020-02-16    Africa              Equatorial Guinea          0
## 7537  2020-02-16    Africa                        Eritrea          0
## 7538  2020-02-16    Africa                       Eswatini          0
## 7539  2020-02-16    Africa                       Ethiopia          0
## 7540  2020-02-16    Africa                          Gabon          0
## 7541  2020-02-16    Africa                         Gambia          0
## 7542  2020-02-16    Africa                          Ghana          0
## 7543  2020-02-16    Africa                         Guinea          0
## 7544  2020-02-16    Africa                  Guinea-Bissau          0
## 7545  2020-02-16    Africa                          Kenya          0
## 7546  2020-02-16    Africa                        Lesotho          0
## 7547  2020-02-16    Africa                        Liberia          0
## 7548  2020-02-16    Africa                          Libya          0
## 7549  2020-02-16    Africa                     Madagascar          0
## 7550  2020-02-16    Africa                         Malawi          0
## 7551  2020-02-16    Africa                           Mali          0
## 7552  2020-02-16    Africa                     Mauritania          0
## 7553  2020-02-16    Africa                      Mauritius          0
## 7554  2020-02-16    Africa                        Morocco          0
## 7555  2020-02-16    Africa                     Mozambique          0
## 7556  2020-02-16    Africa                        Namibia          0
## 7557  2020-02-16    Africa                          Niger          0
## 7558  2020-02-16    Africa                        Nigeria          0
## 7559  2020-02-16    Africa                        Nigeria          0
## 7560  2020-02-16    Africa                         Rwanda          0
## 7561  2020-02-16    Africa          Sao Tome and Principe          0
## 7562  2020-02-16    Africa                        Senegal          0
## 7563  2020-02-16    Africa                     Seychelles          0
## 7564  2020-02-16    Africa                   Sierra Leone          0
## 7565  2020-02-16    Africa                        Somalia          0
## 7566  2020-02-16    Africa                   South Africa          0
## 7567  2020-02-16    Africa                    South Sudan          0
## 7568  2020-02-16    Africa                          Sudan          0
## 7569  2020-02-16    Africa                       Tanzania          0
## 7570  2020-02-16    Africa                           Togo          0
## 7571  2020-02-16    Africa                        Tunisia          0
## 7572  2020-02-16    Africa                         Uganda          0
## 7573  2020-02-16    Africa                 Western Sahara          0
## 7574  2020-02-16    Africa                         Zambia          0
## 7575  2020-02-16    Africa                       Zimbabwe          0
## 7576  2020-02-16   America            Antigua and Barbuda          0
## 7577  2020-02-16   America                      Argentina          0
## 7578  2020-02-16   America                        Bahamas          0
## 7579  2020-02-16   America                       Barbados          0
## 7580  2020-02-16   America                         Belize          0
## 7581  2020-02-16   America                        Bolivia          0
## 7582  2020-02-16   America                         Brazil          0
## 7583  2020-02-16   America                         Brazil          0
## 7584  2020-02-16   America                         Canada          0
## 7585  2020-02-16   America                          Chile          0
## 7586  2020-02-16   America                       Colombia          0
## 7587  2020-02-16   America                     Costa Rica          0
## 7588  2020-02-16   America                           Cuba          0
## 7589  2020-02-16   America                       Dominica          0
## 7590  2020-02-16   America             Dominican Republic          0
## 7591  2020-02-16   America             Dominican Republic          0
## 7592  2020-02-16   America                        Ecuador          0
## 7593  2020-02-16   America                        Ecuador          0
## 7594  2020-02-16   America                    El Salvador          0
## 7595  2020-02-16   America                        Grenada          0
## 7596  2020-02-16   America                      Guatemala          0
## 7597  2020-02-16   America                         Guyana          0
## 7598  2020-02-16   America                          Haiti          0
## 7599  2020-02-16   America                       Honduras          0
## 7600  2020-02-16   America                        Jamaica          0
## 7601  2020-02-16   America                         Mexico          0
## 7602  2020-02-16   America                         Mexico          0
## 7603  2020-02-16   America                      Nicaragua          0
## 7604  2020-02-16   America                         Panama          0
## 7605  2020-02-16   America                       Paraguay          0
## 7606  2020-02-16   America                           Peru          0
## 7607  2020-02-16   America            St. Kitts and Nevis          0
## 7608  2020-02-16   America                      St. Lucia          0
## 7609  2020-02-16   America St. Vincent and the Grenadines          0
## 7610  2020-02-16   America                       Suriname          0
## 7611  2020-02-16   America            Trinidad and Tobago          0
## 7612  2020-02-16   America                  United States          0
## 7613  2020-02-16   America                  United States          0
## 7614  2020-02-16   America                        Uruguay          0
## 7615  2020-02-16   America                      Venezuela          0
## 7616  2020-02-16      Asia                    Afghanistan          0
## 7617  2020-02-16      Asia                    Afghanistan          0
## 7618  2020-02-16      Asia                        Bahrain          0
## 7619  2020-02-16      Asia                        Bahrain          0
## 7620  2020-02-16      Asia                     Bangladesh          0
## 7621  2020-02-16      Asia                         Bhutan          0
## 7622  2020-02-16      Asia              Brunei Darussalam          0
## 7623  2020-02-16      Asia                       Cambodia          0
## 7624  2020-02-16      Asia                       Cambodia          0
## 7625  2020-02-16      Asia                          China       2007
## 7626  2020-02-16      Asia                          India          0
## 7627  2020-02-16      Asia                          India          0
## 7628  2020-02-16      Asia                      Indonesia          0
## 7629  2020-02-16      Asia                      Indonesia          0
## 7630  2020-02-16      Asia                           Iran          0
## 7631  2020-02-16      Asia                           Iran          0
## 7632  2020-02-16      Asia                           Iraq          0
## 7633  2020-02-16      Asia                           Iraq          0
## 7634  2020-02-16      Asia                         Israel          0
## 7635  2020-02-16      Asia                         Israel          0
## 7636  2020-02-16      Asia                          Japan         14
## 7637  2020-02-16      Asia                          Japan         16
## 7638  2020-02-16      Asia                         Jordan          0
## 7639  2020-02-16      Asia                     Kazakhstan          0
## 7640  2020-02-16      Asia                         Kuwait          0
## 7641  2020-02-16      Asia                         Kuwait          0
## 7642  2020-02-16      Asia                Kyrgyz Republic          0
## 7643  2020-02-16      Asia                           Laos          0
## 7644  2020-02-16      Asia                        Lebanon          0
## 7645  2020-02-16      Asia                        Lebanon          0
## 7646  2020-02-16      Asia                       Malaysia          0
## 7647  2020-02-16      Asia                       Malaysia          1
## 7648  2020-02-16      Asia                       Maldives          0
## 7649  2020-02-16      Asia                       Mongolia          0
## 7650  2020-02-16      Asia                        Myanmar          0
## 7651  2020-02-16      Asia                          Nepal          0
## 7652  2020-02-16      Asia                          Nepal          0
## 7653  2020-02-16      Asia                           Oman          0
## 7654  2020-02-16      Asia                           Oman          0
## 7655  2020-02-16      Asia                       Pakistan          0
## 7656  2020-02-16      Asia                       Pakistan          0
## 7657  2020-02-16      Asia                      Palestine          0
## 7658  2020-02-16      Asia                    Philippines          0
## 7659  2020-02-16      Asia                    Philippines          0
## 7660  2020-02-16      Asia                          Qatar          0
## 7661  2020-02-16      Asia                          Qatar          0
## 7662  2020-02-16      Asia                   Saudi Arabia          0
## 7663  2020-02-16      Asia                      Singapore          3
## 7664  2020-02-16      Asia                      Singapore          5
## 7665  2020-02-16      Asia                    South Korea          1
## 7666  2020-02-16      Asia                    South Korea          1
## 7667  2020-02-16      Asia                      Sri Lanka          0
## 7668  2020-02-16      Asia                      Sri Lanka          0
## 7669  2020-02-16      Asia                          Syria          0
## 7670  2020-02-16      Asia                     Tajikistan          0
## 7671  2020-02-16      Asia                       Thailand          0
## 7672  2020-02-16      Asia                       Thailand          1
## 7673  2020-02-16      Asia                    Timor-Leste          0
## 7674  2020-02-16      Asia                         Turkey          0
## 7675  2020-02-16      Asia           United Arab Emirates          0
## 7676  2020-02-16      Asia           United Arab Emirates          1
## 7677  2020-02-16      Asia                     Uzbekistan          0
## 7678  2020-02-16      Asia                        Vietnam          0
## 7679  2020-02-16      Asia                        Vietnam          0
## 7680  2020-02-16      Asia                          Yemen          0
## 7681  2020-02-16      Asia                      not found          0
## 7682  2020-02-16    Europe                        Albania          0
## 7683  2020-02-16    Europe                        Andorra          0
## 7684  2020-02-16    Europe                        Armenia          0
## 7685  2020-02-16    Europe                        Armenia          0
## 7686  2020-02-16    Europe                        Austria          0
## 7687  2020-02-16    Europe                        Austria          0
## 7688  2020-02-16    Europe                     Azerbaijan          0
## 7689  2020-02-16    Europe                     Azerbaijan          0
## 7690  2020-02-16    Europe                        Belarus          0
## 7691  2020-02-16    Europe                        Belarus          0
## 7692  2020-02-16    Europe                        Belgium          0
## 7693  2020-02-16    Europe                        Belgium          0
## 7694  2020-02-16    Europe         Bosnia and Herzegovina          0
## 7695  2020-02-16    Europe                       Bulgaria          0
## 7696  2020-02-16    Europe                        Croatia          0
## 7697  2020-02-16    Europe                        Croatia          0
## 7698  2020-02-16    Europe                         Cyprus          0
## 7699  2020-02-16    Europe                 Czech Republic          0
## 7700  2020-02-16    Europe                 Czech Republic          0
## 7701  2020-02-16    Europe                        Denmark          0
## 7702  2020-02-16    Europe                        Denmark          0
## 7703  2020-02-16    Europe                        Estonia          0
## 7704  2020-02-16    Europe                        Estonia          0
## 7705  2020-02-16    Europe                        Finland          0
## 7706  2020-02-16    Europe                        Finland          0
## 7707  2020-02-16    Europe                         France          0
## 7708  2020-02-16    Europe                         France          0
## 7709  2020-02-16    Europe                        Georgia          0
## 7710  2020-02-16    Europe                        Georgia          0
## 7711  2020-02-16    Europe                        Germany          0
## 7712  2020-02-16    Europe                        Germany          0
## 7713  2020-02-16    Europe                         Greece          0
## 7714  2020-02-16    Europe                         Greece          0
## 7715  2020-02-16    Europe                        Hungary          0
## 7716  2020-02-16    Europe                        Iceland          0
## 7717  2020-02-16    Europe                        Iceland          0
## 7718  2020-02-16    Europe                        Ireland          0
## 7719  2020-02-16    Europe                        Ireland          0
## 7720  2020-02-16    Europe                          Italy          0
## 7721  2020-02-16    Europe                          Italy          0
## 7722  2020-02-16    Europe                         Kosovo          0
## 7723  2020-02-16    Europe                         Latvia          0
## 7724  2020-02-16    Europe                  Liechtenstein          0
## 7725  2020-02-16    Europe                      Lithuania          0
## 7726  2020-02-16    Europe                      Lithuania          0
## 7727  2020-02-16    Europe                     Luxembourg          0
## 7728  2020-02-16    Europe                     Luxembourg          0
## 7729  2020-02-16    Europe                      Macedonia          0
## 7730  2020-02-16    Europe                      Macedonia          0
## 7731  2020-02-16    Europe                          Malta          0
## 7732  2020-02-16    Europe                        Moldova          0
## 7733  2020-02-16    Europe                         Monaco          0
## 7734  2020-02-16    Europe                         Monaco          0
## 7735  2020-02-16    Europe                     Montenegro          0
## 7736  2020-02-16    Europe                    Netherlands          0
## 7737  2020-02-16    Europe                    Netherlands          0
## 7738  2020-02-16    Europe                         Norway          0
## 7739  2020-02-16    Europe                         Norway          0
## 7740  2020-02-16    Europe                         Poland          0
## 7741  2020-02-16    Europe                       Portugal          0
## 7742  2020-02-16    Europe                        Romania          0
## 7743  2020-02-16    Europe                        Romania          0
## 7744  2020-02-16    Europe                         Russia          0
## 7745  2020-02-16    Europe                         Russia          0
## 7746  2020-02-16    Europe                     San Marino          0
## 7747  2020-02-16    Europe                     San Marino          0
## 7748  2020-02-16    Europe                         Serbia          0
## 7749  2020-02-16    Europe                       Slovakia          0
## 7750  2020-02-16    Europe                       Slovenia          0
## 7751  2020-02-16    Europe                          Spain          0
## 7752  2020-02-16    Europe                          Spain          0
## 7753  2020-02-16    Europe                         Sweden          0
## 7754  2020-02-16    Europe                         Sweden          0
## 7755  2020-02-16    Europe                    Switzerland          0
## 7756  2020-02-16    Europe                    Switzerland          0
## 7757  2020-02-16    Europe                        Ukraine          0
## 7758  2020-02-16    Europe                 United Kingdom          0
## 7759  2020-02-16    Europe                 United Kingdom          0
## 7760  2020-02-16    Europe                        Vatican          0
## 7761  2020-02-16   Oceania                      Australia          0
## 7762  2020-02-16   Oceania                           Fiji          0
## 7763  2020-02-16   Oceania                    New Zealand          0
## 7764  2020-02-16   Oceania                    New Zealand          0
## 7765  2020-02-16   Oceania               Papua New Guinea          0
## 7766  2020-02-16     Other                      not found        134
## 7767  2020-02-17    Africa                        Algeria          0
## 7768  2020-02-17    Africa                        Algeria          0
## 7769  2020-02-17    Africa                         Angola          0
## 7770  2020-02-17    Africa                          Benin          0
## 7771  2020-02-17    Africa                       Botswana          0
## 7772  2020-02-17    Africa                   Burkina Faso          0
## 7773  2020-02-17    Africa                        Burundi          0
## 7774  2020-02-17    Africa                     Cabo Verde          0
## 7775  2020-02-17    Africa                       Cameroon          0
## 7776  2020-02-17    Africa       Central African Republic          0
## 7777  2020-02-17    Africa                           Chad          0
## 7778  2020-02-17    Africa                        Comoros          0
## 7779  2020-02-17    Africa                 Congo Republic          0
## 7780  2020-02-17    Africa                  Cote d'Ivoire          0
## 7781  2020-02-17    Africa                       DR Congo          0
## 7782  2020-02-17    Africa                       Djibouti          0
## 7783  2020-02-17    Africa                          Egypt          0
## 7784  2020-02-17    Africa                          Egypt          0
## 7785  2020-02-17    Africa              Equatorial Guinea          0
## 7786  2020-02-17    Africa                        Eritrea          0
## 7787  2020-02-17    Africa                       Eswatini          0
## 7788  2020-02-17    Africa                       Ethiopia          0
## 7789  2020-02-17    Africa                          Gabon          0
## 7790  2020-02-17    Africa                         Gambia          0
## 7791  2020-02-17    Africa                          Ghana          0
## 7792  2020-02-17    Africa                         Guinea          0
## 7793  2020-02-17    Africa                  Guinea-Bissau          0
## 7794  2020-02-17    Africa                          Kenya          0
## 7795  2020-02-17    Africa                        Lesotho          0
## 7796  2020-02-17    Africa                        Liberia          0
## 7797  2020-02-17    Africa                          Libya          0
## 7798  2020-02-17    Africa                     Madagascar          0
## 7799  2020-02-17    Africa                         Malawi          0
## 7800  2020-02-17    Africa                           Mali          0
## 7801  2020-02-17    Africa                     Mauritania          0
## 7802  2020-02-17    Africa                      Mauritius          0
## 7803  2020-02-17    Africa                        Morocco          0
## 7804  2020-02-17    Africa                     Mozambique          0
## 7805  2020-02-17    Africa                        Namibia          0
## 7806  2020-02-17    Africa                          Niger          0
## 7807  2020-02-17    Africa                        Nigeria          0
## 7808  2020-02-17    Africa                        Nigeria          0
## 7809  2020-02-17    Africa                         Rwanda          0
## 7810  2020-02-17    Africa          Sao Tome and Principe          0
## 7811  2020-02-17    Africa                        Senegal          0
## 7812  2020-02-17    Africa                     Seychelles          0
## 7813  2020-02-17    Africa                   Sierra Leone          0
## 7814  2020-02-17    Africa                        Somalia          0
## 7815  2020-02-17    Africa                   South Africa          0
## 7816  2020-02-17    Africa                    South Sudan          0
## 7817  2020-02-17    Africa                          Sudan          0
## 7818  2020-02-17    Africa                       Tanzania          0
## 7819  2020-02-17    Africa                           Togo          0
## 7820  2020-02-17    Africa                        Tunisia          0
## 7821  2020-02-17    Africa                         Uganda          0
## 7822  2020-02-17    Africa                 Western Sahara          0
## 7823  2020-02-17    Africa                         Zambia          0
## 7824  2020-02-17    Africa                       Zimbabwe          0
## 7825  2020-02-17   America            Antigua and Barbuda          0
## 7826  2020-02-17   America                      Argentina          0
## 7827  2020-02-17   America                        Bahamas          0
## 7828  2020-02-17   America                       Barbados          0
## 7829  2020-02-17   America                         Belize          0
## 7830  2020-02-17   America                        Bolivia          0
## 7831  2020-02-17   America                         Brazil          0
## 7832  2020-02-17   America                         Brazil          0
## 7833  2020-02-17   America                         Canada          0
## 7834  2020-02-17   America                          Chile          0
## 7835  2020-02-17   America                       Colombia          0
## 7836  2020-02-17   America                     Costa Rica          0
## 7837  2020-02-17   America                           Cuba          0
## 7838  2020-02-17   America                       Dominica          0
## 7839  2020-02-17   America             Dominican Republic          0
## 7840  2020-02-17   America             Dominican Republic          0
## 7841  2020-02-17   America                        Ecuador          0
## 7842  2020-02-17   America                        Ecuador          0
## 7843  2020-02-17   America                    El Salvador          0
## 7844  2020-02-17   America                        Grenada          0
## 7845  2020-02-17   America                      Guatemala          0
## 7846  2020-02-17   America                         Guyana          0
## 7847  2020-02-17   America                          Haiti          0
## 7848  2020-02-17   America                       Honduras          0
## 7849  2020-02-17   America                        Jamaica          0
## 7850  2020-02-17   America                         Mexico          0
## 7851  2020-02-17   America                         Mexico          0
## 7852  2020-02-17   America                      Nicaragua          0
## 7853  2020-02-17   America                         Panama          0
## 7854  2020-02-17   America                       Paraguay          0
## 7855  2020-02-17   America                           Peru          0
## 7856  2020-02-17   America            St. Kitts and Nevis          0
## 7857  2020-02-17   America                      St. Lucia          0
## 7858  2020-02-17   America St. Vincent and the Grenadines          0
## 7859  2020-02-17   America                       Suriname          0
## 7860  2020-02-17   America            Trinidad and Tobago          0
## 7861  2020-02-17   America                  United States          0
## 7862  2020-02-17   America                  United States          0
## 7863  2020-02-17   America                        Uruguay          0
## 7864  2020-02-17   America                      Venezuela          0
## 7865  2020-02-17      Asia                    Afghanistan          0
## 7866  2020-02-17      Asia                    Afghanistan          0
## 7867  2020-02-17      Asia                        Bahrain          0
## 7868  2020-02-17      Asia                        Bahrain          0
## 7869  2020-02-17      Asia                     Bangladesh          0
## 7870  2020-02-17      Asia                         Bhutan          0
## 7871  2020-02-17      Asia              Brunei Darussalam          0
## 7872  2020-02-17      Asia                       Cambodia          0
## 7873  2020-02-17      Asia                       Cambodia          0
## 7874  2020-02-17      Asia                          China       2052
## 7875  2020-02-17      Asia                          India          0
## 7876  2020-02-17      Asia                          India          0
## 7877  2020-02-17      Asia                      Indonesia          0
## 7878  2020-02-17      Asia                      Indonesia          0
## 7879  2020-02-17      Asia                           Iran          0
## 7880  2020-02-17      Asia                           Iran          0
## 7881  2020-02-17      Asia                           Iraq          0
## 7882  2020-02-17      Asia                           Iraq          0
## 7883  2020-02-17      Asia                         Israel          0
## 7884  2020-02-17      Asia                         Israel          0
## 7885  2020-02-17      Asia                          Japan          7
## 7886  2020-02-17      Asia                          Japan          7
## 7887  2020-02-17      Asia                         Jordan          0
## 7888  2020-02-17      Asia                     Kazakhstan          0
## 7889  2020-02-17      Asia                         Kuwait          0
## 7890  2020-02-17      Asia                         Kuwait          0
## 7891  2020-02-17      Asia                Kyrgyz Republic          0
## 7892  2020-02-17      Asia                           Laos          0
## 7893  2020-02-17      Asia                        Lebanon          0
## 7894  2020-02-17      Asia                        Lebanon          0
## 7895  2020-02-17      Asia                       Malaysia          0
## 7896  2020-02-17      Asia                       Malaysia          0
## 7897  2020-02-17      Asia                       Maldives          0
## 7898  2020-02-17      Asia                       Mongolia          0
## 7899  2020-02-17      Asia                        Myanmar          0
## 7900  2020-02-17      Asia                          Nepal          0
## 7901  2020-02-17      Asia                          Nepal          0
## 7902  2020-02-17      Asia                           Oman          0
## 7903  2020-02-17      Asia                           Oman          0
## 7904  2020-02-17      Asia                       Pakistan          0
## 7905  2020-02-17      Asia                       Pakistan          0
## 7906  2020-02-17      Asia                      Palestine          0
## 7907  2020-02-17      Asia                    Philippines          0
## 7908  2020-02-17      Asia                    Philippines          0
## 7909  2020-02-17      Asia                          Qatar          0
## 7910  2020-02-17      Asia                          Qatar          0
## 7911  2020-02-17      Asia                   Saudi Arabia          0
## 7912  2020-02-17      Asia                      Singapore          2
## 7913  2020-02-17      Asia                      Singapore          3
## 7914  2020-02-17      Asia                    South Korea          1
## 7915  2020-02-17      Asia                    South Korea          1
## 7916  2020-02-17      Asia                      Sri Lanka          0
## 7917  2020-02-17      Asia                      Sri Lanka          0
## 7918  2020-02-17      Asia                          Syria          0
## 7919  2020-02-17      Asia                     Tajikistan          0
## 7920  2020-02-17      Asia                       Thailand          0
## 7921  2020-02-17      Asia                       Thailand          1
## 7922  2020-02-17      Asia                    Timor-Leste          0
## 7923  2020-02-17      Asia                         Turkey          0
## 7924  2020-02-17      Asia           United Arab Emirates          0
## 7925  2020-02-17      Asia           United Arab Emirates          1
## 7926  2020-02-17      Asia                     Uzbekistan          0
## 7927  2020-02-17      Asia                        Vietnam          0
## 7928  2020-02-17      Asia                        Vietnam          0
## 7929  2020-02-17      Asia                          Yemen          0
## 7930  2020-02-17      Asia                      not found          2
## 7931  2020-02-17    Europe                        Albania          0
## 7932  2020-02-17    Europe                        Andorra          0
## 7933  2020-02-17    Europe                        Armenia          0
## 7934  2020-02-17    Europe                        Armenia          0
## 7935  2020-02-17    Europe                        Austria          0
## 7936  2020-02-17    Europe                        Austria          0
## 7937  2020-02-17    Europe                     Azerbaijan          0
## 7938  2020-02-17    Europe                     Azerbaijan          0
## 7939  2020-02-17    Europe                        Belarus          0
## 7940  2020-02-17    Europe                        Belarus          0
## 7941  2020-02-17    Europe                        Belgium          0
## 7942  2020-02-17    Europe                        Belgium          0
## 7943  2020-02-17    Europe         Bosnia and Herzegovina          0
## 7944  2020-02-17    Europe                       Bulgaria          0
## 7945  2020-02-17    Europe                        Croatia          0
## 7946  2020-02-17    Europe                        Croatia          0
## 7947  2020-02-17    Europe                         Cyprus          0
## 7948  2020-02-17    Europe                 Czech Republic          0
## 7949  2020-02-17    Europe                 Czech Republic          0
## 7950  2020-02-17    Europe                        Denmark          0
## 7951  2020-02-17    Europe                        Denmark          0
## 7952  2020-02-17    Europe                        Estonia          0
## 7953  2020-02-17    Europe                        Estonia          0
## 7954  2020-02-17    Europe                        Finland          0
## 7955  2020-02-17    Europe                        Finland          0
## 7956  2020-02-17    Europe                         France          0
## 7957  2020-02-17    Europe                         France          1
## 7958  2020-02-17    Europe                        Georgia          0
## 7959  2020-02-17    Europe                        Georgia          0
## 7960  2020-02-17    Europe                        Germany          0
## 7961  2020-02-17    Europe                        Germany          0
## 7962  2020-02-17    Europe                         Greece          0
## 7963  2020-02-17    Europe                         Greece          0
## 7964  2020-02-17    Europe                        Hungary          0
## 7965  2020-02-17    Europe                        Iceland          0
## 7966  2020-02-17    Europe                        Iceland          0
## 7967  2020-02-17    Europe                        Ireland          0
## 7968  2020-02-17    Europe                        Ireland          0
## 7969  2020-02-17    Europe                          Italy          0
## 7970  2020-02-17    Europe                          Italy          0
## 7971  2020-02-17    Europe                         Kosovo          0
## 7972  2020-02-17    Europe                         Latvia          0
## 7973  2020-02-17    Europe                  Liechtenstein          0
## 7974  2020-02-17    Europe                      Lithuania          0
## 7975  2020-02-17    Europe                      Lithuania          0
## 7976  2020-02-17    Europe                     Luxembourg          0
## 7977  2020-02-17    Europe                     Luxembourg          0
## 7978  2020-02-17    Europe                      Macedonia          0
## 7979  2020-02-17    Europe                      Macedonia          0
## 7980  2020-02-17    Europe                          Malta          0
## 7981  2020-02-17    Europe                        Moldova          0
## 7982  2020-02-17    Europe                         Monaco          0
## 7983  2020-02-17    Europe                         Monaco          0
## 7984  2020-02-17    Europe                     Montenegro          0
## 7985  2020-02-17    Europe                    Netherlands          0
## 7986  2020-02-17    Europe                    Netherlands          0
## 7987  2020-02-17    Europe                         Norway          0
## 7988  2020-02-17    Europe                         Norway          0
## 7989  2020-02-17    Europe                         Poland          0
## 7990  2020-02-17    Europe                       Portugal          0
## 7991  2020-02-17    Europe                        Romania          0
## 7992  2020-02-17    Europe                        Romania          0
## 7993  2020-02-17    Europe                         Russia          0
## 7994  2020-02-17    Europe                         Russia          0
## 7995  2020-02-17    Europe                     San Marino          0
## 7996  2020-02-17    Europe                     San Marino          0
## 7997  2020-02-17    Europe                         Serbia          0
## 7998  2020-02-17    Europe                       Slovakia          0
## 7999  2020-02-17    Europe                       Slovenia          0
## 8000  2020-02-17    Europe                          Spain          0
## 8001  2020-02-17    Europe                          Spain          0
## 8002  2020-02-17    Europe                         Sweden          0
## 8003  2020-02-17    Europe                         Sweden          0
## 8004  2020-02-17    Europe                    Switzerland          0
## 8005  2020-02-17    Europe                    Switzerland          0
## 8006  2020-02-17    Europe                        Ukraine          0
## 8007  2020-02-17    Europe                 United Kingdom          0
## 8008  2020-02-17    Europe                 United Kingdom          0
## 8009  2020-02-17    Europe                        Vatican          0
## 8010  2020-02-17   Oceania                      Australia          0
## 8011  2020-02-17   Oceania                           Fiji          0
## 8012  2020-02-17   Oceania                    New Zealand          0
## 8013  2020-02-17   Oceania                    New Zealand          0
## 8014  2020-02-17   Oceania               Papua New Guinea          0
## 8015  2020-02-17     Other                      not found          0
## 8016  2020-02-18    Africa                        Algeria          0
## 8017  2020-02-18    Africa                        Algeria          0
## 8018  2020-02-18    Africa                         Angola          0
## 8019  2020-02-18    Africa                          Benin          0
## 8020  2020-02-18    Africa                       Botswana          0
## 8021  2020-02-18    Africa                   Burkina Faso          0
## 8022  2020-02-18    Africa                        Burundi          0
## 8023  2020-02-18    Africa                     Cabo Verde          0
## 8024  2020-02-18    Africa                       Cameroon          0
## 8025  2020-02-18    Africa       Central African Republic          0
## 8026  2020-02-18    Africa                           Chad          0
## 8027  2020-02-18    Africa                        Comoros          0
## 8028  2020-02-18    Africa                 Congo Republic          0
## 8029  2020-02-18    Africa                  Cote d'Ivoire          0
## 8030  2020-02-18    Africa                       DR Congo          0
## 8031  2020-02-18    Africa                       Djibouti          0
## 8032  2020-02-18    Africa                          Egypt          0
## 8033  2020-02-18    Africa                          Egypt          0
## 8034  2020-02-18    Africa              Equatorial Guinea          0
## 8035  2020-02-18    Africa                        Eritrea          0
## 8036  2020-02-18    Africa                       Eswatini          0
## 8037  2020-02-18    Africa                       Ethiopia          0
## 8038  2020-02-18    Africa                          Gabon          0
## 8039  2020-02-18    Africa                         Gambia          0
## 8040  2020-02-18    Africa                          Ghana          0
## 8041  2020-02-18    Africa                         Guinea          0
## 8042  2020-02-18    Africa                  Guinea-Bissau          0
## 8043  2020-02-18    Africa                          Kenya          0
## 8044  2020-02-18    Africa                        Lesotho          0
## 8045  2020-02-18    Africa                        Liberia          0
## 8046  2020-02-18    Africa                          Libya          0
## 8047  2020-02-18    Africa                     Madagascar          0
## 8048  2020-02-18    Africa                         Malawi          0
## 8049  2020-02-18    Africa                           Mali          0
## 8050  2020-02-18    Africa                     Mauritania          0
## 8051  2020-02-18    Africa                      Mauritius          0
## 8052  2020-02-18    Africa                        Morocco          0
## 8053  2020-02-18    Africa                     Mozambique          0
## 8054  2020-02-18    Africa                        Namibia          0
## 8055  2020-02-18    Africa                          Niger          0
## 8056  2020-02-18    Africa                        Nigeria          0
## 8057  2020-02-18    Africa                        Nigeria          0
## 8058  2020-02-18    Africa                         Rwanda          0
## 8059  2020-02-18    Africa          Sao Tome and Principe          0
## 8060  2020-02-18    Africa                        Senegal          0
## 8061  2020-02-18    Africa                     Seychelles          0
## 8062  2020-02-18    Africa                   Sierra Leone          0
## 8063  2020-02-18    Africa                        Somalia          0
## 8064  2020-02-18    Africa                   South Africa          0
## 8065  2020-02-18    Africa                    South Sudan          0
## 8066  2020-02-18    Africa                          Sudan          0
## 8067  2020-02-18    Africa                       Tanzania          0
## 8068  2020-02-18    Africa                           Togo          0
## 8069  2020-02-18    Africa                        Tunisia          0
## 8070  2020-02-18    Africa                         Uganda          0
## 8071  2020-02-18    Africa                 Western Sahara          0
## 8072  2020-02-18    Africa                         Zambia          0
## 8073  2020-02-18    Africa                       Zimbabwe          0
## 8074  2020-02-18   America            Antigua and Barbuda          0
## 8075  2020-02-18   America                      Argentina          0
## 8076  2020-02-18   America                        Bahamas          0
## 8077  2020-02-18   America                       Barbados          0
## 8078  2020-02-18   America                         Belize          0
## 8079  2020-02-18   America                        Bolivia          0
## 8080  2020-02-18   America                         Brazil          0
## 8081  2020-02-18   America                         Brazil          0
## 8082  2020-02-18   America                         Canada          0
## 8083  2020-02-18   America                          Chile          0
## 8084  2020-02-18   America                       Colombia          0
## 8085  2020-02-18   America                     Costa Rica          0
## 8086  2020-02-18   America                           Cuba          0
## 8087  2020-02-18   America                       Dominica          0
## 8088  2020-02-18   America             Dominican Republic          0
## 8089  2020-02-18   America             Dominican Republic          0
## 8090  2020-02-18   America                        Ecuador          0
## 8091  2020-02-18   America                        Ecuador          0
## 8092  2020-02-18   America                    El Salvador          0
## 8093  2020-02-18   America                        Grenada          0
## 8094  2020-02-18   America                      Guatemala          0
## 8095  2020-02-18   America                         Guyana          0
## 8096  2020-02-18   America                          Haiti          0
## 8097  2020-02-18   America                       Honduras          0
## 8098  2020-02-18   America                        Jamaica          0
## 8099  2020-02-18   America                         Mexico          0
## 8100  2020-02-18   America                         Mexico          0
## 8101  2020-02-18   America                      Nicaragua          0
## 8102  2020-02-18   America                         Panama          0
## 8103  2020-02-18   America                       Paraguay          0
## 8104  2020-02-18   America                           Peru          0
## 8105  2020-02-18   America            St. Kitts and Nevis          0
## 8106  2020-02-18   America                      St. Lucia          0
## 8107  2020-02-18   America St. Vincent and the Grenadines          0
## 8108  2020-02-18   America                       Suriname          0
## 8109  2020-02-18   America            Trinidad and Tobago          0
## 8110  2020-02-18   America                  United States          0
## 8111  2020-02-18   America                  United States          0
## 8112  2020-02-18   America                        Uruguay          0
## 8113  2020-02-18   America                      Venezuela          0
## 8114  2020-02-18      Asia                    Afghanistan          0
## 8115  2020-02-18      Asia                    Afghanistan          0
## 8116  2020-02-18      Asia                        Bahrain          0
## 8117  2020-02-18      Asia                        Bahrain          0
## 8118  2020-02-18      Asia                     Bangladesh          0
## 8119  2020-02-18      Asia                         Bhutan          0
## 8120  2020-02-18      Asia              Brunei Darussalam          0
## 8121  2020-02-18      Asia                       Cambodia          0
## 8122  2020-02-18      Asia                       Cambodia          0
## 8123  2020-02-18      Asia                          China       1890
## 8124  2020-02-18      Asia                          India          0
## 8125  2020-02-18      Asia                          India          0
## 8126  2020-02-18      Asia                      Indonesia          0
## 8127  2020-02-18      Asia                      Indonesia          0
## 8128  2020-02-18      Asia                           Iran          0
## 8129  2020-02-18      Asia                           Iran          0
## 8130  2020-02-18      Asia                           Iraq          0
## 8131  2020-02-18      Asia                           Iraq          0
## 8132  2020-02-18      Asia                         Israel          0
## 8133  2020-02-18      Asia                         Israel          0
## 8134  2020-02-18      Asia                          Japan          0
## 8135  2020-02-18      Asia                          Japan          8
## 8136  2020-02-18      Asia                         Jordan          0
## 8137  2020-02-18      Asia                     Kazakhstan          0
## 8138  2020-02-18      Asia                         Kuwait          0
## 8139  2020-02-18      Asia                         Kuwait          0
## 8140  2020-02-18      Asia                Kyrgyz Republic          0
## 8141  2020-02-18      Asia                           Laos          0
## 8142  2020-02-18      Asia                        Lebanon          0
## 8143  2020-02-18      Asia                        Lebanon          0
## 8144  2020-02-18      Asia                       Malaysia          0
## 8145  2020-02-18      Asia                       Malaysia          0
## 8146  2020-02-18      Asia                       Maldives          0
## 8147  2020-02-18      Asia                       Mongolia          0
## 8148  2020-02-18      Asia                        Myanmar          0
## 8149  2020-02-18      Asia                          Nepal          0
## 8150  2020-02-18      Asia                          Nepal          0
## 8151  2020-02-18      Asia                           Oman          0
## 8152  2020-02-18      Asia                           Oman          0
## 8153  2020-02-18      Asia                       Pakistan          0
## 8154  2020-02-18      Asia                       Pakistan          0
## 8155  2020-02-18      Asia                      Palestine          0
## 8156  2020-02-18      Asia                    Philippines          0
## 8157  2020-02-18      Asia                    Philippines          0
## 8158  2020-02-18      Asia                          Qatar          0
## 8159  2020-02-18      Asia                          Qatar          0
## 8160  2020-02-18      Asia                   Saudi Arabia          0
## 8161  2020-02-18      Asia                      Singapore          2
## 8162  2020-02-18      Asia                      Singapore          4
## 8163  2020-02-18      Asia                    South Korea          1
## 8164  2020-02-18      Asia                    South Korea          1
## 8165  2020-02-18      Asia                      Sri Lanka          0
## 8166  2020-02-18      Asia                      Sri Lanka          0
## 8167  2020-02-18      Asia                          Syria          0
## 8168  2020-02-18      Asia                     Tajikistan          0
## 8169  2020-02-18      Asia                       Thailand          0
## 8170  2020-02-18      Asia                       Thailand          1
## 8171  2020-02-18      Asia                    Timor-Leste          0
## 8172  2020-02-18      Asia                         Turkey          0
## 8173  2020-02-18      Asia           United Arab Emirates          0
## 8174  2020-02-18      Asia           United Arab Emirates          0
## 8175  2020-02-18      Asia                     Uzbekistan          0
## 8176  2020-02-18      Asia                        Vietnam          0
## 8177  2020-02-18      Asia                        Vietnam          0
## 8178  2020-02-18      Asia                          Yemen          0
## 8179  2020-02-18      Asia                      not found          2
## 8180  2020-02-18    Europe                        Albania          0
## 8181  2020-02-18    Europe                        Andorra          0
## 8182  2020-02-18    Europe                        Armenia          0
## 8183  2020-02-18    Europe                        Armenia          0
## 8184  2020-02-18    Europe                        Austria          0
## 8185  2020-02-18    Europe                        Austria          0
## 8186  2020-02-18    Europe                     Azerbaijan          0
## 8187  2020-02-18    Europe                     Azerbaijan          0
## 8188  2020-02-18    Europe                        Belarus          0
## 8189  2020-02-18    Europe                        Belarus          0
## 8190  2020-02-18    Europe                        Belgium          0
## 8191  2020-02-18    Europe                        Belgium          0
## 8192  2020-02-18    Europe         Bosnia and Herzegovina          0
## 8193  2020-02-18    Europe                       Bulgaria          0
## 8194  2020-02-18    Europe                        Croatia          0
## 8195  2020-02-18    Europe                        Croatia          0
## 8196  2020-02-18    Europe                         Cyprus          0
## 8197  2020-02-18    Europe                 Czech Republic          0
## 8198  2020-02-18    Europe                 Czech Republic          0
## 8199  2020-02-18    Europe                        Denmark          0
## 8200  2020-02-18    Europe                        Denmark          0
## 8201  2020-02-18    Europe                        Estonia          0
## 8202  2020-02-18    Europe                        Estonia          0
## 8203  2020-02-18    Europe                        Finland          0
## 8204  2020-02-18    Europe                        Finland          0
## 8205  2020-02-18    Europe                         France          0
## 8206  2020-02-18    Europe                         France          0
## 8207  2020-02-18    Europe                        Georgia          0
## 8208  2020-02-18    Europe                        Georgia          0
## 8209  2020-02-18    Europe                        Germany          0
## 8210  2020-02-18    Europe                        Germany          0
## 8211  2020-02-18    Europe                         Greece          0
## 8212  2020-02-18    Europe                         Greece          0
## 8213  2020-02-18    Europe                        Hungary          0
## 8214  2020-02-18    Europe                        Iceland          0
## 8215  2020-02-18    Europe                        Iceland          0
## 8216  2020-02-18    Europe                        Ireland          0
## 8217  2020-02-18    Europe                        Ireland          0
## 8218  2020-02-18    Europe                          Italy          0
## 8219  2020-02-18    Europe                          Italy          0
## 8220  2020-02-18    Europe                         Kosovo          0
## 8221  2020-02-18    Europe                         Latvia          0
## 8222  2020-02-18    Europe                  Liechtenstein          0
## 8223  2020-02-18    Europe                      Lithuania          0
## 8224  2020-02-18    Europe                      Lithuania          0
## 8225  2020-02-18    Europe                     Luxembourg          0
## 8226  2020-02-18    Europe                     Luxembourg          0
## 8227  2020-02-18    Europe                      Macedonia          0
## 8228  2020-02-18    Europe                      Macedonia          0
## 8229  2020-02-18    Europe                          Malta          0
## 8230  2020-02-18    Europe                        Moldova          0
## 8231  2020-02-18    Europe                         Monaco          0
## 8232  2020-02-18    Europe                         Monaco          0
## 8233  2020-02-18    Europe                     Montenegro          0
## 8234  2020-02-18    Europe                    Netherlands          0
## 8235  2020-02-18    Europe                    Netherlands          0
## 8236  2020-02-18    Europe                         Norway          0
## 8237  2020-02-18    Europe                         Norway          0
## 8238  2020-02-18    Europe                         Poland          0
## 8239  2020-02-18    Europe                       Portugal          0
## 8240  2020-02-18    Europe                        Romania          0
## 8241  2020-02-18    Europe                        Romania          0
## 8242  2020-02-18    Europe                         Russia          0
## 8243  2020-02-18    Europe                         Russia          0
## 8244  2020-02-18    Europe                     San Marino          0
## 8245  2020-02-18    Europe                     San Marino          0
## 8246  2020-02-18    Europe                         Serbia          0
## 8247  2020-02-18    Europe                       Slovakia          0
## 8248  2020-02-18    Europe                       Slovenia          0
## 8249  2020-02-18    Europe                          Spain          0
## 8250  2020-02-18    Europe                          Spain          0
## 8251  2020-02-18    Europe                         Sweden          0
## 8252  2020-02-18    Europe                         Sweden          0
## 8253  2020-02-18    Europe                    Switzerland          0
## 8254  2020-02-18    Europe                    Switzerland          0
## 8255  2020-02-18    Europe                        Ukraine          0
## 8256  2020-02-18    Europe                 United Kingdom          0
## 8257  2020-02-18    Europe                 United Kingdom          0
## 8258  2020-02-18    Europe                        Vatican          0
## 8259  2020-02-18   Oceania                      Australia          0
## 8260  2020-02-18   Oceania                           Fiji          0
## 8261  2020-02-18   Oceania                    New Zealand          0
## 8262  2020-02-18   Oceania                    New Zealand          0
## 8263  2020-02-18   Oceania               Papua New Guinea          0
## 8264  2020-02-18     Other                      not found         99
## 8265  2020-02-19    Africa                        Algeria          0
## 8266  2020-02-19    Africa                        Algeria          0
## 8267  2020-02-19    Africa                         Angola          0
## 8268  2020-02-19    Africa                          Benin          0
## 8269  2020-02-19    Africa                       Botswana          0
## 8270  2020-02-19    Africa                   Burkina Faso          0
## 8271  2020-02-19    Africa                        Burundi          0
## 8272  2020-02-19    Africa                     Cabo Verde          0
## 8273  2020-02-19    Africa                       Cameroon          0
## 8274  2020-02-19    Africa       Central African Republic          0
## 8275  2020-02-19    Africa                           Chad          0
## 8276  2020-02-19    Africa                        Comoros          0
## 8277  2020-02-19    Africa                 Congo Republic          0
## 8278  2020-02-19    Africa                  Cote d'Ivoire          0
## 8279  2020-02-19    Africa                       DR Congo          0
## 8280  2020-02-19    Africa                       Djibouti          0
## 8281  2020-02-19    Africa                          Egypt          0
## 8282  2020-02-19    Africa                          Egypt          0
## 8283  2020-02-19    Africa              Equatorial Guinea          0
## 8284  2020-02-19    Africa                        Eritrea          0
## 8285  2020-02-19    Africa                       Eswatini          0
## 8286  2020-02-19    Africa                       Ethiopia          0
## 8287  2020-02-19    Africa                          Gabon          0
## 8288  2020-02-19    Africa                         Gambia          0
## 8289  2020-02-19    Africa                          Ghana          0
## 8290  2020-02-19    Africa                         Guinea          0
## 8291  2020-02-19    Africa                  Guinea-Bissau          0
## 8292  2020-02-19    Africa                          Kenya          0
## 8293  2020-02-19    Africa                        Lesotho          0
## 8294  2020-02-19    Africa                        Liberia          0
## 8295  2020-02-19    Africa                          Libya          0
## 8296  2020-02-19    Africa                     Madagascar          0
## 8297  2020-02-19    Africa                         Malawi          0
## 8298  2020-02-19    Africa                           Mali          0
## 8299  2020-02-19    Africa                     Mauritania          0
## 8300  2020-02-19    Africa                      Mauritius          0
## 8301  2020-02-19    Africa                        Morocco          0
## 8302  2020-02-19    Africa                     Mozambique          0
## 8303  2020-02-19    Africa                        Namibia          0
## 8304  2020-02-19    Africa                          Niger          0
## 8305  2020-02-19    Africa                        Nigeria          0
## 8306  2020-02-19    Africa                        Nigeria          0
## 8307  2020-02-19    Africa                         Rwanda          0
## 8308  2020-02-19    Africa          Sao Tome and Principe          0
## 8309  2020-02-19    Africa                        Senegal          0
## 8310  2020-02-19    Africa                     Seychelles          0
## 8311  2020-02-19    Africa                   Sierra Leone          0
## 8312  2020-02-19    Africa                        Somalia          0
## 8313  2020-02-19    Africa                   South Africa          0
## 8314  2020-02-19    Africa                    South Sudan          0
## 8315  2020-02-19    Africa                          Sudan          0
## 8316  2020-02-19    Africa                       Tanzania          0
## 8317  2020-02-19    Africa                           Togo          0
## 8318  2020-02-19    Africa                        Tunisia          0
## 8319  2020-02-19    Africa                         Uganda          0
## 8320  2020-02-19    Africa                 Western Sahara          0
## 8321  2020-02-19    Africa                         Zambia          0
## 8322  2020-02-19    Africa                       Zimbabwe          0
## 8323  2020-02-19   America            Antigua and Barbuda          0
## 8324  2020-02-19   America                      Argentina          0
## 8325  2020-02-19   America                        Bahamas          0
## 8326  2020-02-19   America                       Barbados          0
## 8327  2020-02-19   America                         Belize          0
## 8328  2020-02-19   America                        Bolivia          0
## 8329  2020-02-19   America                         Brazil          0
## 8330  2020-02-19   America                         Brazil          0
## 8331  2020-02-19   America                         Canada          0
## 8332  2020-02-19   America                          Chile          0
## 8333  2020-02-19   America                       Colombia          0
## 8334  2020-02-19   America                     Costa Rica          0
## 8335  2020-02-19   America                           Cuba          0
## 8336  2020-02-19   America                       Dominica          0
## 8337  2020-02-19   America             Dominican Republic          0
## 8338  2020-02-19   America             Dominican Republic          0
## 8339  2020-02-19   America                        Ecuador          0
## 8340  2020-02-19   America                        Ecuador          0
## 8341  2020-02-19   America                    El Salvador          0
## 8342  2020-02-19   America                        Grenada          0
## 8343  2020-02-19   America                      Guatemala          0
## 8344  2020-02-19   America                         Guyana          0
## 8345  2020-02-19   America                          Haiti          0
## 8346  2020-02-19   America                       Honduras          0
## 8347  2020-02-19   America                        Jamaica          0
## 8348  2020-02-19   America                         Mexico          0
## 8349  2020-02-19   America                         Mexico          0
## 8350  2020-02-19   America                      Nicaragua          0
## 8351  2020-02-19   America                         Panama          0
## 8352  2020-02-19   America                       Paraguay          0
## 8353  2020-02-19   America                           Peru          0
## 8354  2020-02-19   America            St. Kitts and Nevis          0
## 8355  2020-02-19   America                      St. Lucia          0
## 8356  2020-02-19   America St. Vincent and the Grenadines          0
## 8357  2020-02-19   America                       Suriname          0
## 8358  2020-02-19   America            Trinidad and Tobago          0
## 8359  2020-02-19   America                  United States          0
## 8360  2020-02-19   America                  United States          0
## 8361  2020-02-19   America                        Uruguay          0
## 8362  2020-02-19   America                      Venezuela          0
## 8363  2020-02-19      Asia                    Afghanistan          0
## 8364  2020-02-19      Asia                    Afghanistan          0
## 8365  2020-02-19      Asia                        Bahrain          0
## 8366  2020-02-19      Asia                        Bahrain          0
## 8367  2020-02-19      Asia                     Bangladesh          0
## 8368  2020-02-19      Asia                         Bhutan          0
## 8369  2020-02-19      Asia              Brunei Darussalam          0
## 8370  2020-02-19      Asia                       Cambodia          0
## 8371  2020-02-19      Asia                       Cambodia          0
## 8372  2020-02-19      Asia                          China       1750
## 8373  2020-02-19      Asia                          India          0
## 8374  2020-02-19      Asia                          India          0
## 8375  2020-02-19      Asia                      Indonesia          0
## 8376  2020-02-19      Asia                      Indonesia          0
## 8377  2020-02-19      Asia                           Iran          0
## 8378  2020-02-19      Asia                           Iran          2
## 8379  2020-02-19      Asia                           Iraq          0
## 8380  2020-02-19      Asia                           Iraq          0
## 8381  2020-02-19      Asia                         Israel          0
## 8382  2020-02-19      Asia                         Israel          0
## 8383  2020-02-19      Asia                          Japan          7
## 8384  2020-02-19      Asia                          Japan         10
## 8385  2020-02-19      Asia                         Jordan          0
## 8386  2020-02-19      Asia                     Kazakhstan          0
## 8387  2020-02-19      Asia                         Kuwait          0
## 8388  2020-02-19      Asia                         Kuwait          0
## 8389  2020-02-19      Asia                Kyrgyz Republic          0
## 8390  2020-02-19      Asia                           Laos          0
## 8391  2020-02-19      Asia                        Lebanon          0
## 8392  2020-02-19      Asia                        Lebanon          0
## 8393  2020-02-19      Asia                       Malaysia          0
## 8394  2020-02-19      Asia                       Malaysia          0
## 8395  2020-02-19      Asia                       Maldives          0
## 8396  2020-02-19      Asia                       Mongolia          0
## 8397  2020-02-19      Asia                        Myanmar          0
## 8398  2020-02-19      Asia                          Nepal          0
## 8399  2020-02-19      Asia                          Nepal          0
## 8400  2020-02-19      Asia                           Oman          0
## 8401  2020-02-19      Asia                           Oman          0
## 8402  2020-02-19      Asia                       Pakistan          0
## 8403  2020-02-19      Asia                       Pakistan          0
## 8404  2020-02-19      Asia                      Palestine          0
## 8405  2020-02-19      Asia                    Philippines          0
## 8406  2020-02-19      Asia                    Philippines          0
## 8407  2020-02-19      Asia                          Qatar          0
## 8408  2020-02-19      Asia                          Qatar          0
## 8409  2020-02-19      Asia                   Saudi Arabia          0
## 8410  2020-02-19      Asia                      Singapore          3
## 8411  2020-02-19      Asia                      Singapore          4
## 8412  2020-02-19      Asia                    South Korea          0
## 8413  2020-02-19      Asia                    South Korea         15
## 8414  2020-02-19      Asia                      Sri Lanka          0
## 8415  2020-02-19      Asia                      Sri Lanka          0
## 8416  2020-02-19      Asia                          Syria          0
## 8417  2020-02-19      Asia                     Tajikistan          0
## 8418  2020-02-19      Asia                       Thailand          0
## 8419  2020-02-19      Asia                       Thailand          0
## 8420  2020-02-19      Asia                    Timor-Leste          0
## 8421  2020-02-19      Asia                         Turkey          0
## 8422  2020-02-19      Asia           United Arab Emirates          0
## 8423  2020-02-19      Asia           United Arab Emirates          0
## 8424  2020-02-19      Asia                     Uzbekistan          0
## 8425  2020-02-19      Asia                        Vietnam          0
## 8426  2020-02-19      Asia                        Vietnam          0
## 8427  2020-02-19      Asia                          Yemen          0
## 8428  2020-02-19      Asia                      not found          0
## 8429  2020-02-19    Europe                        Albania          0
## 8430  2020-02-19    Europe                        Andorra          0
## 8431  2020-02-19    Europe                        Armenia          0
## 8432  2020-02-19    Europe                        Armenia          0
## 8433  2020-02-19    Europe                        Austria          0
## 8434  2020-02-19    Europe                        Austria          0
## 8435  2020-02-19    Europe                     Azerbaijan          0
## 8436  2020-02-19    Europe                     Azerbaijan          0
## 8437  2020-02-19    Europe                        Belarus          0
## 8438  2020-02-19    Europe                        Belarus          0
## 8439  2020-02-19    Europe                        Belgium          0
## 8440  2020-02-19    Europe                        Belgium          0
## 8441  2020-02-19    Europe         Bosnia and Herzegovina          0
## 8442  2020-02-19    Europe                       Bulgaria          0
## 8443  2020-02-19    Europe                        Croatia          0
## 8444  2020-02-19    Europe                        Croatia          0
## 8445  2020-02-19    Europe                         Cyprus          0
## 8446  2020-02-19    Europe                 Czech Republic          0
## 8447  2020-02-19    Europe                 Czech Republic          0
## 8448  2020-02-19    Europe                        Denmark          0
## 8449  2020-02-19    Europe                        Denmark          0
## 8450  2020-02-19    Europe                        Estonia          0
## 8451  2020-02-19    Europe                        Estonia          0
## 8452  2020-02-19    Europe                        Finland          0
## 8453  2020-02-19    Europe                        Finland          0
## 8454  2020-02-19    Europe                         France          0
## 8455  2020-02-19    Europe                         France          0
## 8456  2020-02-19    Europe                        Georgia          0
## 8457  2020-02-19    Europe                        Georgia          0
## 8458  2020-02-19    Europe                        Germany          0
## 8459  2020-02-19    Europe                        Germany          0
## 8460  2020-02-19    Europe                         Greece          0
## 8461  2020-02-19    Europe                         Greece          0
## 8462  2020-02-19    Europe                        Hungary          0
## 8463  2020-02-19    Europe                        Iceland          0
## 8464  2020-02-19    Europe                        Iceland          0
## 8465  2020-02-19    Europe                        Ireland          0
## 8466  2020-02-19    Europe                        Ireland          0
## 8467  2020-02-19    Europe                          Italy          0
## 8468  2020-02-19    Europe                          Italy          0
## 8469  2020-02-19    Europe                         Kosovo          0
## 8470  2020-02-19    Europe                         Latvia          0
## 8471  2020-02-19    Europe                  Liechtenstein          0
## 8472  2020-02-19    Europe                      Lithuania          0
## 8473  2020-02-19    Europe                      Lithuania          0
## 8474  2020-02-19    Europe                     Luxembourg          0
## 8475  2020-02-19    Europe                     Luxembourg          0
## 8476  2020-02-19    Europe                      Macedonia          0
## 8477  2020-02-19    Europe                      Macedonia          0
## 8478  2020-02-19    Europe                          Malta          0
## 8479  2020-02-19    Europe                        Moldova          0
## 8480  2020-02-19    Europe                         Monaco          0
## 8481  2020-02-19    Europe                         Monaco          0
## 8482  2020-02-19    Europe                     Montenegro          0
## 8483  2020-02-19    Europe                    Netherlands          0
## 8484  2020-02-19    Europe                    Netherlands          0
## 8485  2020-02-19    Europe                         Norway          0
## 8486  2020-02-19    Europe                         Norway          0
## 8487  2020-02-19    Europe                         Poland          0
## 8488  2020-02-19    Europe                       Portugal          0
## 8489  2020-02-19    Europe                        Romania          0
## 8490  2020-02-19    Europe                        Romania          0
## 8491  2020-02-19    Europe                         Russia          0
## 8492  2020-02-19    Europe                         Russia          0
## 8493  2020-02-19    Europe                     San Marino          0
## 8494  2020-02-19    Europe                     San Marino          0
## 8495  2020-02-19    Europe                         Serbia          0
## 8496  2020-02-19    Europe                       Slovakia          0
## 8497  2020-02-19    Europe                       Slovenia          0
## 8498  2020-02-19    Europe                          Spain          0
## 8499  2020-02-19    Europe                          Spain          0
## 8500  2020-02-19    Europe                         Sweden          0
## 8501  2020-02-19    Europe                         Sweden          0
## 8502  2020-02-19    Europe                    Switzerland          0
## 8503  2020-02-19    Europe                    Switzerland          0
## 8504  2020-02-19    Europe                        Ukraine          0
## 8505  2020-02-19    Europe                 United Kingdom          0
## 8506  2020-02-19    Europe                 United Kingdom          0
## 8507  2020-02-19    Europe                        Vatican          0
## 8508  2020-02-19   Oceania                      Australia          0
## 8509  2020-02-19   Oceania                           Fiji          0
## 8510  2020-02-19   Oceania                    New Zealand          0
## 8511  2020-02-19   Oceania                    New Zealand          0
## 8512  2020-02-19   Oceania               Papua New Guinea          0
## 8513  2020-02-19     Other                      not found         88
## 8514  2020-02-20    Africa                        Algeria          0
## 8515  2020-02-20    Africa                        Algeria          0
## 8516  2020-02-20    Africa                         Angola          0
## 8517  2020-02-20    Africa                          Benin          0
## 8518  2020-02-20    Africa                       Botswana          0
## 8519  2020-02-20    Africa                   Burkina Faso          0
## 8520  2020-02-20    Africa                        Burundi          0
## 8521  2020-02-20    Africa                     Cabo Verde          0
## 8522  2020-02-20    Africa                       Cameroon          0
## 8523  2020-02-20    Africa       Central African Republic          0
## 8524  2020-02-20    Africa                           Chad          0
## 8525  2020-02-20    Africa                        Comoros          0
## 8526  2020-02-20    Africa                 Congo Republic          0
## 8527  2020-02-20    Africa                  Cote d'Ivoire          0
## 8528  2020-02-20    Africa                       DR Congo          0
## 8529  2020-02-20    Africa                       Djibouti          0
## 8530  2020-02-20    Africa                          Egypt          0
## 8531  2020-02-20    Africa                          Egypt          0
## 8532  2020-02-20    Africa              Equatorial Guinea          0
## 8533  2020-02-20    Africa                        Eritrea          0
## 8534  2020-02-20    Africa                       Eswatini          0
## 8535  2020-02-20    Africa                       Ethiopia          0
## 8536  2020-02-20    Africa                          Gabon          0
## 8537  2020-02-20    Africa                         Gambia          0
## 8538  2020-02-20    Africa                          Ghana          0
## 8539  2020-02-20    Africa                         Guinea          0
## 8540  2020-02-20    Africa                  Guinea-Bissau          0
## 8541  2020-02-20    Africa                          Kenya          0
## 8542  2020-02-20    Africa                        Lesotho          0
## 8543  2020-02-20    Africa                        Liberia          0
## 8544  2020-02-20    Africa                          Libya          0
## 8545  2020-02-20    Africa                     Madagascar          0
## 8546  2020-02-20    Africa                         Malawi          0
## 8547  2020-02-20    Africa                           Mali          0
## 8548  2020-02-20    Africa                     Mauritania          0
## 8549  2020-02-20    Africa                      Mauritius          0
## 8550  2020-02-20    Africa                        Morocco          0
## 8551  2020-02-20    Africa                     Mozambique          0
## 8552  2020-02-20    Africa                        Namibia          0
## 8553  2020-02-20    Africa                          Niger          0
## 8554  2020-02-20    Africa                        Nigeria          0
## 8555  2020-02-20    Africa                        Nigeria          0
## 8556  2020-02-20    Africa                         Rwanda          0
## 8557  2020-02-20    Africa          Sao Tome and Principe          0
## 8558  2020-02-20    Africa                        Senegal          0
## 8559  2020-02-20    Africa                     Seychelles          0
## 8560  2020-02-20    Africa                   Sierra Leone          0
## 8561  2020-02-20    Africa                        Somalia          0
## 8562  2020-02-20    Africa                   South Africa          0
## 8563  2020-02-20    Africa                    South Sudan          0
## 8564  2020-02-20    Africa                          Sudan          0
## 8565  2020-02-20    Africa                       Tanzania          0
## 8566  2020-02-20    Africa                           Togo          0
## 8567  2020-02-20    Africa                        Tunisia          0
## 8568  2020-02-20    Africa                         Uganda          0
## 8569  2020-02-20    Africa                 Western Sahara          0
## 8570  2020-02-20    Africa                         Zambia          0
## 8571  2020-02-20    Africa                       Zimbabwe          0
## 8572  2020-02-20   America            Antigua and Barbuda          0
## 8573  2020-02-20   America                      Argentina          0
## 8574  2020-02-20   America                        Bahamas          0
## 8575  2020-02-20   America                       Barbados          0
## 8576  2020-02-20   America                         Belize          0
## 8577  2020-02-20   America                        Bolivia          0
## 8578  2020-02-20   America                         Brazil          0
## 8579  2020-02-20   America                         Brazil          0
## 8580  2020-02-20   America                         Canada          0
## 8581  2020-02-20   America                          Chile          0
## 8582  2020-02-20   America                       Colombia          0
## 8583  2020-02-20   America                     Costa Rica          0
## 8584  2020-02-20   America                           Cuba          0
## 8585  2020-02-20   America                       Dominica          0
## 8586  2020-02-20   America             Dominican Republic          0
## 8587  2020-02-20   America             Dominican Republic          0
## 8588  2020-02-20   America                        Ecuador          0
## 8589  2020-02-20   America                        Ecuador          0
## 8590  2020-02-20   America                    El Salvador          0
## 8591  2020-02-20   America                        Grenada          0
## 8592  2020-02-20   America                      Guatemala          0
## 8593  2020-02-20   America                         Guyana          0
## 8594  2020-02-20   America                          Haiti          0
## 8595  2020-02-20   America                       Honduras          0
## 8596  2020-02-20   America                        Jamaica          0
## 8597  2020-02-20   America                         Mexico          0
## 8598  2020-02-20   America                         Mexico          0
## 8599  2020-02-20   America                      Nicaragua          0
## 8600  2020-02-20   America                         Panama          0
## 8601  2020-02-20   America                       Paraguay          0
## 8602  2020-02-20   America                           Peru          0
## 8603  2020-02-20   America            St. Kitts and Nevis          0
## 8604  2020-02-20   America                      St. Lucia          0
## 8605  2020-02-20   America St. Vincent and the Grenadines          0
## 8606  2020-02-20   America                       Suriname          0
## 8607  2020-02-20   America            Trinidad and Tobago          0
## 8608  2020-02-20   America                  United States          0
## 8609  2020-02-20   America                  United States          0
## 8610  2020-02-20   America                        Uruguay          0
## 8611  2020-02-20   America                      Venezuela          0
## 8612  2020-02-20      Asia                    Afghanistan          0
## 8613  2020-02-20      Asia                    Afghanistan          0
## 8614  2020-02-20      Asia                        Bahrain          0
## 8615  2020-02-20      Asia                        Bahrain          0
## 8616  2020-02-20      Asia                     Bangladesh          0
## 8617  2020-02-20      Asia                         Bhutan          0
## 8618  2020-02-20      Asia              Brunei Darussalam          0
## 8619  2020-02-20      Asia                       Cambodia          0
## 8620  2020-02-20      Asia                       Cambodia          0
## 8621  2020-02-20      Asia                          China        394
## 8622  2020-02-20      Asia                          India          0
## 8623  2020-02-20      Asia                          India          0
## 8624  2020-02-20      Asia                      Indonesia          0
## 8625  2020-02-20      Asia                      Indonesia          0
## 8626  2020-02-20      Asia                           Iran          2
## 8627  2020-02-20      Asia                           Iran          3
## 8628  2020-02-20      Asia                           Iraq          0
## 8629  2020-02-20      Asia                           Iraq          0
## 8630  2020-02-20      Asia                         Israel          0
## 8631  2020-02-20      Asia                         Israel          0
## 8632  2020-02-20      Asia                          Japan         10
## 8633  2020-02-20      Asia                          Japan         18
## 8634  2020-02-20      Asia                         Jordan          0
## 8635  2020-02-20      Asia                     Kazakhstan          0
## 8636  2020-02-20      Asia                         Kuwait          0
## 8637  2020-02-20      Asia                         Kuwait          0
## 8638  2020-02-20      Asia                Kyrgyz Republic          0
## 8639  2020-02-20      Asia                           Laos          0
## 8640  2020-02-20      Asia                        Lebanon          0
## 8641  2020-02-20      Asia                        Lebanon          0
## 8642  2020-02-20      Asia                       Malaysia          0
## 8643  2020-02-20      Asia                       Malaysia          0
## 8644  2020-02-20      Asia                       Maldives          0
## 8645  2020-02-20      Asia                       Mongolia          0
## 8646  2020-02-20      Asia                        Myanmar          0
## 8647  2020-02-20      Asia                          Nepal          0
## 8648  2020-02-20      Asia                          Nepal          0
## 8649  2020-02-20      Asia                           Oman          0
## 8650  2020-02-20      Asia                           Oman          0
## 8651  2020-02-20      Asia                       Pakistan          0
## 8652  2020-02-20      Asia                       Pakistan          0
## 8653  2020-02-20      Asia                      Palestine          0
## 8654  2020-02-20      Asia                    Philippines          0
## 8655  2020-02-20      Asia                    Philippines          0
## 8656  2020-02-20      Asia                          Qatar          0
## 8657  2020-02-20      Asia                          Qatar          0
## 8658  2020-02-20      Asia                   Saudi Arabia          0
## 8659  2020-02-20      Asia                      Singapore          0
## 8660  2020-02-20      Asia                      Singapore          3
## 8661  2020-02-20      Asia                    South Korea         34
## 8662  2020-02-20      Asia                    South Korea         73
## 8663  2020-02-20      Asia                      Sri Lanka          0
## 8664  2020-02-20      Asia                      Sri Lanka          0
## 8665  2020-02-20      Asia                          Syria          0
## 8666  2020-02-20      Asia                     Tajikistan          0
## 8667  2020-02-20      Asia                       Thailand          0
## 8668  2020-02-20      Asia                       Thailand          0
## 8669  2020-02-20      Asia                    Timor-Leste          0
## 8670  2020-02-20      Asia                         Turkey          0
## 8671  2020-02-20      Asia           United Arab Emirates          0
## 8672  2020-02-20      Asia           United Arab Emirates          0
## 8673  2020-02-20      Asia                     Uzbekistan          0
## 8674  2020-02-20      Asia                        Vietnam          0
## 8675  2020-02-20      Asia                        Vietnam          0
## 8676  2020-02-20      Asia                          Yemen          0
## 8677  2020-02-20      Asia                      not found          2
## 8678  2020-02-20    Europe                        Albania          0
## 8679  2020-02-20    Europe                        Andorra          0
## 8680  2020-02-20    Europe                        Armenia          0
## 8681  2020-02-20    Europe                        Armenia          0
## 8682  2020-02-20    Europe                        Austria          0
## 8683  2020-02-20    Europe                        Austria          0
## 8684  2020-02-20    Europe                     Azerbaijan          0
## 8685  2020-02-20    Europe                     Azerbaijan          0
## 8686  2020-02-20    Europe                        Belarus          0
## 8687  2020-02-20    Europe                        Belarus          0
## 8688  2020-02-20    Europe                        Belgium          0
## 8689  2020-02-20    Europe                        Belgium          0
## 8690  2020-02-20    Europe         Bosnia and Herzegovina          0
## 8691  2020-02-20    Europe                       Bulgaria          0
## 8692  2020-02-20    Europe                        Croatia          0
## 8693  2020-02-20    Europe                        Croatia          0
## 8694  2020-02-20    Europe                         Cyprus          0
## 8695  2020-02-20    Europe                 Czech Republic          0
## 8696  2020-02-20    Europe                 Czech Republic          0
## 8697  2020-02-20    Europe                        Denmark          0
## 8698  2020-02-20    Europe                        Denmark          0
## 8699  2020-02-20    Europe                        Estonia          0
## 8700  2020-02-20    Europe                        Estonia          0
## 8701  2020-02-20    Europe                        Finland          0
## 8702  2020-02-20    Europe                        Finland          0
## 8703  2020-02-20    Europe                         France          0
## 8704  2020-02-20    Europe                         France          0
## 8705  2020-02-20    Europe                        Georgia          0
## 8706  2020-02-20    Europe                        Georgia          0
## 8707  2020-02-20    Europe                        Germany          0
## 8708  2020-02-20    Europe                        Germany          0
## 8709  2020-02-20    Europe                         Greece          0
## 8710  2020-02-20    Europe                         Greece          0
## 8711  2020-02-20    Europe                        Hungary          0
## 8712  2020-02-20    Europe                        Iceland          0
## 8713  2020-02-20    Europe                        Iceland          0
## 8714  2020-02-20    Europe                        Ireland          0
## 8715  2020-02-20    Europe                        Ireland          0
## 8716  2020-02-20    Europe                          Italy          0
## 8717  2020-02-20    Europe                          Italy          0
## 8718  2020-02-20    Europe                         Kosovo          0
## 8719  2020-02-20    Europe                         Latvia          0
## 8720  2020-02-20    Europe                  Liechtenstein          0
## 8721  2020-02-20    Europe                      Lithuania          0
## 8722  2020-02-20    Europe                      Lithuania          0
## 8723  2020-02-20    Europe                     Luxembourg          0
## 8724  2020-02-20    Europe                     Luxembourg          0
## 8725  2020-02-20    Europe                      Macedonia          0
## 8726  2020-02-20    Europe                      Macedonia          0
## 8727  2020-02-20    Europe                          Malta          0
## 8728  2020-02-20    Europe                        Moldova          0
## 8729  2020-02-20    Europe                         Monaco          0
## 8730  2020-02-20    Europe                         Monaco          0
## 8731  2020-02-20    Europe                     Montenegro          0
## 8732  2020-02-20    Europe                    Netherlands          0
## 8733  2020-02-20    Europe                    Netherlands          0
## 8734  2020-02-20    Europe                         Norway          0
## 8735  2020-02-20    Europe                         Norway          0
## 8736  2020-02-20    Europe                         Poland          0
## 8737  2020-02-20    Europe                       Portugal          0
## 8738  2020-02-20    Europe                        Romania          0
## 8739  2020-02-20    Europe                        Romania          0
## 8740  2020-02-20    Europe                         Russia          0
## 8741  2020-02-20    Europe                         Russia          0
## 8742  2020-02-20    Europe                     San Marino          0
## 8743  2020-02-20    Europe                     San Marino          0
## 8744  2020-02-20    Europe                         Serbia          0
## 8745  2020-02-20    Europe                       Slovakia          0
## 8746  2020-02-20    Europe                       Slovenia          0
## 8747  2020-02-20    Europe                          Spain          0
## 8748  2020-02-20    Europe                          Spain          0
## 8749  2020-02-20    Europe                         Sweden          0
## 8750  2020-02-20    Europe                         Sweden          0
## 8751  2020-02-20    Europe                    Switzerland          0
## 8752  2020-02-20    Europe                    Switzerland          0
## 8753  2020-02-20    Europe                        Ukraine          0
## 8754  2020-02-20    Europe                 United Kingdom          0
## 8755  2020-02-20    Europe                 United Kingdom          0
## 8756  2020-02-20    Europe                        Vatican          0
## 8757  2020-02-20   Oceania                      Australia          0
## 8758  2020-02-20   Oceania                           Fiji          0
## 8759  2020-02-20   Oceania                    New Zealand          0
## 8760  2020-02-20   Oceania                    New Zealand          0
## 8761  2020-02-20   Oceania               Papua New Guinea          0
## 8762  2020-02-20     Other                      not found         79
## 8763  2020-02-21    Africa                        Algeria          0
## 8764  2020-02-21    Africa                        Algeria          0
## 8765  2020-02-21    Africa                         Angola          0
## 8766  2020-02-21    Africa                          Benin          0
## 8767  2020-02-21    Africa                       Botswana          0
## 8768  2020-02-21    Africa                   Burkina Faso          0
## 8769  2020-02-21    Africa                        Burundi          0
## 8770  2020-02-21    Africa                     Cabo Verde          0
## 8771  2020-02-21    Africa                       Cameroon          0
## 8772  2020-02-21    Africa       Central African Republic          0
## 8773  2020-02-21    Africa                           Chad          0
## 8774  2020-02-21    Africa                        Comoros          0
## 8775  2020-02-21    Africa                 Congo Republic          0
## 8776  2020-02-21    Africa                  Cote d'Ivoire          0
## 8777  2020-02-21    Africa                       DR Congo          0
## 8778  2020-02-21    Africa                       Djibouti          0
## 8779  2020-02-21    Africa                          Egypt          0
## 8780  2020-02-21    Africa                          Egypt          0
## 8781  2020-02-21    Africa              Equatorial Guinea          0
## 8782  2020-02-21    Africa                        Eritrea          0
## 8783  2020-02-21    Africa                       Eswatini          0
## 8784  2020-02-21    Africa                       Ethiopia          0
## 8785  2020-02-21    Africa                          Gabon          0
## 8786  2020-02-21    Africa                         Gambia          0
## 8787  2020-02-21    Africa                          Ghana          0
## 8788  2020-02-21    Africa                         Guinea          0
## 8789  2020-02-21    Africa                  Guinea-Bissau          0
## 8790  2020-02-21    Africa                          Kenya          0
## 8791  2020-02-21    Africa                        Lesotho          0
## 8792  2020-02-21    Africa                        Liberia          0
## 8793  2020-02-21    Africa                          Libya          0
## 8794  2020-02-21    Africa                     Madagascar          0
## 8795  2020-02-21    Africa                         Malawi          0
## 8796  2020-02-21    Africa                           Mali          0
## 8797  2020-02-21    Africa                     Mauritania          0
## 8798  2020-02-21    Africa                      Mauritius          0
## 8799  2020-02-21    Africa                        Morocco          0
## 8800  2020-02-21    Africa                     Mozambique          0
## 8801  2020-02-21    Africa                        Namibia          0
## 8802  2020-02-21    Africa                          Niger          0
## 8803  2020-02-21    Africa                        Nigeria          0
## 8804  2020-02-21    Africa                        Nigeria          0
## 8805  2020-02-21    Africa                         Rwanda          0
## 8806  2020-02-21    Africa          Sao Tome and Principe          0
## 8807  2020-02-21    Africa                        Senegal          0
## 8808  2020-02-21    Africa                     Seychelles          0
## 8809  2020-02-21    Africa                   Sierra Leone          0
## 8810  2020-02-21    Africa                        Somalia          0
## 8811  2020-02-21    Africa                   South Africa          0
## 8812  2020-02-21    Africa                    South Sudan          0
## 8813  2020-02-21    Africa                          Sudan          0
## 8814  2020-02-21    Africa                       Tanzania          0
## 8815  2020-02-21    Africa                           Togo          0
## 8816  2020-02-21    Africa                        Tunisia          0
## 8817  2020-02-21    Africa                         Uganda          0
## 8818  2020-02-21    Africa                 Western Sahara          0
## 8819  2020-02-21    Africa                         Zambia          0
## 8820  2020-02-21    Africa                       Zimbabwe          0
## 8821  2020-02-21   America            Antigua and Barbuda          0
## 8822  2020-02-21   America                      Argentina          0
## 8823  2020-02-21   America                        Bahamas          0
## 8824  2020-02-21   America                       Barbados          0
## 8825  2020-02-21   America                         Belize          0
## 8826  2020-02-21   America                        Bolivia          0
## 8827  2020-02-21   America                         Brazil          0
## 8828  2020-02-21   America                         Brazil          0
## 8829  2020-02-21   America                         Canada          1
## 8830  2020-02-21   America                          Chile          0
## 8831  2020-02-21   America                       Colombia          0
## 8832  2020-02-21   America                     Costa Rica          0
## 8833  2020-02-21   America                           Cuba          0
## 8834  2020-02-21   America                       Dominica          0
## 8835  2020-02-21   America             Dominican Republic          0
## 8836  2020-02-21   America             Dominican Republic          0
## 8837  2020-02-21   America                        Ecuador          0
## 8838  2020-02-21   America                        Ecuador          0
## 8839  2020-02-21   America                    El Salvador          0
## 8840  2020-02-21   America                        Grenada          0
## 8841  2020-02-21   America                      Guatemala          0
## 8842  2020-02-21   America                         Guyana          0
## 8843  2020-02-21   America                          Haiti          0
## 8844  2020-02-21   America                       Honduras          0
## 8845  2020-02-21   America                        Jamaica          0
## 8846  2020-02-21   America                         Mexico          0
## 8847  2020-02-21   America                         Mexico          0
## 8848  2020-02-21   America                      Nicaragua          0
## 8849  2020-02-21   America                         Panama          0
## 8850  2020-02-21   America                       Paraguay          0
## 8851  2020-02-21   America                           Peru          0
## 8852  2020-02-21   America            St. Kitts and Nevis          0
## 8853  2020-02-21   America                      St. Lucia          0
## 8854  2020-02-21   America St. Vincent and the Grenadines          0
## 8855  2020-02-21   America                       Suriname          0
## 8856  2020-02-21   America            Trinidad and Tobago          0
## 8857  2020-02-21   America                  United States          1
## 8858  2020-02-21   America                  United States          2
## 8859  2020-02-21   America                        Uruguay          0
## 8860  2020-02-21   America                      Venezuela          0
## 8861  2020-02-21      Asia                    Afghanistan          0
## 8862  2020-02-21      Asia                    Afghanistan          0
## 8863  2020-02-21      Asia                        Bahrain          0
## 8864  2020-02-21      Asia                        Bahrain          0
## 8865  2020-02-21      Asia                     Bangladesh          0
## 8866  2020-02-21      Asia                         Bhutan          0
## 8867  2020-02-21      Asia              Brunei Darussalam          0
## 8868  2020-02-21      Asia                       Cambodia          0
## 8869  2020-02-21      Asia                       Cambodia          0
## 8870  2020-02-21      Asia                          China        891
## 8871  2020-02-21      Asia                          India          0
## 8872  2020-02-21      Asia                          India          0
## 8873  2020-02-21      Asia                      Indonesia          0
## 8874  2020-02-21      Asia                      Indonesia          0
## 8875  2020-02-21      Asia                           Iran          3
## 8876  2020-02-21      Asia                           Iran         13
## 8877  2020-02-21      Asia                           Iraq          0
## 8878  2020-02-21      Asia                           Iraq          0
## 8879  2020-02-21      Asia                         Israel          0
## 8880  2020-02-21      Asia                         Israel          1
## 8881  2020-02-21      Asia                          Japan          9
## 8882  2020-02-21      Asia                          Japan         11
## 8883  2020-02-21      Asia                         Jordan          0
## 8884  2020-02-21      Asia                     Kazakhstan          0
## 8885  2020-02-21      Asia                         Kuwait          0
## 8886  2020-02-21      Asia                         Kuwait          0
## 8887  2020-02-21      Asia                Kyrgyz Republic          0
## 8888  2020-02-21      Asia                           Laos          0
## 8889  2020-02-21      Asia                        Lebanon          0
## 8890  2020-02-21      Asia                        Lebanon          1
## 8891  2020-02-21      Asia                       Malaysia          0
## 8892  2020-02-21      Asia                       Malaysia          0
## 8893  2020-02-21      Asia                       Maldives          0
## 8894  2020-02-21      Asia                       Mongolia          0
## 8895  2020-02-21      Asia                        Myanmar          0
## 8896  2020-02-21      Asia                          Nepal          0
## 8897  2020-02-21      Asia                          Nepal          0
## 8898  2020-02-21      Asia                           Oman          0
## 8899  2020-02-21      Asia                           Oman          0
## 8900  2020-02-21      Asia                       Pakistan          0
## 8901  2020-02-21      Asia                       Pakistan          0
## 8902  2020-02-21      Asia                      Palestine          0
## 8903  2020-02-21      Asia                    Philippines          0
## 8904  2020-02-21      Asia                    Philippines          0
## 8905  2020-02-21      Asia                          Qatar          0
## 8906  2020-02-21      Asia                          Qatar          0
## 8907  2020-02-21      Asia                   Saudi Arabia          0
## 8908  2020-02-21      Asia                      Singapore          1
## 8909  2020-02-21      Asia                      Singapore          1
## 8910  2020-02-21      Asia                    South Korea         75
## 8911  2020-02-21      Asia                    South Korea        100
## 8912  2020-02-21      Asia                      Sri Lanka          0
## 8913  2020-02-21      Asia                      Sri Lanka          0
## 8914  2020-02-21      Asia                          Syria          0
## 8915  2020-02-21      Asia                     Tajikistan          0
## 8916  2020-02-21      Asia                       Thailand          0
## 8917  2020-02-21      Asia                       Thailand          0
## 8918  2020-02-21      Asia                    Timor-Leste          0
## 8919  2020-02-21      Asia                         Turkey          0
## 8920  2020-02-21      Asia           United Arab Emirates          0
## 8921  2020-02-21      Asia           United Arab Emirates          0
## 8922  2020-02-21      Asia                     Uzbekistan          0
## 8923  2020-02-21      Asia                        Vietnam          0
## 8924  2020-02-21      Asia                        Vietnam          0
## 8925  2020-02-21      Asia                          Yemen          0
## 8926  2020-02-21      Asia                      not found          0
## 8927  2020-02-21    Europe                        Albania          0
## 8928  2020-02-21    Europe                        Andorra          0
## 8929  2020-02-21    Europe                        Armenia          0
## 8930  2020-02-21    Europe                        Armenia          0
## 8931  2020-02-21    Europe                        Austria          0
## 8932  2020-02-21    Europe                        Austria          0
## 8933  2020-02-21    Europe                     Azerbaijan          0
## 8934  2020-02-21    Europe                     Azerbaijan          0
## 8935  2020-02-21    Europe                        Belarus          0
## 8936  2020-02-21    Europe                        Belarus          0
## 8937  2020-02-21    Europe                        Belgium          0
## 8938  2020-02-21    Europe                        Belgium          0
## 8939  2020-02-21    Europe         Bosnia and Herzegovina          0
## 8940  2020-02-21    Europe                       Bulgaria          0
## 8941  2020-02-21    Europe                        Croatia          0
## 8942  2020-02-21    Europe                        Croatia          0
## 8943  2020-02-21    Europe                         Cyprus          0
## 8944  2020-02-21    Europe                 Czech Republic          0
## 8945  2020-02-21    Europe                 Czech Republic          0
## 8946  2020-02-21    Europe                        Denmark          0
## 8947  2020-02-21    Europe                        Denmark          0
## 8948  2020-02-21    Europe                        Estonia          0
## 8949  2020-02-21    Europe                        Estonia          0
## 8950  2020-02-21    Europe                        Finland          0
## 8951  2020-02-21    Europe                        Finland          0
## 8952  2020-02-21    Europe                         France          0
## 8953  2020-02-21    Europe                         France          0
## 8954  2020-02-21    Europe                        Georgia          0
## 8955  2020-02-21    Europe                        Georgia          0
## 8956  2020-02-21    Europe                        Germany          0
## 8957  2020-02-21    Europe                        Germany          0
## 8958  2020-02-21    Europe                         Greece          0
## 8959  2020-02-21    Europe                         Greece          0
## 8960  2020-02-21    Europe                        Hungary          0
## 8961  2020-02-21    Europe                        Iceland          0
## 8962  2020-02-21    Europe                        Iceland          0
## 8963  2020-02-21    Europe                        Ireland          0
## 8964  2020-02-21    Europe                        Ireland          0
## 8965  2020-02-21    Europe                          Italy          0
## 8966  2020-02-21    Europe                          Italy         17
## 8967  2020-02-21    Europe                         Kosovo          0
## 8968  2020-02-21    Europe                         Latvia          0
## 8969  2020-02-21    Europe                  Liechtenstein          0
## 8970  2020-02-21    Europe                      Lithuania          0
## 8971  2020-02-21    Europe                      Lithuania          0
## 8972  2020-02-21    Europe                     Luxembourg          0
## 8973  2020-02-21    Europe                     Luxembourg          0
## 8974  2020-02-21    Europe                      Macedonia          0
## 8975  2020-02-21    Europe                      Macedonia          0
## 8976  2020-02-21    Europe                          Malta          0
## 8977  2020-02-21    Europe                        Moldova          0
## 8978  2020-02-21    Europe                         Monaco          0
## 8979  2020-02-21    Europe                         Monaco          0
## 8980  2020-02-21    Europe                     Montenegro          0
## 8981  2020-02-21    Europe                    Netherlands          0
## 8982  2020-02-21    Europe                    Netherlands          0
## 8983  2020-02-21    Europe                         Norway          0
## 8984  2020-02-21    Europe                         Norway          0
## 8985  2020-02-21    Europe                         Poland          0
## 8986  2020-02-21    Europe                       Portugal          0
## 8987  2020-02-21    Europe                        Romania          0
## 8988  2020-02-21    Europe                        Romania          0
## 8989  2020-02-21    Europe                         Russia          0
## 8990  2020-02-21    Europe                         Russia          0
## 8991  2020-02-21    Europe                     San Marino          0
## 8992  2020-02-21    Europe                     San Marino          0
## 8993  2020-02-21    Europe                         Serbia          0
## 8994  2020-02-21    Europe                       Slovakia          0
## 8995  2020-02-21    Europe                       Slovenia          0
## 8996  2020-02-21    Europe                          Spain          0
## 8997  2020-02-21    Europe                          Spain          0
## 8998  2020-02-21    Europe                         Sweden          0
## 8999  2020-02-21    Europe                         Sweden          0
## 9000  2020-02-21    Europe                    Switzerland          0
## 9001  2020-02-21    Europe                    Switzerland          0
## 9002  2020-02-21    Europe                        Ukraine          0
## 9003  2020-02-21    Europe                 United Kingdom          0
## 9004  2020-02-21    Europe                 United Kingdom          0
## 9005  2020-02-21    Europe                        Vatican          0
## 9006  2020-02-21   Oceania                      Australia          2
## 9007  2020-02-21   Oceania                           Fiji          0
## 9008  2020-02-21   Oceania                    New Zealand          0
## 9009  2020-02-21   Oceania                    New Zealand          0
## 9010  2020-02-21   Oceania               Papua New Guinea          0
## 9011  2020-02-21     Other                      not found         13
## 9012  2020-02-22    Africa                        Algeria          0
## 9013  2020-02-22    Africa                        Algeria          0
## 9014  2020-02-22    Africa                         Angola          0
## 9015  2020-02-22    Africa                          Benin          0
## 9016  2020-02-22    Africa                       Botswana          0
## 9017  2020-02-22    Africa                   Burkina Faso          0
## 9018  2020-02-22    Africa                        Burundi          0
## 9019  2020-02-22    Africa                     Cabo Verde          0
## 9020  2020-02-22    Africa                       Cameroon          0
## 9021  2020-02-22    Africa       Central African Republic          0
## 9022  2020-02-22    Africa                           Chad          0
## 9023  2020-02-22    Africa                        Comoros          0
## 9024  2020-02-22    Africa                 Congo Republic          0
## 9025  2020-02-22    Africa                  Cote d'Ivoire          0
## 9026  2020-02-22    Africa                       DR Congo          0
## 9027  2020-02-22    Africa                       Djibouti          0
## 9028  2020-02-22    Africa                          Egypt          0
## 9029  2020-02-22    Africa                          Egypt          0
## 9030  2020-02-22    Africa              Equatorial Guinea          0
## 9031  2020-02-22    Africa                        Eritrea          0
## 9032  2020-02-22    Africa                       Eswatini          0
## 9033  2020-02-22    Africa                       Ethiopia          0
## 9034  2020-02-22    Africa                          Gabon          0
## 9035  2020-02-22    Africa                         Gambia          0
## 9036  2020-02-22    Africa                          Ghana          0
## 9037  2020-02-22    Africa                         Guinea          0
## 9038  2020-02-22    Africa                  Guinea-Bissau          0
## 9039  2020-02-22    Africa                          Kenya          0
## 9040  2020-02-22    Africa                        Lesotho          0
## 9041  2020-02-22    Africa                        Liberia          0
## 9042  2020-02-22    Africa                          Libya          0
## 9043  2020-02-22    Africa                     Madagascar          0
## 9044  2020-02-22    Africa                         Malawi          0
## 9045  2020-02-22    Africa                           Mali          0
## 9046  2020-02-22    Africa                     Mauritania          0
## 9047  2020-02-22    Africa                      Mauritius          0
## 9048  2020-02-22    Africa                        Morocco          0
## 9049  2020-02-22    Africa                     Mozambique          0
## 9050  2020-02-22    Africa                        Namibia          0
## 9051  2020-02-22    Africa                          Niger          0
## 9052  2020-02-22    Africa                        Nigeria          0
## 9053  2020-02-22    Africa                        Nigeria          0
## 9054  2020-02-22    Africa                         Rwanda          0
## 9055  2020-02-22    Africa          Sao Tome and Principe          0
## 9056  2020-02-22    Africa                        Senegal          0
## 9057  2020-02-22    Africa                     Seychelles          0
## 9058  2020-02-22    Africa                   Sierra Leone          0
## 9059  2020-02-22    Africa                        Somalia          0
## 9060  2020-02-22    Africa                   South Africa          0
## 9061  2020-02-22    Africa                    South Sudan          0
## 9062  2020-02-22    Africa                          Sudan          0
## 9063  2020-02-22    Africa                       Tanzania          0
## 9064  2020-02-22    Africa                           Togo          0
## 9065  2020-02-22    Africa                        Tunisia          0
## 9066  2020-02-22    Africa                         Uganda          0
## 9067  2020-02-22    Africa                 Western Sahara          0
## 9068  2020-02-22    Africa                         Zambia          0
## 9069  2020-02-22    Africa                       Zimbabwe          0
## 9070  2020-02-22   America            Antigua and Barbuda          0
## 9071  2020-02-22   America                      Argentina          0
## 9072  2020-02-22   America                        Bahamas          0
## 9073  2020-02-22   America                       Barbados          0
## 9074  2020-02-22   America                         Belize          0
## 9075  2020-02-22   America                        Bolivia          0
## 9076  2020-02-22   America                         Brazil          0
## 9077  2020-02-22   America                         Brazil          0
## 9078  2020-02-22   America                         Canada          0
## 9079  2020-02-22   America                          Chile          0
## 9080  2020-02-22   America                       Colombia          0
## 9081  2020-02-22   America                     Costa Rica          0
## 9082  2020-02-22   America                           Cuba          0
## 9083  2020-02-22   America                       Dominica          0
## 9084  2020-02-22   America             Dominican Republic          0
## 9085  2020-02-22   America             Dominican Republic          0
## 9086  2020-02-22   America                        Ecuador          0
## 9087  2020-02-22   America                        Ecuador          0
## 9088  2020-02-22   America                    El Salvador          0
## 9089  2020-02-22   America                        Grenada          0
## 9090  2020-02-22   America                      Guatemala          0
## 9091  2020-02-22   America                         Guyana          0
## 9092  2020-02-22   America                          Haiti          0
## 9093  2020-02-22   America                       Honduras          0
## 9094  2020-02-22   America                        Jamaica          0
## 9095  2020-02-22   America                         Mexico          0
## 9096  2020-02-22   America                         Mexico          0
## 9097  2020-02-22   America                      Nicaragua          0
## 9098  2020-02-22   America                         Panama          0
## 9099  2020-02-22   America                       Paraguay          0
## 9100  2020-02-22   America                           Peru          0
## 9101  2020-02-22   America            St. Kitts and Nevis          0
## 9102  2020-02-22   America                      St. Lucia          0
## 9103  2020-02-22   America St. Vincent and the Grenadines          0
## 9104  2020-02-22   America                       Suriname          0
## 9105  2020-02-22   America            Trinidad and Tobago          0
## 9106  2020-02-22   America                  United States          0
## 9107  2020-02-22   America                  United States         19
## 9108  2020-02-22   America                        Uruguay          0
## 9109  2020-02-22   America                      Venezuela          0
## 9110  2020-02-22      Asia                    Afghanistan          0
## 9111  2020-02-22      Asia                    Afghanistan          0
## 9112  2020-02-22      Asia                        Bahrain          0
## 9113  2020-02-22      Asia                        Bahrain          0
## 9114  2020-02-22      Asia                     Bangladesh          0
## 9115  2020-02-22      Asia                         Bhutan          0
## 9116  2020-02-22      Asia              Brunei Darussalam          0
## 9117  2020-02-22      Asia                       Cambodia          0
## 9118  2020-02-22      Asia                       Cambodia          0
## 9119  2020-02-22      Asia                          China        826
## 9120  2020-02-22      Asia                          India          0
## 9121  2020-02-22      Asia                          India          0
## 9122  2020-02-22      Asia                      Indonesia          0
## 9123  2020-02-22      Asia                      Indonesia          0
## 9124  2020-02-22      Asia                           Iran         10
## 9125  2020-02-22      Asia                           Iran         13
## 9126  2020-02-22      Asia                           Iraq          0
## 9127  2020-02-22      Asia                           Iraq          0
## 9128  2020-02-22      Asia                         Israel          0
## 9129  2020-02-22      Asia                         Israel          1
## 9130  2020-02-22      Asia                          Japan         12
## 9131  2020-02-22      Asia                          Japan         17
## 9132  2020-02-22      Asia                         Jordan          0
## 9133  2020-02-22      Asia                     Kazakhstan          0
## 9134  2020-02-22      Asia                         Kuwait          0
## 9135  2020-02-22      Asia                         Kuwait          0
## 9136  2020-02-22      Asia                Kyrgyz Republic          0
## 9137  2020-02-22      Asia                           Laos          0
## 9138  2020-02-22      Asia                        Lebanon          0
## 9139  2020-02-22      Asia                        Lebanon          1
## 9140  2020-02-22      Asia                       Malaysia          0
## 9141  2020-02-22      Asia                       Malaysia          0
## 9142  2020-02-22      Asia                       Maldives          0
## 9143  2020-02-22      Asia                       Mongolia          0
## 9144  2020-02-22      Asia                        Myanmar          0
## 9145  2020-02-22      Asia                          Nepal          0
## 9146  2020-02-22      Asia                          Nepal          0
## 9147  2020-02-22      Asia                           Oman          0
## 9148  2020-02-22      Asia                           Oman          0
## 9149  2020-02-22      Asia                       Pakistan          0
## 9150  2020-02-22      Asia                       Pakistan          0
## 9151  2020-02-22      Asia                      Palestine          0
## 9152  2020-02-22      Asia                    Philippines          0
## 9153  2020-02-22      Asia                    Philippines          0
## 9154  2020-02-22      Asia                          Qatar          0
## 9155  2020-02-22      Asia                          Qatar          0
## 9156  2020-02-22      Asia                   Saudi Arabia          0
## 9157  2020-02-22      Asia                      Singapore          0
## 9158  2020-02-22      Asia                      Singapore          1
## 9159  2020-02-22      Asia                    South Korea        190
## 9160  2020-02-22      Asia                    South Korea        229
## 9161  2020-02-22      Asia                      Sri Lanka          0
## 9162  2020-02-22      Asia                      Sri Lanka          0
## 9163  2020-02-22      Asia                          Syria          0
## 9164  2020-02-22      Asia                     Tajikistan          0
## 9165  2020-02-22      Asia                       Thailand          0
## 9166  2020-02-22      Asia                       Thailand          0
## 9167  2020-02-22      Asia                    Timor-Leste          0
## 9168  2020-02-22      Asia                         Turkey          0
## 9169  2020-02-22      Asia           United Arab Emirates          2
## 9170  2020-02-22      Asia           United Arab Emirates          4
## 9171  2020-02-22      Asia                     Uzbekistan          0
## 9172  2020-02-22      Asia                        Vietnam          0
## 9173  2020-02-22      Asia                        Vietnam          0
## 9174  2020-02-22      Asia                          Yemen          0
## 9175  2020-02-22      Asia                      not found          2
## 9176  2020-02-22    Europe                        Albania          0
## 9177  2020-02-22    Europe                        Andorra          0
## 9178  2020-02-22    Europe                        Armenia          0
## 9179  2020-02-22    Europe                        Armenia          0
## 9180  2020-02-22    Europe                        Austria          0
## 9181  2020-02-22    Europe                        Austria          0
## 9182  2020-02-22    Europe                     Azerbaijan          0
## 9183  2020-02-22    Europe                     Azerbaijan          0
## 9184  2020-02-22    Europe                        Belarus          0
## 9185  2020-02-22    Europe                        Belarus          0
## 9186  2020-02-22    Europe                        Belgium          0
## 9187  2020-02-22    Europe                        Belgium          0
## 9188  2020-02-22    Europe         Bosnia and Herzegovina          0
## 9189  2020-02-22    Europe                       Bulgaria          0
## 9190  2020-02-22    Europe                        Croatia          0
## 9191  2020-02-22    Europe                        Croatia          0
## 9192  2020-02-22    Europe                         Cyprus          0
## 9193  2020-02-22    Europe                 Czech Republic          0
## 9194  2020-02-22    Europe                 Czech Republic          0
## 9195  2020-02-22    Europe                        Denmark          0
## 9196  2020-02-22    Europe                        Denmark          0
## 9197  2020-02-22    Europe                        Estonia          0
## 9198  2020-02-22    Europe                        Estonia          0
## 9199  2020-02-22    Europe                        Finland          0
## 9200  2020-02-22    Europe                        Finland          0
## 9201  2020-02-22    Europe                         France          0
## 9202  2020-02-22    Europe                         France          0
## 9203  2020-02-22    Europe                        Georgia          0
## 9204  2020-02-22    Europe                        Georgia          0
## 9205  2020-02-22    Europe                        Germany          0
## 9206  2020-02-22    Europe                        Germany          0
## 9207  2020-02-22    Europe                         Greece          0
## 9208  2020-02-22    Europe                         Greece          0
## 9209  2020-02-22    Europe                        Hungary          0
## 9210  2020-02-22    Europe                        Iceland          0
## 9211  2020-02-22    Europe                        Iceland          0
## 9212  2020-02-22    Europe                        Ireland          0
## 9213  2020-02-22    Europe                        Ireland          0
## 9214  2020-02-22    Europe                          Italy         14
## 9215  2020-02-22    Europe                          Italy         42
## 9216  2020-02-22    Europe                         Kosovo          0
## 9217  2020-02-22    Europe                         Latvia          0
## 9218  2020-02-22    Europe                  Liechtenstein          0
## 9219  2020-02-22    Europe                      Lithuania          0
## 9220  2020-02-22    Europe                      Lithuania          0
## 9221  2020-02-22    Europe                     Luxembourg          0
## 9222  2020-02-22    Europe                     Luxembourg          0
## 9223  2020-02-22    Europe                      Macedonia          0
## 9224  2020-02-22    Europe                      Macedonia          0
## 9225  2020-02-22    Europe                          Malta          0
## 9226  2020-02-22    Europe                        Moldova          0
## 9227  2020-02-22    Europe                         Monaco          0
## 9228  2020-02-22    Europe                         Monaco          0
## 9229  2020-02-22    Europe                     Montenegro          0
## 9230  2020-02-22    Europe                    Netherlands          0
## 9231  2020-02-22    Europe                    Netherlands          0
## 9232  2020-02-22    Europe                         Norway          0
## 9233  2020-02-22    Europe                         Norway          0
## 9234  2020-02-22    Europe                         Poland          0
## 9235  2020-02-22    Europe                       Portugal          0
## 9236  2020-02-22    Europe                        Romania          0
## 9237  2020-02-22    Europe                        Romania          0
## 9238  2020-02-22    Europe                         Russia          0
## 9239  2020-02-22    Europe                         Russia          0
## 9240  2020-02-22    Europe                     San Marino          0
## 9241  2020-02-22    Europe                     San Marino          0
## 9242  2020-02-22    Europe                         Serbia          0
## 9243  2020-02-22    Europe                       Slovakia          0
## 9244  2020-02-22    Europe                       Slovenia          0
## 9245  2020-02-22    Europe                          Spain          0
## 9246  2020-02-22    Europe                          Spain          0
## 9247  2020-02-22    Europe                         Sweden          0
## 9248  2020-02-22    Europe                         Sweden          0
## 9249  2020-02-22    Europe                    Switzerland          0
## 9250  2020-02-22    Europe                    Switzerland          0
## 9251  2020-02-22    Europe                        Ukraine          0
## 9252  2020-02-22    Europe                 United Kingdom          0
## 9253  2020-02-22    Europe                 United Kingdom          0
## 9254  2020-02-22    Europe                        Vatican          0
## 9255  2020-02-22   Oceania                      Australia          4
## 9256  2020-02-22   Oceania                           Fiji          0
## 9257  2020-02-22   Oceania                    New Zealand          0
## 9258  2020-02-22   Oceania                    New Zealand          0
## 9259  2020-02-22   Oceania               Papua New Guinea          0
## 9260  2020-02-22     Other                      not found          0
## 9261  2020-02-23    Africa                        Algeria          0
## 9262  2020-02-23    Africa                        Algeria          0
## 9263  2020-02-23    Africa                         Angola          0
## 9264  2020-02-23    Africa                          Benin          0
## 9265  2020-02-23    Africa                       Botswana          0
## 9266  2020-02-23    Africa                   Burkina Faso          0
## 9267  2020-02-23    Africa                        Burundi          0
## 9268  2020-02-23    Africa                     Cabo Verde          0
## 9269  2020-02-23    Africa                       Cameroon          0
## 9270  2020-02-23    Africa       Central African Republic          0
## 9271  2020-02-23    Africa                           Chad          0
## 9272  2020-02-23    Africa                        Comoros          0
## 9273  2020-02-23    Africa                 Congo Republic          0
## 9274  2020-02-23    Africa                  Cote d'Ivoire          0
## 9275  2020-02-23    Africa                       DR Congo          0
## 9276  2020-02-23    Africa                       Djibouti          0
## 9277  2020-02-23    Africa                          Egypt          0
## 9278  2020-02-23    Africa                          Egypt          0
## 9279  2020-02-23    Africa              Equatorial Guinea          0
## 9280  2020-02-23    Africa                        Eritrea          0
## 9281  2020-02-23    Africa                       Eswatini          0
## 9282  2020-02-23    Africa                       Ethiopia          0
## 9283  2020-02-23    Africa                          Gabon          0
## 9284  2020-02-23    Africa                         Gambia          0
## 9285  2020-02-23    Africa                          Ghana          0
## 9286  2020-02-23    Africa                         Guinea          0
## 9287  2020-02-23    Africa                  Guinea-Bissau          0
## 9288  2020-02-23    Africa                          Kenya          0
## 9289  2020-02-23    Africa                        Lesotho          0
## 9290  2020-02-23    Africa                        Liberia          0
## 9291  2020-02-23    Africa                          Libya          0
## 9292  2020-02-23    Africa                     Madagascar          0
## 9293  2020-02-23    Africa                         Malawi          0
## 9294  2020-02-23    Africa                           Mali          0
## 9295  2020-02-23    Africa                     Mauritania          0
## 9296  2020-02-23    Africa                      Mauritius          0
## 9297  2020-02-23    Africa                        Morocco          0
## 9298  2020-02-23    Africa                     Mozambique          0
## 9299  2020-02-23    Africa                        Namibia          0
## 9300  2020-02-23    Africa                          Niger          0
## 9301  2020-02-23    Africa                        Nigeria          0
## 9302  2020-02-23    Africa                        Nigeria          0
## 9303  2020-02-23    Africa                         Rwanda          0
## 9304  2020-02-23    Africa          Sao Tome and Principe          0
## 9305  2020-02-23    Africa                        Senegal          0
## 9306  2020-02-23    Africa                     Seychelles          0
## 9307  2020-02-23    Africa                   Sierra Leone          0
## 9308  2020-02-23    Africa                        Somalia          0
## 9309  2020-02-23    Africa                   South Africa          0
## 9310  2020-02-23    Africa                    South Sudan          0
## 9311  2020-02-23    Africa                          Sudan          0
## 9312  2020-02-23    Africa                       Tanzania          0
## 9313  2020-02-23    Africa                           Togo          0
## 9314  2020-02-23    Africa                        Tunisia          0
## 9315  2020-02-23    Africa                         Uganda          0
## 9316  2020-02-23    Africa                 Western Sahara          0
## 9317  2020-02-23    Africa                         Zambia          0
## 9318  2020-02-23    Africa                       Zimbabwe          0
## 9319  2020-02-23   America            Antigua and Barbuda          0
## 9320  2020-02-23   America                      Argentina          0
## 9321  2020-02-23   America                        Bahamas          0
## 9322  2020-02-23   America                       Barbados          0
## 9323  2020-02-23   America                         Belize          0
## 9324  2020-02-23   America                        Bolivia          0
## 9325  2020-02-23   America                         Brazil          0
## 9326  2020-02-23   America                         Brazil          0
## 9327  2020-02-23   America                         Canada          0
## 9328  2020-02-23   America                          Chile          0
## 9329  2020-02-23   America                       Colombia          0
## 9330  2020-02-23   America                     Costa Rica          0
## 9331  2020-02-23   America                           Cuba          0
## 9332  2020-02-23   America                       Dominica          0
## 9333  2020-02-23   America             Dominican Republic          0
## 9334  2020-02-23   America             Dominican Republic          0
## 9335  2020-02-23   America                        Ecuador          0
## 9336  2020-02-23   America                        Ecuador          0
## 9337  2020-02-23   America                    El Salvador          0
## 9338  2020-02-23   America                        Grenada          0
## 9339  2020-02-23   America                      Guatemala          0
## 9340  2020-02-23   America                         Guyana          0
## 9341  2020-02-23   America                          Haiti          0
## 9342  2020-02-23   America                       Honduras          0
## 9343  2020-02-23   America                        Jamaica          0
## 9344  2020-02-23   America                         Mexico          0
## 9345  2020-02-23   America                         Mexico          0
## 9346  2020-02-23   America                      Nicaragua          0
## 9347  2020-02-23   America                         Panama          0
## 9348  2020-02-23   America                       Paraguay          0
## 9349  2020-02-23   America                           Peru          0
## 9350  2020-02-23   America            St. Kitts and Nevis          0
## 9351  2020-02-23   America                      St. Lucia          0
## 9352  2020-02-23   America St. Vincent and the Grenadines          0
## 9353  2020-02-23   America                       Suriname          0
## 9354  2020-02-23   America            Trinidad and Tobago          0
## 9355  2020-02-23   America                  United States          0
## 9356  2020-02-23   America                  United States          0
## 9357  2020-02-23   America                        Uruguay          0
## 9358  2020-02-23   America                      Venezuela          0
## 9359  2020-02-23      Asia                    Afghanistan          0
## 9360  2020-02-23      Asia                    Afghanistan          0
## 9361  2020-02-23      Asia                        Bahrain          0
## 9362  2020-02-23      Asia                        Bahrain          0
## 9363  2020-02-23      Asia                     Bangladesh          0
## 9364  2020-02-23      Asia                         Bhutan          0
## 9365  2020-02-23      Asia              Brunei Darussalam          0
## 9366  2020-02-23      Asia                       Cambodia          0
## 9367  2020-02-23      Asia                       Cambodia          0
## 9368  2020-02-23      Asia                          China        647
## 9369  2020-02-23      Asia                          India          0
## 9370  2020-02-23      Asia                          India          0
## 9371  2020-02-23      Asia                      Indonesia          0
## 9372  2020-02-23      Asia                      Indonesia          0
## 9373  2020-02-23      Asia                           Iran         10
## 9374  2020-02-23      Asia                           Iran         15
## 9375  2020-02-23      Asia                           Iraq          0
## 9376  2020-02-23      Asia                           Iraq          0
## 9377  2020-02-23      Asia                         Israel          0
## 9378  2020-02-23      Asia                         Israel          0
## 9379  2020-02-23      Asia                          Japan         25
## 9380  2020-02-23      Asia                          Japan         27
## 9381  2020-02-23      Asia                         Jordan          0
## 9382  2020-02-23      Asia                     Kazakhstan          0
## 9383  2020-02-23      Asia                         Kuwait          0
## 9384  2020-02-23      Asia                         Kuwait          0
## 9385  2020-02-23      Asia                Kyrgyz Republic          0
## 9386  2020-02-23      Asia                           Laos          0
## 9387  2020-02-23      Asia                        Lebanon          0
## 9388  2020-02-23      Asia                        Lebanon          0
## 9389  2020-02-23      Asia                       Malaysia          0
## 9390  2020-02-23      Asia                       Malaysia          0
## 9391  2020-02-23      Asia                       Maldives          0
## 9392  2020-02-23      Asia                       Mongolia          0
## 9393  2020-02-23      Asia                        Myanmar          0
## 9394  2020-02-23      Asia                          Nepal          0
## 9395  2020-02-23      Asia                          Nepal          0
## 9396  2020-02-23      Asia                           Oman          0
## 9397  2020-02-23      Asia                           Oman          0
## 9398  2020-02-23      Asia                       Pakistan          0
## 9399  2020-02-23      Asia                       Pakistan          0
## 9400  2020-02-23      Asia                      Palestine          0
## 9401  2020-02-23      Asia                    Philippines          0
## 9402  2020-02-23      Asia                    Philippines          0
## 9403  2020-02-23      Asia                          Qatar          0
## 9404  2020-02-23      Asia                          Qatar          0
## 9405  2020-02-23      Asia                   Saudi Arabia          0
## 9406  2020-02-23      Asia                      Singapore          3
## 9407  2020-02-23      Asia                      Singapore          4
## 9408  2020-02-23      Asia                    South Korea        169
## 9409  2020-02-23      Asia                    South Korea        256
## 9410  2020-02-23      Asia                      Sri Lanka          0
## 9411  2020-02-23      Asia                      Sri Lanka          0
## 9412  2020-02-23      Asia                          Syria          0
## 9413  2020-02-23      Asia                     Tajikistan          0
## 9414  2020-02-23      Asia                       Thailand          0
## 9415  2020-02-23      Asia                       Thailand          0
## 9416  2020-02-23      Asia                    Timor-Leste          0
## 9417  2020-02-23      Asia                         Turkey          0
## 9418  2020-02-23      Asia           United Arab Emirates          0
## 9419  2020-02-23      Asia           United Arab Emirates          2
## 9420  2020-02-23      Asia                     Uzbekistan          0
## 9421  2020-02-23      Asia                        Vietnam          0
## 9422  2020-02-23      Asia                        Vietnam          0
## 9423  2020-02-23      Asia                          Yemen          0
## 9424  2020-02-23      Asia                      not found          0
## 9425  2020-02-23    Europe                        Albania          0
## 9426  2020-02-23    Europe                        Andorra          0
## 9427  2020-02-23    Europe                        Armenia          0
## 9428  2020-02-23    Europe                        Armenia          0
## 9429  2020-02-23    Europe                        Austria          0
## 9430  2020-02-23    Europe                        Austria          0
## 9431  2020-02-23    Europe                     Azerbaijan          0
## 9432  2020-02-23    Europe                     Azerbaijan          0
## 9433  2020-02-23    Europe                        Belarus          0
## 9434  2020-02-23    Europe                        Belarus          0
## 9435  2020-02-23    Europe                        Belgium          0
## 9436  2020-02-23    Europe                        Belgium          0
## 9437  2020-02-23    Europe         Bosnia and Herzegovina          0
## 9438  2020-02-23    Europe                       Bulgaria          0
## 9439  2020-02-23    Europe                        Croatia          0
## 9440  2020-02-23    Europe                        Croatia          0
## 9441  2020-02-23    Europe                         Cyprus          0
## 9442  2020-02-23    Europe                 Czech Republic          0
## 9443  2020-02-23    Europe                 Czech Republic          0
## 9444  2020-02-23    Europe                        Denmark          0
## 9445  2020-02-23    Europe                        Denmark          0
## 9446  2020-02-23    Europe                        Estonia          0
## 9447  2020-02-23    Europe                        Estonia          0
## 9448  2020-02-23    Europe                        Finland          0
## 9449  2020-02-23    Europe                        Finland          0
## 9450  2020-02-23    Europe                         France          0
## 9451  2020-02-23    Europe                         France          0
## 9452  2020-02-23    Europe                        Georgia          0
## 9453  2020-02-23    Europe                        Georgia          0
## 9454  2020-02-23    Europe                        Germany          0
## 9455  2020-02-23    Europe                        Germany          0
## 9456  2020-02-23    Europe                         Greece          0
## 9457  2020-02-23    Europe                         Greece          0
## 9458  2020-02-23    Europe                        Hungary          0
## 9459  2020-02-23    Europe                        Iceland          0
## 9460  2020-02-23    Europe                        Iceland          0
## 9461  2020-02-23    Europe                        Ireland          0
## 9462  2020-02-23    Europe                        Ireland          0
## 9463  2020-02-23    Europe                          Italy         62
## 9464  2020-02-23    Europe                          Italy         93
## 9465  2020-02-23    Europe                         Kosovo          0
## 9466  2020-02-23    Europe                         Latvia          0
## 9467  2020-02-23    Europe                  Liechtenstein          0
## 9468  2020-02-23    Europe                      Lithuania          0
## 9469  2020-02-23    Europe                      Lithuania          0
## 9470  2020-02-23    Europe                     Luxembourg          0
## 9471  2020-02-23    Europe                     Luxembourg          0
## 9472  2020-02-23    Europe                      Macedonia          0
## 9473  2020-02-23    Europe                      Macedonia          0
## 9474  2020-02-23    Europe                          Malta          0
## 9475  2020-02-23    Europe                        Moldova          0
## 9476  2020-02-23    Europe                         Monaco          0
## 9477  2020-02-23    Europe                         Monaco          0
## 9478  2020-02-23    Europe                     Montenegro          0
## 9479  2020-02-23    Europe                    Netherlands          0
## 9480  2020-02-23    Europe                    Netherlands          0
## 9481  2020-02-23    Europe                         Norway          0
## 9482  2020-02-23    Europe                         Norway          0
## 9483  2020-02-23    Europe                         Poland          0
## 9484  2020-02-23    Europe                       Portugal          0
## 9485  2020-02-23    Europe                        Romania          0
## 9486  2020-02-23    Europe                        Romania          0
## 9487  2020-02-23    Europe                         Russia          0
## 9488  2020-02-23    Europe                         Russia          0
## 9489  2020-02-23    Europe                     San Marino          0
## 9490  2020-02-23    Europe                     San Marino          0
## 9491  2020-02-23    Europe                         Serbia          0
## 9492  2020-02-23    Europe                       Slovakia          0
## 9493  2020-02-23    Europe                       Slovenia          0
## 9494  2020-02-23    Europe                          Spain          0
## 9495  2020-02-23    Europe                          Spain          0
## 9496  2020-02-23    Europe                         Sweden          0
## 9497  2020-02-23    Europe                         Sweden          0
## 9498  2020-02-23    Europe                    Switzerland          0
## 9499  2020-02-23    Europe                    Switzerland          0
## 9500  2020-02-23    Europe                        Ukraine          0
## 9501  2020-02-23    Europe                 United Kingdom          0
## 9502  2020-02-23    Europe                 United Kingdom          0
## 9503  2020-02-23    Europe                        Vatican          0
## 9504  2020-02-23   Oceania                      Australia          1
## 9505  2020-02-23   Oceania                           Fiji          0
## 9506  2020-02-23   Oceania                    New Zealand          0
## 9507  2020-02-23   Oceania                    New Zealand          0
## 9508  2020-02-23   Oceania               Papua New Guinea          0
## 9509  2020-02-23     Other                      not found          0
## 9510  2020-02-24    Africa                        Algeria          0
## 9511  2020-02-24    Africa                        Algeria          0
## 9512  2020-02-24    Africa                         Angola          0
## 9513  2020-02-24    Africa                          Benin          0
## 9514  2020-02-24    Africa                       Botswana          0
## 9515  2020-02-24    Africa                   Burkina Faso          0
## 9516  2020-02-24    Africa                        Burundi          0
## 9517  2020-02-24    Africa                     Cabo Verde          0
## 9518  2020-02-24    Africa                       Cameroon          0
## 9519  2020-02-24    Africa       Central African Republic          0
## 9520  2020-02-24    Africa                           Chad          0
## 9521  2020-02-24    Africa                        Comoros          0
## 9522  2020-02-24    Africa                 Congo Republic          0
## 9523  2020-02-24    Africa                  Cote d'Ivoire          0
## 9524  2020-02-24    Africa                       DR Congo          0
## 9525  2020-02-24    Africa                       Djibouti          0
## 9526  2020-02-24    Africa                          Egypt          0
## 9527  2020-02-24    Africa                          Egypt          0
## 9528  2020-02-24    Africa              Equatorial Guinea          0
## 9529  2020-02-24    Africa                        Eritrea          0
## 9530  2020-02-24    Africa                       Eswatini          0
## 9531  2020-02-24    Africa                       Ethiopia          0
## 9532  2020-02-24    Africa                          Gabon          0
## 9533  2020-02-24    Africa                         Gambia          0
## 9534  2020-02-24    Africa                          Ghana          0
## 9535  2020-02-24    Africa                         Guinea          0
## 9536  2020-02-24    Africa                  Guinea-Bissau          0
## 9537  2020-02-24    Africa                          Kenya          0
## 9538  2020-02-24    Africa                        Lesotho          0
## 9539  2020-02-24    Africa                        Liberia          0
## 9540  2020-02-24    Africa                          Libya          0
## 9541  2020-02-24    Africa                     Madagascar          0
## 9542  2020-02-24    Africa                         Malawi          0
## 9543  2020-02-24    Africa                           Mali          0
## 9544  2020-02-24    Africa                     Mauritania          0
## 9545  2020-02-24    Africa                      Mauritius          0
## 9546  2020-02-24    Africa                        Morocco          0
## 9547  2020-02-24    Africa                     Mozambique          0
## 9548  2020-02-24    Africa                        Namibia          0
## 9549  2020-02-24    Africa                          Niger          0
## 9550  2020-02-24    Africa                        Nigeria          0
## 9551  2020-02-24    Africa                        Nigeria          0
## 9552  2020-02-24    Africa                         Rwanda          0
## 9553  2020-02-24    Africa          Sao Tome and Principe          0
## 9554  2020-02-24    Africa                        Senegal          0
## 9555  2020-02-24    Africa                     Seychelles          0
## 9556  2020-02-24    Africa                   Sierra Leone          0
## 9557  2020-02-24    Africa                        Somalia          0
## 9558  2020-02-24    Africa                   South Africa          0
## 9559  2020-02-24    Africa                    South Sudan          0
## 9560  2020-02-24    Africa                          Sudan          0
## 9561  2020-02-24    Africa                       Tanzania          0
## 9562  2020-02-24    Africa                           Togo          0
## 9563  2020-02-24    Africa                        Tunisia          0
## 9564  2020-02-24    Africa                         Uganda          0
## 9565  2020-02-24    Africa                 Western Sahara          0
## 9566  2020-02-24    Africa                         Zambia          0
## 9567  2020-02-24    Africa                       Zimbabwe          0
## 9568  2020-02-24   America            Antigua and Barbuda          0
## 9569  2020-02-24   America                      Argentina          0
## 9570  2020-02-24   America                        Bahamas          0
## 9571  2020-02-24   America                       Barbados          0
## 9572  2020-02-24   America                         Belize          0
## 9573  2020-02-24   America                        Bolivia          0
## 9574  2020-02-24   America                         Brazil          0
## 9575  2020-02-24   America                         Brazil          0
## 9576  2020-02-24   America                         Canada          0
## 9577  2020-02-24   America                          Chile          0
## 9578  2020-02-24   America                       Colombia          0
## 9579  2020-02-24   America                     Costa Rica          0
## 9580  2020-02-24   America                           Cuba          0
## 9581  2020-02-24   America                       Dominica          0
## 9582  2020-02-24   America             Dominican Republic          0
## 9583  2020-02-24   America             Dominican Republic          0
## 9584  2020-02-24   America                        Ecuador          0
## 9585  2020-02-24   America                        Ecuador          0
## 9586  2020-02-24   America                    El Salvador          0
## 9587  2020-02-24   America                        Grenada          0
## 9588  2020-02-24   America                      Guatemala          0
## 9589  2020-02-24   America                         Guyana          0
## 9590  2020-02-24   America                          Haiti          0
## 9591  2020-02-24   America                       Honduras          0
## 9592  2020-02-24   America                        Jamaica          0
## 9593  2020-02-24   America                         Mexico          0
## 9594  2020-02-24   America                         Mexico          0
## 9595  2020-02-24   America                      Nicaragua          0
## 9596  2020-02-24   America                         Panama          0
## 9597  2020-02-24   America                       Paraguay          0
## 9598  2020-02-24   America                           Peru          0
## 9599  2020-02-24   America            St. Kitts and Nevis          0
## 9600  2020-02-24   America                      St. Lucia          0
## 9601  2020-02-24   America St. Vincent and the Grenadines          0
## 9602  2020-02-24   America                       Suriname          0
## 9603  2020-02-24   America            Trinidad and Tobago          0
## 9604  2020-02-24   America                  United States          0
## 9605  2020-02-24   America                  United States          0
## 9606  2020-02-24   America                        Uruguay          0
## 9607  2020-02-24   America                      Venezuela          0
## 9608  2020-02-24      Asia                    Afghanistan          0
## 9609  2020-02-24      Asia                    Afghanistan          1
## 9610  2020-02-24      Asia                        Bahrain          1
## 9611  2020-02-24      Asia                        Bahrain          1
## 9612  2020-02-24      Asia                     Bangladesh          0
## 9613  2020-02-24      Asia                         Bhutan          0
## 9614  2020-02-24      Asia              Brunei Darussalam          0
## 9615  2020-02-24      Asia                       Cambodia          0
## 9616  2020-02-24      Asia                       Cambodia          0
## 9617  2020-02-24      Asia                          China        218
## 9618  2020-02-24      Asia                          India          0
## 9619  2020-02-24      Asia                          India          0
## 9620  2020-02-24      Asia                      Indonesia          0
## 9621  2020-02-24      Asia                      Indonesia          0
## 9622  2020-02-24      Asia                           Iran         15
## 9623  2020-02-24      Asia                           Iran         18
## 9624  2020-02-24      Asia                           Iraq          0
## 9625  2020-02-24      Asia                           Iraq          1
## 9626  2020-02-24      Asia                         Israel          0
## 9627  2020-02-24      Asia                         Israel          1
## 9628  2020-02-24      Asia                          Japan         12
## 9629  2020-02-24      Asia                          Japan         12
## 9630  2020-02-24      Asia                         Jordan          0
## 9631  2020-02-24      Asia                     Kazakhstan          0
## 9632  2020-02-24      Asia                         Kuwait          1
## 9633  2020-02-24      Asia                         Kuwait          3
## 9634  2020-02-24      Asia                Kyrgyz Republic          0
## 9635  2020-02-24      Asia                           Laos          0
## 9636  2020-02-24      Asia                        Lebanon          0
## 9637  2020-02-24      Asia                        Lebanon          0
## 9638  2020-02-24      Asia                       Malaysia          0
## 9639  2020-02-24      Asia                       Malaysia          0
## 9640  2020-02-24      Asia                       Maldives          0
## 9641  2020-02-24      Asia                       Mongolia          0
## 9642  2020-02-24      Asia                        Myanmar          0
## 9643  2020-02-24      Asia                          Nepal          0
## 9644  2020-02-24      Asia                          Nepal          0
## 9645  2020-02-24      Asia                           Oman          0
## 9646  2020-02-24      Asia                           Oman          2
## 9647  2020-02-24      Asia                       Pakistan          0
## 9648  2020-02-24      Asia                       Pakistan          0
## 9649  2020-02-24      Asia                      Palestine          0
## 9650  2020-02-24      Asia                    Philippines          0
## 9651  2020-02-24      Asia                    Philippines          0
## 9652  2020-02-24      Asia                          Qatar          0
## 9653  2020-02-24      Asia                          Qatar          0
## 9654  2020-02-24      Asia                   Saudi Arabia          0
## 9655  2020-02-24      Asia                      Singapore          0
## 9656  2020-02-24      Asia                      Singapore          0
## 9657  2020-02-24      Asia                    South Korea        161
## 9658  2020-02-24      Asia                    South Korea        231
## 9659  2020-02-24      Asia                      Sri Lanka          0
## 9660  2020-02-24      Asia                      Sri Lanka          0
## 9661  2020-02-24      Asia                          Syria          0
## 9662  2020-02-24      Asia                     Tajikistan          0
## 9663  2020-02-24      Asia                       Thailand          0
## 9664  2020-02-24      Asia                       Thailand          0
## 9665  2020-02-24      Asia                    Timor-Leste          0
## 9666  2020-02-24      Asia                         Turkey          0
## 9667  2020-02-24      Asia           United Arab Emirates          0
## 9668  2020-02-24      Asia           United Arab Emirates          0
## 9669  2020-02-24      Asia                     Uzbekistan          0
## 9670  2020-02-24      Asia                        Vietnam          0
## 9671  2020-02-24      Asia                        Vietnam          0
## 9672  2020-02-24      Asia                          Yemen          0
## 9673  2020-02-24      Asia                      not found          2
## 9674  2020-02-24    Europe                        Albania          0
## 9675  2020-02-24    Europe                        Andorra          0
## 9676  2020-02-24    Europe                        Armenia          0
## 9677  2020-02-24    Europe                        Armenia          0
## 9678  2020-02-24    Europe                        Austria          0
## 9679  2020-02-24    Europe                        Austria          0
## 9680  2020-02-24    Europe                     Azerbaijan          0
## 9681  2020-02-24    Europe                     Azerbaijan          0
## 9682  2020-02-24    Europe                        Belarus          0
## 9683  2020-02-24    Europe                        Belarus          0
## 9684  2020-02-24    Europe                        Belgium          0
## 9685  2020-02-24    Europe                        Belgium          0
## 9686  2020-02-24    Europe         Bosnia and Herzegovina          0
## 9687  2020-02-24    Europe                       Bulgaria          0
## 9688  2020-02-24    Europe                        Croatia          0
## 9689  2020-02-24    Europe                        Croatia          0
## 9690  2020-02-24    Europe                         Cyprus          0
## 9691  2020-02-24    Europe                 Czech Republic          0
## 9692  2020-02-24    Europe                 Czech Republic          0
## 9693  2020-02-24    Europe                        Denmark          0
## 9694  2020-02-24    Europe                        Denmark          0
## 9695  2020-02-24    Europe                        Estonia          0
## 9696  2020-02-24    Europe                        Estonia          0
## 9697  2020-02-24    Europe                        Finland          0
## 9698  2020-02-24    Europe                        Finland          0
## 9699  2020-02-24    Europe                         France          0
## 9700  2020-02-24    Europe                         France          0
## 9701  2020-02-24    Europe                        Georgia          0
## 9702  2020-02-24    Europe                        Georgia          0
## 9703  2020-02-24    Europe                        Germany          0
## 9704  2020-02-24    Europe                        Germany          0
## 9705  2020-02-24    Europe                         Greece          0
## 9706  2020-02-24    Europe                         Greece          0
## 9707  2020-02-24    Europe                        Hungary          0
## 9708  2020-02-24    Europe                        Iceland          0
## 9709  2020-02-24    Europe                        Iceland          0
## 9710  2020-02-24    Europe                        Ireland          0
## 9711  2020-02-24    Europe                        Ireland          0
## 9712  2020-02-24    Europe                          Italy         53
## 9713  2020-02-24    Europe                          Italy         74
## 9714  2020-02-24    Europe                         Kosovo          0
## 9715  2020-02-24    Europe                         Latvia          0
## 9716  2020-02-24    Europe                  Liechtenstein          0
## 9717  2020-02-24    Europe                      Lithuania          0
## 9718  2020-02-24    Europe                      Lithuania          0
## 9719  2020-02-24    Europe                     Luxembourg          0
## 9720  2020-02-24    Europe                     Luxembourg          0
## 9721  2020-02-24    Europe                      Macedonia          0
## 9722  2020-02-24    Europe                      Macedonia          0
## 9723  2020-02-24    Europe                          Malta          0
## 9724  2020-02-24    Europe                        Moldova          0
## 9725  2020-02-24    Europe                         Monaco          0
## 9726  2020-02-24    Europe                         Monaco          0
## 9727  2020-02-24    Europe                     Montenegro          0
## 9728  2020-02-24    Europe                    Netherlands          0
## 9729  2020-02-24    Europe                    Netherlands          0
## 9730  2020-02-24    Europe                         Norway          0
## 9731  2020-02-24    Europe                         Norway          0
## 9732  2020-02-24    Europe                         Poland          0
## 9733  2020-02-24    Europe                       Portugal          0
## 9734  2020-02-24    Europe                        Romania          0
## 9735  2020-02-24    Europe                        Romania          0
## 9736  2020-02-24    Europe                         Russia          0
## 9737  2020-02-24    Europe                         Russia          0
## 9738  2020-02-24    Europe                     San Marino          0
## 9739  2020-02-24    Europe                     San Marino          0
## 9740  2020-02-24    Europe                         Serbia          0
## 9741  2020-02-24    Europe                       Slovakia          0
## 9742  2020-02-24    Europe                       Slovenia          0
## 9743  2020-02-24    Europe                          Spain          0
## 9744  2020-02-24    Europe                          Spain          0
## 9745  2020-02-24    Europe                         Sweden          0
## 9746  2020-02-24    Europe                         Sweden          0
## 9747  2020-02-24    Europe                    Switzerland          0
## 9748  2020-02-24    Europe                    Switzerland          0
## 9749  2020-02-24    Europe                        Ukraine          0
## 9750  2020-02-24    Europe                 United Kingdom          4
## 9751  2020-02-24    Europe                 United Kingdom          4
## 9752  2020-02-24    Europe                        Vatican          0
## 9753  2020-02-24   Oceania                      Australia          0
## 9754  2020-02-24   Oceania                           Fiji          0
## 9755  2020-02-24   Oceania                    New Zealand          0
## 9756  2020-02-24   Oceania                    New Zealand          0
## 9757  2020-02-24   Oceania               Papua New Guinea          0
## 9758  2020-02-24     Other                      not found         57
## 9759  2020-02-25    Africa                        Algeria          0
## 9760  2020-02-25    Africa                        Algeria          1
## 9761  2020-02-25    Africa                         Angola          0
## 9762  2020-02-25    Africa                          Benin          0
## 9763  2020-02-25    Africa                       Botswana          0
## 9764  2020-02-25    Africa                   Burkina Faso          0
## 9765  2020-02-25    Africa                        Burundi          0
## 9766  2020-02-25    Africa                     Cabo Verde          0
## 9767  2020-02-25    Africa                       Cameroon          0
## 9768  2020-02-25    Africa       Central African Republic          0
## 9769  2020-02-25    Africa                           Chad          0
## 9770  2020-02-25    Africa                        Comoros          0
## 9771  2020-02-25    Africa                 Congo Republic          0
## 9772  2020-02-25    Africa                  Cote d'Ivoire          0
## 9773  2020-02-25    Africa                       DR Congo          0
## 9774  2020-02-25    Africa                       Djibouti          0
## 9775  2020-02-25    Africa                          Egypt          0
## 9776  2020-02-25    Africa                          Egypt          0
## 9777  2020-02-25    Africa              Equatorial Guinea          0
## 9778  2020-02-25    Africa                        Eritrea          0
## 9779  2020-02-25    Africa                       Eswatini          0
## 9780  2020-02-25    Africa                       Ethiopia          0
## 9781  2020-02-25    Africa                          Gabon          0
## 9782  2020-02-25    Africa                         Gambia          0
## 9783  2020-02-25    Africa                          Ghana          0
## 9784  2020-02-25    Africa                         Guinea          0
## 9785  2020-02-25    Africa                  Guinea-Bissau          0
## 9786  2020-02-25    Africa                          Kenya          0
## 9787  2020-02-25    Africa                        Lesotho          0
## 9788  2020-02-25    Africa                        Liberia          0
## 9789  2020-02-25    Africa                          Libya          0
## 9790  2020-02-25    Africa                     Madagascar          0
## 9791  2020-02-25    Africa                         Malawi          0
## 9792  2020-02-25    Africa                           Mali          0
## 9793  2020-02-25    Africa                     Mauritania          0
## 9794  2020-02-25    Africa                      Mauritius          0
## 9795  2020-02-25    Africa                        Morocco          0
## 9796  2020-02-25    Africa                     Mozambique          0
## 9797  2020-02-25    Africa                        Namibia          0
## 9798  2020-02-25    Africa                          Niger          0
## 9799  2020-02-25    Africa                        Nigeria          0
## 9800  2020-02-25    Africa                        Nigeria          0
## 9801  2020-02-25    Africa                         Rwanda          0
## 9802  2020-02-25    Africa          Sao Tome and Principe          0
## 9803  2020-02-25    Africa                        Senegal          0
## 9804  2020-02-25    Africa                     Seychelles          0
## 9805  2020-02-25    Africa                   Sierra Leone          0
## 9806  2020-02-25    Africa                        Somalia          0
## 9807  2020-02-25    Africa                   South Africa          0
## 9808  2020-02-25    Africa                    South Sudan          0
## 9809  2020-02-25    Africa                          Sudan          0
## 9810  2020-02-25    Africa                       Tanzania          0
## 9811  2020-02-25    Africa                           Togo          0
## 9812  2020-02-25    Africa                        Tunisia          0
## 9813  2020-02-25    Africa                         Uganda          0
## 9814  2020-02-25    Africa                 Western Sahara          0
## 9815  2020-02-25    Africa                         Zambia          0
## 9816  2020-02-25    Africa                       Zimbabwe          0
## 9817  2020-02-25   America            Antigua and Barbuda          0
## 9818  2020-02-25   America                      Argentina          0
## 9819  2020-02-25   America                        Bahamas          0
## 9820  2020-02-25   America                       Barbados          0
## 9821  2020-02-25   America                         Belize          0
## 9822  2020-02-25   America                        Bolivia          0
## 9823  2020-02-25   America                         Brazil          0
## 9824  2020-02-25   America                         Brazil          0
## 9825  2020-02-25   America                         Canada          2
## 9826  2020-02-25   America                          Chile          0
## 9827  2020-02-25   America                       Colombia          0
## 9828  2020-02-25   America                     Costa Rica          0
## 9829  2020-02-25   America                           Cuba          0
## 9830  2020-02-25   America                       Dominica          0
## 9831  2020-02-25   America             Dominican Republic          0
## 9832  2020-02-25   America             Dominican Republic          0
## 9833  2020-02-25   America                        Ecuador          0
## 9834  2020-02-25   America                        Ecuador          0
## 9835  2020-02-25   America                    El Salvador          0
## 9836  2020-02-25   America                        Grenada          0
## 9837  2020-02-25   America                      Guatemala          0
## 9838  2020-02-25   America                         Guyana          0
## 9839  2020-02-25   America                          Haiti          0
## 9840  2020-02-25   America                       Honduras          0
## 9841  2020-02-25   America                        Jamaica          0
## 9842  2020-02-25   America                         Mexico          0
## 9843  2020-02-25   America                         Mexico          0
## 9844  2020-02-25   America                      Nicaragua          0
## 9845  2020-02-25   America                         Panama          0
## 9846  2020-02-25   America                       Paraguay          0
## 9847  2020-02-25   America                           Peru          0
## 9848  2020-02-25   America            St. Kitts and Nevis          0
## 9849  2020-02-25   America                      St. Lucia          0
## 9850  2020-02-25   America St. Vincent and the Grenadines          0
## 9851  2020-02-25   America                       Suriname          0
## 9852  2020-02-25   America            Trinidad and Tobago          0
## 9853  2020-02-25   America                  United States          0
## 9854  2020-02-25   America                  United States         18
## 9855  2020-02-25   America                        Uruguay          0
## 9856  2020-02-25   America                      Venezuela          0
## 9857  2020-02-25      Asia                    Afghanistan          0
## 9858  2020-02-25      Asia                    Afghanistan          1
## 9859  2020-02-25      Asia                        Bahrain          1
## 9860  2020-02-25      Asia                        Bahrain         22
## 9861  2020-02-25      Asia                     Bangladesh          0
## 9862  2020-02-25      Asia                         Bhutan          0
## 9863  2020-02-25      Asia              Brunei Darussalam          0
## 9864  2020-02-25      Asia                       Cambodia          0
## 9865  2020-02-25      Asia                       Cambodia          0
## 9866  2020-02-25      Asia                          China        515
## 9867  2020-02-25      Asia                          India          0
## 9868  2020-02-25      Asia                          India          0
## 9869  2020-02-25      Asia                      Indonesia          0
## 9870  2020-02-25      Asia                      Indonesia          0
## 9871  2020-02-25      Asia                           Iran         18
## 9872  2020-02-25      Asia                           Iran         34
## 9873  2020-02-25      Asia                           Iraq          0
## 9874  2020-02-25      Asia                           Iraq          1
## 9875  2020-02-25      Asia                         Israel          0
## 9876  2020-02-25      Asia                         Israel          0
## 9877  2020-02-25      Asia                          Japan          0
## 9878  2020-02-25      Asia                          Japan         11
## 9879  2020-02-25      Asia                         Jordan          0
## 9880  2020-02-25      Asia                     Kazakhstan          0
## 9881  2020-02-25      Asia                         Kuwait          2
## 9882  2020-02-25      Asia                         Kuwait         10
## 9883  2020-02-25      Asia                Kyrgyz Republic          0
## 9884  2020-02-25      Asia                           Laos          0
## 9885  2020-02-25      Asia                        Lebanon          0
## 9886  2020-02-25      Asia                        Lebanon          0
## 9887  2020-02-25      Asia                       Malaysia          0
## 9888  2020-02-25      Asia                       Malaysia          0
## 9889  2020-02-25      Asia                       Maldives          0
## 9890  2020-02-25      Asia                       Mongolia          0
## 9891  2020-02-25      Asia                        Myanmar          0
## 9892  2020-02-25      Asia                          Nepal          0
## 9893  2020-02-25      Asia                          Nepal          0
## 9894  2020-02-25      Asia                           Oman          0
## 9895  2020-02-25      Asia                           Oman          2
## 9896  2020-02-25      Asia                       Pakistan          0
## 9897  2020-02-25      Asia                       Pakistan          2
## 9898  2020-02-25      Asia                      Palestine          0
## 9899  2020-02-25      Asia                    Philippines          0
## 9900  2020-02-25      Asia                    Philippines          0
## 9901  2020-02-25      Asia                          Qatar          0
## 9902  2020-02-25      Asia                          Qatar          0
## 9903  2020-02-25      Asia                   Saudi Arabia          0
## 9904  2020-02-25      Asia                      Singapore          1
## 9905  2020-02-25      Asia                      Singapore          2
## 9906  2020-02-25      Asia                    South Korea        130
## 9907  2020-02-25      Asia                    South Korea        144
## 9908  2020-02-25      Asia                      Sri Lanka          0
## 9909  2020-02-25      Asia                      Sri Lanka          0
## 9910  2020-02-25      Asia                          Syria          0
## 9911  2020-02-25      Asia                     Tajikistan          0
## 9912  2020-02-25      Asia                       Thailand          2
## 9913  2020-02-25      Asia                       Thailand          2
## 9914  2020-02-25      Asia                    Timor-Leste          0
## 9915  2020-02-25      Asia                         Turkey          0
## 9916  2020-02-25      Asia           United Arab Emirates          0
## 9917  2020-02-25      Asia           United Arab Emirates          0
## 9918  2020-02-25      Asia                     Uzbekistan          0
## 9919  2020-02-25      Asia                        Vietnam          0
## 9920  2020-02-25      Asia                        Vietnam          0
## 9921  2020-02-25      Asia                          Yemen          0
## 9922  2020-02-25      Asia                      not found          2
## 9923  2020-02-25    Europe                        Albania          0
## 9924  2020-02-25    Europe                        Andorra          0
## 9925  2020-02-25    Europe                        Armenia          0
## 9926  2020-02-25    Europe                        Armenia          0
## 9927  2020-02-25    Europe                        Austria          0
## 9928  2020-02-25    Europe                        Austria          2
## 9929  2020-02-25    Europe                     Azerbaijan          0
## 9930  2020-02-25    Europe                     Azerbaijan          0
## 9931  2020-02-25    Europe                        Belarus          0
## 9932  2020-02-25    Europe                        Belarus          0
## 9933  2020-02-25    Europe                        Belgium          0
## 9934  2020-02-25    Europe                        Belgium          0
## 9935  2020-02-25    Europe         Bosnia and Herzegovina          0
## 9936  2020-02-25    Europe                       Bulgaria          0
## 9937  2020-02-25    Europe                        Croatia          0
## 9938  2020-02-25    Europe                        Croatia          1
## 9939  2020-02-25    Europe                         Cyprus          0
## 9940  2020-02-25    Europe                 Czech Republic          0
## 9941  2020-02-25    Europe                 Czech Republic          0
## 9942  2020-02-25    Europe                        Denmark          0
## 9943  2020-02-25    Europe                        Denmark          0
## 9944  2020-02-25    Europe                        Estonia          0
## 9945  2020-02-25    Europe                        Estonia          0
## 9946  2020-02-25    Europe                        Finland          0
## 9947  2020-02-25    Europe                        Finland          0
## 9948  2020-02-25    Europe                         France          0
## 9949  2020-02-25    Europe                         France          2
## 9950  2020-02-25    Europe                        Georgia          0
## 9951  2020-02-25    Europe                        Georgia          0
## 9952  2020-02-25    Europe                        Germany          0
## 9953  2020-02-25    Europe                        Germany          1
## 9954  2020-02-25    Europe                         Greece          0
## 9955  2020-02-25    Europe                         Greece          0
## 9956  2020-02-25    Europe                        Hungary          0
## 9957  2020-02-25    Europe                        Iceland          0
## 9958  2020-02-25    Europe                        Iceland          0
## 9959  2020-02-25    Europe                        Ireland          0
## 9960  2020-02-25    Europe                        Ireland          0
## 9961  2020-02-25    Europe                          Italy         93
## 9962  2020-02-25    Europe                          Italy         97
## 9963  2020-02-25    Europe                         Kosovo          0
## 9964  2020-02-25    Europe                         Latvia          0
## 9965  2020-02-25    Europe                  Liechtenstein          0
## 9966  2020-02-25    Europe                      Lithuania          0
## 9967  2020-02-25    Europe                      Lithuania          0
## 9968  2020-02-25    Europe                     Luxembourg          0
## 9969  2020-02-25    Europe                     Luxembourg          0
## 9970  2020-02-25    Europe                      Macedonia          0
## 9971  2020-02-25    Europe                      Macedonia          0
## 9972  2020-02-25    Europe                          Malta          0
## 9973  2020-02-25    Europe                        Moldova          0
## 9974  2020-02-25    Europe                         Monaco          0
## 9975  2020-02-25    Europe                         Monaco          0
## 9976  2020-02-25    Europe                     Montenegro          0
## 9977  2020-02-25    Europe                    Netherlands          0
## 9978  2020-02-25    Europe                    Netherlands          0
## 9979  2020-02-25    Europe                         Norway          0
## 9980  2020-02-25    Europe                         Norway          0
## 9981  2020-02-25    Europe                         Poland          0
## 9982  2020-02-25    Europe                       Portugal          0
## 9983  2020-02-25    Europe                        Romania          0
## 9984  2020-02-25    Europe                        Romania          0
## 9985  2020-02-25    Europe                         Russia          0
## 9986  2020-02-25    Europe                         Russia          0
## 9987  2020-02-25    Europe                     San Marino          0
## 9988  2020-02-25    Europe                     San Marino          0
## 9989  2020-02-25    Europe                         Serbia          0
## 9990  2020-02-25    Europe                       Slovakia          0
## 9991  2020-02-25    Europe                       Slovenia          0
## 9992  2020-02-25    Europe                          Spain          1
## 9993  2020-02-25    Europe                          Spain          4
## 9994  2020-02-25    Europe                         Sweden          0
## 9995  2020-02-25    Europe                         Sweden          0
## 9996  2020-02-25    Europe                    Switzerland          0
## 9997  2020-02-25    Europe                    Switzerland          1
## 9998  2020-02-25    Europe                        Ukraine          0
## 9999  2020-02-25    Europe                 United Kingdom          0
## 10000 2020-02-25    Europe                 United Kingdom          0
## 10001 2020-02-25    Europe                        Vatican          0
## 10002 2020-02-25   Oceania                      Australia          0
## 10003 2020-02-25   Oceania                           Fiji          0
## 10004 2020-02-25   Oceania                    New Zealand          0
## 10005 2020-02-25   Oceania                    New Zealand          0
## 10006 2020-02-25   Oceania               Papua New Guinea          0
## 10007 2020-02-25     Other                      not found          0
## 10008 2020-02-26    Africa                        Algeria          0
## 10009 2020-02-26    Africa                        Algeria          1
## 10010 2020-02-26    Africa                         Angola          0
## 10011 2020-02-26    Africa                          Benin          0
## 10012 2020-02-26    Africa                       Botswana          0
## 10013 2020-02-26    Africa                   Burkina Faso          0
## 10014 2020-02-26    Africa                        Burundi          0
## 10015 2020-02-26    Africa                     Cabo Verde          0
## 10016 2020-02-26    Africa                       Cameroon          0
## 10017 2020-02-26    Africa       Central African Republic          0
## 10018 2020-02-26    Africa                           Chad          0
## 10019 2020-02-26    Africa                        Comoros          0
## 10020 2020-02-26    Africa                 Congo Republic          0
## 10021 2020-02-26    Africa                  Cote d'Ivoire          0
## 10022 2020-02-26    Africa                       DR Congo          0
## 10023 2020-02-26    Africa                       Djibouti          0
## 10024 2020-02-26    Africa                          Egypt          0
## 10025 2020-02-26    Africa                          Egypt          0
## 10026 2020-02-26    Africa              Equatorial Guinea          0
## 10027 2020-02-26    Africa                        Eritrea          0
## 10028 2020-02-26    Africa                       Eswatini          0
## 10029 2020-02-26    Africa                       Ethiopia          0
## 10030 2020-02-26    Africa                          Gabon          0
## 10031 2020-02-26    Africa                         Gambia          0
## 10032 2020-02-26    Africa                          Ghana          0
## 10033 2020-02-26    Africa                         Guinea          0
## 10034 2020-02-26    Africa                  Guinea-Bissau          0
## 10035 2020-02-26    Africa                          Kenya          0
## 10036 2020-02-26    Africa                        Lesotho          0
## 10037 2020-02-26    Africa                        Liberia          0
## 10038 2020-02-26    Africa                          Libya          0
## 10039 2020-02-26    Africa                     Madagascar          0
## 10040 2020-02-26    Africa                         Malawi          0
## 10041 2020-02-26    Africa                           Mali          0
## 10042 2020-02-26    Africa                     Mauritania          0
## 10043 2020-02-26    Africa                      Mauritius          0
## 10044 2020-02-26    Africa                        Morocco          0
## 10045 2020-02-26    Africa                     Mozambique          0
## 10046 2020-02-26    Africa                        Namibia          0
## 10047 2020-02-26    Africa                          Niger          0
## 10048 2020-02-26    Africa                        Nigeria          0
## 10049 2020-02-26    Africa                        Nigeria          0
## 10050 2020-02-26    Africa                         Rwanda          0
## 10051 2020-02-26    Africa          Sao Tome and Principe          0
## 10052 2020-02-26    Africa                        Senegal          0
## 10053 2020-02-26    Africa                     Seychelles          0
## 10054 2020-02-26    Africa                   Sierra Leone          0
## 10055 2020-02-26    Africa                        Somalia          0
## 10056 2020-02-26    Africa                   South Africa          0
## 10057 2020-02-26    Africa                    South Sudan          0
## 10058 2020-02-26    Africa                          Sudan          0
## 10059 2020-02-26    Africa                       Tanzania          0
## 10060 2020-02-26    Africa                           Togo          0
## 10061 2020-02-26    Africa                        Tunisia          0
## 10062 2020-02-26    Africa                         Uganda          0
## 10063 2020-02-26    Africa                 Western Sahara          0
## 10064 2020-02-26    Africa                         Zambia          0
## 10065 2020-02-26    Africa                       Zimbabwe          0
## 10066 2020-02-26   America            Antigua and Barbuda          0
## 10067 2020-02-26   America                      Argentina          0
## 10068 2020-02-26   America                        Bahamas          0
## 10069 2020-02-26   America                       Barbados          0
## 10070 2020-02-26   America                         Belize          0
## 10071 2020-02-26   America                        Bolivia          0
## 10072 2020-02-26   America                         Brazil          1
## 10073 2020-02-26   America                         Brazil          1
## 10074 2020-02-26   America                         Canada          0
## 10075 2020-02-26   America                          Chile          0
## 10076 2020-02-26   America                       Colombia          0
## 10077 2020-02-26   America                     Costa Rica          0
## 10078 2020-02-26   America                           Cuba          0
## 10079 2020-02-26   America                       Dominica          0
## 10080 2020-02-26   America             Dominican Republic          0
## 10081 2020-02-26   America             Dominican Republic          0
## 10082 2020-02-26   America                        Ecuador          0
## 10083 2020-02-26   America                        Ecuador          0
## 10084 2020-02-26   America                    El Salvador          0
## 10085 2020-02-26   America                        Grenada          0
## 10086 2020-02-26   America                      Guatemala          0
## 10087 2020-02-26   America                         Guyana          0
## 10088 2020-02-26   America                          Haiti          0
## 10089 2020-02-26   America                       Honduras          0
## 10090 2020-02-26   America                        Jamaica          0
## 10091 2020-02-26   America                         Mexico          0
## 10092 2020-02-26   America                         Mexico          0
## 10093 2020-02-26   America                      Nicaragua          0
## 10094 2020-02-26   America                         Panama          0
## 10095 2020-02-26   America                       Paraguay          0
## 10096 2020-02-26   America                           Peru          0
## 10097 2020-02-26   America            St. Kitts and Nevis          0
## 10098 2020-02-26   America                      St. Lucia          0
## 10099 2020-02-26   America St. Vincent and the Grenadines          0
## 10100 2020-02-26   America                       Suriname          0
## 10101 2020-02-26   America            Trinidad and Tobago          0
## 10102 2020-02-26   America                  United States          0
## 10103 2020-02-26   America                  United States          0
## 10104 2020-02-26   America                        Uruguay          0
## 10105 2020-02-26   America                      Venezuela          0
## 10106 2020-02-26      Asia                    Afghanistan          0
## 10107 2020-02-26      Asia                    Afghanistan          0
## 10108 2020-02-26      Asia                        Bahrain         10
## 10109 2020-02-26      Asia                        Bahrain         21
## 10110 2020-02-26      Asia                     Bangladesh          0
## 10111 2020-02-26      Asia                         Bhutan          0
## 10112 2020-02-26      Asia              Brunei Darussalam          0
## 10113 2020-02-26      Asia                       Cambodia          0
## 10114 2020-02-26      Asia                       Cambodia          0
## 10115 2020-02-26      Asia                          China        410
## 10116 2020-02-26      Asia                          India          0
## 10117 2020-02-26      Asia                          India          0
## 10118 2020-02-26      Asia                      Indonesia          0
## 10119 2020-02-26      Asia                      Indonesia          0
## 10120 2020-02-26      Asia                           Iran         34
## 10121 2020-02-26      Asia                           Iran         44
## 10122 2020-02-26      Asia                           Iraq          4
## 10123 2020-02-26      Asia                           Iraq          4
## 10124 2020-02-26      Asia                         Israel          0
## 10125 2020-02-26      Asia                         Israel          1
## 10126 2020-02-26      Asia                          Japan         19
## 10127 2020-02-26      Asia                          Japan         20
## 10128 2020-02-26      Asia                         Jordan          0
## 10129 2020-02-26      Asia                     Kazakhstan          0
## 10130 2020-02-26      Asia                         Kuwait          6
## 10131 2020-02-26      Asia                         Kuwait         15
## 10132 2020-02-26      Asia                Kyrgyz Republic          0
## 10133 2020-02-26      Asia                           Laos          0
## 10134 2020-02-26      Asia                        Lebanon          0
## 10135 2020-02-26      Asia                        Lebanon          1
## 10136 2020-02-26      Asia                       Malaysia          0
## 10137 2020-02-26      Asia                       Malaysia          0
## 10138 2020-02-26      Asia                       Maldives          0
## 10139 2020-02-26      Asia                       Mongolia          0
## 10140 2020-02-26      Asia                        Myanmar          0
## 10141 2020-02-26      Asia                          Nepal          0
## 10142 2020-02-26      Asia                          Nepal          0
## 10143 2020-02-26      Asia                           Oman          2
## 10144 2020-02-26      Asia                           Oman          2
## 10145 2020-02-26      Asia                       Pakistan          0
## 10146 2020-02-26      Asia                       Pakistan          0
## 10147 2020-02-26      Asia                      Palestine          0
## 10148 2020-02-26      Asia                    Philippines          0
## 10149 2020-02-26      Asia                    Philippines          0
## 10150 2020-02-26      Asia                          Qatar          0
## 10151 2020-02-26      Asia                          Qatar          0
## 10152 2020-02-26      Asia                   Saudi Arabia          0
## 10153 2020-02-26      Asia                      Singapore          1
## 10154 2020-02-26      Asia                      Singapore          2
## 10155 2020-02-26      Asia                    South Korea        254
## 10156 2020-02-26      Asia                    South Korea        284
## 10157 2020-02-26      Asia                      Sri Lanka          0
## 10158 2020-02-26      Asia                      Sri Lanka          0
## 10159 2020-02-26      Asia                          Syria          0
## 10160 2020-02-26      Asia                     Tajikistan          0
## 10161 2020-02-26      Asia                       Thailand          3
## 10162 2020-02-26      Asia                       Thailand          3
## 10163 2020-02-26      Asia                    Timor-Leste          0
## 10164 2020-02-26      Asia                         Turkey          0
## 10165 2020-02-26      Asia           United Arab Emirates          0
## 10166 2020-02-26      Asia           United Arab Emirates          0
## 10167 2020-02-26      Asia                     Uzbekistan          0
## 10168 2020-02-26      Asia                        Vietnam          0
## 10169 2020-02-26      Asia                        Vietnam          0
## 10170 2020-02-26      Asia                          Yemen          0
## 10171 2020-02-26      Asia                      not found          1
## 10172 2020-02-26    Europe                        Albania          0
## 10173 2020-02-26    Europe                        Andorra          0
## 10174 2020-02-26    Europe                        Armenia          0
## 10175 2020-02-26    Europe                        Armenia          0
## 10176 2020-02-26    Europe                        Austria          0
## 10177 2020-02-26    Europe                        Austria          2
## 10178 2020-02-26    Europe                     Azerbaijan          0
## 10179 2020-02-26    Europe                     Azerbaijan          0
## 10180 2020-02-26    Europe                        Belarus          0
## 10181 2020-02-26    Europe                        Belarus          0
## 10182 2020-02-26    Europe                        Belgium          0
## 10183 2020-02-26    Europe                        Belgium          0
## 10184 2020-02-26    Europe         Bosnia and Herzegovina          0
## 10185 2020-02-26    Europe                       Bulgaria          0
## 10186 2020-02-26    Europe                        Croatia          1
## 10187 2020-02-26    Europe                        Croatia          2
## 10188 2020-02-26    Europe                         Cyprus          0
## 10189 2020-02-26    Europe                 Czech Republic          0
## 10190 2020-02-26    Europe                 Czech Republic          0
## 10191 2020-02-26    Europe                        Denmark          0
## 10192 2020-02-26    Europe                        Denmark          0
## 10193 2020-02-26    Europe                        Estonia          0
## 10194 2020-02-26    Europe                        Estonia          0
## 10195 2020-02-26    Europe                        Finland          0
## 10196 2020-02-26    Europe                        Finland          1
## 10197 2020-02-26    Europe                         France          2
## 10198 2020-02-26    Europe                         France          4
## 10199 2020-02-26    Europe                        Georgia          0
## 10200 2020-02-26    Europe                        Georgia          1
## 10201 2020-02-26    Europe                        Germany          2
## 10202 2020-02-26    Europe                        Germany         10
## 10203 2020-02-26    Europe                         Greece          0
## 10204 2020-02-26    Europe                         Greece          1
## 10205 2020-02-26    Europe                        Hungary          0
## 10206 2020-02-26    Europe                        Iceland          0
## 10207 2020-02-26    Europe                        Iceland          0
## 10208 2020-02-26    Europe                        Ireland          0
## 10209 2020-02-26    Europe                        Ireland          0
## 10210 2020-02-26    Europe                          Italy         93
## 10211 2020-02-26    Europe                          Italy        131
## 10212 2020-02-26    Europe                         Kosovo          0
## 10213 2020-02-26    Europe                         Latvia          0
## 10214 2020-02-26    Europe                  Liechtenstein          0
## 10215 2020-02-26    Europe                      Lithuania          0
## 10216 2020-02-26    Europe                      Lithuania          0
## 10217 2020-02-26    Europe                     Luxembourg          0
## 10218 2020-02-26    Europe                     Luxembourg          0
## 10219 2020-02-26    Europe                      Macedonia          0
## 10220 2020-02-26    Europe                      Macedonia          1
## 10221 2020-02-26    Europe                          Malta          0
## 10222 2020-02-26    Europe                        Moldova          0
## 10223 2020-02-26    Europe                         Monaco          0
## 10224 2020-02-26    Europe                         Monaco          0
## 10225 2020-02-26    Europe                     Montenegro          0
## 10226 2020-02-26    Europe                    Netherlands          0
## 10227 2020-02-26    Europe                    Netherlands          0
## 10228 2020-02-26    Europe                         Norway          0
## 10229 2020-02-26    Europe                         Norway          1
## 10230 2020-02-26    Europe                         Poland          0
## 10231 2020-02-26    Europe                       Portugal          0
## 10232 2020-02-26    Europe                        Romania          0
## 10233 2020-02-26    Europe                        Romania          1
## 10234 2020-02-26    Europe                         Russia          0
## 10235 2020-02-26    Europe                         Russia          0
## 10236 2020-02-26    Europe                     San Marino          0
## 10237 2020-02-26    Europe                     San Marino          0
## 10238 2020-02-26    Europe                         Serbia          0
## 10239 2020-02-26    Europe                       Slovakia          0
## 10240 2020-02-26    Europe                       Slovenia          0
## 10241 2020-02-26    Europe                          Spain          6
## 10242 2020-02-26    Europe                          Spain          7
## 10243 2020-02-26    Europe                         Sweden          0
## 10244 2020-02-26    Europe                         Sweden          1
## 10245 2020-02-26    Europe                    Switzerland          0
## 10246 2020-02-26    Europe                    Switzerland          1
## 10247 2020-02-26    Europe                        Ukraine          0
## 10248 2020-02-26    Europe                 United Kingdom          0
## 10249 2020-02-26    Europe                 United Kingdom          0
## 10250 2020-02-26    Europe                        Vatican          0
## 10251 2020-02-26   Oceania                      Australia          0
## 10252 2020-02-26   Oceania                           Fiji          0
## 10253 2020-02-26   Oceania                    New Zealand          0
## 10254 2020-02-26   Oceania                    New Zealand          0
## 10255 2020-02-26   Oceania               Papua New Guinea          0
## 10256 2020-02-26     Other                      not found          0
## 10257 2020-02-27    Africa                        Algeria          0
## 10258 2020-02-27    Africa                        Algeria          0
## 10259 2020-02-27    Africa                         Angola          0
## 10260 2020-02-27    Africa                          Benin          0
## 10261 2020-02-27    Africa                       Botswana          0
## 10262 2020-02-27    Africa                   Burkina Faso          0
## 10263 2020-02-27    Africa                        Burundi          0
## 10264 2020-02-27    Africa                     Cabo Verde          0
## 10265 2020-02-27    Africa                       Cameroon          0
## 10266 2020-02-27    Africa       Central African Republic          0
## 10267 2020-02-27    Africa                           Chad          0
## 10268 2020-02-27    Africa                        Comoros          0
## 10269 2020-02-27    Africa                 Congo Republic          0
## 10270 2020-02-27    Africa                  Cote d'Ivoire          0
## 10271 2020-02-27    Africa                       DR Congo          0
## 10272 2020-02-27    Africa                       Djibouti          0
## 10273 2020-02-27    Africa                          Egypt          0
## 10274 2020-02-27    Africa                          Egypt          0
## 10275 2020-02-27    Africa              Equatorial Guinea          0
## 10276 2020-02-27    Africa                        Eritrea          0
## 10277 2020-02-27    Africa                       Eswatini          0
## 10278 2020-02-27    Africa                       Ethiopia          0
## 10279 2020-02-27    Africa                          Gabon          0
## 10280 2020-02-27    Africa                         Gambia          0
## 10281 2020-02-27    Africa                          Ghana          0
## 10282 2020-02-27    Africa                         Guinea          0
## 10283 2020-02-27    Africa                  Guinea-Bissau          0
## 10284 2020-02-27    Africa                          Kenya          0
## 10285 2020-02-27    Africa                        Lesotho          0
## 10286 2020-02-27    Africa                        Liberia          0
## 10287 2020-02-27    Africa                          Libya          0
## 10288 2020-02-27    Africa                     Madagascar          0
## 10289 2020-02-27    Africa                         Malawi          0
## 10290 2020-02-27    Africa                           Mali          0
## 10291 2020-02-27    Africa                     Mauritania          0
## 10292 2020-02-27    Africa                      Mauritius          0
## 10293 2020-02-27    Africa                        Morocco          0
## 10294 2020-02-27    Africa                     Mozambique          0
## 10295 2020-02-27    Africa                        Namibia          0
## 10296 2020-02-27    Africa                          Niger          0
## 10297 2020-02-27    Africa                        Nigeria          0
## 10298 2020-02-27    Africa                        Nigeria          0
## 10299 2020-02-27    Africa                         Rwanda          0
## 10300 2020-02-27    Africa          Sao Tome and Principe          0
## 10301 2020-02-27    Africa                        Senegal          0
## 10302 2020-02-27    Africa                     Seychelles          0
## 10303 2020-02-27    Africa                   Sierra Leone          0
## 10304 2020-02-27    Africa                        Somalia          0
## 10305 2020-02-27    Africa                   South Africa          0
## 10306 2020-02-27    Africa                    South Sudan          0
## 10307 2020-02-27    Africa                          Sudan          0
## 10308 2020-02-27    Africa                       Tanzania          0
## 10309 2020-02-27    Africa                           Togo          0
## 10310 2020-02-27    Africa                        Tunisia          0
## 10311 2020-02-27    Africa                         Uganda          0
## 10312 2020-02-27    Africa                 Western Sahara          0
## 10313 2020-02-27    Africa                         Zambia          0
## 10314 2020-02-27    Africa                       Zimbabwe          0
## 10315 2020-02-27   America            Antigua and Barbuda          0
## 10316 2020-02-27   America                      Argentina          0
## 10317 2020-02-27   America                        Bahamas          0
## 10318 2020-02-27   America                       Barbados          0
## 10319 2020-02-27   America                         Belize          0
## 10320 2020-02-27   America                        Bolivia          0
## 10321 2020-02-27   America                         Brazil          0
## 10322 2020-02-27   America                         Brazil          0
## 10323 2020-02-27   America                         Canada          1
## 10324 2020-02-27   America                          Chile          0
## 10325 2020-02-27   America                       Colombia          0
## 10326 2020-02-27   America                     Costa Rica          0
## 10327 2020-02-27   America                           Cuba          0
## 10328 2020-02-27   America                       Dominica          0
## 10329 2020-02-27   America             Dominican Republic          0
## 10330 2020-02-27   America             Dominican Republic          0
## 10331 2020-02-27   America                        Ecuador          0
## 10332 2020-02-27   America                        Ecuador          0
## 10333 2020-02-27   America                    El Salvador          0
## 10334 2020-02-27   America                        Grenada          0
## 10335 2020-02-27   America                      Guatemala          0
## 10336 2020-02-27   America                         Guyana          0
## 10337 2020-02-27   America                          Haiti          0
## 10338 2020-02-27   America                       Honduras          0
## 10339 2020-02-27   America                        Jamaica          0
## 10340 2020-02-27   America                         Mexico          0
## 10341 2020-02-27   America                         Mexico          0
## 10342 2020-02-27   America                      Nicaragua          0
## 10343 2020-02-27   America                         Panama          0
## 10344 2020-02-27   America                       Paraguay          0
## 10345 2020-02-27   America                           Peru          0
## 10346 2020-02-27   America            St. Kitts and Nevis          0
## 10347 2020-02-27   America                      St. Lucia          0
## 10348 2020-02-27   America St. Vincent and the Grenadines          0
## 10349 2020-02-27   America                       Suriname          0
## 10350 2020-02-27   America            Trinidad and Tobago          0
## 10351 2020-02-27   America                  United States          1
## 10352 2020-02-27   America                  United States          6
## 10353 2020-02-27   America                        Uruguay          0
## 10354 2020-02-27   America                      Venezuela          0
## 10355 2020-02-27      Asia                    Afghanistan          0
## 10356 2020-02-27      Asia                    Afghanistan          0
## 10357 2020-02-27      Asia                        Bahrain          0
## 10358 2020-02-27      Asia                        Bahrain         10
## 10359 2020-02-27      Asia                     Bangladesh          0
## 10360 2020-02-27      Asia                         Bhutan          0
## 10361 2020-02-27      Asia              Brunei Darussalam          0
## 10362 2020-02-27      Asia                       Cambodia          0
## 10363 2020-02-27      Asia                       Cambodia          0
## 10364 2020-02-27      Asia                          China        439
## 10365 2020-02-27      Asia                          India          0
## 10366 2020-02-27      Asia                          India          0
## 10367 2020-02-27      Asia                      Indonesia          0
## 10368 2020-02-27      Asia                      Indonesia          0
## 10369 2020-02-27      Asia                           Iran         44
## 10370 2020-02-27      Asia                           Iran        106
## 10371 2020-02-27      Asia                           Iraq          0
## 10372 2020-02-27      Asia                           Iraq          2
## 10373 2020-02-27      Asia                         Israel          0
## 10374 2020-02-27      Asia                         Israel          1
## 10375 2020-02-27      Asia                          Japan         22
## 10376 2020-02-27      Asia                          Japan         25
## 10377 2020-02-27      Asia                         Jordan          0
## 10378 2020-02-27      Asia                     Kazakhstan          0
## 10379 2020-02-27      Asia                         Kuwait         15
## 10380 2020-02-27      Asia                         Kuwait         17
## 10381 2020-02-27      Asia                Kyrgyz Republic          0
## 10382 2020-02-27      Asia                           Laos          0
## 10383 2020-02-27      Asia                        Lebanon          0
## 10384 2020-02-27      Asia                        Lebanon          1
## 10385 2020-02-27      Asia                       Malaysia          0
## 10386 2020-02-27      Asia                       Malaysia          1
## 10387 2020-02-27      Asia                       Maldives          0
## 10388 2020-02-27      Asia                       Mongolia          0
## 10389 2020-02-27      Asia                        Myanmar          0
## 10390 2020-02-27      Asia                          Nepal          0
## 10391 2020-02-27      Asia                          Nepal          0
## 10392 2020-02-27      Asia                           Oman          0
## 10393 2020-02-27      Asia                           Oman          0
## 10394 2020-02-27      Asia                       Pakistan          0
## 10395 2020-02-27      Asia                       Pakistan          2
## 10396 2020-02-27      Asia                      Palestine          0
## 10397 2020-02-27      Asia                    Philippines          0
## 10398 2020-02-27      Asia                    Philippines          0
## 10399 2020-02-27      Asia                          Qatar          0
## 10400 2020-02-27      Asia                          Qatar          0
## 10401 2020-02-27      Asia                   Saudi Arabia          0
## 10402 2020-02-27      Asia                      Singapore          0
## 10403 2020-02-27      Asia                      Singapore          2
## 10404 2020-02-27      Asia                    South Korea        449
## 10405 2020-02-27      Asia                    South Korea        505
## 10406 2020-02-27      Asia                      Sri Lanka          0
## 10407 2020-02-27      Asia                      Sri Lanka          0
## 10408 2020-02-27      Asia                          Syria          0
## 10409 2020-02-27      Asia                     Tajikistan          0
## 10410 2020-02-27      Asia                       Thailand          0
## 10411 2020-02-27      Asia                       Thailand          0
## 10412 2020-02-27      Asia                    Timor-Leste          0
## 10413 2020-02-27      Asia                         Turkey          0
## 10414 2020-02-27      Asia           United Arab Emirates          0
## 10415 2020-02-27      Asia           United Arab Emirates          0
## 10416 2020-02-27      Asia                     Uzbekistan          0
## 10417 2020-02-27      Asia                        Vietnam          0
## 10418 2020-02-27      Asia                        Vietnam          0
## 10419 2020-02-27      Asia                          Yemen          0
## 10420 2020-02-27      Asia                      not found          1
## 10421 2020-02-27    Europe                        Albania          0
## 10422 2020-02-27    Europe                        Andorra          0
## 10423 2020-02-27    Europe                        Armenia          0
## 10424 2020-02-27    Europe                        Armenia          0
## 10425 2020-02-27    Europe                        Austria          0
## 10426 2020-02-27    Europe                        Austria          1
## 10427 2020-02-27    Europe                     Azerbaijan          0
## 10428 2020-02-27    Europe                     Azerbaijan          0
## 10429 2020-02-27    Europe                        Belarus          0
## 10430 2020-02-27    Europe                        Belarus          0
## 10431 2020-02-27    Europe                        Belgium          0
## 10432 2020-02-27    Europe                        Belgium          0
## 10433 2020-02-27    Europe         Bosnia and Herzegovina          0
## 10434 2020-02-27    Europe                       Bulgaria          0
## 10435 2020-02-27    Europe                        Croatia          0
## 10436 2020-02-27    Europe                        Croatia          1
## 10437 2020-02-27    Europe                         Cyprus          0
## 10438 2020-02-27    Europe                 Czech Republic          0
## 10439 2020-02-27    Europe                 Czech Republic          0
## 10440 2020-02-27    Europe                        Denmark          1
## 10441 2020-02-27    Europe                        Denmark          1
## 10442 2020-02-27    Europe                        Estonia          0
## 10443 2020-02-27    Europe                        Estonia          1
## 10444 2020-02-27    Europe                        Finland          0
## 10445 2020-02-27    Europe                        Finland          1
## 10446 2020-02-27    Europe                         France          3
## 10447 2020-02-27    Europe                         France         20
## 10448 2020-02-27    Europe                        Georgia          0
## 10449 2020-02-27    Europe                        Georgia          1
## 10450 2020-02-27    Europe                        Germany          4
## 10451 2020-02-27    Europe                        Germany         19
## 10452 2020-02-27    Europe                         Greece          1
## 10453 2020-02-27    Europe                         Greece          2
## 10454 2020-02-27    Europe                        Hungary          0
## 10455 2020-02-27    Europe                        Iceland          0
## 10456 2020-02-27    Europe                        Iceland          0
## 10457 2020-02-27    Europe                        Ireland          0
## 10458 2020-02-27    Europe                        Ireland          0
## 10459 2020-02-27    Europe                          Italy         78
## 10460 2020-02-27    Europe                          Italy        202
## 10461 2020-02-27    Europe                         Kosovo          0
## 10462 2020-02-27    Europe                         Latvia          0
## 10463 2020-02-27    Europe                  Liechtenstein          0
## 10464 2020-02-27    Europe                      Lithuania          0
## 10465 2020-02-27    Europe                      Lithuania          0
## 10466 2020-02-27    Europe                     Luxembourg          0
## 10467 2020-02-27    Europe                     Luxembourg          0
## 10468 2020-02-27    Europe                      Macedonia          0
## 10469 2020-02-27    Europe                      Macedonia          1
## 10470 2020-02-27    Europe                          Malta          0
## 10471 2020-02-27    Europe                        Moldova          0
## 10472 2020-02-27    Europe                         Monaco          0
## 10473 2020-02-27    Europe                         Monaco          0
## 10474 2020-02-27    Europe                     Montenegro          0
## 10475 2020-02-27    Europe                    Netherlands          0
## 10476 2020-02-27    Europe                    Netherlands          1
## 10477 2020-02-27    Europe                         Norway          0
## 10478 2020-02-27    Europe                         Norway          1
## 10479 2020-02-27    Europe                         Poland          0
## 10480 2020-02-27    Europe                       Portugal          0
## 10481 2020-02-27    Europe                        Romania          0
## 10482 2020-02-27    Europe                        Romania          1
## 10483 2020-02-27    Europe                         Russia          0
## 10484 2020-02-27    Europe                         Russia          0
## 10485 2020-02-27    Europe                     San Marino          0
## 10486 2020-02-27    Europe                     San Marino          1
## 10487 2020-02-27    Europe                         Serbia          0
## 10488 2020-02-27    Europe                       Slovakia          0
## 10489 2020-02-27    Europe                       Slovenia          0
## 10490 2020-02-27    Europe                          Spain          2
## 10491 2020-02-27    Europe                          Spain          8
## 10492 2020-02-27    Europe                         Sweden          1
## 10493 2020-02-27    Europe                         Sweden          5
## 10494 2020-02-27    Europe                    Switzerland          0
## 10495 2020-02-27    Europe                    Switzerland          7
## 10496 2020-02-27    Europe                        Ukraine          0
## 10497 2020-02-27    Europe                 United Kingdom          0
## 10498 2020-02-27    Europe                 United Kingdom          2
## 10499 2020-02-27    Europe                        Vatican          0
## 10500 2020-02-27   Oceania                      Australia          1
## 10501 2020-02-27   Oceania                           Fiji          0
## 10502 2020-02-27   Oceania                    New Zealand          0
## 10503 2020-02-27   Oceania                    New Zealand          0
## 10504 2020-02-27   Oceania               Papua New Guinea          0
## 10505 2020-02-27     Other                      not found         14
## 10506 2020-02-28    Africa                        Algeria          0
## 10507 2020-02-28    Africa                        Algeria          0
## 10508 2020-02-28    Africa                         Angola          0
## 10509 2020-02-28    Africa                          Benin          0
## 10510 2020-02-28    Africa                       Botswana          0
## 10511 2020-02-28    Africa                   Burkina Faso          0
## 10512 2020-02-28    Africa                        Burundi          0
## 10513 2020-02-28    Africa                     Cabo Verde          0
## 10514 2020-02-28    Africa                       Cameroon          0
## 10515 2020-02-28    Africa       Central African Republic          0
## 10516 2020-02-28    Africa                           Chad          0
## 10517 2020-02-28    Africa                        Comoros          0
## 10518 2020-02-28    Africa                 Congo Republic          0
## 10519 2020-02-28    Africa                  Cote d'Ivoire          0
## 10520 2020-02-28    Africa                       DR Congo          0
## 10521 2020-02-28    Africa                       Djibouti          0
## 10522 2020-02-28    Africa                          Egypt          0
## 10523 2020-02-28    Africa                          Egypt          0
## 10524 2020-02-28    Africa              Equatorial Guinea          0
## 10525 2020-02-28    Africa                        Eritrea          0
## 10526 2020-02-28    Africa                       Eswatini          0
## 10527 2020-02-28    Africa                       Ethiopia          0
## 10528 2020-02-28    Africa                          Gabon          0
## 10529 2020-02-28    Africa                         Gambia          0
## 10530 2020-02-28    Africa                          Ghana          0
## 10531 2020-02-28    Africa                         Guinea          0
## 10532 2020-02-28    Africa                  Guinea-Bissau          0
## 10533 2020-02-28    Africa                          Kenya          0
## 10534 2020-02-28    Africa                        Lesotho          0
## 10535 2020-02-28    Africa                        Liberia          0
## 10536 2020-02-28    Africa                          Libya          0
## 10537 2020-02-28    Africa                     Madagascar          0
## 10538 2020-02-28    Africa                         Malawi          0
## 10539 2020-02-28    Africa                           Mali          0
## 10540 2020-02-28    Africa                     Mauritania          0
## 10541 2020-02-28    Africa                      Mauritius          0
## 10542 2020-02-28    Africa                        Morocco          0
## 10543 2020-02-28    Africa                     Mozambique          0
## 10544 2020-02-28    Africa                        Namibia          0
## 10545 2020-02-28    Africa                          Niger          0
## 10546 2020-02-28    Africa                        Nigeria          1
## 10547 2020-02-28    Africa                        Nigeria          1
## 10548 2020-02-28    Africa                         Rwanda          0
## 10549 2020-02-28    Africa          Sao Tome and Principe          0
## 10550 2020-02-28    Africa                        Senegal          0
## 10551 2020-02-28    Africa                     Seychelles          0
## 10552 2020-02-28    Africa                   Sierra Leone          0
## 10553 2020-02-28    Africa                        Somalia          0
## 10554 2020-02-28    Africa                   South Africa          0
## 10555 2020-02-28    Africa                    South Sudan          0
## 10556 2020-02-28    Africa                          Sudan          0
## 10557 2020-02-28    Africa                       Tanzania          0
## 10558 2020-02-28    Africa                           Togo          0
## 10559 2020-02-28    Africa                        Tunisia          0
## 10560 2020-02-28    Africa                         Uganda          0
## 10561 2020-02-28    Africa                 Western Sahara          0
## 10562 2020-02-28    Africa                         Zambia          0
## 10563 2020-02-28    Africa                       Zimbabwe          0
## 10564 2020-02-28   America            Antigua and Barbuda          0
## 10565 2020-02-28   America                      Argentina          0
## 10566 2020-02-28   America                        Bahamas          0
## 10567 2020-02-28   America                       Barbados          0
## 10568 2020-02-28   America                         Belize          0
## 10569 2020-02-28   America                        Bolivia          0
## 10570 2020-02-28   America                         Brazil          0
## 10571 2020-02-28   America                         Brazil          0
## 10572 2020-02-28   America                         Canada          2
## 10573 2020-02-28   America                          Chile          0
## 10574 2020-02-28   America                       Colombia          0
## 10575 2020-02-28   America                     Costa Rica          0
## 10576 2020-02-28   America                           Cuba          0
## 10577 2020-02-28   America                       Dominica          0
## 10578 2020-02-28   America             Dominican Republic          0
## 10579 2020-02-28   America             Dominican Republic          0
## 10580 2020-02-28   America                        Ecuador          0
## 10581 2020-02-28   America                        Ecuador          0
## 10582 2020-02-28   America                    El Salvador          0
## 10583 2020-02-28   America                        Grenada          0
## 10584 2020-02-28   America                      Guatemala          0
## 10585 2020-02-28   America                         Guyana          0
## 10586 2020-02-28   America                          Haiti          0
## 10587 2020-02-28   America                       Honduras          0
## 10588 2020-02-28   America                        Jamaica          0
## 10589 2020-02-28   America                         Mexico          0
## 10590 2020-02-28   America                         Mexico          1
## 10591 2020-02-28   America                      Nicaragua          0
## 10592 2020-02-28   America                         Panama          0
## 10593 2020-02-28   America                       Paraguay          0
## 10594 2020-02-28   America                           Peru          0
## 10595 2020-02-28   America            St. Kitts and Nevis          0
## 10596 2020-02-28   America                      St. Lucia          0
## 10597 2020-02-28   America St. Vincent and the Grenadines          0
## 10598 2020-02-28   America                       Suriname          0
## 10599 2020-02-28   America            Trinidad and Tobago          0
## 10600 2020-02-28   America                  United States          0
## 10601 2020-02-28   America                  United States          1
## 10602 2020-02-28   America                        Uruguay          0
## 10603 2020-02-28   America                      Venezuela          0
## 10604 2020-02-28      Asia                    Afghanistan          0
## 10605 2020-02-28      Asia                    Afghanistan          0
## 10606 2020-02-28      Asia                        Bahrain          0
## 10607 2020-02-28      Asia                        Bahrain          3
## 10608 2020-02-28      Asia                     Bangladesh          0
## 10609 2020-02-28      Asia                         Bhutan          0
## 10610 2020-02-28      Asia              Brunei Darussalam          0
## 10611 2020-02-28      Asia                       Cambodia          0
## 10612 2020-02-28      Asia                       Cambodia          0
## 10613 2020-02-28      Asia                          China        329
## 10614 2020-02-28      Asia                          India          0
## 10615 2020-02-28      Asia                          India          0
## 10616 2020-02-28      Asia                      Indonesia          0
## 10617 2020-02-28      Asia                      Indonesia          0
## 10618 2020-02-28      Asia                           Iran        106
## 10619 2020-02-28      Asia                           Iran        143
## 10620 2020-02-28      Asia                           Iraq          0
## 10621 2020-02-28      Asia                           Iraq          1
## 10622 2020-02-28      Asia                         Israel          1
## 10623 2020-02-28      Asia                         Israel          1
## 10624 2020-02-28      Asia                          Japan         14
## 10625 2020-02-28      Asia                          Japan         24
## 10626 2020-02-28      Asia                         Jordan          0
## 10627 2020-02-28      Asia                     Kazakhstan          0
## 10628 2020-02-28      Asia                         Kuwait          2
## 10629 2020-02-28      Asia                         Kuwait         17
## 10630 2020-02-28      Asia                Kyrgyz Republic          0
## 10631 2020-02-28      Asia                           Laos          0
## 10632 2020-02-28      Asia                        Lebanon          0
## 10633 2020-02-28      Asia                        Lebanon          1
## 10634 2020-02-28      Asia                       Malaysia          0
## 10635 2020-02-28      Asia                       Malaysia          1
## 10636 2020-02-28      Asia                       Maldives          0
## 10637 2020-02-28      Asia                       Mongolia          0
## 10638 2020-02-28      Asia                        Myanmar          0
## 10639 2020-02-28      Asia                          Nepal          0
## 10640 2020-02-28      Asia                          Nepal          0
## 10641 2020-02-28      Asia                           Oman          0
## 10642 2020-02-28      Asia                           Oman          2
## 10643 2020-02-28      Asia                       Pakistan          0
## 10644 2020-02-28      Asia                       Pakistan          2
## 10645 2020-02-28      Asia                      Palestine          0
## 10646 2020-02-28      Asia                    Philippines          0
## 10647 2020-02-28      Asia                    Philippines          0
## 10648 2020-02-28      Asia                          Qatar          0
## 10649 2020-02-28      Asia                          Qatar          0
## 10650 2020-02-28      Asia                   Saudi Arabia          0
## 10651 2020-02-28      Asia                      Singapore          0
## 10652 2020-02-28      Asia                      Singapore          3
## 10653 2020-02-28      Asia                    South Korea        427
## 10654 2020-02-28      Asia                    South Korea        571
## 10655 2020-02-28      Asia                      Sri Lanka          0
## 10656 2020-02-28      Asia                      Sri Lanka          0
## 10657 2020-02-28      Asia                          Syria          0
## 10658 2020-02-28      Asia                     Tajikistan          0
## 10659 2020-02-28      Asia                       Thailand          0
## 10660 2020-02-28      Asia                       Thailand          1
## 10661 2020-02-28      Asia                    Timor-Leste          0
## 10662 2020-02-28      Asia                         Turkey          0
## 10663 2020-02-28      Asia           United Arab Emirates          6
## 10664 2020-02-28      Asia           United Arab Emirates          6
## 10665 2020-02-28      Asia                     Uzbekistan          0
## 10666 2020-02-28      Asia                        Vietnam          0
## 10667 2020-02-28      Asia                        Vietnam          0
## 10668 2020-02-28      Asia                          Yemen          0
## 10669 2020-02-28      Asia                      not found          2
## 10670 2020-02-28    Europe                        Albania          0
## 10671 2020-02-28    Europe                        Andorra          0
## 10672 2020-02-28    Europe                        Armenia          0
## 10673 2020-02-28    Europe                        Armenia          0
## 10674 2020-02-28    Europe                        Austria          0
## 10675 2020-02-28    Europe                        Austria          3
## 10676 2020-02-28    Europe                     Azerbaijan          0
## 10677 2020-02-28    Europe                     Azerbaijan          0
## 10678 2020-02-28    Europe                        Belarus          1
## 10679 2020-02-28    Europe                        Belarus          1
## 10680 2020-02-28    Europe                        Belgium          0
## 10681 2020-02-28    Europe                        Belgium          0
## 10682 2020-02-28    Europe         Bosnia and Herzegovina          0
## 10683 2020-02-28    Europe                       Bulgaria          0
## 10684 2020-02-28    Europe                        Croatia          1
## 10685 2020-02-28    Europe                        Croatia          2
## 10686 2020-02-28    Europe                         Cyprus          0
## 10687 2020-02-28    Europe                 Czech Republic          0
## 10688 2020-02-28    Europe                 Czech Republic          0
## 10689 2020-02-28    Europe                        Denmark          0
## 10690 2020-02-28    Europe                        Denmark          0
## 10691 2020-02-28    Europe                        Estonia          0
## 10692 2020-02-28    Europe                        Estonia          1
## 10693 2020-02-28    Europe                        Finland          0
## 10694 2020-02-28    Europe                        Finland          0
## 10695 2020-02-28    Europe                         France         19
## 10696 2020-02-28    Europe                         France         21
## 10697 2020-02-28    Europe                        Georgia          0
## 10698 2020-02-28    Europe                        Georgia          0
## 10699 2020-02-28    Europe                        Germany          2
## 10700 2020-02-28    Europe                        Germany         26
## 10701 2020-02-28    Europe                         Greece          1
## 10702 2020-02-28    Europe                         Greece          2
## 10703 2020-02-28    Europe                        Hungary          0
## 10704 2020-02-28    Europe                        Iceland          0
## 10705 2020-02-28    Europe                        Iceland          1
## 10706 2020-02-28    Europe                        Ireland          0
## 10707 2020-02-28    Europe                        Ireland          0
## 10708 2020-02-28    Europe                          Italy        233
## 10709 2020-02-28    Europe                          Italy        250
## 10710 2020-02-28    Europe                         Kosovo          0
## 10711 2020-02-28    Europe                         Latvia          0
## 10712 2020-02-28    Europe                  Liechtenstein          0
## 10713 2020-02-28    Europe                      Lithuania          1
## 10714 2020-02-28    Europe                      Lithuania          1
## 10715 2020-02-28    Europe                     Luxembourg          0
## 10716 2020-02-28    Europe                     Luxembourg          0
## 10717 2020-02-28    Europe                      Macedonia          0
## 10718 2020-02-28    Europe                      Macedonia          0
## 10719 2020-02-28    Europe                          Malta          0
## 10720 2020-02-28    Europe                        Moldova          0
## 10721 2020-02-28    Europe                         Monaco          0
## 10722 2020-02-28    Europe                         Monaco          0
## 10723 2020-02-28    Europe                     Montenegro          0
## 10724 2020-02-28    Europe                    Netherlands          0
## 10725 2020-02-28    Europe                    Netherlands          1
## 10726 2020-02-28    Europe                         Norway          3
## 10727 2020-02-28    Europe                         Norway          5
## 10728 2020-02-28    Europe                         Poland          0
## 10729 2020-02-28    Europe                       Portugal          0
## 10730 2020-02-28    Europe                        Romania          0
## 10731 2020-02-28    Europe                        Romania          2
## 10732 2020-02-28    Europe                         Russia          0
## 10733 2020-02-28    Europe                         Russia          0
## 10734 2020-02-28    Europe                     San Marino          0
## 10735 2020-02-28    Europe                     San Marino          1
## 10736 2020-02-28    Europe                         Serbia          0
## 10737 2020-02-28    Europe                       Slovakia          0
## 10738 2020-02-28    Europe                       Slovenia          0
## 10739 2020-02-28    Europe                          Spain         17
## 10740 2020-02-28    Europe                          Spain         18
## 10741 2020-02-28    Europe                         Sweden          0
## 10742 2020-02-28    Europe                         Sweden          5
## 10743 2020-02-28    Europe                    Switzerland          0
## 10744 2020-02-28    Europe                    Switzerland          7
## 10745 2020-02-28    Europe                        Ukraine          0
## 10746 2020-02-28    Europe                 United Kingdom          3
## 10747 2020-02-28    Europe                 United Kingdom          5
## 10748 2020-02-28    Europe                        Vatican          0
## 10749 2020-02-28   Oceania                      Australia          0
## 10750 2020-02-28   Oceania                           Fiji          0
## 10751 2020-02-28   Oceania                    New Zealand          1
## 10752 2020-02-28   Oceania                    New Zealand          1
## 10753 2020-02-28   Oceania               Papua New Guinea          0
## 10754 2020-02-28     Other                      not found          0
## 10755 2020-02-29    Africa                        Algeria          0
## 10756 2020-02-29    Africa                        Algeria          0
## 10757 2020-02-29    Africa                         Angola          0
## 10758 2020-02-29    Africa                          Benin          0
## 10759 2020-02-29    Africa                       Botswana          0
## 10760 2020-02-29    Africa                   Burkina Faso          0
## 10761 2020-02-29    Africa                        Burundi          0
## 10762 2020-02-29    Africa                     Cabo Verde          0
## 10763 2020-02-29    Africa                       Cameroon          0
## 10764 2020-02-29    Africa       Central African Republic          0
## 10765 2020-02-29    Africa                           Chad          0
## 10766 2020-02-29    Africa                        Comoros          0
## 10767 2020-02-29    Africa                 Congo Republic          0
## 10768 2020-02-29    Africa                  Cote d'Ivoire          0
## 10769 2020-02-29    Africa                       DR Congo          0
## 10770 2020-02-29    Africa                       Djibouti          0
## 10771 2020-02-29    Africa                          Egypt          0
## 10772 2020-02-29    Africa                          Egypt          0
## 10773 2020-02-29    Africa              Equatorial Guinea          0
## 10774 2020-02-29    Africa                        Eritrea          0
## 10775 2020-02-29    Africa                       Eswatini          0
## 10776 2020-02-29    Africa                       Ethiopia          0
## 10777 2020-02-29    Africa                          Gabon          0
## 10778 2020-02-29    Africa                         Gambia          0
## 10779 2020-02-29    Africa                          Ghana          0
## 10780 2020-02-29    Africa                         Guinea          0
## 10781 2020-02-29    Africa                  Guinea-Bissau          0
## 10782 2020-02-29    Africa                          Kenya          0
## 10783 2020-02-29    Africa                        Lesotho          0
## 10784 2020-02-29    Africa                        Liberia          0
## 10785 2020-02-29    Africa                          Libya          0
## 10786 2020-02-29    Africa                     Madagascar          0
## 10787 2020-02-29    Africa                         Malawi          0
## 10788 2020-02-29    Africa                           Mali          0
## 10789 2020-02-29    Africa                     Mauritania          0
## 10790 2020-02-29    Africa                      Mauritius          0
## 10791 2020-02-29    Africa                        Morocco          0
## 10792 2020-02-29    Africa                     Mozambique          0
## 10793 2020-02-29    Africa                        Namibia          0
## 10794 2020-02-29    Africa                          Niger          0
## 10795 2020-02-29    Africa                        Nigeria          0
## 10796 2020-02-29    Africa                        Nigeria          0
## 10797 2020-02-29    Africa                         Rwanda          0
## 10798 2020-02-29    Africa          Sao Tome and Principe          0
## 10799 2020-02-29    Africa                        Senegal          0
## 10800 2020-02-29    Africa                     Seychelles          0
## 10801 2020-02-29    Africa                   Sierra Leone          0
## 10802 2020-02-29    Africa                        Somalia          0
## 10803 2020-02-29    Africa                   South Africa          0
## 10804 2020-02-29    Africa                    South Sudan          0
## 10805 2020-02-29    Africa                          Sudan          0
## 10806 2020-02-29    Africa                       Tanzania          0
## 10807 2020-02-29    Africa                           Togo          0
## 10808 2020-02-29    Africa                        Tunisia          0
## 10809 2020-02-29    Africa                         Uganda          0
## 10810 2020-02-29    Africa                 Western Sahara          0
## 10811 2020-02-29    Africa                         Zambia          0
## 10812 2020-02-29    Africa                       Zimbabwe          0
## 10813 2020-02-29   America            Antigua and Barbuda          0
## 10814 2020-02-29   America                      Argentina          0
## 10815 2020-02-29   America                        Bahamas          0
## 10816 2020-02-29   America                       Barbados          0
## 10817 2020-02-29   America                         Belize          0
## 10818 2020-02-29   America                        Bolivia          0
## 10819 2020-02-29   America                         Brazil          0
## 10820 2020-02-29   America                         Brazil          1
## 10821 2020-02-29   America                         Canada          2
## 10822 2020-02-29   America                          Chile          0
## 10823 2020-02-29   America                       Colombia          0
## 10824 2020-02-29   America                     Costa Rica          0
## 10825 2020-02-29   America                           Cuba          0
## 10826 2020-02-29   America                       Dominica          0
## 10827 2020-02-29   America             Dominican Republic          0
## 10828 2020-02-29   America             Dominican Republic          0
## 10829 2020-02-29   America                        Ecuador          0
## 10830 2020-02-29   America                        Ecuador          0
## 10831 2020-02-29   America                    El Salvador          0
## 10832 2020-02-29   America                        Grenada          0
## 10833 2020-02-29   America                      Guatemala          0
## 10834 2020-02-29   America                         Guyana          0
## 10835 2020-02-29   America                          Haiti          0
## 10836 2020-02-29   America                       Honduras          0
## 10837 2020-02-29   America                        Jamaica          0
## 10838 2020-02-29   America                         Mexico          2
## 10839 2020-02-29   America                         Mexico          3
## 10840 2020-02-29   America                      Nicaragua          0
## 10841 2020-02-29   America                         Panama          0
## 10842 2020-02-29   America                       Paraguay          0
## 10843 2020-02-29   America                           Peru          0
## 10844 2020-02-29   America            St. Kitts and Nevis          0
## 10845 2020-02-29   America                      St. Lucia          0
## 10846 2020-02-29   America St. Vincent and the Grenadines          0
## 10847 2020-02-29   America                       Suriname          0
## 10848 2020-02-29   America            Trinidad and Tobago          0
## 10849 2020-02-29   America                  United States          6
## 10850 2020-02-29   America                  United States          8
## 10851 2020-02-29   America                        Uruguay          0
## 10852 2020-02-29   America                      Venezuela          0
## 10853 2020-02-29      Asia                    Afghanistan          0
## 10854 2020-02-29      Asia                    Afghanistan          0
## 10855 2020-02-29      Asia                        Bahrain          5
## 10856 2020-02-29      Asia                        Bahrain          5
## 10857 2020-02-29      Asia                     Bangladesh          0
## 10858 2020-02-29      Asia                         Bhutan          0
## 10859 2020-02-29      Asia              Brunei Darussalam          0
## 10860 2020-02-29      Asia                       Cambodia          0
## 10861 2020-02-29      Asia                       Cambodia          0
## 10862 2020-02-29      Asia                          China        428
## 10863 2020-02-29      Asia                          India          0
## 10864 2020-02-29      Asia                          India          0
## 10865 2020-02-29      Asia                      Indonesia          0
## 10866 2020-02-29      Asia                      Indonesia          0
## 10867 2020-02-29      Asia                           Iran        143
## 10868 2020-02-29      Asia                           Iran        205
## 10869 2020-02-29      Asia                           Iraq          1
## 10870 2020-02-29      Asia                           Iraq          6
## 10871 2020-02-29      Asia                         Israel          3
## 10872 2020-02-29      Asia                         Israel          4
## 10873 2020-02-29      Asia                          Japan         13
## 10874 2020-02-29      Asia                          Japan         20
## 10875 2020-02-29      Asia                         Jordan          0
## 10876 2020-02-29      Asia                     Kazakhstan          0
## 10877 2020-02-29      Asia                         Kuwait          0
## 10878 2020-02-29      Asia                         Kuwait          2
## 10879 2020-02-29      Asia                Kyrgyz Republic          0
## 10880 2020-02-29      Asia                           Laos          0
## 10881 2020-02-29      Asia                        Lebanon          0
## 10882 2020-02-29      Asia                        Lebanon          2
## 10883 2020-02-29      Asia                       Malaysia          2
## 10884 2020-02-29      Asia                       Malaysia          2
## 10885 2020-02-29      Asia                       Maldives          0
## 10886 2020-02-29      Asia                       Mongolia          0
## 10887 2020-02-29      Asia                        Myanmar          0
## 10888 2020-02-29      Asia                          Nepal          0
## 10889 2020-02-29      Asia                          Nepal          0
## 10890 2020-02-29      Asia                           Oman          0
## 10891 2020-02-29      Asia                           Oman          2
## 10892 2020-02-29      Asia                       Pakistan          0
## 10893 2020-02-29      Asia                       Pakistan          0
## 10894 2020-02-29      Asia                      Palestine          0
## 10895 2020-02-29      Asia                    Philippines          0
## 10896 2020-02-29      Asia                    Philippines          0
## 10897 2020-02-29      Asia                          Qatar          0
## 10898 2020-02-29      Asia                          Qatar          1
## 10899 2020-02-29      Asia                   Saudi Arabia          0
## 10900 2020-02-29      Asia                      Singapore          2
## 10901 2020-02-29      Asia                      Singapore          9
## 10902 2020-02-29      Asia                    South Korea        813
## 10903 2020-02-29      Asia                    South Korea        909
## 10904 2020-02-29      Asia                      Sri Lanka          0
## 10905 2020-02-29      Asia                      Sri Lanka          0
## 10906 2020-02-29      Asia                          Syria          0
## 10907 2020-02-29      Asia                     Tajikistan          0
## 10908 2020-02-29      Asia                       Thailand          1
## 10909 2020-02-29      Asia                       Thailand          2
## 10910 2020-02-29      Asia                    Timor-Leste          0
## 10911 2020-02-29      Asia                         Turkey          0
## 10912 2020-02-29      Asia           United Arab Emirates          0
## 10913 2020-02-29      Asia           United Arab Emirates          2
## 10914 2020-02-29      Asia                     Uzbekistan          0
## 10915 2020-02-29      Asia                        Vietnam          0
## 10916 2020-02-29      Asia                        Vietnam          0
## 10917 2020-02-29      Asia                          Yemen          0
## 10918 2020-02-29      Asia                      not found          5
## 10919 2020-02-29    Europe                        Albania          0
## 10920 2020-02-29    Europe                        Andorra          0
## 10921 2020-02-29    Europe                        Armenia          0
## 10922 2020-02-29    Europe                        Armenia          0
## 10923 2020-02-29    Europe                        Austria          2
## 10924 2020-02-29    Europe                        Austria          6
## 10925 2020-02-29    Europe                     Azerbaijan          0
## 10926 2020-02-29    Europe                     Azerbaijan          1
## 10927 2020-02-29    Europe                        Belarus          0
## 10928 2020-02-29    Europe                        Belarus          0
## 10929 2020-02-29    Europe                        Belgium          0
## 10930 2020-02-29    Europe                        Belgium          0
## 10931 2020-02-29    Europe         Bosnia and Herzegovina          0
## 10932 2020-02-29    Europe                       Bulgaria          0
## 10933 2020-02-29    Europe                        Croatia          1
## 10934 2020-02-29    Europe                        Croatia          2
## 10935 2020-02-29    Europe                         Cyprus          0
## 10936 2020-02-29    Europe                 Czech Republic          0
## 10937 2020-02-29    Europe                 Czech Republic          0
## 10938 2020-02-29    Europe                        Denmark          1
## 10939 2020-02-29    Europe                        Denmark          2
## 10940 2020-02-29    Europe                        Estonia          0
## 10941 2020-02-29    Europe                        Estonia          0
## 10942 2020-02-29    Europe                        Finland          1
## 10943 2020-02-29    Europe                        Finland          1
## 10944 2020-02-29    Europe                         France         19
## 10945 2020-02-29    Europe                         France         43
## 10946 2020-02-29    Europe                        Georgia          0
## 10947 2020-02-29    Europe                        Georgia          1
## 10948 2020-02-29    Europe                        Germany         10
## 10949 2020-02-29    Europe                        Germany         31
## 10950 2020-02-29    Europe                         Greece          0
## 10951 2020-02-29    Europe                         Greece          1
## 10952 2020-02-29    Europe                        Hungary          0
## 10953 2020-02-29    Europe                        Iceland          0
## 10954 2020-02-29    Europe                        Iceland          1
## 10955 2020-02-29    Europe                        Ireland          0
## 10956 2020-02-29    Europe                        Ireland          1
## 10957 2020-02-29    Europe                          Italy        238
## 10958 2020-02-29    Europe                          Italy        240
## 10959 2020-02-29    Europe                         Kosovo          0
## 10960 2020-02-29    Europe                         Latvia          0
## 10961 2020-02-29    Europe                  Liechtenstein          0
## 10962 2020-02-29    Europe                      Lithuania          0
## 10963 2020-02-29    Europe                      Lithuania          0
## 10964 2020-02-29    Europe                     Luxembourg          0
## 10965 2020-02-29    Europe                     Luxembourg          1
## 10966 2020-02-29    Europe                      Macedonia          0
## 10967 2020-02-29    Europe                      Macedonia          0
## 10968 2020-02-29    Europe                          Malta          0
## 10969 2020-02-29    Europe                        Moldova          0
## 10970 2020-02-29    Europe                         Monaco          1
## 10971 2020-02-29    Europe                         Monaco          1
## 10972 2020-02-29    Europe                     Montenegro          0
## 10973 2020-02-29    Europe                    Netherlands          1
## 10974 2020-02-29    Europe                    Netherlands          5
## 10975 2020-02-29    Europe                         Norway          2
## 10976 2020-02-29    Europe                         Norway          9
## 10977 2020-02-29    Europe                         Poland          0
## 10978 2020-02-29    Europe                       Portugal          0
## 10979 2020-02-29    Europe                        Romania          0
## 10980 2020-02-29    Europe                        Romania          2
## 10981 2020-02-29    Europe                         Russia          0
## 10982 2020-02-29    Europe                         Russia          0
## 10983 2020-02-29    Europe                     San Marino          0
## 10984 2020-02-29    Europe                     San Marino          0
## 10985 2020-02-29    Europe                         Serbia          0
## 10986 2020-02-29    Europe                       Slovakia          0
## 10987 2020-02-29    Europe                       Slovenia          0
## 10988 2020-02-29    Europe                          Spain         13
## 10989 2020-02-29    Europe                          Spain         19
## 10990 2020-02-29    Europe                         Sweden          5
## 10991 2020-02-29    Europe                         Sweden          5
## 10992 2020-02-29    Europe                    Switzerland          4
## 10993 2020-02-29    Europe                    Switzerland         10
## 10994 2020-02-29    Europe                        Ukraine          0
## 10995 2020-02-29    Europe                 United Kingdom          2
## 10996 2020-02-29    Europe                 United Kingdom          3
## 10997 2020-02-29    Europe                        Vatican          0
## 10998 2020-02-29   Oceania                      Australia          2
## 10999 2020-02-29   Oceania                           Fiji          0
## 11000 2020-02-29   Oceania                    New Zealand          0
## 11001 2020-02-29   Oceania                    New Zealand          0
## 11002 2020-02-29   Oceania               Papua New Guinea          0
## 11003 2020-02-29     Other                      not found          0
## 11004 2020-03-01    Africa                        Algeria          0
## 11005 2020-03-01    Africa                        Algeria          2
## 11006 2020-03-01    Africa                         Angola          0
## 11007 2020-03-01    Africa                          Benin          0
## 11008 2020-03-01    Africa                       Botswana          0
## 11009 2020-03-01    Africa                   Burkina Faso          0
## 11010 2020-03-01    Africa                        Burundi          0
## 11011 2020-03-01    Africa                     Cabo Verde          0
## 11012 2020-03-01    Africa                       Cameroon          0
## 11013 2020-03-01    Africa       Central African Republic          0
## 11014 2020-03-01    Africa                           Chad          0
## 11015 2020-03-01    Africa                        Comoros          0
## 11016 2020-03-01    Africa                 Congo Republic          0
## 11017 2020-03-01    Africa                  Cote d'Ivoire          0
## 11018 2020-03-01    Africa                       DR Congo          0
## 11019 2020-03-01    Africa                       Djibouti          0
## 11020 2020-03-01    Africa                          Egypt          0
## 11021 2020-03-01    Africa                          Egypt          1
## 11022 2020-03-01    Africa              Equatorial Guinea          0
## 11023 2020-03-01    Africa                        Eritrea          0
## 11024 2020-03-01    Africa                       Eswatini          0
## 11025 2020-03-01    Africa                       Ethiopia          0
## 11026 2020-03-01    Africa                          Gabon          0
## 11027 2020-03-01    Africa                         Gambia          0
## 11028 2020-03-01    Africa                          Ghana          0
## 11029 2020-03-01    Africa                         Guinea          0
## 11030 2020-03-01    Africa                  Guinea-Bissau          0
## 11031 2020-03-01    Africa                          Kenya          0
## 11032 2020-03-01    Africa                        Lesotho          0
## 11033 2020-03-01    Africa                        Liberia          0
## 11034 2020-03-01    Africa                          Libya          0
## 11035 2020-03-01    Africa                     Madagascar          0
## 11036 2020-03-01    Africa                         Malawi          0
## 11037 2020-03-01    Africa                           Mali          0
## 11038 2020-03-01    Africa                     Mauritania          0
## 11039 2020-03-01    Africa                      Mauritius          0
## 11040 2020-03-01    Africa                        Morocco          0
## 11041 2020-03-01    Africa                     Mozambique          0
## 11042 2020-03-01    Africa                        Namibia          0
## 11043 2020-03-01    Africa                          Niger          0
## 11044 2020-03-01    Africa                        Nigeria          0
## 11045 2020-03-01    Africa                        Nigeria          0
## 11046 2020-03-01    Africa                         Rwanda          0
## 11047 2020-03-01    Africa          Sao Tome and Principe          0
## 11048 2020-03-01    Africa                        Senegal          0
## 11049 2020-03-01    Africa                     Seychelles          0
## 11050 2020-03-01    Africa                   Sierra Leone          0
## 11051 2020-03-01    Africa                        Somalia          0
## 11052 2020-03-01    Africa                   South Africa          0
## 11053 2020-03-01    Africa                    South Sudan          0
## 11054 2020-03-01    Africa                          Sudan          0
## 11055 2020-03-01    Africa                       Tanzania          0
## 11056 2020-03-01    Africa                           Togo          0
## 11057 2020-03-01    Africa                        Tunisia          0
## 11058 2020-03-01    Africa                         Uganda          0
## 11059 2020-03-01    Africa                 Western Sahara          0
## 11060 2020-03-01    Africa                         Zambia          0
## 11061 2020-03-01    Africa                       Zimbabwe          0
## 11062 2020-03-01   America            Antigua and Barbuda          0
## 11063 2020-03-01   America                      Argentina          0
## 11064 2020-03-01   America                        Bahamas          0
## 11065 2020-03-01   America                       Barbados          0
## 11066 2020-03-01   America                         Belize          0
## 11067 2020-03-01   America                        Bolivia          0
## 11068 2020-03-01   America                         Brazil          0
## 11069 2020-03-01   America                         Brazil          1
## 11070 2020-03-01   America                         Canada          4
## 11071 2020-03-01   America                          Chile          0
## 11072 2020-03-01   America                       Colombia          0
## 11073 2020-03-01   America                     Costa Rica          0
## 11074 2020-03-01   America                           Cuba          0
## 11075 2020-03-01   America                       Dominica          0
## 11076 2020-03-01   America             Dominican Republic          0
## 11077 2020-03-01   America             Dominican Republic          1
## 11078 2020-03-01   America                        Ecuador          1
## 11079 2020-03-01   America                        Ecuador          6
## 11080 2020-03-01   America                    El Salvador          0
## 11081 2020-03-01   America                        Grenada          0
## 11082 2020-03-01   America                      Guatemala          0
## 11083 2020-03-01   America                         Guyana          0
## 11084 2020-03-01   America                          Haiti          0
## 11085 2020-03-01   America                       Honduras          0
## 11086 2020-03-01   America                        Jamaica          0
## 11087 2020-03-01   America                         Mexico          1
## 11088 2020-03-01   America                         Mexico          2
## 11089 2020-03-01   America                      Nicaragua          0
## 11090 2020-03-01   America                         Panama          0
## 11091 2020-03-01   America                       Paraguay          0
## 11092 2020-03-01   America                           Peru          0
## 11093 2020-03-01   America            St. Kitts and Nevis          0
## 11094 2020-03-01   America                      St. Lucia          0
## 11095 2020-03-01   America St. Vincent and the Grenadines          0
## 11096 2020-03-01   America                       Suriname          0
## 11097 2020-03-01   America            Trinidad and Tobago          0
## 11098 2020-03-01   America                  United States          3
## 11099 2020-03-01   America                  United States          6
## 11100 2020-03-01   America                        Uruguay          0
## 11101 2020-03-01   America                      Venezuela          0
## 11102 2020-03-01      Asia                    Afghanistan          0
## 11103 2020-03-01      Asia                    Afghanistan          0
## 11104 2020-03-01      Asia                        Bahrain          3
## 11105 2020-03-01      Asia                        Bahrain          6
## 11106 2020-03-01      Asia                     Bangladesh          0
## 11107 2020-03-01      Asia                         Bhutan          0
## 11108 2020-03-01      Asia              Brunei Darussalam          0
## 11109 2020-03-01      Asia                       Cambodia          0
## 11110 2020-03-01      Asia                       Cambodia          0
## 11111 2020-03-01      Asia                          China        574
## 11112 2020-03-01      Asia                          India          0
## 11113 2020-03-01      Asia                          India          0
## 11114 2020-03-01      Asia                      Indonesia          0
## 11115 2020-03-01      Asia                      Indonesia          0
## 11116 2020-03-01      Asia                           Iran        205
## 11117 2020-03-01      Asia                           Iran        385
## 11118 2020-03-01      Asia                           Iraq          6
## 11119 2020-03-01      Asia                           Iraq          6
## 11120 2020-03-01      Asia                         Israel          0
## 11121 2020-03-01      Asia                         Israel          3
## 11122 2020-03-01      Asia                          Japan          9
## 11123 2020-03-01      Asia                          Japan         15
## 11124 2020-03-01      Asia                         Jordan          0
## 11125 2020-03-01      Asia                     Kazakhstan          0
## 11126 2020-03-01      Asia                         Kuwait          0
## 11127 2020-03-01      Asia                         Kuwait          0
## 11128 2020-03-01      Asia                Kyrgyz Republic          0
## 11129 2020-03-01      Asia                           Laos          0
## 11130 2020-03-01      Asia                        Lebanon          1
## 11131 2020-03-01      Asia                        Lebanon          6
## 11132 2020-03-01      Asia                       Malaysia          0
## 11133 2020-03-01      Asia                       Malaysia          4
## 11134 2020-03-01      Asia                       Maldives          0
## 11135 2020-03-01      Asia                       Mongolia          0
## 11136 2020-03-01      Asia                        Myanmar          0
## 11137 2020-03-01      Asia                          Nepal          0
## 11138 2020-03-01      Asia                          Nepal          0
## 11139 2020-03-01      Asia                           Oman          0
## 11140 2020-03-01      Asia                           Oman          0
## 11141 2020-03-01      Asia                       Pakistan          0
## 11142 2020-03-01      Asia                       Pakistan          2
## 11143 2020-03-01      Asia                      Palestine          0
## 11144 2020-03-01      Asia                    Philippines          0
## 11145 2020-03-01      Asia                    Philippines          0
## 11146 2020-03-01      Asia                          Qatar          1
## 11147 2020-03-01      Asia                          Qatar          2
## 11148 2020-03-01      Asia                   Saudi Arabia          0
## 11149 2020-03-01      Asia                      Singapore          4
## 11150 2020-03-01      Asia                      Singapore          4
## 11151 2020-03-01      Asia                    South Korea        586
## 11152 2020-03-01      Asia                    South Korea        595
## 11153 2020-03-01      Asia                      Sri Lanka          0
## 11154 2020-03-01      Asia                      Sri Lanka          0
## 11155 2020-03-01      Asia                          Syria          0
## 11156 2020-03-01      Asia                     Tajikistan          0
## 11157 2020-03-01      Asia                       Thailand          0
## 11158 2020-03-01      Asia                       Thailand          0
## 11159 2020-03-01      Asia                    Timor-Leste          0
## 11160 2020-03-01      Asia                         Turkey          0
## 11161 2020-03-01      Asia           United Arab Emirates          0
## 11162 2020-03-01      Asia           United Arab Emirates          2
## 11163 2020-03-01      Asia                     Uzbekistan          0
## 11164 2020-03-01      Asia                        Vietnam          0
## 11165 2020-03-01      Asia                        Vietnam          0
## 11166 2020-03-01      Asia                          Yemen          0
## 11167 2020-03-01      Asia                      not found          1
## 11168 2020-03-01    Europe                        Albania          0
## 11169 2020-03-01    Europe                        Andorra          0
## 11170 2020-03-01    Europe                        Armenia          1
## 11171 2020-03-01    Europe                        Armenia          1
## 11172 2020-03-01    Europe                        Austria          3
## 11173 2020-03-01    Europe                        Austria          5
## 11174 2020-03-01    Europe                     Azerbaijan          0
## 11175 2020-03-01    Europe                     Azerbaijan          3
## 11176 2020-03-01    Europe                        Belarus          0
## 11177 2020-03-01    Europe                        Belarus          0
## 11178 2020-03-01    Europe                        Belgium          0
## 11179 2020-03-01    Europe                        Belgium          1
## 11180 2020-03-01    Europe         Bosnia and Herzegovina          0
## 11181 2020-03-01    Europe                       Bulgaria          0
## 11182 2020-03-01    Europe                        Croatia          0
## 11183 2020-03-01    Europe                        Croatia          1
## 11184 2020-03-01    Europe                         Cyprus          0
## 11185 2020-03-01    Europe                 Czech Republic          0
## 11186 2020-03-01    Europe                 Czech Republic          3
## 11187 2020-03-01    Europe                        Denmark          1
## 11188 2020-03-01    Europe                        Denmark          1
## 11189 2020-03-01    Europe                        Estonia          0
## 11190 2020-03-01    Europe                        Estonia          0
## 11191 2020-03-01    Europe                        Finland          0
## 11192 2020-03-01    Europe                        Finland          3
## 11193 2020-03-01    Europe                         France         30
## 11194 2020-03-01    Europe                         France         43
## 11195 2020-03-01    Europe                        Georgia          1
## 11196 2020-03-01    Europe                        Georgia          2
## 11197 2020-03-01    Europe                        Germany         51
## 11198 2020-03-01    Europe                        Germany         54
## 11199 2020-03-01    Europe                         Greece          3
## 11200 2020-03-01    Europe                         Greece          3
## 11201 2020-03-01    Europe                        Hungary          0
## 11202 2020-03-01    Europe                        Iceland          0
## 11203 2020-03-01    Europe                        Iceland          2
## 11204 2020-03-01    Europe                        Ireland          0
## 11205 2020-03-01    Europe                        Ireland          1
## 11206 2020-03-01    Europe                          Italy        240
## 11207 2020-03-01    Europe                          Italy        566
## 11208 2020-03-01    Europe                         Kosovo          0
## 11209 2020-03-01    Europe                         Latvia          0
## 11210 2020-03-01    Europe                  Liechtenstein          0
## 11211 2020-03-01    Europe                      Lithuania          0
## 11212 2020-03-01    Europe                      Lithuania          0
## 11213 2020-03-01    Europe                     Luxembourg          0
## 11214 2020-03-01    Europe                     Luxembourg          1
## 11215 2020-03-01    Europe                      Macedonia          0
## 11216 2020-03-01    Europe                      Macedonia          0
## 11217 2020-03-01    Europe                          Malta          0
## 11218 2020-03-01    Europe                        Moldova          0
## 11219 2020-03-01    Europe                         Monaco          0
## 11220 2020-03-01    Europe                         Monaco          0
## 11221 2020-03-01    Europe                     Montenegro          0
## 11222 2020-03-01    Europe                    Netherlands          4
## 11223 2020-03-01    Europe                    Netherlands          5
## 11224 2020-03-01    Europe                         Norway          4
## 11225 2020-03-01    Europe                         Norway          9
## 11226 2020-03-01    Europe                         Poland          0
## 11227 2020-03-01    Europe                       Portugal          0
## 11228 2020-03-01    Europe                        Romania          0
## 11229 2020-03-01    Europe                        Romania          0
## 11230 2020-03-01    Europe                         Russia          0
## 11231 2020-03-01    Europe                         Russia          0
## 11232 2020-03-01    Europe                     San Marino          0
## 11233 2020-03-01    Europe                     San Marino          0
## 11234 2020-03-01    Europe                         Serbia          0
## 11235 2020-03-01    Europe                       Slovakia          0
## 11236 2020-03-01    Europe                       Slovenia          0
## 11237 2020-03-01    Europe                          Spain         28
## 11238 2020-03-01    Europe                          Spain         39
## 11239 2020-03-01    Europe                         Sweden          1
## 11240 2020-03-01    Europe                         Sweden          2
## 11241 2020-03-01    Europe                    Switzerland          6
## 11242 2020-03-01    Europe                    Switzerland          9
## 11243 2020-03-01    Europe                        Ukraine          0
## 11244 2020-03-01    Europe                 United Kingdom          5
## 11245 2020-03-01    Europe                 United Kingdom         13
## 11246 2020-03-01    Europe                        Vatican          0
## 11247 2020-03-01   Oceania                      Australia          1
## 11248 2020-03-01   Oceania                           Fiji          0
## 11249 2020-03-01   Oceania                    New Zealand          0
## 11250 2020-03-01   Oceania                    New Zealand          0
## 11251 2020-03-01   Oceania               Papua New Guinea          0
## 11252 2020-03-01     Other                      not found          0
## 11253 2020-03-02    Africa                        Algeria          0
## 11254 2020-03-02    Africa                        Algeria          2
## 11255 2020-03-02    Africa                         Angola          0
## 11256 2020-03-02    Africa                          Benin          0
## 11257 2020-03-02    Africa                       Botswana          0
## 11258 2020-03-02    Africa                   Burkina Faso          0
## 11259 2020-03-02    Africa                        Burundi          0
## 11260 2020-03-02    Africa                     Cabo Verde          0
## 11261 2020-03-02    Africa                       Cameroon          0
## 11262 2020-03-02    Africa       Central African Republic          0
## 11263 2020-03-02    Africa                           Chad          0
## 11264 2020-03-02    Africa                        Comoros          0
## 11265 2020-03-02    Africa                 Congo Republic          0
## 11266 2020-03-02    Africa                  Cote d'Ivoire          0
## 11267 2020-03-02    Africa                       DR Congo          0
## 11268 2020-03-02    Africa                       Djibouti          0
## 11269 2020-03-02    Africa                          Egypt          0
## 11270 2020-03-02    Africa                          Egypt          1
## 11271 2020-03-02    Africa              Equatorial Guinea          0
## 11272 2020-03-02    Africa                        Eritrea          0
## 11273 2020-03-02    Africa                       Eswatini          0
## 11274 2020-03-02    Africa                       Ethiopia          0
## 11275 2020-03-02    Africa                          Gabon          0
## 11276 2020-03-02    Africa                         Gambia          0
## 11277 2020-03-02    Africa                          Ghana          0
## 11278 2020-03-02    Africa                         Guinea          0
## 11279 2020-03-02    Africa                  Guinea-Bissau          0
## 11280 2020-03-02    Africa                          Kenya          0
## 11281 2020-03-02    Africa                        Lesotho          0
## 11282 2020-03-02    Africa                        Liberia          0
## 11283 2020-03-02    Africa                          Libya          0
## 11284 2020-03-02    Africa                     Madagascar          0
## 11285 2020-03-02    Africa                         Malawi          0
## 11286 2020-03-02    Africa                           Mali          0
## 11287 2020-03-02    Africa                     Mauritania          0
## 11288 2020-03-02    Africa                      Mauritius          0
## 11289 2020-03-02    Africa                        Morocco          1
## 11290 2020-03-02    Africa                     Mozambique          0
## 11291 2020-03-02    Africa                        Namibia          0
## 11292 2020-03-02    Africa                          Niger          0
## 11293 2020-03-02    Africa                        Nigeria          0
## 11294 2020-03-02    Africa                        Nigeria          0
## 11295 2020-03-02    Africa                         Rwanda          0
## 11296 2020-03-02    Africa          Sao Tome and Principe          0
## 11297 2020-03-02    Africa                        Senegal          1
## 11298 2020-03-02    Africa                     Seychelles          0
## 11299 2020-03-02    Africa                   Sierra Leone          0
## 11300 2020-03-02    Africa                        Somalia          0
## 11301 2020-03-02    Africa                   South Africa          0
## 11302 2020-03-02    Africa                    South Sudan          0
## 11303 2020-03-02    Africa                          Sudan          0
## 11304 2020-03-02    Africa                       Tanzania          0
## 11305 2020-03-02    Africa                           Togo          0
## 11306 2020-03-02    Africa                        Tunisia          0
## 11307 2020-03-02    Africa                         Uganda          0
## 11308 2020-03-02    Africa                 Western Sahara          0
## 11309 2020-03-02    Africa                         Zambia          0
## 11310 2020-03-02    Africa                       Zimbabwe          0
## 11311 2020-03-02   America            Antigua and Barbuda          0
## 11312 2020-03-02   America                      Argentina          0
## 11313 2020-03-02   America                        Bahamas          0
## 11314 2020-03-02   America                       Barbados          0
## 11315 2020-03-02   America                         Belize          0
## 11316 2020-03-02   America                        Bolivia          0
## 11317 2020-03-02   America                         Brazil          0
## 11318 2020-03-02   America                         Brazil          0
## 11319 2020-03-02   America                         Canada          4
## 11320 2020-03-02   America                          Chile          0
## 11321 2020-03-02   America                       Colombia          0
## 11322 2020-03-02   America                     Costa Rica          0
## 11323 2020-03-02   America                           Cuba          0
## 11324 2020-03-02   America                       Dominica          0
## 11325 2020-03-02   America             Dominican Republic          0
## 11326 2020-03-02   America             Dominican Republic          1
## 11327 2020-03-02   America                        Ecuador          0
## 11328 2020-03-02   America                        Ecuador          5
## 11329 2020-03-02   America                    El Salvador          0
## 11330 2020-03-02   America                        Grenada          0
## 11331 2020-03-02   America                      Guatemala          0
## 11332 2020-03-02   America                         Guyana          0
## 11333 2020-03-02   America                          Haiti          0
## 11334 2020-03-02   America                       Honduras          0
## 11335 2020-03-02   America                        Jamaica          0
## 11336 2020-03-02   America                         Mexico          0
## 11337 2020-03-02   America                         Mexico          1
## 11338 2020-03-02   America                      Nicaragua          0
## 11339 2020-03-02   America                         Panama          0
## 11340 2020-03-02   America                       Paraguay          0
## 11341 2020-03-02   America                           Peru          0
## 11342 2020-03-02   America            St. Kitts and Nevis          0
## 11343 2020-03-02   America                      St. Lucia          0
## 11344 2020-03-02   America St. Vincent and the Grenadines          0
## 11345 2020-03-02   America                       Suriname          0
## 11346 2020-03-02   America            Trinidad and Tobago          0
## 11347 2020-03-02   America                  United States         20
## 11348 2020-03-02   America                  United States         23
## 11349 2020-03-02   America                        Uruguay          0
## 11350 2020-03-02   America                      Venezuela          0
## 11351 2020-03-02      Asia                    Afghanistan          0
## 11352 2020-03-02      Asia                    Afghanistan          0
## 11353 2020-03-02      Asia                        Bahrain          2
## 11354 2020-03-02      Asia                        Bahrain          6
## 11355 2020-03-02      Asia                     Bangladesh          0
## 11356 2020-03-02      Asia                         Bhutan          0
## 11357 2020-03-02      Asia              Brunei Darussalam          0
## 11358 2020-03-02      Asia                       Cambodia          0
## 11359 2020-03-02      Asia                       Cambodia          0
## 11360 2020-03-02      Asia                          China        205
## 11361 2020-03-02      Asia                          India          0
## 11362 2020-03-02      Asia                          India          2
## 11363 2020-03-02      Asia                      Indonesia          2
## 11364 2020-03-02      Asia                      Indonesia          2
## 11365 2020-03-02      Asia                           Iran        385
## 11366 2020-03-02      Asia                           Iran        523
## 11367 2020-03-02      Asia                           Iraq          6
## 11368 2020-03-02      Asia                           Iraq          7
## 11369 2020-03-02      Asia                         Israel          0
## 11370 2020-03-02      Asia                         Israel          3
## 11371 2020-03-02      Asia                          Japan         15
## 11372 2020-03-02      Asia                          Japan         18
## 11373 2020-03-02      Asia                         Jordan          0
## 11374 2020-03-02      Asia                     Kazakhstan          0
## 11375 2020-03-02      Asia                         Kuwait          1
## 11376 2020-03-02      Asia                         Kuwait         11
## 11377 2020-03-02      Asia                Kyrgyz Republic          0
## 11378 2020-03-02      Asia                           Laos          0
## 11379 2020-03-02      Asia                        Lebanon          3
## 11380 2020-03-02      Asia                        Lebanon          6
## 11381 2020-03-02      Asia                       Malaysia          0
## 11382 2020-03-02      Asia                       Malaysia          4
## 11383 2020-03-02      Asia                       Maldives          0
## 11384 2020-03-02      Asia                       Mongolia          0
## 11385 2020-03-02      Asia                        Myanmar          0
## 11386 2020-03-02      Asia                          Nepal          0
## 11387 2020-03-02      Asia                          Nepal          0
## 11388 2020-03-02      Asia                           Oman          0
## 11389 2020-03-02      Asia                           Oman          0
## 11390 2020-03-02      Asia                       Pakistan          0
## 11391 2020-03-02      Asia                       Pakistan          1
## 11392 2020-03-02      Asia                      Palestine          0
## 11393 2020-03-02      Asia                    Philippines          0
## 11394 2020-03-02      Asia                    Philippines          0
## 11395 2020-03-02      Asia                          Qatar          0
## 11396 2020-03-02      Asia                          Qatar          2
## 11397 2020-03-02      Asia                   Saudi Arabia          1
## 11398 2020-03-02      Asia                      Singapore          2
## 11399 2020-03-02      Asia                      Singapore          4
## 11400 2020-03-02      Asia                    South Korea        599
## 11401 2020-03-02      Asia                    South Korea        686
## 11402 2020-03-02      Asia                      Sri Lanka          0
## 11403 2020-03-02      Asia                      Sri Lanka          0
## 11404 2020-03-02      Asia                          Syria          0
## 11405 2020-03-02      Asia                     Tajikistan          0
## 11406 2020-03-02      Asia                       Thailand          1
## 11407 2020-03-02      Asia                       Thailand          1
## 11408 2020-03-02      Asia                    Timor-Leste          0
## 11409 2020-03-02      Asia                         Turkey          0
## 11410 2020-03-02      Asia           United Arab Emirates          0
## 11411 2020-03-02      Asia           United Arab Emirates          0
## 11412 2020-03-02      Asia                     Uzbekistan          0
## 11413 2020-03-02      Asia                        Vietnam          0
## 11414 2020-03-02      Asia                        Vietnam          0
## 11415 2020-03-02      Asia                          Yemen          0
## 11416 2020-03-02      Asia                      not found          0
## 11417 2020-03-02    Europe                        Albania          0
## 11418 2020-03-02    Europe                        Andorra          1
## 11419 2020-03-02    Europe                        Armenia          0
## 11420 2020-03-02    Europe                        Armenia          0
## 11421 2020-03-02    Europe                        Austria          4
## 11422 2020-03-02    Europe                        Austria          4
## 11423 2020-03-02    Europe                     Azerbaijan          0
## 11424 2020-03-02    Europe                     Azerbaijan          2
## 11425 2020-03-02    Europe                        Belarus          0
## 11426 2020-03-02    Europe                        Belarus          0
## 11427 2020-03-02    Europe                        Belgium          6
## 11428 2020-03-02    Europe                        Belgium         16
## 11429 2020-03-02    Europe         Bosnia and Herzegovina          0
## 11430 2020-03-02    Europe                       Bulgaria          0
## 11431 2020-03-02    Europe                        Croatia          0
## 11432 2020-03-02    Europe                        Croatia          2
## 11433 2020-03-02    Europe                         Cyprus          0
## 11434 2020-03-02    Europe                 Czech Republic          0
## 11435 2020-03-02    Europe                 Czech Republic          3
## 11436 2020-03-02    Europe                        Denmark          0
## 11437 2020-03-02    Europe                        Denmark          1
## 11438 2020-03-02    Europe                        Estonia          0
## 11439 2020-03-02    Europe                        Estonia          0
## 11440 2020-03-02    Europe                        Finland          0
## 11441 2020-03-02    Europe                        Finland          3
## 11442 2020-03-02    Europe                         France         30
## 11443 2020-03-02    Europe                         France         61
## 11444 2020-03-02    Europe                        Georgia          0
## 11445 2020-03-02    Europe                        Georgia          0
## 11446 2020-03-02    Europe                        Germany         18
## 11447 2020-03-02    Europe                        Germany         29
## 11448 2020-03-02    Europe                         Greece          0
## 11449 2020-03-02    Europe                         Greece          0
## 11450 2020-03-02    Europe                        Hungary          0
## 11451 2020-03-02    Europe                        Iceland          2
## 11452 2020-03-02    Europe                        Iceland          3
## 11453 2020-03-02    Europe                        Ireland          0
## 11454 2020-03-02    Europe                        Ireland          0
## 11455 2020-03-02    Europe                          Italy        342
## 11456 2020-03-02    Europe                          Italy        561
## 11457 2020-03-02    Europe                         Kosovo          0
## 11458 2020-03-02    Europe                         Latvia          1
## 11459 2020-03-02    Europe                  Liechtenstein          0
## 11460 2020-03-02    Europe                      Lithuania          0
## 11461 2020-03-02    Europe                      Lithuania          0
## 11462 2020-03-02    Europe                     Luxembourg          0
## 11463 2020-03-02    Europe                     Luxembourg          0
## 11464 2020-03-02    Europe                      Macedonia          0
## 11465 2020-03-02    Europe                      Macedonia          0
## 11466 2020-03-02    Europe                          Malta          0
## 11467 2020-03-02    Europe                        Moldova          0
## 11468 2020-03-02    Europe                         Monaco          0
## 11469 2020-03-02    Europe                         Monaco          0
## 11470 2020-03-02    Europe                     Montenegro          0
## 11471 2020-03-02    Europe                    Netherlands          6
## 11472 2020-03-02    Europe                    Netherlands          8
## 11473 2020-03-02    Europe                         Norway          4
## 11474 2020-03-02    Europe                         Norway          6
## 11475 2020-03-02    Europe                         Poland          0
## 11476 2020-03-02    Europe                       Portugal          2
## 11477 2020-03-02    Europe                        Romania          0
## 11478 2020-03-02    Europe                        Romania          0
## 11479 2020-03-02    Europe                         Russia          0
## 11480 2020-03-02    Europe                         Russia          1
## 11481 2020-03-02    Europe                     San Marino          7
## 11482 2020-03-02    Europe                     San Marino          7
## 11483 2020-03-02    Europe                         Serbia          0
## 11484 2020-03-02    Europe                       Slovakia          0
## 11485 2020-03-02    Europe                       Slovenia          0
## 11486 2020-03-02    Europe                          Spain         36
## 11487 2020-03-02    Europe                          Spain         54
## 11488 2020-03-02    Europe                         Sweden          1
## 11489 2020-03-02    Europe                         Sweden          1
## 11490 2020-03-02    Europe                    Switzerland          6
## 11491 2020-03-02    Europe                    Switzerland         15
## 11492 2020-03-02    Europe                        Ukraine          0
## 11493 2020-03-02    Europe                 United Kingdom          4
## 11494 2020-03-02    Europe                 United Kingdom         13
## 11495 2020-03-02    Europe                        Vatican          0
## 11496 2020-03-02   Oceania                      Australia          3
## 11497 2020-03-02   Oceania                           Fiji          0
## 11498 2020-03-02   Oceania                    New Zealand          0
## 11499 2020-03-02   Oceania                    New Zealand          0
## 11500 2020-03-02   Oceania               Papua New Guinea          0
## 11501 2020-03-02     Other                      not found          0
## 11502 2020-03-03    Africa                        Algeria          2
## 11503 2020-03-03    Africa                         Angola          0
## 11504 2020-03-03    Africa                          Benin          0
## 11505 2020-03-03    Africa                       Botswana          0
## 11506 2020-03-03    Africa                   Burkina Faso          0
## 11507 2020-03-03    Africa                        Burundi          0
## 11508 2020-03-03    Africa                     Cabo Verde          0
## 11509 2020-03-03    Africa                       Cameroon          0
## 11510 2020-03-03    Africa       Central African Republic          0
## 11511 2020-03-03    Africa                           Chad          0
## 11512 2020-03-03    Africa                        Comoros          0
## 11513 2020-03-03    Africa                 Congo Republic          0
## 11514 2020-03-03    Africa                  Cote d'Ivoire          0
## 11515 2020-03-03    Africa                       DR Congo          0
## 11516 2020-03-03    Africa                       Djibouti          0
## 11517 2020-03-03    Africa                          Egypt          0
## 11518 2020-03-03    Africa              Equatorial Guinea          0
## 11519 2020-03-03    Africa                        Eritrea          0
## 11520 2020-03-03    Africa                       Eswatini          0
## 11521 2020-03-03    Africa                       Ethiopia          0
## 11522 2020-03-03    Africa                          Gabon          0
## 11523 2020-03-03    Africa                         Gambia          0
## 11524 2020-03-03    Africa                          Ghana          0
## 11525 2020-03-03    Africa                         Guinea          0
## 11526 2020-03-03    Africa                  Guinea-Bissau          0
## 11527 2020-03-03    Africa                          Kenya          0
## 11528 2020-03-03    Africa                        Lesotho          0
## 11529 2020-03-03    Africa                        Liberia          0
## 11530 2020-03-03    Africa                          Libya          0
## 11531 2020-03-03    Africa                     Madagascar          0
## 11532 2020-03-03    Africa                         Malawi          0
## 11533 2020-03-03    Africa                           Mali          0
## 11534 2020-03-03    Africa                     Mauritania          0
## 11535 2020-03-03    Africa                      Mauritius          0
## 11536 2020-03-03    Africa                        Morocco          0
## 11537 2020-03-03    Africa                        Morocco          1
## 11538 2020-03-03    Africa                     Mozambique          0
## 11539 2020-03-03    Africa                        Namibia          0
## 11540 2020-03-03    Africa                          Niger          0
## 11541 2020-03-03    Africa                        Nigeria          0
## 11542 2020-03-03    Africa                         Rwanda          0
## 11543 2020-03-03    Africa          Sao Tome and Principe          0
## 11544 2020-03-03    Africa                        Senegal          1
## 11545 2020-03-03    Africa                        Senegal          1
## 11546 2020-03-03    Africa                     Seychelles          0
## 11547 2020-03-03    Africa                   Sierra Leone          0
## 11548 2020-03-03    Africa                        Somalia          0
## 11549 2020-03-03    Africa                   South Africa          0
## 11550 2020-03-03    Africa                    South Sudan          0
## 11551 2020-03-03    Africa                          Sudan          0
## 11552 2020-03-03    Africa                       Tanzania          0
## 11553 2020-03-03    Africa                           Togo          0
## 11554 2020-03-03    Africa                        Tunisia          0
## 11555 2020-03-03    Africa                        Tunisia          1
## 11556 2020-03-03    Africa                         Uganda          0
## 11557 2020-03-03    Africa                 Western Sahara          0
## 11558 2020-03-03    Africa                         Zambia          0
## 11559 2020-03-03    Africa                       Zimbabwe          0
## 11560 2020-03-03   America            Antigua and Barbuda          0
## 11561 2020-03-03   America                      Argentina          1
## 11562 2020-03-03   America                        Bahamas          0
## 11563 2020-03-03   America                       Barbados          0
## 11564 2020-03-03   America                         Belize          0
## 11565 2020-03-03   America                        Bolivia          0
## 11566 2020-03-03   America                         Brazil          0
## 11567 2020-03-03   America                         Brazil          0
## 11568 2020-03-03   America                         Canada          3
## 11569 2020-03-03   America                          Chile          1
## 11570 2020-03-03   America                       Colombia          0
## 11571 2020-03-03   America                     Costa Rica          0
## 11572 2020-03-03   America                           Cuba          0
## 11573 2020-03-03   America                       Dominica          0
## 11574 2020-03-03   America             Dominican Republic          0
## 11575 2020-03-03   America                        Ecuador          1
## 11576 2020-03-03   America                        Ecuador          1
## 11577 2020-03-03   America                    El Salvador          0
## 11578 2020-03-03   America                        Grenada          0
## 11579 2020-03-03   America                      Guatemala          0
## 11580 2020-03-03   America                         Guyana          0
## 11581 2020-03-03   America                          Haiti          0
## 11582 2020-03-03   America                       Honduras          0
## 11583 2020-03-03   America                        Jamaica          0
## 11584 2020-03-03   America                         Mexico          0
## 11585 2020-03-03   America                      Nicaragua          0
## 11586 2020-03-03   America                         Panama          0
## 11587 2020-03-03   America                       Paraguay          0
## 11588 2020-03-03   America                           Peru          0
## 11589 2020-03-03   America                   Sint Maarten          1
## 11590 2020-03-03   America            St. Kitts and Nevis          0
## 11591 2020-03-03   America                      St. Lucia          0
## 11592 2020-03-03   America St. Vincent and the Grenadines          0
## 11593 2020-03-03   America                       Suriname          0
## 11594 2020-03-03   America            Trinidad and Tobago          0
## 11595 2020-03-03   America                  United States         14
## 11596 2020-03-03   America                  United States         20
## 11597 2020-03-03   America                        Uruguay          0
## 11598 2020-03-03   America                      Venezuela          0
## 11599 2020-03-03      Asia                    Afghanistan          0
## 11600 2020-03-03      Asia                        Bahrain          0
## 11601 2020-03-03      Asia                     Bangladesh          0
## 11602 2020-03-03      Asia                         Bhutan          0
## 11603 2020-03-03      Asia              Brunei Darussalam          0
## 11604 2020-03-03      Asia                       Cambodia          0
## 11605 2020-03-03      Asia                          China        127
## 11606 2020-03-03      Asia                          India          0
## 11607 2020-03-03      Asia                          India          2
## 11608 2020-03-03      Asia                      Indonesia          0
## 11609 2020-03-03      Asia                           Iran        523
## 11610 2020-03-03      Asia                           Iran        835
## 11611 2020-03-03      Asia                           Iraq          2
## 11612 2020-03-03      Asia                           Iraq          6
## 11613 2020-03-03      Asia                         Israel          2
## 11614 2020-03-03      Asia                          Japan          0
## 11615 2020-03-03      Asia                          Japan         19
## 11616 2020-03-03      Asia                         Jordan          1
## 11617 2020-03-03      Asia                         Jordan          1
## 11618 2020-03-03      Asia                     Kazakhstan          0
## 11619 2020-03-03      Asia                         Kuwait          0
## 11620 2020-03-03      Asia                         Kuwait         10
## 11621 2020-03-03      Asia                Kyrgyz Republic          0
## 11622 2020-03-03      Asia                           Laos          0
## 11623 2020-03-03      Asia                        Lebanon          0
## 11624 2020-03-03      Asia                        Lebanon          3
## 11625 2020-03-03      Asia                       Malaysia          7
## 11626 2020-03-03      Asia                       Maldives          0
## 11627 2020-03-03      Asia                       Mongolia          0
## 11628 2020-03-03      Asia                        Myanmar          0
## 11629 2020-03-03      Asia                          Nepal          0
## 11630 2020-03-03      Asia                           Oman          1
## 11631 2020-03-03      Asia                           Oman          6
## 11632 2020-03-03      Asia                       Pakistan          0
## 11633 2020-03-03      Asia                      Palestine          0
## 11634 2020-03-03      Asia                    Philippines          0
## 11635 2020-03-03      Asia                          Qatar          4
## 11636 2020-03-03      Asia                   Saudi Arabia          0
## 11637 2020-03-03      Asia                   Saudi Arabia          1
## 11638 2020-03-03      Asia                      Singapore          2
## 11639 2020-03-03      Asia                      Singapore          2
## 11640 2020-03-03      Asia                    South Korea        600
## 11641 2020-03-03      Asia                    South Korea        851
## 11642 2020-03-03      Asia                      Sri Lanka          0
## 11643 2020-03-03      Asia                          Syria          0
## 11644 2020-03-03      Asia                     Tajikistan          0
## 11645 2020-03-03      Asia                       Thailand          0
## 11646 2020-03-03      Asia                    Timor-Leste          0
## 11647 2020-03-03      Asia                         Turkey          0
## 11648 2020-03-03      Asia           United Arab Emirates          6
## 11649 2020-03-03      Asia                     Uzbekistan          0
## 11650 2020-03-03      Asia                        Vietnam          0
## 11651 2020-03-03      Asia                          Yemen          0
## 11652 2020-03-03      Asia                      not found          1
## 11653 2020-03-03    Europe                        Albania          0
## 11654 2020-03-03    Europe                        Andorra          0
## 11655 2020-03-03    Europe                        Andorra          1
## 11656 2020-03-03    Europe                        Armenia          0
## 11657 2020-03-03    Europe                        Austria          3
## 11658 2020-03-03    Europe                        Austria          4
## 11659 2020-03-03    Europe                     Azerbaijan          0
## 11660 2020-03-03    Europe                        Belarus          0
## 11661 2020-03-03    Europe                        Belgium          5
## 11662 2020-03-03    Europe                        Belgium         17
## 11663 2020-03-03    Europe         Bosnia and Herzegovina          0
## 11664 2020-03-03    Europe                       Bulgaria          0
## 11665 2020-03-03    Europe                        Croatia          1
## 11666 2020-03-03    Europe                        Croatia          2
## 11667 2020-03-03    Europe                         Cyprus          0
## 11668 2020-03-03    Europe                 Czech Republic          2
## 11669 2020-03-03    Europe                 Czech Republic          2
## 11670 2020-03-03    Europe                        Denmark          1
## 11671 2020-03-03    Europe                        Denmark          2
## 11672 2020-03-03    Europe                        Estonia          1
## 11673 2020-03-03    Europe                        Finland          0
## 11674 2020-03-03    Europe                         France         13
## 11675 2020-03-03    Europe                         France         48
## 11676 2020-03-03    Europe                        Georgia          0
## 11677 2020-03-03    Europe                        Germany         28
## 11678 2020-03-03    Europe                        Germany         37
## 11679 2020-03-03    Europe                         Greece          0
## 11680 2020-03-03    Europe                        Hungary          0
## 11681 2020-03-03    Europe                        Iceland          3
## 11682 2020-03-03    Europe                        Iceland          5
## 11683 2020-03-03    Europe                        Ireland          1
## 11684 2020-03-03    Europe                          Italy        347
## 11685 2020-03-03    Europe                          Italy        466
## 11686 2020-03-03    Europe                         Kosovo          0
## 11687 2020-03-03    Europe                         Latvia          0
## 11688 2020-03-03    Europe                         Latvia          1
## 11689 2020-03-03    Europe                  Liechtenstein          0
## 11690 2020-03-03    Europe                      Lithuania          0
## 11691 2020-03-03    Europe                     Luxembourg          0
## 11692 2020-03-03    Europe                      Macedonia          0
## 11693 2020-03-03    Europe                          Malta          0
## 11694 2020-03-03    Europe                        Moldova          0
## 11695 2020-03-03    Europe                         Monaco          0
## 11696 2020-03-03    Europe                     Montenegro          0
## 11697 2020-03-03    Europe                    Netherlands          5
## 11698 2020-03-03    Europe                    Netherlands          6
## 11699 2020-03-03    Europe                         Norway          6
## 11700 2020-03-03    Europe                         Norway          7
## 11701 2020-03-03    Europe                         Poland          0
## 11702 2020-03-03    Europe                       Portugal          0
## 11703 2020-03-03    Europe                       Portugal          2
## 11704 2020-03-03    Europe                        Romania          0
## 11705 2020-03-03    Europe                         Russia          0
## 11706 2020-03-03    Europe                         Russia          1
## 11707 2020-03-03    Europe                     San Marino          2
## 11708 2020-03-03    Europe                         Serbia          0
## 11709 2020-03-03    Europe                       Slovakia          0
## 11710 2020-03-03    Europe                       Slovenia          0
## 11711 2020-03-03    Europe                          Spain         45
## 11712 2020-03-03    Europe                          Spain         56
## 11713 2020-03-03    Europe                         Sweden          1
## 11714 2020-03-03    Europe                         Sweden          6
## 11715 2020-03-03    Europe                    Switzerland          6
## 11716 2020-03-03    Europe                    Switzerland         14
## 11717 2020-03-03    Europe                        Ukraine          1
## 11718 2020-03-03    Europe                 United Kingdom          4
## 11719 2020-03-03    Europe                 United Kingdom         11
## 11720 2020-03-03    Europe                        Vatican          0
## 11721 2020-03-03   Oceania                      Australia          4
## 11722 2020-03-03   Oceania                           Fiji          0
## 11723 2020-03-03   Oceania                    New Zealand          0
## 11724 2020-03-03   Oceania               Papua New Guinea          0
## 11725 2020-03-04    Africa                        Algeria          2
## 11726 2020-03-04    Africa                        Algeria          7
## 11727 2020-03-04    Africa                         Angola          0
## 11728 2020-03-04    Africa                          Benin          0
## 11729 2020-03-04    Africa                       Botswana          0
## 11730 2020-03-04    Africa                   Burkina Faso          0
## 11731 2020-03-04    Africa                        Burundi          0
## 11732 2020-03-04    Africa                     Cabo Verde          0
## 11733 2020-03-04    Africa                       Cameroon          0
## 11734 2020-03-04    Africa       Central African Republic          0
## 11735 2020-03-04    Africa                           Chad          0
## 11736 2020-03-04    Africa                        Comoros          0
## 11737 2020-03-04    Africa                 Congo Republic          0
## 11738 2020-03-04    Africa                  Cote d'Ivoire          0
## 11739 2020-03-04    Africa                       DR Congo          0
## 11740 2020-03-04    Africa                       Djibouti          0
## 11741 2020-03-04    Africa                          Egypt          0
## 11742 2020-03-04    Africa              Equatorial Guinea          0
## 11743 2020-03-04    Africa                        Eritrea          0
## 11744 2020-03-04    Africa                       Eswatini          0
## 11745 2020-03-04    Africa                       Ethiopia          0
## 11746 2020-03-04    Africa                          Gabon          0
## 11747 2020-03-04    Africa                         Gambia          0
## 11748 2020-03-04    Africa                          Ghana          0
## 11749 2020-03-04    Africa                         Guinea          0
## 11750 2020-03-04    Africa                  Guinea-Bissau          0
## 11751 2020-03-04    Africa                          Kenya          0
## 11752 2020-03-04    Africa                        Lesotho          0
## 11753 2020-03-04    Africa                        Liberia          0
## 11754 2020-03-04    Africa                          Libya          0
## 11755 2020-03-04    Africa                     Madagascar          0
## 11756 2020-03-04    Africa                         Malawi          0
## 11757 2020-03-04    Africa                           Mali          0
## 11758 2020-03-04    Africa                     Mauritania          0
## 11759 2020-03-04    Africa                      Mauritius          0
## 11760 2020-03-04    Africa                        Morocco          0
## 11761 2020-03-04    Africa                     Mozambique          0
## 11762 2020-03-04    Africa                        Namibia          0
## 11763 2020-03-04    Africa                          Niger          0
## 11764 2020-03-04    Africa                        Nigeria          0
## 11765 2020-03-04    Africa                         Rwanda          0
## 11766 2020-03-04    Africa          Sao Tome and Principe          0
## 11767 2020-03-04    Africa                        Senegal          2
## 11768 2020-03-04    Africa                     Seychelles          0
## 11769 2020-03-04    Africa                   Sierra Leone          0
## 11770 2020-03-04    Africa                        Somalia          0
## 11771 2020-03-04    Africa                   South Africa          0
## 11772 2020-03-04    Africa                    South Sudan          0
## 11773 2020-03-04    Africa                          Sudan          0
## 11774 2020-03-04    Africa                       Tanzania          0
## 11775 2020-03-04    Africa                           Togo          0
## 11776 2020-03-04    Africa                        Tunisia          1
## 11777 2020-03-04    Africa                         Uganda          0
## 11778 2020-03-04    Africa                 Western Sahara          0
## 11779 2020-03-04    Africa                         Zambia          0
## 11780 2020-03-04    Africa                       Zimbabwe          0
## 11781 2020-03-04   America            Antigua and Barbuda          0
## 11782 2020-03-04   America                      Argentina          0
## 11783 2020-03-04   America                      Argentina          1
## 11784 2020-03-04   America                        Bahamas          0
## 11785 2020-03-04   America                       Barbados          0
## 11786 2020-03-04   America                         Belize          0
## 11787 2020-03-04   America                        Bolivia          0
## 11788 2020-03-04   America                         Brazil          0
## 11789 2020-03-04   America                         Brazil          2
## 11790 2020-03-04   America                         Canada          3
## 11791 2020-03-04   America                          Chile          0
## 11792 2020-03-04   America                          Chile          1
## 11793 2020-03-04   America                       Colombia          0
## 11794 2020-03-04   America                     Costa Rica          0
## 11795 2020-03-04   America                           Cuba          0
## 11796 2020-03-04   America                       Dominica          0
## 11797 2020-03-04   America             Dominican Republic          0
## 11798 2020-03-04   America                        Ecuador          3
## 11799 2020-03-04   America                    El Salvador          0
## 11800 2020-03-04   America                        Grenada          0
## 11801 2020-03-04   America                      Guatemala          0
## 11802 2020-03-04   America                         Guyana          0
## 11803 2020-03-04   America                          Haiti          0
## 11804 2020-03-04   America                       Honduras          0
## 11805 2020-03-04   America                        Jamaica          0
## 11806 2020-03-04   America                         Mexico          0
## 11807 2020-03-04   America                      Nicaragua          0
## 11808 2020-03-04   America                         Panama          0
## 11809 2020-03-04   America                       Paraguay          0
## 11810 2020-03-04   America                           Peru          0
## 11811 2020-03-04   America            St. Kitts and Nevis          0
## 11812 2020-03-04   America                      St. Lucia          0
## 11813 2020-03-04   America St. Vincent and the Grenadines          0
## 11814 2020-03-04   America                       Suriname          0
## 11815 2020-03-04   America            Trinidad and Tobago          0
## 11816 2020-03-04   America                  United States         22
## 11817 2020-03-04   America                  United States         31
## 11818 2020-03-04   America                        Uruguay          0
## 11819 2020-03-04   America                      Venezuela          0
## 11820 2020-03-04      Asia                    Afghanistan          0
## 11821 2020-03-04      Asia                        Bahrain          2
## 11822 2020-03-04      Asia                        Bahrain          3
## 11823 2020-03-04      Asia                     Bangladesh          0
## 11824 2020-03-04      Asia                         Bhutan          0
## 11825 2020-03-04      Asia              Brunei Darussalam          0
## 11826 2020-03-04      Asia                       Cambodia          0
## 11827 2020-03-04      Asia                          China        119
## 11828 2020-03-04      Asia                          India          1
## 11829 2020-03-04      Asia                          India         23
## 11830 2020-03-04      Asia                      Indonesia          0
## 11831 2020-03-04      Asia                           Iran        586
## 11832 2020-03-04      Asia                           Iran        835
## 11833 2020-03-04      Asia                           Iraq          3
## 11834 2020-03-04      Asia                           Iraq          5
## 11835 2020-03-04      Asia                         Israel          3
## 11836 2020-03-04      Asia                          Japan         14
## 11837 2020-03-04      Asia                          Japan         38
## 11838 2020-03-04      Asia                         Jordan          0
## 11839 2020-03-04      Asia                     Kazakhstan          0
## 11840 2020-03-04      Asia                         Kuwait          0
## 11841 2020-03-04      Asia                Kyrgyz Republic          0
## 11842 2020-03-04      Asia                           Laos          0
## 11843 2020-03-04      Asia                        Lebanon          0
## 11844 2020-03-04      Asia                       Malaysia          7
## 11845 2020-03-04      Asia                       Malaysia         14
## 11846 2020-03-04      Asia                       Maldives          0
## 11847 2020-03-04      Asia                       Mongolia          0
## 11848 2020-03-04      Asia                        Myanmar          0
## 11849 2020-03-04      Asia                          Nepal          0
## 11850 2020-03-04      Asia                           Oman          3
## 11851 2020-03-04      Asia                       Pakistan          0
## 11852 2020-03-04      Asia                       Pakistan          1
## 11853 2020-03-04      Asia                      Palestine          0
## 11854 2020-03-04      Asia                    Philippines          0
## 11855 2020-03-04      Asia                          Qatar          1
## 11856 2020-03-04      Asia                          Qatar          5
## 11857 2020-03-04      Asia                   Saudi Arabia          0
## 11858 2020-03-04      Asia                      Singapore          0
## 11859 2020-03-04      Asia                      Singapore          2
## 11860 2020-03-04      Asia                    South Korea        435
## 11861 2020-03-04      Asia                    South Korea        516
## 11862 2020-03-04      Asia                      Sri Lanka          0
## 11863 2020-03-04      Asia                          Syria          0
## 11864 2020-03-04      Asia                     Tajikistan          0
## 11865 2020-03-04      Asia                       Thailand          0
## 11866 2020-03-04      Asia                    Timor-Leste          0
## 11867 2020-03-04      Asia                         Turkey          0
## 11868 2020-03-04      Asia           United Arab Emirates          0
## 11869 2020-03-04      Asia           United Arab Emirates          6
## 11870 2020-03-04      Asia                     Uzbekistan          0
## 11871 2020-03-04      Asia                        Vietnam          0
## 11872 2020-03-04      Asia                          Yemen          0
## 11873 2020-03-04      Asia                      not found          1
## 11874 2020-03-04    Europe                        Albania          0
## 11875 2020-03-04    Europe                        Andorra          0
## 11876 2020-03-04    Europe                        Armenia          0
## 11877 2020-03-04    Europe                        Austria          6
## 11878 2020-03-04    Europe                        Austria          8
## 11879 2020-03-04    Europe                     Azerbaijan          0
## 11880 2020-03-04    Europe                        Belarus          3
## 11881 2020-03-04    Europe                        Belarus          5
## 11882 2020-03-04    Europe                        Belgium         10
## 11883 2020-03-04    Europe                        Belgium         36
## 11884 2020-03-04    Europe         Bosnia and Herzegovina          0
## 11885 2020-03-04    Europe                       Bulgaria          0
## 11886 2020-03-04    Europe                        Croatia          1
## 11887 2020-03-04    Europe                        Croatia          1
## 11888 2020-03-04    Europe                         Cyprus          0
## 11889 2020-03-04    Europe                 Czech Republic          0
## 11890 2020-03-04    Europe                 Czech Republic          3
## 11891 2020-03-04    Europe                        Denmark          3
## 11892 2020-03-04    Europe                        Denmark          4
## 11893 2020-03-04    Europe                        Estonia          0
## 11894 2020-03-04    Europe                        Estonia          1
## 11895 2020-03-04    Europe                        Finland          0
## 11896 2020-03-04    Europe                        Finland          1
## 11897 2020-03-04    Europe                         France         34
## 11898 2020-03-04    Europe                         France         81
## 11899 2020-03-04    Europe                        Georgia          0
## 11900 2020-03-04    Europe                        Germany         39
## 11901 2020-03-04    Europe                        Germany         66
## 11902 2020-03-04    Europe                         Greece          2
## 11903 2020-03-04    Europe                        Hungary          2
## 11904 2020-03-04    Europe                        Iceland         10
## 11905 2020-03-04    Europe                        Iceland         15
## 11906 2020-03-04    Europe                        Ireland          1
## 11907 2020-03-04    Europe                        Ireland          4
## 11908 2020-03-04    Europe                          Italy        466
## 11909 2020-03-04    Europe                          Italy        587
## 11910 2020-03-04    Europe                         Kosovo          0
## 11911 2020-03-04    Europe                         Latvia          0
## 11912 2020-03-04    Europe                  Liechtenstein          1
## 11913 2020-03-04    Europe                      Lithuania          0
## 11914 2020-03-04    Europe                     Luxembourg          0
## 11915 2020-03-04    Europe                      Macedonia          0
## 11916 2020-03-04    Europe                          Malta          0
## 11917 2020-03-04    Europe                        Moldova          0
## 11918 2020-03-04    Europe                         Monaco          0
## 11919 2020-03-04    Europe                     Montenegro          0
## 11920 2020-03-04    Europe                    Netherlands         10
## 11921 2020-03-04    Europe                    Netherlands         14
## 11922 2020-03-04    Europe                         Norway          8
## 11923 2020-03-04    Europe                         Norway         24
## 11924 2020-03-04    Europe                         Poland          1
## 11925 2020-03-04    Europe                         Poland          1
## 11926 2020-03-04    Europe                       Portugal          2
## 11927 2020-03-04    Europe                       Portugal          3
## 11928 2020-03-04    Europe                        Romania          1
## 11929 2020-03-04    Europe                        Romania          1
## 11930 2020-03-04    Europe                         Russia          0
## 11931 2020-03-04    Europe                         Russia          1
## 11932 2020-03-04    Europe                     San Marino          2
## 11933 2020-03-04    Europe                     San Marino          6
## 11934 2020-03-04    Europe                         Serbia          0
## 11935 2020-03-04    Europe                       Slovakia          0
## 11936 2020-03-04    Europe                       Slovenia          0
## 11937 2020-03-04    Europe                          Spain         57
## 11938 2020-03-04    Europe                          Spain         75
## 11939 2020-03-04    Europe                         Sweden          9
## 11940 2020-03-04    Europe                         Sweden         14
## 11941 2020-03-04    Europe                    Switzerland          7
## 11942 2020-03-04    Europe                    Switzerland         34
## 11943 2020-03-04    Europe                        Ukraine          0
## 11944 2020-03-04    Europe                        Ukraine          1
## 11945 2020-03-04    Europe                 United Kingdom         11
## 11946 2020-03-04    Europe                 United Kingdom         34
## 11947 2020-03-04    Europe                        Vatican          0
## 11948 2020-03-04   Oceania                      Australia          8
## 11949 2020-03-04   Oceania                           Fiji          0
## 11950 2020-03-04   Oceania                    New Zealand          1
## 11951 2020-03-04   Oceania                    New Zealand          2
## 11952 2020-03-04   Oceania               Papua New Guinea          0
## 11953 2020-03-05    Africa                        Algeria          0
## 11954 2020-03-05    Africa                        Algeria          7
## 11955 2020-03-05    Africa                         Angola          0
## 11956 2020-03-05    Africa                          Benin          0
## 11957 2020-03-05    Africa                       Botswana          0
## 11958 2020-03-05    Africa                   Burkina Faso          0
## 11959 2020-03-05    Africa                        Burundi          0
## 11960 2020-03-05    Africa                     Cabo Verde          0
## 11961 2020-03-05    Africa                       Cameroon          0
## 11962 2020-03-05    Africa       Central African Republic          0
## 11963 2020-03-05    Africa                           Chad          0
## 11964 2020-03-05    Africa                        Comoros          0
## 11965 2020-03-05    Africa                 Congo Republic          0
## 11966 2020-03-05    Africa                  Cote d'Ivoire          0
## 11967 2020-03-05    Africa                       DR Congo          0
## 11968 2020-03-05    Africa                       Djibouti          0
## 11969 2020-03-05    Africa                          Egypt          1
## 11970 2020-03-05    Africa              Equatorial Guinea          0
## 11971 2020-03-05    Africa                        Eritrea          0
## 11972 2020-03-05    Africa                       Eswatini          0
## 11973 2020-03-05    Africa                       Ethiopia          0
## 11974 2020-03-05    Africa                          Gabon          0
## 11975 2020-03-05    Africa                         Gambia          0
## 11976 2020-03-05    Africa                          Ghana          0
## 11977 2020-03-05    Africa                         Guinea          0
## 11978 2020-03-05    Africa                  Guinea-Bissau          0
## 11979 2020-03-05    Africa                          Kenya          0
## 11980 2020-03-05    Africa                        Lesotho          0
## 11981 2020-03-05    Africa                        Liberia          0
## 11982 2020-03-05    Africa                          Libya          0
## 11983 2020-03-05    Africa                     Madagascar          0
## 11984 2020-03-05    Africa                         Malawi          0
## 11985 2020-03-05    Africa                           Mali          0
## 11986 2020-03-05    Africa                     Mauritania          0
## 11987 2020-03-05    Africa                      Mauritius          0
## 11988 2020-03-05    Africa                        Morocco          1
## 11989 2020-03-05    Africa                     Mozambique          0
## 11990 2020-03-05    Africa                        Namibia          0
## 11991 2020-03-05    Africa                          Niger          0
## 11992 2020-03-05    Africa                        Nigeria          0
## 11993 2020-03-05    Africa                         Rwanda          0
## 11994 2020-03-05    Africa          Sao Tome and Principe          0
## 11995 2020-03-05    Africa                        Senegal          0
## 11996 2020-03-05    Africa                        Senegal          2
## 11997 2020-03-05    Africa                     Seychelles          0
## 11998 2020-03-05    Africa                   Sierra Leone          0
## 11999 2020-03-05    Africa                        Somalia          0
## 12000 2020-03-05    Africa                   South Africa          1
## 12001 2020-03-05    Africa                    South Sudan          0
## 12002 2020-03-05    Africa                          Sudan          0
## 12003 2020-03-05    Africa                       Tanzania          0
## 12004 2020-03-05    Africa                           Togo          0
## 12005 2020-03-05    Africa                        Tunisia          0
## 12006 2020-03-05    Africa                         Uganda          0
## 12007 2020-03-05    Africa                 Western Sahara          0
## 12008 2020-03-05    Africa                         Zambia          0
## 12009 2020-03-05    Africa                       Zimbabwe          0
## 12010 2020-03-05   America            Antigua and Barbuda          0
## 12011 2020-03-05   America                      Argentina          0
## 12012 2020-03-05   America                        Bahamas          0
## 12013 2020-03-05   America                       Barbados          0
## 12014 2020-03-05   America                         Belize          0
## 12015 2020-03-05   America                        Bolivia          0
## 12016 2020-03-05   America                         Brazil          0
## 12017 2020-03-05   America                         Brazil          1
## 12018 2020-03-05   America                         Canada          3
## 12019 2020-03-05   America                          Chile          2
## 12020 2020-03-05   America                          Chile          3
## 12021 2020-03-05   America                       Colombia          0
## 12022 2020-03-05   America                     Costa Rica          0
## 12023 2020-03-05   America                           Cuba          0
## 12024 2020-03-05   America                       Dominica          0
## 12025 2020-03-05   America             Dominican Republic          0
## 12026 2020-03-05   America                        Ecuador          3
## 12027 2020-03-05   America                        Ecuador          3
## 12028 2020-03-05   America                    El Salvador          0
## 12029 2020-03-05   America                        Grenada          0
## 12030 2020-03-05   America                      Guatemala          0
## 12031 2020-03-05   America                         Guyana          0
## 12032 2020-03-05   America                          Haiti          0
## 12033 2020-03-05   America                       Honduras          0
## 12034 2020-03-05   America                        Jamaica          0
## 12035 2020-03-05   America                         Mexico          0
## 12036 2020-03-05   America                      Nicaragua          0
## 12037 2020-03-05   America                         Panama          0
## 12038 2020-03-05   America                       Paraguay          0
## 12039 2020-03-05   America                           Peru          0
## 12040 2020-03-05   America            St. Kitts and Nevis          0
## 12041 2020-03-05   America                      St. Lucia          0
## 12042 2020-03-05   America St. Vincent and the Grenadines          0
## 12043 2020-03-05   America                       Suriname          0
## 12044 2020-03-05   America            Trinidad and Tobago          0
## 12045 2020-03-05   America                  United States         34
## 12046 2020-03-05   America                  United States         70
## 12047 2020-03-05   America                        Uruguay          0
## 12048 2020-03-05   America                      Venezuela          0
## 12049 2020-03-05      Asia                    Afghanistan          0
## 12050 2020-03-05      Asia                        Bahrain          3
## 12051 2020-03-05      Asia                        Bahrain          3
## 12052 2020-03-05      Asia                     Bangladesh          0
## 12053 2020-03-05      Asia                         Bhutan          0
## 12054 2020-03-05      Asia              Brunei Darussalam          0
## 12055 2020-03-05      Asia                       Cambodia          0
## 12056 2020-03-05      Asia                          China        117
## 12057 2020-03-05      Asia                          India          2
## 12058 2020-03-05      Asia                          India         22
## 12059 2020-03-05      Asia                      Indonesia          0
## 12060 2020-03-05      Asia                           Iran        586
## 12061 2020-03-05      Asia                           Iran        591
## 12062 2020-03-05      Asia                           Iraq          0
## 12063 2020-03-05      Asia                           Iraq          5
## 12064 2020-03-05      Asia                         Israel          5
## 12065 2020-03-05      Asia                         Israel          5
## 12066 2020-03-05      Asia                          Japan         29
## 12067 2020-03-05      Asia                          Japan         49
## 12068 2020-03-05      Asia                         Jordan          0
## 12069 2020-03-05      Asia                     Kazakhstan          0
## 12070 2020-03-05      Asia                         Kuwait          2
## 12071 2020-03-05      Asia                Kyrgyz Republic          0
## 12072 2020-03-05      Asia                           Laos          0
## 12073 2020-03-05      Asia                        Lebanon          3
## 12074 2020-03-05      Asia                       Malaysia          0
## 12075 2020-03-05      Asia                       Malaysia         14
## 12076 2020-03-05      Asia                       Maldives          0
## 12077 2020-03-05      Asia                       Mongolia          0
## 12078 2020-03-05      Asia                        Myanmar          0
## 12079 2020-03-05      Asia                          Nepal          0
## 12080 2020-03-05      Asia                           Oman          1
## 12081 2020-03-05      Asia                           Oman          8
## 12082 2020-03-05      Asia                       Pakistan          1
## 12083 2020-03-05      Asia                      Palestine          4
## 12084 2020-03-05      Asia                    Philippines          0
## 12085 2020-03-05      Asia                          Qatar          0
## 12086 2020-03-05      Asia                   Saudi Arabia          4
## 12087 2020-03-05      Asia                      Singapore          2
## 12088 2020-03-05      Asia                      Singapore          7
## 12089 2020-03-05      Asia                    South Korea        438
## 12090 2020-03-05      Asia                    South Korea        467
## 12091 2020-03-05      Asia                      Sri Lanka          0
## 12092 2020-03-05      Asia                          Syria          0
## 12093 2020-03-05      Asia                     Tajikistan          0
## 12094 2020-03-05      Asia                       Thailand          4
## 12095 2020-03-05      Asia                       Thailand          4
## 12096 2020-03-05      Asia                    Timor-Leste          0
## 12097 2020-03-05      Asia                         Turkey          0
## 12098 2020-03-05      Asia           United Arab Emirates          2
## 12099 2020-03-05      Asia                     Uzbekistan          0
## 12100 2020-03-05      Asia                        Vietnam          0
## 12101 2020-03-05      Asia                          Yemen          0
## 12102 2020-03-05    Europe                        Albania          0
## 12103 2020-03-05    Europe                        Andorra          0
## 12104 2020-03-05    Europe                        Armenia          0
## 12105 2020-03-05    Europe                        Austria          5
## 12106 2020-03-05    Europe                        Austria         12
## 12107 2020-03-05    Europe                     Azerbaijan          3
## 12108 2020-03-05    Europe                        Belarus          0
## 12109 2020-03-05    Europe                        Belarus          2
## 12110 2020-03-05    Europe                        Belgium         27
## 12111 2020-03-05    Europe                        Belgium         55
## 12112 2020-03-05    Europe         Bosnia and Herzegovina          2
## 12113 2020-03-05    Europe                       Bulgaria          0
## 12114 2020-03-05    Europe                        Croatia          0
## 12115 2020-03-05    Europe                         Cyprus          0
## 12116 2020-03-05    Europe                 Czech Republic          3
## 12117 2020-03-05    Europe                 Czech Republic          4
## 12118 2020-03-05    Europe                        Denmark          0
## 12119 2020-03-05    Europe                        Denmark          2
## 12120 2020-03-05    Europe                        Estonia          1
## 12121 2020-03-05    Europe                        Finland          6
## 12122 2020-03-05    Europe                         France         73
## 12123 2020-03-05    Europe                         France         92
## 12124 2020-03-05    Europe                        Georgia          0
## 12125 2020-03-05    Europe                        Georgia          1
## 12126 2020-03-05    Europe                        Germany         66
## 12127 2020-03-05    Europe                        Germany        220
## 12128 2020-03-05    Europe                         Greece          3
## 12129 2020-03-05    Europe                         Greece         22
## 12130 2020-03-05    Europe                        Hungary          0
## 12131 2020-03-05    Europe                        Hungary          2
## 12132 2020-03-05    Europe                        Iceland          8
## 12133 2020-03-05    Europe                        Iceland         10
## 12134 2020-03-05    Europe                        Ireland          0
## 12135 2020-03-05    Europe                        Ireland          4
## 12136 2020-03-05    Europe                          Italy        587
## 12137 2020-03-05    Europe                          Italy        769
## 12138 2020-03-05    Europe                         Kosovo          0
## 12139 2020-03-05    Europe                         Latvia          0
## 12140 2020-03-05    Europe                  Liechtenstein          0
## 12141 2020-03-05    Europe                  Liechtenstein          1
## 12142 2020-03-05    Europe                      Lithuania          0
## 12143 2020-03-05    Europe                     Luxembourg          0
## 12144 2020-03-05    Europe                      Macedonia          0
## 12145 2020-03-05    Europe                          Malta          0
## 12146 2020-03-05    Europe                        Moldova          0
## 12147 2020-03-05    Europe                         Monaco          0
## 12148 2020-03-05    Europe                     Montenegro          0
## 12149 2020-03-05    Europe                    Netherlands         10
## 12150 2020-03-05    Europe                    Netherlands         44
## 12151 2020-03-05    Europe                         Norway         23
## 12152 2020-03-05    Europe                         Norway         31
## 12153 2020-03-05    Europe                         Poland          0
## 12154 2020-03-05    Europe                       Portugal          1
## 12155 2020-03-05    Europe                       Portugal          3
## 12156 2020-03-05    Europe                        Romania          2
## 12157 2020-03-05    Europe                         Russia          0
## 12158 2020-03-05    Europe                         Russia          1
## 12159 2020-03-05    Europe                     San Marino          5
## 12160 2020-03-05    Europe                     San Marino          5
## 12161 2020-03-05    Europe                         Serbia          0
## 12162 2020-03-05    Europe                       Slovakia          0
## 12163 2020-03-05    Europe                       Slovenia          1
## 12164 2020-03-05    Europe                       Slovenia          2
## 12165 2020-03-05    Europe                          Spain         37
## 12166 2020-03-05    Europe                          Spain         81
## 12167 2020-03-05    Europe                         Sweden         11
## 12168 2020-03-05    Europe                         Sweden         59
## 12169 2020-03-05    Europe                    Switzerland         20
## 12170 2020-03-05    Europe                    Switzerland         24
## 12171 2020-03-05    Europe                        Ukraine          0
## 12172 2020-03-05    Europe                 United Kingdom         30
## 12173 2020-03-05    Europe                 United Kingdom         34
## 12174 2020-03-05    Europe                        Vatican          0
## 12175 2020-03-05   Oceania                      Australia         11
## 12176 2020-03-05   Oceania                           Fiji          0
## 12177 2020-03-05   Oceania                    New Zealand          0
## 12178 2020-03-05   Oceania                    New Zealand          1
## 12179 2020-03-05   Oceania               Papua New Guinea          0
## 12180 2020-03-06    Africa                        Algeria          5
## 12181 2020-03-06    Africa                        Algeria          5
## 12182 2020-03-06    Africa                         Angola          0
## 12183 2020-03-06    Africa                          Benin          0
## 12184 2020-03-06    Africa                       Botswana          0
## 12185 2020-03-06    Africa                   Burkina Faso          0
## 12186 2020-03-06    Africa                        Burundi          0
## 12187 2020-03-06    Africa                     Cabo Verde          0
## 12188 2020-03-06    Africa                       Cameroon          1
## 12189 2020-03-06    Africa       Central African Republic          0
## 12190 2020-03-06    Africa                           Chad          0
## 12191 2020-03-06    Africa                        Comoros          0
## 12192 2020-03-06    Africa                 Congo Republic          0
## 12193 2020-03-06    Africa                  Cote d'Ivoire          0
## 12194 2020-03-06    Africa                       DR Congo          0
## 12195 2020-03-06    Africa                       Djibouti          0
## 12196 2020-03-06    Africa                          Egypt          1
## 12197 2020-03-06    Africa                          Egypt         12
## 12198 2020-03-06    Africa              Equatorial Guinea          0
## 12199 2020-03-06    Africa                        Eritrea          0
## 12200 2020-03-06    Africa                       Eswatini          0
## 12201 2020-03-06    Africa                       Ethiopia          0
## 12202 2020-03-06    Africa                          Gabon          0
## 12203 2020-03-06    Africa                         Gambia          0
## 12204 2020-03-06    Africa                          Ghana          0
## 12205 2020-03-06    Africa                         Guinea          0
## 12206 2020-03-06    Africa                  Guinea-Bissau          0
## 12207 2020-03-06    Africa                          Kenya          0
## 12208 2020-03-06    Africa                        Lesotho          0
## 12209 2020-03-06    Africa                        Liberia          0
## 12210 2020-03-06    Africa                          Libya          0
## 12211 2020-03-06    Africa                     Madagascar          0
## 12212 2020-03-06    Africa                         Malawi          0
## 12213 2020-03-06    Africa                           Mali          0
## 12214 2020-03-06    Africa                     Mauritania          0
## 12215 2020-03-06    Africa                      Mauritius          0
## 12216 2020-03-06    Africa                        Morocco          0
## 12217 2020-03-06    Africa                        Morocco          1
## 12218 2020-03-06    Africa                     Mozambique          0
## 12219 2020-03-06    Africa                        Namibia          0
## 12220 2020-03-06    Africa                          Niger          0
## 12221 2020-03-06    Africa                        Nigeria          0
## 12222 2020-03-06    Africa                         Rwanda          0
## 12223 2020-03-06    Africa          Sao Tome and Principe          0
## 12224 2020-03-06    Africa                        Senegal          0
## 12225 2020-03-06    Africa                        Senegal          1
## 12226 2020-03-06    Africa                     Seychelles          0
## 12227 2020-03-06    Africa                   Sierra Leone          0
## 12228 2020-03-06    Africa                        Somalia          0
## 12229 2020-03-06    Africa                   South Africa          0
## 12230 2020-03-06    Africa                   South Africa          1
## 12231 2020-03-06    Africa                    South Sudan          0
## 12232 2020-03-06    Africa                          Sudan          0
## 12233 2020-03-06    Africa                       Tanzania          0
## 12234 2020-03-06    Africa                           Togo          1
## 12235 2020-03-06    Africa                        Tunisia          0
## 12236 2020-03-06    Africa                         Uganda          0
## 12237 2020-03-06    Africa                 Western Sahara          0
## 12238 2020-03-06    Africa                         Zambia          0
## 12239 2020-03-06    Africa                       Zimbabwe          0
## 12240 2020-03-06   America            Antigua and Barbuda          0
## 12241 2020-03-06   America                      Argentina          1
## 12242 2020-03-06   America                      Argentina          1
## 12243 2020-03-06   America                        Bahamas          0
## 12244 2020-03-06   America                       Barbados          0
## 12245 2020-03-06   America                         Belize          0
## 12246 2020-03-06   America                        Bolivia          0
## 12247 2020-03-06   America                         Brazil          5
## 12248 2020-03-06   America                         Brazil          9
## 12249 2020-03-06   America                         Canada         12
## 12250 2020-03-06   America                          Chile          0
## 12251 2020-03-06   America                          Chile          1
## 12252 2020-03-06   America                       Colombia          1
## 12253 2020-03-06   America                     Costa Rica          1
## 12254 2020-03-06   America                           Cuba          0
## 12255 2020-03-06   America                       Dominica          0
## 12256 2020-03-06   America             Dominican Republic          1
## 12257 2020-03-06   America                        Ecuador          0
## 12258 2020-03-06   America                        Ecuador          3
## 12259 2020-03-06   America                    El Salvador          0
## 12260 2020-03-06   America                        Grenada          0
## 12261 2020-03-06   America                      Guatemala          0
## 12262 2020-03-06   America                         Guyana          0
## 12263 2020-03-06   America                          Haiti          0
## 12264 2020-03-06   America                       Honduras          0
## 12265 2020-03-06   America                        Jamaica          0
## 12266 2020-03-06   America                         Mexico          1
## 12267 2020-03-06   America                      Nicaragua          0
## 12268 2020-03-06   America                         Panama          0
## 12269 2020-03-06   America                       Paraguay          0
## 12270 2020-03-06   America                           Peru          1
## 12271 2020-03-06   America            St. Kitts and Nevis          0
## 12272 2020-03-06   America                      St. Lucia          0
## 12273 2020-03-06   America St. Vincent and the Grenadines          0
## 12274 2020-03-06   America                       Suriname          0
## 12275 2020-03-06   America            Trinidad and Tobago          0
## 12276 2020-03-06   America                  United States         48
## 12277 2020-03-06   America                  United States         74
## 12278 2020-03-06   America                        Uruguay          0
## 12279 2020-03-06   America                      Venezuela          0
## 12280 2020-03-06      Asia                    Afghanistan          0
## 12281 2020-03-06      Asia                        Bahrain          0
## 12282 2020-03-06      Asia                        Bahrain          5
## 12283 2020-03-06      Asia                     Bangladesh          0
## 12284 2020-03-06      Asia                         Bhutan          1
## 12285 2020-03-06      Asia                         Bhutan          1
## 12286 2020-03-06      Asia              Brunei Darussalam          0
## 12287 2020-03-06      Asia                       Cambodia          0
## 12288 2020-03-06      Asia                          China        170
## 12289 2020-03-06      Asia                          India          1
## 12290 2020-03-06      Asia                          India          1
## 12291 2020-03-06      Asia                      Indonesia          2
## 12292 2020-03-06      Asia                           Iran        591
## 12293 2020-03-06      Asia                           Iran       1234
## 12294 2020-03-06      Asia                           Iraq          5
## 12295 2020-03-06      Asia                           Iraq          7
## 12296 2020-03-06      Asia                         Israel          2
## 12297 2020-03-06      Asia                         Israel         17
## 12298 2020-03-06      Asia                          Japan         32
## 12299 2020-03-06      Asia                          Japan         60
## 12300 2020-03-06      Asia                         Jordan          0
## 12301 2020-03-06      Asia                     Kazakhstan          0
## 12302 2020-03-06      Asia                         Kuwait          0
## 12303 2020-03-06      Asia                         Kuwait          2
## 12304 2020-03-06      Asia                Kyrgyz Republic          0
## 12305 2020-03-06      Asia                           Laos          0
## 12306 2020-03-06      Asia                        Lebanon          3
## 12307 2020-03-06      Asia                        Lebanon          6
## 12308 2020-03-06      Asia                       Malaysia          0
## 12309 2020-03-06      Asia                       Malaysia         33
## 12310 2020-03-06      Asia                       Maldives          0
## 12311 2020-03-06      Asia                       Mongolia          0
## 12312 2020-03-06      Asia                        Myanmar          0
## 12313 2020-03-06      Asia                          Nepal          0
## 12314 2020-03-06      Asia                           Oman          0
## 12315 2020-03-06      Asia                           Oman          1
## 12316 2020-03-06      Asia                       Pakistan          0
## 12317 2020-03-06      Asia                      Palestine          3
## 12318 2020-03-06      Asia                      Palestine          7
## 12319 2020-03-06      Asia                    Philippines          2
## 12320 2020-03-06      Asia                          Qatar          0
## 12321 2020-03-06      Asia                   Saudi Arabia          0
## 12322 2020-03-06      Asia                   Saudi Arabia          4
## 12323 2020-03-06      Asia                      Singapore          5
## 12324 2020-03-06      Asia                      Singapore         13
## 12325 2020-03-06      Asia                    South Korea        505
## 12326 2020-03-06      Asia                    South Korea        518
## 12327 2020-03-06      Asia                      Sri Lanka          0
## 12328 2020-03-06      Asia                          Syria          0
## 12329 2020-03-06      Asia                     Tajikistan          0
## 12330 2020-03-06      Asia                       Thailand          1
## 12331 2020-03-06      Asia                    Timor-Leste          0
## 12332 2020-03-06      Asia                         Turkey          0
## 12333 2020-03-06      Asia           United Arab Emirates          0
## 12334 2020-03-06      Asia           United Arab Emirates          2
## 12335 2020-03-06      Asia                     Uzbekistan          0
## 12336 2020-03-06      Asia                        Vietnam          0
## 12337 2020-03-06      Asia                          Yemen          0
## 12338 2020-03-06      Asia                      not found          2
## 12339 2020-03-06    Europe                        Albania          0
## 12340 2020-03-06    Europe                        Andorra          0
## 12341 2020-03-06    Europe                        Armenia          0
## 12342 2020-03-06    Europe                        Austria         12
## 12343 2020-03-06    Europe                        Austria         14
## 12344 2020-03-06    Europe                     Azerbaijan          0
## 12345 2020-03-06    Europe                     Azerbaijan          3
## 12346 2020-03-06    Europe                        Belarus          0
## 12347 2020-03-06    Europe                        Belgium         59
## 12348 2020-03-06    Europe                        Belgium         81
## 12349 2020-03-06    Europe         Bosnia and Herzegovina          0
## 12350 2020-03-06    Europe         Bosnia and Herzegovina          2
## 12351 2020-03-06    Europe                       Bulgaria          0
## 12352 2020-03-06    Europe                        Croatia          1
## 12353 2020-03-06    Europe                        Croatia          1
## 12354 2020-03-06    Europe                         Cyprus          0
## 12355 2020-03-06    Europe                 Czech Republic          4
## 12356 2020-03-06    Europe                 Czech Republic          6
## 12357 2020-03-06    Europe                        Denmark         10
## 12358 2020-03-06    Europe                        Denmark         13
## 12359 2020-03-06    Europe                        Estonia          3
## 12360 2020-03-06    Europe                        Estonia          7
## 12361 2020-03-06    Europe                        Finland          3
## 12362 2020-03-06    Europe                        Finland          5
## 12363 2020-03-06    Europe                         France        138
## 12364 2020-03-06    Europe                         France        276
## 12365 2020-03-06    Europe                        Georgia          0
## 12366 2020-03-06    Europe                        Georgia          6
## 12367 2020-03-06    Europe                        Germany        138
## 12368 2020-03-06    Europe                        Germany        188
## 12369 2020-03-06    Europe                         Greece         14
## 12370 2020-03-06    Europe                         Greece         22
## 12371 2020-03-06    Europe                        Hungary          0
## 12372 2020-03-06    Europe                        Iceland          9
## 12373 2020-03-06    Europe                        Iceland          9
## 12374 2020-03-06    Europe                        Ireland          7
## 12375 2020-03-06    Europe                        Ireland         12
## 12376 2020-03-06    Europe                          Italy        769
## 12377 2020-03-06    Europe                          Italy        778
## 12378 2020-03-06    Europe                         Kosovo          0
## 12379 2020-03-06    Europe                         Latvia          0
## 12380 2020-03-06    Europe                  Liechtenstein          0
## 12381 2020-03-06    Europe                      Lithuania          0
## 12382 2020-03-06    Europe                     Luxembourg          1
## 12383 2020-03-06    Europe                      Macedonia          2
## 12384 2020-03-06    Europe                          Malta          0
## 12385 2020-03-06    Europe                        Moldova          0
## 12386 2020-03-06    Europe                         Monaco          0
## 12387 2020-03-06    Europe                     Montenegro          0
## 12388 2020-03-06    Europe                    Netherlands         44
## 12389 2020-03-06    Europe                    Netherlands         46
## 12390 2020-03-06    Europe                         Norway         21
## 12391 2020-03-06    Europe                         Norway         30
## 12392 2020-03-06    Europe                         Poland          4
## 12393 2020-03-06    Europe                       Portugal          4
## 12394 2020-03-06    Europe                       Portugal          5
## 12395 2020-03-06    Europe                        Romania          2
## 12396 2020-03-06    Europe                        Romania          3
## 12397 2020-03-06    Europe                         Russia          0
## 12398 2020-03-06    Europe                         Russia          9
## 12399 2020-03-06    Europe                     San Marino          0
## 12400 2020-03-06    Europe                     San Marino          7
## 12401 2020-03-06    Europe                         Serbia          1
## 12402 2020-03-06    Europe                       Slovakia          1
## 12403 2020-03-06    Europe                       Slovenia          5
## 12404 2020-03-06    Europe                       Slovenia          5
## 12405 2020-03-06    Europe                          Spain        141
## 12406 2020-03-06    Europe                          Spain        183
## 12407 2020-03-06    Europe                         Sweden          7
## 12408 2020-03-06    Europe                         Sweden         26
## 12409 2020-03-06    Europe                    Switzerland         30
## 12410 2020-03-06    Europe                    Switzerland        100
## 12411 2020-03-06    Europe                        Ukraine          0
## 12412 2020-03-06    Europe                 United Kingdom         30
## 12413 2020-03-06    Europe                 United Kingdom         48
## 12414 2020-03-06    Europe                        Vatican          1
## 12415 2020-03-06   Oceania                      Australia          7
## 12416 2020-03-06   Oceania                           Fiji          0
## 12417 2020-03-06   Oceania                    New Zealand          1
## 12418 2020-03-06   Oceania                    New Zealand          1
## 12419 2020-03-06   Oceania               Papua New Guinea          0
## 12420 2020-03-07    Africa                        Algeria          0
## 12421 2020-03-07    Africa                         Angola          0
## 12422 2020-03-07    Africa                          Benin          0
## 12423 2020-03-07    Africa                       Botswana          0
## 12424 2020-03-07    Africa                   Burkina Faso          0
## 12425 2020-03-07    Africa                        Burundi          0
## 12426 2020-03-07    Africa                     Cabo Verde          0
## 12427 2020-03-07    Africa                       Cameroon          0
## 12428 2020-03-07    Africa                       Cameroon          1
## 12429 2020-03-07    Africa       Central African Republic          0
## 12430 2020-03-07    Africa                           Chad          0
## 12431 2020-03-07    Africa                        Comoros          0
## 12432 2020-03-07    Africa                 Congo Republic          0
## 12433 2020-03-07    Africa                  Cote d'Ivoire          0
## 12434 2020-03-07    Africa                       DR Congo          0
## 12435 2020-03-07    Africa                       Djibouti          0
## 12436 2020-03-07    Africa                          Egypt          0
## 12437 2020-03-07    Africa                          Egypt         12
## 12438 2020-03-07    Africa              Equatorial Guinea          0
## 12439 2020-03-07    Africa                        Eritrea          0
## 12440 2020-03-07    Africa                       Eswatini          0
## 12441 2020-03-07    Africa                       Ethiopia          0
## 12442 2020-03-07    Africa                          Gabon          0
## 12443 2020-03-07    Africa                         Gambia          0
## 12444 2020-03-07    Africa                          Ghana          0
## 12445 2020-03-07    Africa                         Guinea          0
## 12446 2020-03-07    Africa                  Guinea-Bissau          0
## 12447 2020-03-07    Africa                          Kenya          0
## 12448 2020-03-07    Africa                        Lesotho          0
## 12449 2020-03-07    Africa                        Liberia          0
## 12450 2020-03-07    Africa                          Libya          0
## 12451 2020-03-07    Africa                     Madagascar          0
## 12452 2020-03-07    Africa                         Malawi          0
## 12453 2020-03-07    Africa                           Mali          0
## 12454 2020-03-07    Africa                     Mauritania          0
## 12455 2020-03-07    Africa                      Mauritius          0
## 12456 2020-03-07    Africa                        Morocco          0
## 12457 2020-03-07    Africa                     Mozambique          0
## 12458 2020-03-07    Africa                        Namibia          0
## 12459 2020-03-07    Africa                          Niger          0
## 12460 2020-03-07    Africa                        Nigeria          0
## 12461 2020-03-07    Africa                         Rwanda          0
## 12462 2020-03-07    Africa          Sao Tome and Principe          0
## 12463 2020-03-07    Africa                        Senegal          0
## 12464 2020-03-07    Africa                     Seychelles          0
## 12465 2020-03-07    Africa                   Sierra Leone          0
## 12466 2020-03-07    Africa                        Somalia          0
## 12467 2020-03-07    Africa                   South Africa          0
## 12468 2020-03-07    Africa                    South Sudan          0
## 12469 2020-03-07    Africa                          Sudan          0
## 12470 2020-03-07    Africa                       Tanzania          0
## 12471 2020-03-07    Africa                           Togo          0
## 12472 2020-03-07    Africa                           Togo          1
## 12473 2020-03-07    Africa                        Tunisia          0
## 12474 2020-03-07    Africa                         Uganda          0
## 12475 2020-03-07    Africa                 Western Sahara          0
## 12476 2020-03-07    Africa                         Zambia          0
## 12477 2020-03-07    Africa                       Zimbabwe          0
## 12478 2020-03-07   America            Antigua and Barbuda          0
## 12479 2020-03-07   America                      Argentina          6
## 12480 2020-03-07   America                      Argentina          6
## 12481 2020-03-07   America                        Bahamas          0
## 12482 2020-03-07   America                       Barbados          0
## 12483 2020-03-07   America                         Belize          0
## 12484 2020-03-07   America                        Bolivia          0
## 12485 2020-03-07   America                         Brazil          0
## 12486 2020-03-07   America                         Brazil          5
## 12487 2020-03-07   America                         Canada          6
## 12488 2020-03-07   America                          Chile          0
## 12489 2020-03-07   America                          Chile          1
## 12490 2020-03-07   America                       Colombia          0
## 12491 2020-03-07   America                       Colombia          1
## 12492 2020-03-07   America                     Costa Rica          0
## 12493 2020-03-07   America                     Costa Rica          1
## 12494 2020-03-07   America                           Cuba          0
## 12495 2020-03-07   America                       Dominica          0
## 12496 2020-03-07   America             Dominican Republic          0
## 12497 2020-03-07   America             Dominican Republic          1
## 12498 2020-03-07   America                        Ecuador          0
## 12499 2020-03-07   America                    El Salvador          0
## 12500 2020-03-07   America                        Grenada          0
## 12501 2020-03-07   America                      Guatemala          0
## 12502 2020-03-07   America                         Guyana          0
## 12503 2020-03-07   America                          Haiti          0
## 12504 2020-03-07   America                       Honduras          0
## 12505 2020-03-07   America                        Jamaica          0
## 12506 2020-03-07   America                         Mexico          0
## 12507 2020-03-07   America                      Nicaragua          0
## 12508 2020-03-07   America                         Panama          0
## 12509 2020-03-07   America                       Paraguay          0
## 12510 2020-03-07   America                           Peru          0
## 12511 2020-03-07   America                           Peru          1
## 12512 2020-03-07   America            St. Kitts and Nevis          0
## 12513 2020-03-07   America                      St. Lucia          0
## 12514 2020-03-07   America St. Vincent and the Grenadines          0
## 12515 2020-03-07   America                       Suriname          0
## 12516 2020-03-07   America            Trinidad and Tobago          0
## 12517 2020-03-07   America                  United States        105
## 12518 2020-03-07   America                  United States        115
## 12519 2020-03-07   America                        Uruguay          0
## 12520 2020-03-07   America                      Venezuela          0
## 12521 2020-03-07      Asia                    Afghanistan          0
## 12522 2020-03-07      Asia                        Bahrain          4
## 12523 2020-03-07      Asia                        Bahrain         25
## 12524 2020-03-07      Asia                     Bangladesh          0
## 12525 2020-03-07      Asia                         Bhutan          0
## 12526 2020-03-07      Asia              Brunei Darussalam          0
## 12527 2020-03-07      Asia                       Cambodia          0
## 12528 2020-03-07      Asia                          China        101
## 12529 2020-03-07      Asia                          India          2
## 12530 2020-03-07      Asia                          India          3
## 12531 2020-03-07      Asia                      Indonesia          0
## 12532 2020-03-07      Asia                      Indonesia          2
## 12533 2020-03-07      Asia                           Iran       1076
## 12534 2020-03-07      Asia                           Iran       1234
## 12535 2020-03-07      Asia                           Iraq         14
## 12536 2020-03-07      Asia                         Israel          2
## 12537 2020-03-07      Asia                         Israel          6
## 12538 2020-03-07      Asia                          Japan         41
## 12539 2020-03-07      Asia                          Japan         59
## 12540 2020-03-07      Asia                         Jordan          0
## 12541 2020-03-07      Asia                     Kazakhstan          0
## 12542 2020-03-07      Asia                         Kuwait          3
## 12543 2020-03-07      Asia                Kyrgyz Republic          0
## 12544 2020-03-07      Asia                           Laos          0
## 12545 2020-03-07      Asia                        Lebanon          0
## 12546 2020-03-07      Asia                        Lebanon          6
## 12547 2020-03-07      Asia                       Malaysia         10
## 12548 2020-03-07      Asia                       Malaysia         33
## 12549 2020-03-07      Asia                       Maldives          0
## 12550 2020-03-07      Asia                       Mongolia          0
## 12551 2020-03-07      Asia                        Myanmar          0
## 12552 2020-03-07      Asia                          Nepal          0
## 12553 2020-03-07      Asia                           Oman          0
## 12554 2020-03-07      Asia                       Pakistan          0
## 12555 2020-03-07      Asia                       Pakistan          1
## 12556 2020-03-07      Asia                      Palestine          9
## 12557 2020-03-07      Asia                      Palestine          9
## 12558 2020-03-07      Asia                    Philippines          1
## 12559 2020-03-07      Asia                    Philippines          2
## 12560 2020-03-07      Asia                          Qatar          0
## 12561 2020-03-07      Asia                          Qatar          3
## 12562 2020-03-07      Asia                   Saudi Arabia          0
## 12563 2020-03-07      Asia                      Singapore          8
## 12564 2020-03-07      Asia                      Singapore         13
## 12565 2020-03-07      Asia                    South Korea        448
## 12566 2020-03-07      Asia                    South Korea        483
## 12567 2020-03-07      Asia                      Sri Lanka          0
## 12568 2020-03-07      Asia                          Syria          0
## 12569 2020-03-07      Asia                     Tajikistan          0
## 12570 2020-03-07      Asia                       Thailand          2
## 12571 2020-03-07      Asia                       Thailand          3
## 12572 2020-03-07      Asia                    Timor-Leste          0
## 12573 2020-03-07      Asia                         Turkey          0
## 12574 2020-03-07      Asia           United Arab Emirates         16
## 12575 2020-03-07      Asia                     Uzbekistan          0
## 12576 2020-03-07      Asia                        Vietnam          1
## 12577 2020-03-07      Asia                        Vietnam          2
## 12578 2020-03-07      Asia                          Yemen          0
## 12579 2020-03-07      Asia                      not found          1
## 12580 2020-03-07    Europe                        Albania          0
## 12581 2020-03-07    Europe                        Andorra          0
## 12582 2020-03-07    Europe                        Armenia          0
## 12583 2020-03-07    Europe                        Austria         24
## 12584 2020-03-07    Europe                        Austria         33
## 12585 2020-03-07    Europe                     Azerbaijan          3
## 12586 2020-03-07    Europe                     Azerbaijan          3
## 12587 2020-03-07    Europe                        Belarus          0
## 12588 2020-03-07    Europe                        Belgium         60
## 12589 2020-03-07    Europe                        Belgium        111
## 12590 2020-03-07    Europe         Bosnia and Herzegovina          1
## 12591 2020-03-07    Europe                       Bulgaria          0
## 12592 2020-03-07    Europe                        Croatia          1
## 12593 2020-03-07    Europe                        Croatia          1
## 12594 2020-03-07    Europe                         Cyprus          0
## 12595 2020-03-07    Europe                 Czech Republic          1
## 12596 2020-03-07    Europe                 Czech Republic          7
## 12597 2020-03-07    Europe                        Denmark          0
## 12598 2020-03-07    Europe                        Denmark          3
## 12599 2020-03-07    Europe                        Estonia          0
## 12600 2020-03-07    Europe                        Estonia          5
## 12601 2020-03-07    Europe                        Finland          0
## 12602 2020-03-07    Europe                        Finland          7
## 12603 2020-03-07    Europe                         France        190
## 12604 2020-03-07    Europe                         France        296
## 12605 2020-03-07    Europe                        Georgia          0
## 12606 2020-03-07    Europe                        Germany        129
## 12607 2020-03-07    Europe                        Germany        284
## 12608 2020-03-07    Europe                         Greece          1
## 12609 2020-03-07    Europe                         Greece         13
## 12610 2020-03-07    Europe                        Hungary          2
## 12611 2020-03-07    Europe                        Hungary          2
## 12612 2020-03-07    Europe                        Iceland          7
## 12613 2020-03-07    Europe                        Iceland          8
## 12614 2020-03-07    Europe                        Ireland          0
## 12615 2020-03-07    Europe                        Ireland          5
## 12616 2020-03-07    Europe                          Italy        778
## 12617 2020-03-07    Europe                          Italy       1247
## 12618 2020-03-07    Europe                         Kosovo          0
## 12619 2020-03-07    Europe                         Latvia          0
## 12620 2020-03-07    Europe                  Liechtenstein          0
## 12621 2020-03-07    Europe                      Lithuania          0
## 12622 2020-03-07    Europe                     Luxembourg          0
## 12623 2020-03-07    Europe                     Luxembourg          2
## 12624 2020-03-07    Europe                      Macedonia          0
## 12625 2020-03-07    Europe                      Macedonia          2
## 12626 2020-03-07    Europe                          Malta          1
## 12627 2020-03-07    Europe                          Malta          3
## 12628 2020-03-07    Europe                        Moldova          0
## 12629 2020-03-07    Europe                         Monaco          0
## 12630 2020-03-07    Europe                     Montenegro          0
## 12631 2020-03-07    Europe                    Netherlands         46
## 12632 2020-03-07    Europe                    Netherlands         60
## 12633 2020-03-07    Europe                         Norway         27
## 12634 2020-03-07    Europe                         Norway         39
## 12635 2020-03-07    Europe                         Poland          0
## 12636 2020-03-07    Europe                         Poland          4
## 12637 2020-03-07    Europe                       Portugal          4
## 12638 2020-03-07    Europe                       Portugal          7
## 12639 2020-03-07    Europe                        Romania          0
## 12640 2020-03-07    Europe                        Romania          1
## 12641 2020-03-07    Europe                         Russia          0
## 12642 2020-03-07    Europe                         Russia          6
## 12643 2020-03-07    Europe                     San Marino          1
## 12644 2020-03-07    Europe                     San Marino          2
## 12645 2020-03-07    Europe                         Serbia          0
## 12646 2020-03-07    Europe                         Serbia          1
## 12647 2020-03-07    Europe                       Slovakia          0
## 12648 2020-03-07    Europe                       Slovakia          1
## 12649 2020-03-07    Europe                       Slovenia          0
## 12650 2020-03-07    Europe                       Slovenia          3
## 12651 2020-03-07    Europe                          Spain        100
## 12652 2020-03-07    Europe                          Spain        233
## 12653 2020-03-07    Europe                         Sweden         60
## 12654 2020-03-07    Europe                         Sweden         76
## 12655 2020-03-07    Europe                    Switzerland         54
## 12656 2020-03-07    Europe                    Switzerland        122
## 12657 2020-03-07    Europe                        Ukraine          0
## 12658 2020-03-07    Europe                 United Kingdom         43
## 12659 2020-03-07    Europe                 United Kingdom         48
## 12660 2020-03-07    Europe                        Vatican          0
## 12661 2020-03-07    Europe                        Vatican          1
## 12662 2020-03-07   Oceania                      Australia          4
## 12663 2020-03-07   Oceania                           Fiji          0
## 12664 2020-03-07   Oceania                    New Zealand          1
## 12665 2020-03-07   Oceania                    New Zealand          1
## 12666 2020-03-07   Oceania               Papua New Guinea          0
## 12667 2020-03-08    Africa                        Algeria          2
## 12668 2020-03-08    Africa                         Angola          0
## 12669 2020-03-08    Africa                          Benin          0
## 12670 2020-03-08    Africa                       Botswana          0
## 12671 2020-03-08    Africa                   Burkina Faso          0
## 12672 2020-03-08    Africa                        Burundi          0
## 12673 2020-03-08    Africa                     Cabo Verde          0
## 12674 2020-03-08    Africa                       Cameroon          1
## 12675 2020-03-08    Africa       Central African Republic          0
## 12676 2020-03-08    Africa                           Chad          0
## 12677 2020-03-08    Africa                        Comoros          0
## 12678 2020-03-08    Africa                 Congo Republic          0
## 12679 2020-03-08    Africa                  Cote d'Ivoire          0
## 12680 2020-03-08    Africa                       DR Congo          0
## 12681 2020-03-08    Africa                       Djibouti          0
## 12682 2020-03-08    Africa                          Egypt         34
## 12683 2020-03-08    Africa              Equatorial Guinea          0
## 12684 2020-03-08    Africa                        Eritrea          0
## 12685 2020-03-08    Africa                       Eswatini          0
## 12686 2020-03-08    Africa                       Ethiopia          0
## 12687 2020-03-08    Africa                          Gabon          0
## 12688 2020-03-08    Africa                         Gambia          0
## 12689 2020-03-08    Africa                          Ghana          0
## 12690 2020-03-08    Africa                         Guinea          0
## 12691 2020-03-08    Africa                  Guinea-Bissau          0
## 12692 2020-03-08    Africa                          Kenya          0
## 12693 2020-03-08    Africa                        Lesotho          0
## 12694 2020-03-08    Africa                        Liberia          0
## 12695 2020-03-08    Africa                          Libya          0
## 12696 2020-03-08    Africa                     Madagascar          0
## 12697 2020-03-08    Africa                         Malawi          0
## 12698 2020-03-08    Africa                           Mali          0
## 12699 2020-03-08    Africa                     Mauritania          0
## 12700 2020-03-08    Africa                      Mauritius          0
## 12701 2020-03-08    Africa                        Morocco          0
## 12702 2020-03-08    Africa                     Mozambique          0
## 12703 2020-03-08    Africa                        Namibia          0
## 12704 2020-03-08    Africa                          Niger          0
## 12705 2020-03-08    Africa                        Nigeria          0
## 12706 2020-03-08    Africa                         Rwanda          0
## 12707 2020-03-08    Africa          Sao Tome and Principe          0
## 12708 2020-03-08    Africa                        Senegal          0
## 12709 2020-03-08    Africa                     Seychelles          0
## 12710 2020-03-08    Africa                   Sierra Leone          0
## 12711 2020-03-08    Africa                        Somalia          0
## 12712 2020-03-08    Africa                   South Africa          1
## 12713 2020-03-08    Africa                   South Africa          2
## 12714 2020-03-08    Africa                    South Sudan          0
## 12715 2020-03-08    Africa                          Sudan          0
## 12716 2020-03-08    Africa                       Tanzania          0
## 12717 2020-03-08    Africa                           Togo          0
## 12718 2020-03-08    Africa                        Tunisia          1
## 12719 2020-03-08    Africa                         Uganda          0
## 12720 2020-03-08    Africa                 Western Sahara          0
## 12721 2020-03-08    Africa                         Zambia          0
## 12722 2020-03-08    Africa                       Zimbabwe          0
## 12723 2020-03-08   America            Antigua and Barbuda          0
## 12724 2020-03-08   America                      Argentina          1
## 12725 2020-03-08   America                      Argentina          4
## 12726 2020-03-08   America                        Bahamas          0
## 12727 2020-03-08   America                       Barbados          0
## 12728 2020-03-08   America                         Belize          0
## 12729 2020-03-08   America                        Bolivia          0
## 12730 2020-03-08   America                         Brazil          0
## 12731 2020-03-08   America                         Brazil          7
## 12732 2020-03-08   America                         Canada          6
## 12733 2020-03-08   America                          Chile          4
## 12734 2020-03-08   America                       Colombia          0
## 12735 2020-03-08   America                     Costa Rica          4
## 12736 2020-03-08   America                           Cuba          0
## 12737 2020-03-08   America                       Dominica          0
## 12738 2020-03-08   America             Dominican Republic          3
## 12739 2020-03-08   America                        Ecuador          1
## 12740 2020-03-08   America                    El Salvador          0
## 12741 2020-03-08   America                        Grenada          0
## 12742 2020-03-08   America                      Guatemala          0
## 12743 2020-03-08   America                         Guyana          0
## 12744 2020-03-08   America                          Haiti          0
## 12745 2020-03-08   America                       Honduras          0
## 12746 2020-03-08   America                        Jamaica          0
## 12747 2020-03-08   America                         Mexico          1
## 12748 2020-03-08   America                      Nicaragua          0
## 12749 2020-03-08   America                         Panama          0
## 12750 2020-03-08   America                       Paraguay          1
## 12751 2020-03-08   America                       Paraguay          1
## 12752 2020-03-08   America                           Peru          5
## 12753 2020-03-08   America            St. Kitts and Nevis          0
## 12754 2020-03-08   America                      St. Lucia          0
## 12755 2020-03-08   America St. Vincent and the Grenadines          0
## 12756 2020-03-08   America                       Suriname          0
## 12757 2020-03-08   America            Trinidad and Tobago          0
## 12758 2020-03-08   America                  United States         95
## 12759 2020-03-08   America                  United States        114
## 12760 2020-03-08   America                        Uruguay          0
## 12761 2020-03-08   America                      Venezuela          0
## 12762 2020-03-08      Asia                    Afghanistan          3
## 12763 2020-03-08      Asia                    Afghanistan          3
## 12764 2020-03-08      Asia                        Bahrain          0
## 12765 2020-03-08      Asia                        Bahrain          7
## 12766 2020-03-08      Asia                     Bangladesh          3
## 12767 2020-03-08      Asia                         Bhutan          0
## 12768 2020-03-08      Asia              Brunei Darussalam          0
## 12769 2020-03-08      Asia                       Cambodia          1
## 12770 2020-03-08      Asia                       Cambodia          1
## 12771 2020-03-08      Asia                          China         46
## 12772 2020-03-08      Asia                          India          3
## 12773 2020-03-08      Asia                          India          5
## 12774 2020-03-08      Asia                      Indonesia          2
## 12775 2020-03-08      Asia                           Iran        743
## 12776 2020-03-08      Asia                           Iran       1076
## 12777 2020-03-08      Asia                           Iraq          6
## 12778 2020-03-08      Asia                           Iraq         16
## 12779 2020-03-08      Asia                         Israel          6
## 12780 2020-03-08      Asia                         Israel         18
## 12781 2020-03-08      Asia                          Japan         41
## 12782 2020-03-08      Asia                          Japan         47
## 12783 2020-03-08      Asia                         Jordan          0
## 12784 2020-03-08      Asia                         Jordan          0
## 12785 2020-03-08      Asia                     Kazakhstan          0
## 12786 2020-03-08      Asia                         Kuwait          3
## 12787 2020-03-08      Asia                         Kuwait          3
## 12788 2020-03-08      Asia                Kyrgyz Republic          0
## 12789 2020-03-08      Asia                           Laos          0
## 12790 2020-03-08      Asia                        Lebanon         10
## 12791 2020-03-08      Asia                       Malaysia          6
## 12792 2020-03-08      Asia                       Malaysia         10
## 12793 2020-03-08      Asia                       Maldives          2
## 12794 2020-03-08      Asia                       Maldives          4
## 12795 2020-03-08      Asia                       Mongolia          0
## 12796 2020-03-08      Asia                        Myanmar          0
## 12797 2020-03-08      Asia                          Nepal          0
## 12798 2020-03-08      Asia                           Oman          0
## 12799 2020-03-08      Asia                       Pakistan          0
## 12800 2020-03-08      Asia                      Palestine          0
## 12801 2020-03-08      Asia                      Palestine          3
## 12802 2020-03-08      Asia                    Philippines          1
## 12803 2020-03-08      Asia                    Philippines          4
## 12804 2020-03-08      Asia                          Qatar          1
## 12805 2020-03-08      Asia                          Qatar          7
## 12806 2020-03-08      Asia                   Saudi Arabia          2
## 12807 2020-03-08      Asia                   Saudi Arabia          6
## 12808 2020-03-08      Asia                      Singapore          8
## 12809 2020-03-08      Asia                      Singapore         12
## 12810 2020-03-08      Asia                    South Korea        273
## 12811 2020-03-08      Asia                    South Korea        367
## 12812 2020-03-08      Asia                      Sri Lanka          0
## 12813 2020-03-08      Asia                          Syria          0
## 12814 2020-03-08      Asia                     Tajikistan          0
## 12815 2020-03-08      Asia                       Thailand          0
## 12816 2020-03-08      Asia                    Timor-Leste          0
## 12817 2020-03-08      Asia                         Turkey          0
## 12818 2020-03-08      Asia           United Arab Emirates          0
## 12819 2020-03-08      Asia           United Arab Emirates         16
## 12820 2020-03-08      Asia                     Uzbekistan          0
## 12821 2020-03-08      Asia                        Vietnam          4
## 12822 2020-03-08      Asia                        Vietnam         12
## 12823 2020-03-08      Asia                          Yemen          0
## 12824 2020-03-08      Asia                      not found          0
## 12825 2020-03-08    Europe                        Albania          0
## 12826 2020-03-08    Europe                        Andorra          0
## 12827 2020-03-08    Europe                        Armenia          0
## 12828 2020-03-08    Europe                        Austria         25
## 12829 2020-03-08    Europe                        Austria         25
## 12830 2020-03-08    Europe                     Azerbaijan          0
## 12831 2020-03-08    Europe                        Belarus          0
## 12832 2020-03-08    Europe                        Belgium         27
## 12833 2020-03-08    Europe                        Belgium         31
## 12834 2020-03-08    Europe         Bosnia and Herzegovina          0
## 12835 2020-03-08    Europe                       Bulgaria          2
## 12836 2020-03-08    Europe                       Bulgaria          4
## 12837 2020-03-08    Europe                        Croatia          0
## 12838 2020-03-08    Europe                        Croatia          1
## 12839 2020-03-08    Europe                         Cyprus          0
## 12840 2020-03-08    Europe                 Czech Republic          7
## 12841 2020-03-08    Europe                 Czech Republic         12
## 12842 2020-03-08    Europe                        Denmark          8
## 12843 2020-03-08    Europe                        Denmark         12
## 12844 2020-03-08    Europe                        Estonia          0
## 12845 2020-03-08    Europe                        Finland          8
## 12846 2020-03-08    Europe                         France        103
## 12847 2020-03-08    Europe                         France        177
## 12848 2020-03-08    Europe                        Georgia          3
## 12849 2020-03-08    Europe                        Georgia          9
## 12850 2020-03-08    Europe                        Germany        163
## 12851 2020-03-08    Europe                        Germany        241
## 12852 2020-03-08    Europe                         Greece         21
## 12853 2020-03-08    Europe                         Greece         27
## 12854 2020-03-08    Europe                        Hungary          3
## 12855 2020-03-08    Europe                        Hungary          3
## 12856 2020-03-08    Europe                        Iceland          0
## 12857 2020-03-08    Europe                        Iceland         10
## 12858 2020-03-08    Europe                        Ireland          1
## 12859 2020-03-08    Europe                        Ireland          1
## 12860 2020-03-08    Europe                          Italy       1247
## 12861 2020-03-08    Europe                          Italy       1492
## 12862 2020-03-08    Europe                         Kosovo          0
## 12863 2020-03-08    Europe                         Latvia          1
## 12864 2020-03-08    Europe                         Latvia          1
## 12865 2020-03-08    Europe                  Liechtenstein          0
## 12866 2020-03-08    Europe                      Lithuania          0
## 12867 2020-03-08    Europe                     Luxembourg          1
## 12868 2020-03-08    Europe                      Macedonia          0
## 12869 2020-03-08    Europe                          Malta          0
## 12870 2020-03-08    Europe                          Malta          2
## 12871 2020-03-08    Europe                        Moldova          1
## 12872 2020-03-08    Europe                        Moldova          1
## 12873 2020-03-08    Europe                         Monaco          0
## 12874 2020-03-08    Europe                     Montenegro          0
## 12875 2020-03-08    Europe                    Netherlands         60
## 12876 2020-03-08    Europe                    Netherlands         77
## 12877 2020-03-08    Europe                         Norway         29
## 12878 2020-03-08    Europe                         Norway         34
## 12879 2020-03-08    Europe                         Poland          1
## 12880 2020-03-08    Europe                         Poland          6
## 12881 2020-03-08    Europe                       Portugal          8
## 12882 2020-03-08    Europe                       Portugal         10
## 12883 2020-03-08    Europe                        Romania          6
## 12884 2020-03-08    Europe                        Romania          6
## 12885 2020-03-08    Europe                         Russia          0
## 12886 2020-03-08    Europe                         Russia          4
## 12887 2020-03-08    Europe                     San Marino          3
## 12888 2020-03-08    Europe                     San Marino         13
## 12889 2020-03-08    Europe                         Serbia          0
## 12890 2020-03-08    Europe                       Slovakia          2
## 12891 2020-03-08    Europe                       Slovakia          2
## 12892 2020-03-08    Europe                       Slovenia          3
## 12893 2020-03-08    Europe                       Slovenia          9
## 12894 2020-03-08    Europe                          Spain        173
## 12895 2020-03-08    Europe                          Spain        330
## 12896 2020-03-08    Europe                         Sweden         24
## 12897 2020-03-08    Europe                         Sweden         42
## 12898 2020-03-08    Europe                    Switzerland         55
## 12899 2020-03-08    Europe                    Switzerland         69
## 12900 2020-03-08    Europe                        Ukraine          0
## 12901 2020-03-08    Europe                 United Kingdom         43
## 12902 2020-03-08    Europe                 United Kingdom         67
## 12903 2020-03-08    Europe                        Vatican          0
## 12904 2020-03-08   Oceania                      Australia         11
## 12905 2020-03-08   Oceania                           Fiji          0
## 12906 2020-03-08   Oceania                    New Zealand          0
## 12907 2020-03-08   Oceania               Papua New Guinea          0
## 12908 2020-03-09    Africa                        Algeria          1
## 12909 2020-03-09    Africa                        Algeria          3
## 12910 2020-03-09    Africa                         Angola          0
## 12911 2020-03-09    Africa                          Benin          0
## 12912 2020-03-09    Africa                       Botswana          0
## 12913 2020-03-09    Africa                   Burkina Faso          0
## 12914 2020-03-09    Africa                        Burundi          0
## 12915 2020-03-09    Africa                     Cabo Verde          0
## 12916 2020-03-09    Africa                       Cameroon          0
## 12917 2020-03-09    Africa                       Cameroon          1
## 12918 2020-03-09    Africa       Central African Republic          0
## 12919 2020-03-09    Africa                           Chad          0
## 12920 2020-03-09    Africa                        Comoros          0
## 12921 2020-03-09    Africa                 Congo Republic          0
## 12922 2020-03-09    Africa                  Cote d'Ivoire          0
## 12923 2020-03-09    Africa                       DR Congo          0
## 12924 2020-03-09    Africa                       Djibouti          0
## 12925 2020-03-09    Africa                          Egypt          6
## 12926 2020-03-09    Africa                          Egypt         34
## 12927 2020-03-09    Africa              Equatorial Guinea          0
## 12928 2020-03-09    Africa                        Eritrea          0
## 12929 2020-03-09    Africa                       Eswatini          0
## 12930 2020-03-09    Africa                       Ethiopia          0
## 12931 2020-03-09    Africa                          Gabon          0
## 12932 2020-03-09    Africa                         Gambia          0
## 12933 2020-03-09    Africa                          Ghana          0
## 12934 2020-03-09    Africa                         Guinea          0
## 12935 2020-03-09    Africa                  Guinea-Bissau          0
## 12936 2020-03-09    Africa                          Kenya          0
## 12937 2020-03-09    Africa                        Lesotho          0
## 12938 2020-03-09    Africa                        Liberia          0
## 12939 2020-03-09    Africa                          Libya          0
## 12940 2020-03-09    Africa                     Madagascar          0
## 12941 2020-03-09    Africa                         Malawi          0
## 12942 2020-03-09    Africa                           Mali          0
## 12943 2020-03-09    Africa                     Mauritania          0
## 12944 2020-03-09    Africa                      Mauritius          0
## 12945 2020-03-09    Africa                        Morocco          0
## 12946 2020-03-09    Africa                     Mozambique          0
## 12947 2020-03-09    Africa                        Namibia          0
## 12948 2020-03-09    Africa                          Niger          0
## 12949 2020-03-09    Africa                        Nigeria          1
## 12950 2020-03-09    Africa                         Rwanda          0
## 12951 2020-03-09    Africa          Sao Tome and Principe          0
## 12952 2020-03-09    Africa                        Senegal          0
## 12953 2020-03-09    Africa                     Seychelles          0
## 12954 2020-03-09    Africa                   Sierra Leone          0
## 12955 2020-03-09    Africa                        Somalia          0
## 12956 2020-03-09    Africa                   South Africa          0
## 12957 2020-03-09    Africa                   South Africa          1
## 12958 2020-03-09    Africa                    South Sudan          0
## 12959 2020-03-09    Africa                          Sudan          0
## 12960 2020-03-09    Africa                       Tanzania          0
## 12961 2020-03-09    Africa                           Togo          0
## 12962 2020-03-09    Africa                        Tunisia          0
## 12963 2020-03-09    Africa                         Uganda          0
## 12964 2020-03-09    Africa                 Western Sahara          0
## 12965 2020-03-09    Africa                         Zambia          0
## 12966 2020-03-09    Africa                       Zimbabwe          0
## 12967 2020-03-09   America            Antigua and Barbuda          0
## 12968 2020-03-09   America                      Argentina          0
## 12969 2020-03-09   America                      Argentina          3
## 12970 2020-03-09   America                        Bahamas          0
## 12971 2020-03-09   America                       Barbados          0
## 12972 2020-03-09   America                         Belize          0
## 12973 2020-03-09   America                        Bolivia          0
## 12974 2020-03-09   America                         Brazil          5
## 12975 2020-03-09   America                         Brazil         12
## 12976 2020-03-09   America                         Canada          5
## 12977 2020-03-09   America                          Chile          0
## 12978 2020-03-09   America                          Chile          5
## 12979 2020-03-09   America                       Colombia          0
## 12980 2020-03-09   America                     Costa Rica          4
## 12981 2020-03-09   America                     Costa Rica          4
## 12982 2020-03-09   America                           Cuba          0
## 12983 2020-03-09   America                       Dominica          0
## 12984 2020-03-09   America             Dominican Republic          0
## 12985 2020-03-09   America                        Ecuador          1
## 12986 2020-03-09   America                        Ecuador          1
## 12987 2020-03-09   America                    El Salvador          0
## 12988 2020-03-09   America                        Grenada          0
## 12989 2020-03-09   America                      Guatemala          0
## 12990 2020-03-09   America                         Guyana          0
## 12991 2020-03-09   America                          Haiti          0
## 12992 2020-03-09   America                       Honduras          0
## 12993 2020-03-09   America                        Jamaica          0
## 12994 2020-03-09   America                         Mexico          0
## 12995 2020-03-09   America                         Mexico          2
## 12996 2020-03-09   America                      Nicaragua          0
## 12997 2020-03-09   America                         Panama          0
## 12998 2020-03-09   America                       Paraguay          0
## 12999 2020-03-09   America                           Peru          1
## 13000 2020-03-09   America                           Peru          6
## 13001 2020-03-09   America            St. Kitts and Nevis          0
## 13002 2020-03-09   America                      St. Lucia          0
## 13003 2020-03-09   America St. Vincent and the Grenadines          0
## 13004 2020-03-09   America                       Suriname          0
## 13005 2020-03-09   America            Trinidad and Tobago          0
## 13006 2020-03-09   America                  United States         68
## 13007 2020-03-09   America                  United States        121
## 13008 2020-03-09   America                        Uruguay          0
## 13009 2020-03-09   America                      Venezuela          0
## 13010 2020-03-09      Asia                    Afghanistan          0
## 13011 2020-03-09      Asia                        Bahrain         10
## 13012 2020-03-09      Asia                        Bahrain         16
## 13013 2020-03-09      Asia                     Bangladesh          0
## 13014 2020-03-09      Asia                     Bangladesh          3
## 13015 2020-03-09      Asia                         Bhutan          0
## 13016 2020-03-09      Asia              Brunei Darussalam          1
## 13017 2020-03-09      Asia                       Cambodia          0
## 13018 2020-03-09      Asia                          China         45
## 13019 2020-03-09      Asia                          India          4
## 13020 2020-03-09      Asia                      Indonesia          2
## 13021 2020-03-09      Asia                      Indonesia         13
## 13022 2020-03-09      Asia                           Iran        595
## 13023 2020-03-09      Asia                           Iran        743
## 13024 2020-03-09      Asia                           Iraq          0
## 13025 2020-03-09      Asia                           Iraq          7
## 13026 2020-03-09      Asia                         Israel          0
## 13027 2020-03-09      Asia                         Israel         14
## 13028 2020-03-09      Asia                          Japan          9
## 13029 2020-03-09      Asia                          Japan         33
## 13030 2020-03-09      Asia                         Jordan          0
## 13031 2020-03-09      Asia                     Kazakhstan          0
## 13032 2020-03-09      Asia                         Kuwait          0
## 13033 2020-03-09      Asia                         Kuwait          3
## 13034 2020-03-09      Asia                Kyrgyz Republic          0
## 13035 2020-03-09      Asia                           Laos          0
## 13036 2020-03-09      Asia                        Lebanon          0
## 13037 2020-03-09      Asia                        Lebanon         10
## 13038 2020-03-09      Asia                       Malaysia          6
## 13039 2020-03-09      Asia                       Malaysia         18
## 13040 2020-03-09      Asia                       Maldives          0
## 13041 2020-03-09      Asia                       Maldives          2
## 13042 2020-03-09      Asia                       Mongolia          0
## 13043 2020-03-09      Asia                        Myanmar          0
## 13044 2020-03-09      Asia                          Nepal          0
## 13045 2020-03-09      Asia                           Oman          0
## 13046 2020-03-09      Asia                       Pakistan         10
## 13047 2020-03-09      Asia                      Palestine          3
## 13048 2020-03-09      Asia                    Philippines          4
## 13049 2020-03-09      Asia                    Philippines         10
## 13050 2020-03-09      Asia                          Qatar          3
## 13051 2020-03-09      Asia                          Qatar          3
## 13052 2020-03-09      Asia                   Saudi Arabia          4
## 13053 2020-03-09      Asia                   Saudi Arabia          4
## 13054 2020-03-09      Asia                      Singapore          0
## 13055 2020-03-09      Asia                      Singapore         12
## 13056 2020-03-09      Asia                    South Korea        164
## 13057 2020-03-09      Asia                    South Korea        248
## 13058 2020-03-09      Asia                      Sri Lanka          0
## 13059 2020-03-09      Asia                          Syria          0
## 13060 2020-03-09      Asia                     Tajikistan          0
## 13061 2020-03-09      Asia                       Thailand          0
## 13062 2020-03-09      Asia                    Timor-Leste          0
## 13063 2020-03-09      Asia                         Turkey          0
## 13064 2020-03-09      Asia           United Arab Emirates          0
## 13065 2020-03-09      Asia                     Uzbekistan          0
## 13066 2020-03-09      Asia                        Vietnam          0
## 13067 2020-03-09      Asia                        Vietnam          9
## 13068 2020-03-09      Asia                          Yemen          0
## 13069 2020-03-09      Asia                      not found          0
## 13070 2020-03-09    Europe                        Albania          2
## 13071 2020-03-09    Europe                        Albania          2
## 13072 2020-03-09    Europe                        Andorra          0
## 13073 2020-03-09    Europe                        Armenia          0
## 13074 2020-03-09    Europe                        Austria          3
## 13075 2020-03-09    Europe                        Austria         27
## 13076 2020-03-09    Europe                     Azerbaijan          0
## 13077 2020-03-09    Europe                        Belarus          0
## 13078 2020-03-09    Europe                        Belgium         39
## 13079 2020-03-09    Europe                        Belgium         64
## 13080 2020-03-09    Europe         Bosnia and Herzegovina          0
## 13081 2020-03-09    Europe                       Bulgaria          0
## 13082 2020-03-09    Europe                       Bulgaria          2
## 13083 2020-03-09    Europe                        Croatia          0
## 13084 2020-03-09    Europe                         Cyprus          2
## 13085 2020-03-09    Europe                 Czech Republic          0
## 13086 2020-03-09    Europe                 Czech Republic          6
## 13087 2020-03-09    Europe                        Denmark          7
## 13088 2020-03-09    Europe                        Denmark         55
## 13089 2020-03-09    Europe                        Estonia          0
## 13090 2020-03-09    Europe                        Finland          7
## 13091 2020-03-09    Europe                        Finland         11
## 13092 2020-03-09    Europe                         France         83
## 13093 2020-03-09    Europe                         France        410
## 13094 2020-03-09    Europe                        Georgia          1
## 13095 2020-03-09    Europe                        Georgia          2
## 13096 2020-03-09    Europe                        Germany         55
## 13097 2020-03-09    Europe                        Germany        136
## 13098 2020-03-09    Europe                         Greece          0
## 13099 2020-03-09    Europe                         Greece          7
## 13100 2020-03-09    Europe                        Hungary          1
## 13101 2020-03-09    Europe                        Hungary          2
## 13102 2020-03-09    Europe                        Iceland          2
## 13103 2020-03-09    Europe                        Iceland          8
## 13104 2020-03-09    Europe                        Ireland          2
## 13105 2020-03-09    Europe                        Ireland          2
## 13106 2020-03-09    Europe                          Italy       1492
## 13107 2020-03-09    Europe                          Italy       1797
## 13108 2020-03-09    Europe                         Kosovo          0
## 13109 2020-03-09    Europe                         Latvia          1
## 13110 2020-03-09    Europe                         Latvia          4
## 13111 2020-03-09    Europe                  Liechtenstein          0
## 13112 2020-03-09    Europe                      Lithuania          0
## 13113 2020-03-09    Europe                     Luxembourg          0
## 13114 2020-03-09    Europe                     Luxembourg          2
## 13115 2020-03-09    Europe                      Macedonia          0
## 13116 2020-03-09    Europe                          Malta          0
## 13117 2020-03-09    Europe                          Malta          0
## 13118 2020-03-09    Europe                        Moldova          0
## 13119 2020-03-09    Europe                         Monaco          0
## 13120 2020-03-09    Europe                     Montenegro          0
## 13121 2020-03-09    Europe                    Netherlands         56
## 13122 2020-03-09    Europe                    Netherlands         77
## 13123 2020-03-09    Europe                         Norway         22
## 13124 2020-03-09    Europe                         Norway         29
## 13125 2020-03-09    Europe                         Poland          5
## 13126 2020-03-09    Europe                         Poland          5
## 13127 2020-03-09    Europe                       Portugal          0
## 13128 2020-03-09    Europe                       Portugal          9
## 13129 2020-03-09    Europe                        Romania          0
## 13130 2020-03-09    Europe                        Romania          2
## 13131 2020-03-09    Europe                         Russia          0
## 13132 2020-03-09    Europe                         Russia          0
## 13133 2020-03-09    Europe                     San Marino          0
## 13134 2020-03-09    Europe                     San Marino         11
## 13135 2020-03-09    Europe                         Serbia          0
## 13136 2020-03-09    Europe                       Slovakia          0
## 13137 2020-03-09    Europe                       Slovakia          2
## 13138 2020-03-09    Europe                       Slovenia          0
## 13139 2020-03-09    Europe                       Slovenia          4
## 13140 2020-03-09    Europe                          Spain        400
## 13141 2020-03-09    Europe                          Spain        433
## 13142 2020-03-09    Europe                         Sweden         42
## 13143 2020-03-09    Europe                         Sweden         45
## 13144 2020-03-09    Europe                    Switzerland         37
## 13145 2020-03-09    Europe                    Switzerland         68
## 13146 2020-03-09    Europe                        Ukraine          0
## 13147 2020-03-09    Europe                 United Kingdom         48
## 13148 2020-03-09    Europe                 United Kingdom         67
## 13149 2020-03-09    Europe                        Vatican          0
## 13150 2020-03-09   Oceania                      Australia          6
## 13151 2020-03-09   Oceania                           Fiji          0
## 13152 2020-03-09   Oceania                    New Zealand          0
## 13153 2020-03-09   Oceania               Papua New Guinea          0
## 13154 2020-03-10    Africa                        Algeria          0
## 13155 2020-03-10    Africa                         Angola          0
## 13156 2020-03-10    Africa                          Benin          0
## 13157 2020-03-10    Africa                       Botswana          0
## 13158 2020-03-10    Africa                   Burkina Faso          1
## 13159 2020-03-10    Africa                        Burundi          0
## 13160 2020-03-10    Africa                     Cabo Verde          0
## 13161 2020-03-10    Africa                       Cameroon          0
## 13162 2020-03-10    Africa       Central African Republic          0
## 13163 2020-03-10    Africa                           Chad          0
## 13164 2020-03-10    Africa                        Comoros          0
## 13165 2020-03-10    Africa                 Congo Republic          0
## 13166 2020-03-10    Africa                  Cote d'Ivoire          0
## 13167 2020-03-10    Africa                       DR Congo          0
## 13168 2020-03-10    Africa                       Djibouti          0
## 13169 2020-03-10    Africa                          Egypt          4
## 13170 2020-03-10    Africa                          Egypt          6
## 13171 2020-03-10    Africa              Equatorial Guinea          0
## 13172 2020-03-10    Africa                        Eritrea          0
## 13173 2020-03-10    Africa                       Eswatini          0
## 13174 2020-03-10    Africa                       Ethiopia          0
## 13175 2020-03-10    Africa                          Gabon          0
## 13176 2020-03-10    Africa                         Gambia          0
## 13177 2020-03-10    Africa                          Ghana          0
## 13178 2020-03-10    Africa                         Guinea          0
## 13179 2020-03-10    Africa                  Guinea-Bissau          0
## 13180 2020-03-10    Africa                          Kenya          0
## 13181 2020-03-10    Africa                        Lesotho          0
## 13182 2020-03-10    Africa                        Liberia          0
## 13183 2020-03-10    Africa                          Libya          0
## 13184 2020-03-10    Africa                     Madagascar          0
## 13185 2020-03-10    Africa                         Malawi          0
## 13186 2020-03-10    Africa                           Mali          0
## 13187 2020-03-10    Africa                     Mauritania          0
## 13188 2020-03-10    Africa                      Mauritius          0
## 13189 2020-03-10    Africa                        Morocco          1
## 13190 2020-03-10    Africa                     Mozambique          0
## 13191 2020-03-10    Africa                        Namibia          0
## 13192 2020-03-10    Africa                          Niger          0
## 13193 2020-03-10    Africa                        Nigeria          0
## 13194 2020-03-10    Africa                        Nigeria          1
## 13195 2020-03-10    Africa                         Rwanda          0
## 13196 2020-03-10    Africa          Sao Tome and Principe          0
## 13197 2020-03-10    Africa                        Senegal          0
## 13198 2020-03-10    Africa                     Seychelles          0
## 13199 2020-03-10    Africa                   Sierra Leone          0
## 13200 2020-03-10    Africa                        Somalia          0
## 13201 2020-03-10    Africa                   South Africa          4
## 13202 2020-03-10    Africa                   South Africa          4
## 13203 2020-03-10    Africa                    South Sudan          0
## 13204 2020-03-10    Africa                          Sudan          0
## 13205 2020-03-10    Africa                       Tanzania          0
## 13206 2020-03-10    Africa                           Togo          0
## 13207 2020-03-10    Africa                        Tunisia          1
## 13208 2020-03-10    Africa                        Tunisia          3
## 13209 2020-03-10    Africa                         Uganda          0
## 13210 2020-03-10    Africa                 Western Sahara          0
## 13211 2020-03-10    Africa                         Zambia          0
## 13212 2020-03-10    Africa                       Zimbabwe          0
## 13213 2020-03-10   America            Antigua and Barbuda          0
## 13214 2020-03-10   America                      Argentina          5
## 13215 2020-03-10   America                        Bahamas          0
## 13216 2020-03-10   America                       Barbados          0
## 13217 2020-03-10   America                         Belize          0
## 13218 2020-03-10   America                        Bolivia          0
## 13219 2020-03-10   America                         Brazil          0
## 13220 2020-03-10   America                         Brazil          6
## 13221 2020-03-10   America                         Canada         15
## 13222 2020-03-10   America                          Chile          3
## 13223 2020-03-10   America                          Chile          5
## 13224 2020-03-10   America                       Colombia          2
## 13225 2020-03-10   America                       Colombia          2
## 13226 2020-03-10   America                     Costa Rica          0
## 13227 2020-03-10   America                     Costa Rica          4
## 13228 2020-03-10   America                           Cuba          0
## 13229 2020-03-10   America                       Dominica          0
## 13230 2020-03-10   America             Dominican Republic          0
## 13231 2020-03-10   America             Dominican Republic          3
## 13232 2020-03-10   America                        Ecuador          0
## 13233 2020-03-10   America                        Ecuador          1
## 13234 2020-03-10   America                    El Salvador          0
## 13235 2020-03-10   America                        Grenada          0
## 13236 2020-03-10   America                      Guatemala          0
## 13237 2020-03-10   America                         Guyana          0
## 13238 2020-03-10   America                          Haiti          0
## 13239 2020-03-10   America                       Honduras          0
## 13240 2020-03-10   America                        Jamaica          0
## 13241 2020-03-10   America                         Mexico          0
## 13242 2020-03-10   America                      Nicaragua          0
## 13243 2020-03-10   America                         Panama          1
## 13244 2020-03-10   America                         Panama          1
## 13245 2020-03-10   America                       Paraguay          0
## 13246 2020-03-10   America                           Peru          2
## 13247 2020-03-10   America                           Peru          4
## 13248 2020-03-10   America            St. Kitts and Nevis          0
## 13249 2020-03-10   America                      St. Lucia          0
## 13250 2020-03-10   America St. Vincent and the Grenadines          0
## 13251 2020-03-10   America                       Suriname          0
## 13252 2020-03-10   America            Trinidad and Tobago          0
## 13253 2020-03-10   America                  United States        192
## 13254 2020-03-10   America                  United States        200
## 13255 2020-03-10   America                        Uruguay          0
## 13256 2020-03-10   America                      Venezuela          0
## 13257 2020-03-10      Asia                    Afghanistan          1
## 13258 2020-03-10      Asia                        Bahrain         15
## 13259 2020-03-10      Asia                        Bahrain         30
## 13260 2020-03-10      Asia                     Bangladesh          0
## 13261 2020-03-10      Asia                         Bhutan          0
## 13262 2020-03-10      Asia              Brunei Darussalam          0
## 13263 2020-03-10      Asia              Brunei Darussalam          1
## 13264 2020-03-10      Asia                       Cambodia          0
## 13265 2020-03-10      Asia                          China         20
## 13266 2020-03-10      Asia                          India         10
## 13267 2020-03-10      Asia                          India         13
## 13268 2020-03-10      Asia                      Indonesia          8
## 13269 2020-03-10      Asia                           Iran        595
## 13270 2020-03-10      Asia                           Iran        881
## 13271 2020-03-10      Asia                           Iraq         11
## 13272 2020-03-10      Asia                         Israel         14
## 13273 2020-03-10      Asia                          Japan         26
## 13274 2020-03-10      Asia                          Japan         70
## 13275 2020-03-10      Asia                         Jordan          0
## 13276 2020-03-10      Asia                     Kazakhstan          0
## 13277 2020-03-10      Asia                         Kuwait          1
## 13278 2020-03-10      Asia                         Kuwait          5
## 13279 2020-03-10      Asia                Kyrgyz Republic          0
## 13280 2020-03-10      Asia                           Laos          0
## 13281 2020-03-10      Asia                        Lebanon          9
## 13282 2020-03-10      Asia                        Lebanon          9
## 13283 2020-03-10      Asia                       Malaysia         12
## 13284 2020-03-10      Asia                       Malaysia         18
## 13285 2020-03-10      Asia                       Maldives          2
## 13286 2020-03-10      Asia                       Mongolia          1
## 13287 2020-03-10      Asia                       Mongolia          1
## 13288 2020-03-10      Asia                        Myanmar          0
## 13289 2020-03-10      Asia                          Nepal          0
## 13290 2020-03-10      Asia                           Oman          2
## 13291 2020-03-10      Asia                           Oman          2
## 13292 2020-03-10      Asia                       Pakistan          3
## 13293 2020-03-10      Asia                       Pakistan         10
## 13294 2020-03-10      Asia                      Palestine          1
## 13295 2020-03-10      Asia                      Palestine          7
## 13296 2020-03-10      Asia                    Philippines         13
## 13297 2020-03-10      Asia                    Philippines         23
## 13298 2020-03-10      Asia                          Qatar          3
## 13299 2020-03-10      Asia                          Qatar          6
## 13300 2020-03-10      Asia                   Saudi Arabia          4
## 13301 2020-03-10      Asia                   Saudi Arabia          5
## 13302 2020-03-10      Asia                      Singapore         10
## 13303 2020-03-10      Asia                      Singapore         10
## 13304 2020-03-10      Asia                    South Korea         35
## 13305 2020-03-10      Asia                    South Korea        131
## 13306 2020-03-10      Asia                      Sri Lanka          0
## 13307 2020-03-10      Asia                          Syria          0
## 13308 2020-03-10      Asia                     Tajikistan          0
## 13309 2020-03-10      Asia                       Thailand          3
## 13310 2020-03-10      Asia                    Timor-Leste          0
## 13311 2020-03-10      Asia                         Turkey          0
## 13312 2020-03-10      Asia           United Arab Emirates         14
## 13313 2020-03-10      Asia           United Arab Emirates         29
## 13314 2020-03-10      Asia                     Uzbekistan          0
## 13315 2020-03-10      Asia                        Vietnam          1
## 13316 2020-03-10      Asia                        Vietnam          4
## 13317 2020-03-10      Asia                          Yemen          0
## 13318 2020-03-10    Europe                        Albania          4
## 13319 2020-03-10    Europe                        Albania          8
## 13320 2020-03-10    Europe                        Andorra          0
## 13321 2020-03-10    Europe                        Armenia          0
## 13322 2020-03-10    Europe                        Austria         29
## 13323 2020-03-10    Europe                        Austria         51
## 13324 2020-03-10    Europe                     Azerbaijan          2
## 13325 2020-03-10    Europe                        Belarus          3
## 13326 2020-03-10    Europe                        Belgium         28
## 13327 2020-03-10    Europe                        Belgium         94
## 13328 2020-03-10    Europe         Bosnia and Herzegovina          2
## 13329 2020-03-10    Europe                       Bulgaria          0
## 13330 2020-03-10    Europe                        Croatia          2
## 13331 2020-03-10    Europe                         Cyprus          1
## 13332 2020-03-10    Europe                         Cyprus          2
## 13333 2020-03-10    Europe                 Czech Republic          8
## 13334 2020-03-10    Europe                 Czech Republic         10
## 13335 2020-03-10    Europe                        Denmark         75
## 13336 2020-03-10    Europe                        Denmark        172
## 13337 2020-03-10    Europe                        Estonia          2
## 13338 2020-03-10    Europe                        Finland         10
## 13339 2020-03-10    Europe                        Finland         10
## 13340 2020-03-10    Europe                         France        286
## 13341 2020-03-10    Europe                         France        575
## 13342 2020-03-10    Europe                        Georgia          0
## 13343 2020-03-10    Europe                        Georgia          2
## 13344 2020-03-10    Europe                        Germany        237
## 13345 2020-03-10    Europe                        Germany        281
## 13346 2020-03-10    Europe                         Greece         11
## 13347 2020-03-10    Europe                         Greece         16
## 13348 2020-03-10    Europe                        Hungary          0
## 13349 2020-03-10    Europe                        Hungary          1
## 13350 2020-03-10    Europe                        Iceland         10
## 13351 2020-03-10    Europe                        Iceland         11
## 13352 2020-03-10    Europe                        Ireland         13
## 13353 2020-03-10    Europe                          Italy        977
## 13354 2020-03-10    Europe                          Italy       1797
## 13355 2020-03-10    Europe                         Kosovo          0
## 13356 2020-03-10    Europe                         Latvia          2
## 13357 2020-03-10    Europe                         Latvia          3
## 13358 2020-03-10    Europe                  Liechtenstein          0
## 13359 2020-03-10    Europe                      Lithuania          0
## 13360 2020-03-10    Europe                     Luxembourg          2
## 13361 2020-03-10    Europe                      Macedonia          4
## 13362 2020-03-10    Europe                          Malta          2
## 13363 2020-03-10    Europe                          Malta          2
## 13364 2020-03-10    Europe                        Moldova          2
## 13365 2020-03-10    Europe                         Monaco          0
## 13366 2020-03-10    Europe                     Montenegro          0
## 13367 2020-03-10    Europe                    Netherlands         56
## 13368 2020-03-10    Europe                    Netherlands         61
## 13369 2020-03-10    Europe                         Norway         23
## 13370 2020-03-10    Europe                         Norway        195
## 13371 2020-03-10    Europe                         Poland          6
## 13372 2020-03-10    Europe                         Poland          6
## 13373 2020-03-10    Europe                       Portugal          9
## 13374 2020-03-10    Europe                       Portugal         11
## 13375 2020-03-10    Europe                        Romania          2
## 13376 2020-03-10    Europe                        Romania         10
## 13377 2020-03-10    Europe                         Russia          0
## 13378 2020-03-10    Europe                         Russia          3
## 13379 2020-03-10    Europe                     San Marino         12
## 13380 2020-03-10    Europe                     San Marino         15
## 13381 2020-03-10    Europe                         Serbia          4
## 13382 2020-03-10    Europe                       Slovakia          4
## 13383 2020-03-10    Europe                       Slovenia         15
## 13384 2020-03-10    Europe                          Spain        622
## 13385 2020-03-10    Europe                          Spain        772
## 13386 2020-03-10    Europe                         Sweden         45
## 13387 2020-03-10    Europe                         Sweden        107
## 13388 2020-03-10    Europe                    Switzerland         42
## 13389 2020-03-10    Europe                    Switzerland        117
## 13390 2020-03-10    Europe                        Ukraine          0
## 13391 2020-03-10    Europe                 United Kingdom         48
## 13392 2020-03-10    Europe                 United Kingdom         61
## 13393 2020-03-10    Europe                        Vatican          0
## 13394 2020-03-10   Oceania                      Australia         20
## 13395 2020-03-10   Oceania                           Fiji          0
## 13396 2020-03-10   Oceania                    New Zealand          0
## 13397 2020-03-10   Oceania               Papua New Guinea          0
## 13398 2020-03-10     Other                      not found         -9
## 13399 2020-03-11    Africa                        Algeria          0
## 13400 2020-03-11    Africa                         Angola          0
## 13401 2020-03-11    Africa                          Benin          0
## 13402 2020-03-11    Africa                       Botswana          0
## 13403 2020-03-11    Africa                   Burkina Faso          1
## 13404 2020-03-11    Africa                   Burkina Faso          2
## 13405 2020-03-11    Africa                        Burundi          0
## 13406 2020-03-11    Africa                     Cabo Verde          0
## 13407 2020-03-11    Africa                       Cameroon          0
## 13408 2020-03-11    Africa       Central African Republic          0
## 13409 2020-03-11    Africa                           Chad          0
## 13410 2020-03-11    Africa                        Comoros          0
## 13411 2020-03-11    Africa                 Congo Republic          0
## 13412 2020-03-11    Africa                  Cote d'Ivoire          1
## 13413 2020-03-11    Africa                       DR Congo          1
## 13414 2020-03-11    Africa                       DR Congo          1
## 13415 2020-03-11    Africa                       Djibouti          0
## 13416 2020-03-11    Africa                          Egypt          1
## 13417 2020-03-11    Africa                          Egypt          4
## 13418 2020-03-11    Africa              Equatorial Guinea          0
## 13419 2020-03-11    Africa                        Eritrea          0
## 13420 2020-03-11    Africa                       Eswatini          0
## 13421 2020-03-11    Africa                       Ethiopia          0
## 13422 2020-03-11    Africa                          Gabon          0
## 13423 2020-03-11    Africa                         Gambia          0
## 13424 2020-03-11    Africa                          Ghana          0
## 13425 2020-03-11    Africa                         Guinea          0
## 13426 2020-03-11    Africa                  Guinea-Bissau          0
## 13427 2020-03-11    Africa                          Kenya          0
## 13428 2020-03-11    Africa                        Lesotho          0
## 13429 2020-03-11    Africa                        Liberia          0
## 13430 2020-03-11    Africa                          Libya          0
## 13431 2020-03-11    Africa                     Madagascar          0
## 13432 2020-03-11    Africa                         Malawi          0
## 13433 2020-03-11    Africa                           Mali          0
## 13434 2020-03-11    Africa                     Mauritania          0
## 13435 2020-03-11    Africa                      Mauritius          0
## 13436 2020-03-11    Africa                        Morocco          2
## 13437 2020-03-11    Africa                     Mozambique          0
## 13438 2020-03-11    Africa                        Namibia          0
## 13439 2020-03-11    Africa                          Niger          0
## 13440 2020-03-11    Africa                        Nigeria          0
## 13441 2020-03-11    Africa                         Rwanda          0
## 13442 2020-03-11    Africa          Sao Tome and Principe          0
## 13443 2020-03-11    Africa                        Senegal          0
## 13444 2020-03-11    Africa                     Seychelles          0
## 13445 2020-03-11    Africa                   Sierra Leone          0
## 13446 2020-03-11    Africa                        Somalia          0
## 13447 2020-03-11    Africa                   South Africa          6
## 13448 2020-03-11    Africa                    South Sudan          0
## 13449 2020-03-11    Africa                          Sudan          0
## 13450 2020-03-11    Africa                       Tanzania          0
## 13451 2020-03-11    Africa                           Togo          0
## 13452 2020-03-11    Africa                        Tunisia          2
## 13453 2020-03-11    Africa                        Tunisia          3
## 13454 2020-03-11    Africa                         Uganda          0
## 13455 2020-03-11    Africa                 Western Sahara          0
## 13456 2020-03-11    Africa                         Zambia          0
## 13457 2020-03-11    Africa                       Zimbabwe          0
## 13458 2020-03-11   America            Antigua and Barbuda          0
## 13459 2020-03-11   America                      Argentina          2
## 13460 2020-03-11   America                      Argentina          7
## 13461 2020-03-11   America                        Bahamas          0
## 13462 2020-03-11   America                       Barbados          0
## 13463 2020-03-11   America                         Belize          0
## 13464 2020-03-11   America                        Bolivia          2
## 13465 2020-03-11   America                         Brazil          7
## 13466 2020-03-11   America                         Brazil          9
## 13467 2020-03-11   America                         Canada         16
## 13468 2020-03-11   America                          Chile          4
## 13469 2020-03-11   America                          Chile         10
## 13470 2020-03-11   America                       Colombia          6
## 13471 2020-03-11   America                     Costa Rica          4
## 13472 2020-03-11   America                     Costa Rica          4
## 13473 2020-03-11   America                           Cuba          0
## 13474 2020-03-11   America                       Dominica          0
## 13475 2020-03-11   America             Dominican Republic          0
## 13476 2020-03-11   America                        Ecuador          2
## 13477 2020-03-11   America                        Ecuador          2
## 13478 2020-03-11   America                    El Salvador          0
## 13479 2020-03-11   America                        Grenada          0
## 13480 2020-03-11   America                      Guatemala          0
## 13481 2020-03-11   America                         Guyana          0
## 13482 2020-03-11   America                          Haiti          0
## 13483 2020-03-11   America                       Honduras          2
## 13484 2020-03-11   America                        Jamaica          1
## 13485 2020-03-11   America                         Mexico          1
## 13486 2020-03-11   America                      Nicaragua          0
## 13487 2020-03-11   America                         Panama          6
## 13488 2020-03-11   America                         Panama          7
## 13489 2020-03-11   America                       Paraguay          4
## 13490 2020-03-11   America                       Paraguay          4
## 13491 2020-03-11   America                           Peru          0
## 13492 2020-03-11   America                           Peru          2
## 13493 2020-03-11   America            St. Kitts and Nevis          0
## 13494 2020-03-11   America                      St. Lucia          0
## 13495 2020-03-11   America St. Vincent and the Grenadines          0
## 13496 2020-03-11   America                       Suriname          0
## 13497 2020-03-11   America            Trinidad and Tobago          0
## 13498 2020-03-11   America                  United States        271
## 13499 2020-03-11   America                  United States        398
## 13500 2020-03-11   America                        Uruguay          0
## 13501 2020-03-11   America                      Venezuela          0
## 13502 2020-03-11      Asia                    Afghanistan          2
## 13503 2020-03-11      Asia                    Afghanistan          3
## 13504 2020-03-11      Asia                        Bahrain          1
## 13505 2020-03-11      Asia                        Bahrain         85
## 13506 2020-03-11      Asia                     Bangladesh          0
## 13507 2020-03-11      Asia                         Bhutan          0
## 13508 2020-03-11      Asia              Brunei Darussalam         10
## 13509 2020-03-11      Asia                       Cambodia          1
## 13510 2020-03-11      Asia                          China         29
## 13511 2020-03-11      Asia                          India          6
## 13512 2020-03-11      Asia                          India          6
## 13513 2020-03-11      Asia                      Indonesia          7
## 13514 2020-03-11      Asia                      Indonesia         13
## 13515 2020-03-11      Asia                           Iran        881
## 13516 2020-03-11      Asia                           Iran        958
## 13517 2020-03-11      Asia                           Iraq          0
## 13518 2020-03-11      Asia                           Iraq          0
## 13519 2020-03-11      Asia                         Israel          4
## 13520 2020-03-11      Asia                         Israel         31
## 13521 2020-03-11      Asia                          Japan         54
## 13522 2020-03-11      Asia                          Japan         58
## 13523 2020-03-11      Asia                         Jordan          0
## 13524 2020-03-11      Asia                     Kazakhstan          0
## 13525 2020-03-11      Asia                         Kuwait          3
## 13526 2020-03-11      Asia                         Kuwait          4
## 13527 2020-03-11      Asia                Kyrgyz Republic          0
## 13528 2020-03-11      Asia                           Laos          0
## 13529 2020-03-11      Asia                        Lebanon          0
## 13530 2020-03-11      Asia                        Lebanon         20
## 13531 2020-03-11      Asia                       Malaysia         12
## 13532 2020-03-11      Asia                       Malaysia         20
## 13533 2020-03-11      Asia                       Maldives          2
## 13534 2020-03-11      Asia                       Maldives          2
## 13535 2020-03-11      Asia                       Mongolia          0
## 13536 2020-03-11      Asia                        Myanmar          0
## 13537 2020-03-11      Asia                          Nepal          0
## 13538 2020-03-11      Asia                           Oman          0
## 13539 2020-03-11      Asia                           Oman          0
## 13540 2020-03-11      Asia                       Pakistan          0
## 13541 2020-03-11      Asia                       Pakistan          1
## 13542 2020-03-11      Asia                      Palestine          4
## 13543 2020-03-11      Asia                      Palestine          9
## 13544 2020-03-11      Asia                    Philippines          0
## 13545 2020-03-11      Asia                    Philippines         16
## 13546 2020-03-11      Asia                          Qatar          6
## 13547 2020-03-11      Asia                          Qatar        238
## 13548 2020-03-11      Asia                   Saudi Arabia          1
## 13549 2020-03-11      Asia                   Saudi Arabia          5
## 13550 2020-03-11      Asia                      Singapore          6
## 13551 2020-03-11      Asia                      Singapore         18
## 13552 2020-03-11      Asia                    South Korea        242
## 13553 2020-03-11      Asia                    South Korea        242
## 13554 2020-03-11      Asia                      Sri Lanka          1
## 13555 2020-03-11      Asia                          Syria          0
## 13556 2020-03-11      Asia                     Tajikistan          0
## 13557 2020-03-11      Asia                       Thailand          6
## 13558 2020-03-11      Asia                       Thailand          9
## 13559 2020-03-11      Asia                    Timor-Leste          0
## 13560 2020-03-11      Asia                         Turkey          1
## 13561 2020-03-11      Asia           United Arab Emirates          0
## 13562 2020-03-11      Asia           United Arab Emirates         15
## 13563 2020-03-11      Asia                     Uzbekistan          0
## 13564 2020-03-11      Asia                        Vietnam          4
## 13565 2020-03-11      Asia                        Vietnam          7
## 13566 2020-03-11      Asia                          Yemen          0
## 13567 2020-03-11      Asia                      not found          3
## 13568 2020-03-11    Europe                        Albania          2
## 13569 2020-03-11    Europe                        Albania          4
## 13570 2020-03-11    Europe                        Andorra          0
## 13571 2020-03-11    Europe                        Armenia          0
## 13572 2020-03-11    Europe                        Austria         51
## 13573 2020-03-11    Europe                        Austria         64
## 13574 2020-03-11    Europe                     Azerbaijan          0
## 13575 2020-03-11    Europe                     Azerbaijan          2
## 13576 2020-03-11    Europe                        Belarus          0
## 13577 2020-03-11    Europe                        Belarus          3
## 13578 2020-03-11    Europe                        Belgium         47
## 13579 2020-03-11    Europe                        Belgium         99
## 13580 2020-03-11    Europe         Bosnia and Herzegovina          2
## 13581 2020-03-11    Europe                       Bulgaria          3
## 13582 2020-03-11    Europe                        Croatia          1
## 13583 2020-03-11    Europe                        Croatia          5
## 13584 2020-03-11    Europe                         Cyprus          3
## 13585 2020-03-11    Europe                 Czech Republic         23
## 13586 2020-03-11    Europe                 Czech Republic         50
## 13587 2020-03-11    Europe                        Denmark        151
## 13588 2020-03-11    Europe                        Denmark        180
## 13589 2020-03-11    Europe                        Estonia          3
## 13590 2020-03-11    Europe                        Estonia          4
## 13591 2020-03-11    Europe                        Finland         19
## 13592 2020-03-11    Europe                         France        372
## 13593 2020-03-11    Europe                         France        497
## 13594 2020-03-11    Europe                        Georgia          8
## 13595 2020-03-11    Europe                        Georgia          9
## 13596 2020-03-11    Europe                        Germany        157
## 13597 2020-03-11    Europe                        Germany        451
## 13598 2020-03-11    Europe                         Greece          6
## 13599 2020-03-11    Europe                         Greece         10
## 13600 2020-03-11    Europe                        Hungary          3
## 13601 2020-03-11    Europe                        Hungary          4
## 13602 2020-03-11    Europe                        Iceland          5
## 13603 2020-03-11    Europe                        Iceland         16
## 13604 2020-03-11    Europe                        Ireland          9
## 13605 2020-03-11    Europe                        Ireland         14
## 13606 2020-03-11    Europe                          Italy        977
## 13607 2020-03-11    Europe                          Italy       2313
## 13608 2020-03-11    Europe                         Kosovo          0
## 13609 2020-03-11    Europe                         Latvia          2
## 13610 2020-03-11    Europe                         Latvia          2
## 13611 2020-03-11    Europe                  Liechtenstein          0
## 13612 2020-03-11    Europe                      Lithuania          2
## 13613 2020-03-11    Europe                      Lithuania          2
## 13614 2020-03-11    Europe                     Luxembourg          2
## 13615 2020-03-11    Europe                     Luxembourg          2
## 13616 2020-03-11    Europe                      Macedonia          0
## 13617 2020-03-11    Europe                      Macedonia          4
## 13618 2020-03-11    Europe                          Malta          1
## 13619 2020-03-11    Europe                          Malta          1
## 13620 2020-03-11    Europe                        Moldova          0
## 13621 2020-03-11    Europe                        Moldova          2
## 13622 2020-03-11    Europe                         Monaco          0
## 13623 2020-03-11    Europe                     Montenegro          0
## 13624 2020-03-11    Europe                    Netherlands         61
## 13625 2020-03-11    Europe                    Netherlands        121
## 13626 2020-03-11    Europe                         Norway         85
## 13627 2020-03-11    Europe                         Norway        198
## 13628 2020-03-11    Europe                         Poland          5
## 13629 2020-03-11    Europe                         Poland          9
## 13630 2020-03-11    Europe                       Portugal          2
## 13631 2020-03-11    Europe                       Portugal         18
## 13632 2020-03-11    Europe                        Romania          8
## 13633 2020-03-11    Europe                        Romania         20
## 13634 2020-03-11    Europe                         Russia          0
## 13635 2020-03-11    Europe                         Russia          0
## 13636 2020-03-11    Europe                     San Marino         11
## 13637 2020-03-11    Europe                     San Marino         13
## 13638 2020-03-11    Europe                         Serbia          4
## 13639 2020-03-11    Europe                         Serbia          7
## 13640 2020-03-11    Europe                       Slovakia          2
## 13641 2020-03-11    Europe                       Slovakia          3
## 13642 2020-03-11    Europe                       Slovenia         15
## 13643 2020-03-11    Europe                       Slovenia         26
## 13644 2020-03-11    Europe                          Spain        582
## 13645 2020-03-11    Europe                          Spain        975
## 13646 2020-03-11    Europe                         Sweden         78
## 13647 2020-03-11    Europe                         Sweden        145
## 13648 2020-03-11    Europe                    Switzerland        116
## 13649 2020-03-11    Europe                    Switzerland        161
## 13650 2020-03-11    Europe                        Ukraine          0
## 13651 2020-03-11    Europe                 United Kingdom         52
## 13652 2020-03-11    Europe                 United Kingdom         74
## 13653 2020-03-11    Europe                        Vatican          0
## 13654 2020-03-11   Oceania                      Australia         12
## 13655 2020-03-11   Oceania                           Fiji          0
## 13656 2020-03-11   Oceania                    New Zealand          0
## 13657 2020-03-11   Oceania               Papua New Guinea          0
## 13658 2020-03-12    Africa                        Algeria          0
## 13659 2020-03-12    Africa                        Algeria          4
## 13660 2020-03-12    Africa                         Angola          0
## 13661 2020-03-12    Africa                          Benin          0
## 13662 2020-03-12    Africa                       Botswana          0
## 13663 2020-03-12    Africa                   Burkina Faso          0
## 13664 2020-03-12    Africa                   Burkina Faso          0
## 13665 2020-03-12    Africa                        Burundi          0
## 13666 2020-03-12    Africa                     Cabo Verde          0
## 13667 2020-03-12    Africa                       Cameroon          0
## 13668 2020-03-12    Africa       Central African Republic          0
## 13669 2020-03-12    Africa                           Chad          0
## 13670 2020-03-12    Africa                        Comoros          0
## 13671 2020-03-12    Africa                 Congo Republic          0
## 13672 2020-03-12    Africa                  Cote d'Ivoire          0
## 13673 2020-03-12    Africa                  Cote d'Ivoire          1
## 13674 2020-03-12    Africa                       DR Congo          0
## 13675 2020-03-12    Africa                       Djibouti          0
## 13676 2020-03-12    Africa                          Egypt          1
## 13677 2020-03-12    Africa                          Egypt          7
## 13678 2020-03-12    Africa              Equatorial Guinea          0
## 13679 2020-03-12    Africa                        Eritrea          0
## 13680 2020-03-12    Africa                       Eswatini          0
## 13681 2020-03-12    Africa                       Ethiopia          0
## 13682 2020-03-12    Africa                          Gabon          0
## 13683 2020-03-12    Africa                         Gambia          0
## 13684 2020-03-12    Africa                          Ghana          0
## 13685 2020-03-12    Africa                         Guinea          0
## 13686 2020-03-12    Africa                  Guinea-Bissau          0
## 13687 2020-03-12    Africa                          Kenya          0
## 13688 2020-03-12    Africa                        Lesotho          0
## 13689 2020-03-12    Africa                        Liberia          0
## 13690 2020-03-12    Africa                          Libya          0
## 13691 2020-03-12    Africa                     Madagascar          0
## 13692 2020-03-12    Africa                         Malawi          0
## 13693 2020-03-12    Africa                           Mali          0
## 13694 2020-03-12    Africa                     Mauritania          0
## 13695 2020-03-12    Africa                      Mauritius          0
## 13696 2020-03-12    Africa                        Morocco          1
## 13697 2020-03-12    Africa                        Morocco          3
## 13698 2020-03-12    Africa                     Mozambique          0
## 13699 2020-03-12    Africa                        Namibia          0
## 13700 2020-03-12    Africa                          Niger          0
## 13701 2020-03-12    Africa                        Nigeria          0
## 13702 2020-03-12    Africa                         Rwanda          0
## 13703 2020-03-12    Africa          Sao Tome and Principe          0
## 13704 2020-03-12    Africa                        Senegal          0
## 13705 2020-03-12    Africa                     Seychelles          0
## 13706 2020-03-12    Africa                   Sierra Leone          0
## 13707 2020-03-12    Africa                        Somalia          0
## 13708 2020-03-12    Africa                   South Africa          4
## 13709 2020-03-12    Africa                   South Africa          6
## 13710 2020-03-12    Africa                    South Sudan          0
## 13711 2020-03-12    Africa                          Sudan          0
## 13712 2020-03-12    Africa                       Tanzania          0
## 13713 2020-03-12    Africa                           Togo          0
## 13714 2020-03-12    Africa                        Tunisia          0
## 13715 2020-03-12    Africa                        Tunisia          2
## 13716 2020-03-12    Africa                         Uganda          0
## 13717 2020-03-12    Africa                 Western Sahara          0
## 13718 2020-03-12    Africa                         Zambia          0
## 13719 2020-03-12    Africa                       Zimbabwe          0
## 13720 2020-03-12   America            Antigua and Barbuda          0
## 13721 2020-03-12   America                      Argentina          0
## 13722 2020-03-12   America                        Bahamas          0
## 13723 2020-03-12   America                       Barbados          0
## 13724 2020-03-12   America                         Belize          0
## 13725 2020-03-12   America                        Bolivia          0
## 13726 2020-03-12   America                        Bolivia          2
## 13727 2020-03-12   America                         Brazil         14
## 13728 2020-03-12   America                         Brazil         18
## 13729 2020-03-12   America                         Canada         10
## 13730 2020-03-12   America                          Chile          0
## 13731 2020-03-12   America                          Chile          6
## 13732 2020-03-12   America                       Colombia          0
## 13733 2020-03-12   America                       Colombia          6
## 13734 2020-03-12   America                     Costa Rica          9
## 13735 2020-03-12   America                     Costa Rica          9
## 13736 2020-03-12   America                           Cuba          3
## 13737 2020-03-12   America                           Cuba          3
## 13738 2020-03-12   America                       Dominica          0
## 13739 2020-03-12   America             Dominican Republic          0
## 13740 2020-03-12   America                        Ecuador          0
## 13741 2020-03-12   America                    El Salvador          0
## 13742 2020-03-12   America                        Grenada          0
## 13743 2020-03-12   America                      Guatemala          0
## 13744 2020-03-12   America                         Guyana          1
## 13745 2020-03-12   America                          Haiti          0
## 13746 2020-03-12   America                       Honduras          0
## 13747 2020-03-12   America                       Honduras          2
## 13748 2020-03-12   America                        Jamaica          1
## 13749 2020-03-12   America                        Jamaica          2
## 13750 2020-03-12   America                         Mexico          4
## 13751 2020-03-12   America                         Mexico          4
## 13752 2020-03-12   America                      Nicaragua          0
## 13753 2020-03-12   America                         Panama          3
## 13754 2020-03-12   America                         Panama          7
## 13755 2020-03-12   America                       Paraguay          0
## 13756 2020-03-12   America                           Peru          4
## 13757 2020-03-12   America                           Peru          6
## 13758 2020-03-12   America            St. Kitts and Nevis          0
## 13759 2020-03-12   America                      St. Lucia          0
## 13760 2020-03-12   America St. Vincent and the Grenadines          0
## 13761 2020-03-12   America                       Suriname          0
## 13762 2020-03-12   America            Trinidad and Tobago          0
## 13763 2020-03-12   America                  United States        287
## 13764 2020-03-12   America                  United States        452
## 13765 2020-03-12   America                        Uruguay          0
## 13766 2020-03-12   America                      Venezuela          0
## 13767 2020-03-12      Asia                    Afghanistan          0
## 13768 2020-03-12      Asia                        Bahrain          0
## 13769 2020-03-12      Asia                        Bahrain         52
## 13770 2020-03-12      Asia                     Bangladesh          0
## 13771 2020-03-12      Asia                         Bhutan          0
## 13772 2020-03-12      Asia              Brunei Darussalam          0
## 13773 2020-03-12      Asia              Brunei Darussalam         10
## 13774 2020-03-12      Asia                       Cambodia          0
## 13775 2020-03-12      Asia                       Cambodia          1
## 13776 2020-03-12      Asia                          China         24
## 13777 2020-03-12      Asia                          India         11
## 13778 2020-03-12      Asia                          India         23
## 13779 2020-03-12      Asia                      Indonesia          0
## 13780 2020-03-12      Asia                      Indonesia         15
## 13781 2020-03-12      Asia                           Iran        958
## 13782 2020-03-12      Asia                           Iran       1075
## 13783 2020-03-12      Asia                           Iraq          0
## 13784 2020-03-12      Asia                           Iraq          9
## 13785 2020-03-12      Asia                         Israel         12
## 13786 2020-03-12      Asia                         Israel         21
## 13787 2020-03-12      Asia                          Japan          0
## 13788 2020-03-12      Asia                          Japan         51
## 13789 2020-03-12      Asia                         Jordan          0
## 13790 2020-03-12      Asia                     Kazakhstan          0
## 13791 2020-03-12      Asia                         Kuwait          3
## 13792 2020-03-12      Asia                         Kuwait          8
## 13793 2020-03-12      Asia                Kyrgyz Republic          0
## 13794 2020-03-12      Asia                           Laos          0
## 13795 2020-03-12      Asia                        Lebanon          0
## 13796 2020-03-12      Asia                        Lebanon         20
## 13797 2020-03-12      Asia                       Malaysia          0
## 13798 2020-03-12      Asia                       Malaysia         20
## 13799 2020-03-12      Asia                       Maldives          0
## 13800 2020-03-12      Asia                       Maldives          2
## 13801 2020-03-12      Asia                       Mongolia          0
## 13802 2020-03-12      Asia                        Myanmar          0
## 13803 2020-03-12      Asia                          Nepal          0
## 13804 2020-03-12      Asia                           Oman          0
## 13805 2020-03-12      Asia                       Pakistan          4
## 13806 2020-03-12      Asia                       Pakistan          8
## 13807 2020-03-12      Asia                      Palestine          0
## 13808 2020-03-12      Asia                      Palestine          1
## 13809 2020-03-12      Asia                    Philippines          3
## 13810 2020-03-12      Asia                    Philippines         16
## 13811 2020-03-12      Asia                          Qatar          0
## 13812 2020-03-12      Asia                          Qatar        238
## 13813 2020-03-12      Asia                   Saudi Arabia         24
## 13814 2020-03-12      Asia                   Saudi Arabia         25
## 13815 2020-03-12      Asia                      Singapore          0
## 13816 2020-03-12      Asia                      Singapore         12
## 13817 2020-03-12      Asia                    South Korea        114
## 13818 2020-03-12      Asia                    South Korea        114
## 13819 2020-03-12      Asia                      Sri Lanka          0
## 13820 2020-03-12      Asia                      Sri Lanka          1
## 13821 2020-03-12      Asia                          Syria          0
## 13822 2020-03-12      Asia                     Tajikistan          0
## 13823 2020-03-12      Asia                       Thailand         11
## 13824 2020-03-12      Asia                       Thailand         11
## 13825 2020-03-12      Asia                    Timor-Leste          0
## 13826 2020-03-12      Asia                         Turkey          0
## 13827 2020-03-12      Asia                         Turkey          1
## 13828 2020-03-12      Asia           United Arab Emirates         11
## 13829 2020-03-12      Asia                     Uzbekistan          0
## 13830 2020-03-12      Asia                        Vietnam          1
## 13831 2020-03-12      Asia                        Vietnam          1
## 13832 2020-03-12      Asia                          Yemen          0
## 13833 2020-03-12      Asia                      not found          0
## 13834 2020-03-12    Europe                        Albania          1
## 13835 2020-03-12    Europe                        Albania         11
## 13836 2020-03-12    Europe                        Andorra          0
## 13837 2020-03-12    Europe                        Armenia          3
## 13838 2020-03-12    Europe                        Armenia          3
## 13839 2020-03-12    Europe                        Austria         56
## 13840 2020-03-12    Europe                        Austria         64
## 13841 2020-03-12    Europe                     Azerbaijan          0
## 13842 2020-03-12    Europe                     Azerbaijan          2
## 13843 2020-03-12    Europe                        Belarus          3
## 13844 2020-03-12    Europe                        Belarus          3
## 13845 2020-03-12    Europe                        Belgium          0
## 13846 2020-03-12    Europe                        Belgium        174
## 13847 2020-03-12    Europe         Bosnia and Herzegovina          1
## 13848 2020-03-12    Europe         Bosnia and Herzegovina          4
## 13849 2020-03-12    Europe                       Bulgaria          0
## 13850 2020-03-12    Europe                       Bulgaria          3
## 13851 2020-03-12    Europe                        Croatia          0
## 13852 2020-03-12    Europe                        Croatia          3
## 13853 2020-03-12    Europe                         Cyprus          0
## 13854 2020-03-12    Europe                         Cyprus          4
## 13855 2020-03-12    Europe                 Czech Republic          3
## 13856 2020-03-12    Europe                 Czech Republic         31
## 13857 2020-03-12    Europe                        Denmark        173
## 13858 2020-03-12    Europe                        Denmark        252
## 13859 2020-03-12    Europe                        Estonia          0
## 13860 2020-03-12    Europe                        Estonia          3
## 13861 2020-03-12    Europe                        Finland          0
## 13862 2020-03-12    Europe                        Finland         19
## 13863 2020-03-12    Europe                         France          0
## 13864 2020-03-12    Europe                         France        497
## 13865 2020-03-12    Europe                        Georgia          0
## 13866 2020-03-12    Europe                        Georgia          1
## 13867 2020-03-12    Europe                        Germany        170
## 13868 2020-03-12    Europe                        Germany        271
## 13869 2020-03-12    Europe                         Greece          0
## 13870 2020-03-12    Europe                         Greece          9
## 13871 2020-03-12    Europe                        Hungary          0
## 13872 2020-03-12    Europe                        Hungary          1
## 13873 2020-03-12    Europe                        Iceland         15
## 13874 2020-03-12    Europe                        Iceland         18
## 13875 2020-03-12    Europe                        Ireland          0
## 13876 2020-03-12    Europe                        Ireland          8
## 13877 2020-03-12    Europe                          Italy       2313
## 13878 2020-03-12    Europe                          Italy       2651
## 13879 2020-03-12    Europe                         Kosovo          0
## 13880 2020-03-12    Europe                         Latvia          0
## 13881 2020-03-12    Europe                         Latvia          2
## 13882 2020-03-12    Europe                  Liechtenstein          0
## 13883 2020-03-12    Europe                  Liechtenstein          2
## 13884 2020-03-12    Europe                      Lithuania          0
## 13885 2020-03-12    Europe                      Lithuania          0
## 13886 2020-03-12    Europe                     Luxembourg          0
## 13887 2020-03-12    Europe                     Luxembourg         12
## 13888 2020-03-12    Europe                      Macedonia          0
## 13889 2020-03-12    Europe                          Malta          0
## 13890 2020-03-12    Europe                          Malta          1
## 13891 2020-03-12    Europe                        Moldova          0
## 13892 2020-03-12    Europe                        Moldova          1
## 13893 2020-03-12    Europe                         Monaco          1
## 13894 2020-03-12    Europe                     Montenegro          0
## 13895 2020-03-12    Europe                    Netherlands          0
## 13896 2020-03-12    Europe                    Netherlands        121
## 13897 2020-03-12    Europe                         Norway        104
## 13898 2020-03-12    Europe                         Norway        212
## 13899 2020-03-12    Europe                         Poland          9
## 13900 2020-03-12    Europe                         Poland         18
## 13901 2020-03-12    Europe                       Portugal          0
## 13902 2020-03-12    Europe                       Portugal         18
## 13903 2020-03-12    Europe                        Romania          4
## 13904 2020-03-12    Europe                        Romania         20
## 13905 2020-03-12    Europe                         Russia          8
## 13906 2020-03-12    Europe                         Russia         15
## 13907 2020-03-12    Europe                     San Marino          4
## 13908 2020-03-12    Europe                     San Marino          7
## 13909 2020-03-12    Europe                         Serbia          7
## 13910 2020-03-12    Europe                         Serbia         13
## 13911 2020-03-12    Europe                       Slovakia          3
## 13912 2020-03-12    Europe                       Slovakia          6
## 13913 2020-03-12    Europe                       Slovenia         26
## 13914 2020-03-12    Europe                       Slovenia         32
## 13915 2020-03-12    Europe                          Spain          0
## 13916 2020-03-12    Europe                          Spain       1153
## 13917 2020-03-12    Europe                         Sweden         99
## 13918 2020-03-12    Europe                         Sweden        136
## 13919 2020-03-12    Europe                    Switzerland          0
## 13920 2020-03-12    Europe                    Switzerland        152
## 13921 2020-03-12    Europe                        Ukraine          0
## 13922 2020-03-12    Europe                 United Kingdom          0
## 13923 2020-03-12    Europe                 United Kingdom         83
## 13924 2020-03-12    Europe                        Vatican          0
## 13925 2020-03-12   Oceania                      Australia         14
## 13926 2020-03-12   Oceania                           Fiji          0
## 13927 2020-03-12   Oceania                    New Zealand          0
## 13928 2020-03-12   Oceania               Papua New Guinea          0
## 13929 2020-03-13    Africa                        Algeria          2
## 13930 2020-03-13    Africa                        Algeria          5
## 13931 2020-03-13    Africa                         Angola          0
## 13932 2020-03-13    Africa                          Benin          0
## 13933 2020-03-13    Africa                       Botswana          0
## 13934 2020-03-13    Africa                   Burkina Faso          0
## 13935 2020-03-13    Africa                        Burundi          0
## 13936 2020-03-13    Africa                     Cabo Verde          0
## 13937 2020-03-13    Africa                       Cameroon          0
## 13938 2020-03-13    Africa       Central African Republic          0
## 13939 2020-03-13    Africa                           Chad          0
## 13940 2020-03-13    Africa                        Comoros          0
## 13941 2020-03-13    Africa                 Congo Republic          0
## 13942 2020-03-13    Africa                  Cote d'Ivoire          0
## 13943 2020-03-13    Africa                       DR Congo          1
## 13944 2020-03-13    Africa                       Djibouti          0
## 13945 2020-03-13    Africa                          Egypt         13
## 13946 2020-03-13    Africa                          Egypt         20
## 13947 2020-03-13    Africa              Equatorial Guinea          0
## 13948 2020-03-13    Africa                        Eritrea          0
## 13949 2020-03-13    Africa                       Eswatini          0
## 13950 2020-03-13    Africa                       Ethiopia          1
## 13951 2020-03-13    Africa                          Gabon          0
## 13952 2020-03-13    Africa                          Gabon          1
## 13953 2020-03-13    Africa                         Gambia          0
## 13954 2020-03-13    Africa                          Ghana          0
## 13955 2020-03-13    Africa                          Ghana          2
## 13956 2020-03-13    Africa                         Guinea          1
## 13957 2020-03-13    Africa                  Guinea-Bissau          0
## 13958 2020-03-13    Africa                          Kenya          1
## 13959 2020-03-13    Africa                        Lesotho          0
## 13960 2020-03-13    Africa                        Liberia          0
## 13961 2020-03-13    Africa                          Libya          0
## 13962 2020-03-13    Africa                     Madagascar          0
## 13963 2020-03-13    Africa                         Malawi          0
## 13964 2020-03-13    Africa                           Mali          0
## 13965 2020-03-13    Africa                     Mauritania          0
## 13966 2020-03-13    Africa                      Mauritius          0
## 13967 2020-03-13    Africa                        Morocco          1
## 13968 2020-03-13    Africa                        Morocco          1
## 13969 2020-03-13    Africa                     Mozambique          0
## 13970 2020-03-13    Africa                        Namibia          0
## 13971 2020-03-13    Africa                          Niger          0
## 13972 2020-03-13    Africa                        Nigeria          0
## 13973 2020-03-13    Africa                         Rwanda          0
## 13974 2020-03-13    Africa          Sao Tome and Principe          0
## 13975 2020-03-13    Africa                        Senegal          2
## 13976 2020-03-13    Africa                        Senegal          6
## 13977 2020-03-13    Africa                     Seychelles          0
## 13978 2020-03-13    Africa                   Sierra Leone          0
## 13979 2020-03-13    Africa                        Somalia          0
## 13980 2020-03-13    Africa                   South Africa          4
## 13981 2020-03-13    Africa                   South Africa          7
## 13982 2020-03-13    Africa                    South Sudan          0
## 13983 2020-03-13    Africa                          Sudan          1
## 13984 2020-03-13    Africa                       Tanzania          0
## 13985 2020-03-13    Africa                           Togo          0
## 13986 2020-03-13    Africa                        Tunisia          6
## 13987 2020-03-13    Africa                        Tunisia          9
## 13988 2020-03-13    Africa                         Uganda          0
## 13989 2020-03-13    Africa                 Western Sahara          0
## 13990 2020-03-13    Africa                         Zambia          0
## 13991 2020-03-13    Africa                       Zimbabwe          0
## 13992 2020-03-13   America            Antigua and Barbuda          1
## 13993 2020-03-13   America                      Argentina         12
## 13994 2020-03-13   America                      Argentina         12
## 13995 2020-03-13   America                          Aruba          2
## 13996 2020-03-13   America                        Bahamas          0
## 13997 2020-03-13   America                       Barbados          0
## 13998 2020-03-13   America                         Belize          0
## 13999 2020-03-13   America                        Bolivia          1
## 14000 2020-03-13   America                        Bolivia          1
## 14001 2020-03-13   America                         Brazil         25
## 14002 2020-03-13   America                         Brazil         99
## 14003 2020-03-13   America                         Canada         35
## 14004 2020-03-13   America                          Chile         10
## 14005 2020-03-13   America                          Chile         20
## 14006 2020-03-13   America                       Colombia          4
## 14007 2020-03-13   America                     Costa Rica          1
## 14008 2020-03-13   America                     Costa Rica          1
## 14009 2020-03-13   America                           Cuba          1
## 14010 2020-03-13   America                        Curacao          1
## 14011 2020-03-13   America                       Dominica          0
## 14012 2020-03-13   America             Dominican Republic          0
## 14013 2020-03-13   America                        Ecuador          0
## 14014 2020-03-13   America                    El Salvador          0
## 14015 2020-03-13   America                        Grenada          0
## 14016 2020-03-13   America                      Guatemala          0
## 14017 2020-03-13   America                         Guyana          0
## 14018 2020-03-13   America                         Guyana          1
## 14019 2020-03-13   America                          Haiti          0
## 14020 2020-03-13   America                       Honduras          0
## 14021 2020-03-13   America                        Jamaica          4
## 14022 2020-03-13   America                        Jamaica          6
## 14023 2020-03-13   America                         Mexico          5
## 14024 2020-03-13   America                         Mexico         14
## 14025 2020-03-13   America                      Nicaragua          0
## 14026 2020-03-13   America                         Panama         13
## 14027 2020-03-13   America                         Panama         16
## 14028 2020-03-13   America                       Paraguay          1
## 14029 2020-03-13   America                       Paraguay          1
## 14030 2020-03-13   America                           Peru          5
## 14031 2020-03-13   America                           Peru         13
## 14032 2020-03-13   America            St. Kitts and Nevis          0
## 14033 2020-03-13   America                      St. Lucia          0
## 14034 2020-03-13   America St. Vincent and the Grenadines          0
## 14035 2020-03-13   America St. Vincent and the Grenadines          1
## 14036 2020-03-13   America                       Suriname          0
## 14037 2020-03-13   America            Trinidad and Tobago          0
## 14038 2020-03-13   America            Trinidad and Tobago          1
## 14039 2020-03-13   America                  United States        351
## 14040 2020-03-13   America                  United States        596
## 14041 2020-03-13   America                        Uruguay          4
## 14042 2020-03-13   America                      Venezuela          0
## 14043 2020-03-13      Asia                    Afghanistan          0
## 14044 2020-03-13      Asia                        Bahrain          0
## 14045 2020-03-13      Asia                        Bahrain          0
## 14046 2020-03-13      Asia                     Bangladesh          0
## 14047 2020-03-13      Asia                         Bhutan          0
## 14048 2020-03-13      Asia                         Bhutan          0
## 14049 2020-03-13      Asia              Brunei Darussalam         14
## 14050 2020-03-13      Asia              Brunei Darussalam         26
## 14051 2020-03-13      Asia                       Cambodia          2
## 14052 2020-03-13      Asia                       Cambodia          2
## 14053 2020-03-13      Asia                          China         22
## 14054 2020-03-13      Asia                          India          2
## 14055 2020-03-13      Asia                          India          9
## 14056 2020-03-13      Asia                      Indonesia         35
## 14057 2020-03-13      Asia                           Iran       1075
## 14058 2020-03-13      Asia                           Iran       1289
## 14059 2020-03-13      Asia                           Iraq          4
## 14060 2020-03-13      Asia                           Iraq         30
## 14061 2020-03-13      Asia                         Israel         14
## 14062 2020-03-13      Asia                         Israel         26
## 14063 2020-03-13      Asia                          Japan         56
## 14064 2020-03-13      Asia                          Japan         62
## 14065 2020-03-13      Asia                         Jordan          0
## 14066 2020-03-13      Asia                     Kazakhstan          4
## 14067 2020-03-13      Asia                         Kuwait          0
## 14068 2020-03-13      Asia                         Kuwait          8
## 14069 2020-03-13      Asia                Kyrgyz Republic          0
## 14070 2020-03-13      Asia                           Laos          0
## 14071 2020-03-13      Asia                        Lebanon          5
## 14072 2020-03-13      Asia                        Lebanon         16
## 14073 2020-03-13      Asia                       Malaysia          9
## 14074 2020-03-13      Asia                       Malaysia         48
## 14075 2020-03-13      Asia                       Maldives          1
## 14076 2020-03-13      Asia                       Mongolia          0
## 14077 2020-03-13      Asia                        Myanmar          0
## 14078 2020-03-13      Asia                          Nepal          0
## 14079 2020-03-13      Asia                           Oman          1
## 14080 2020-03-13      Asia                       Pakistan          1
## 14081 2020-03-13      Asia                       Pakistan          3
## 14082 2020-03-13      Asia                      Palestine          1
## 14083 2020-03-13      Asia                    Philippines          3
## 14084 2020-03-13      Asia                    Philippines         12
## 14085 2020-03-13      Asia                          Qatar         58
## 14086 2020-03-13      Asia                   Saudi Arabia         17
## 14087 2020-03-13      Asia                   Saudi Arabia         41
## 14088 2020-03-13      Asia                      Singapore          9
## 14089 2020-03-13      Asia                      Singapore         22
## 14090 2020-03-13      Asia                    South Korea        110
## 14091 2020-03-13      Asia                    South Korea        110
## 14092 2020-03-13      Asia                      Sri Lanka          1
## 14093 2020-03-13      Asia                      Sri Lanka          4
## 14094 2020-03-13      Asia                          Syria          0
## 14095 2020-03-13      Asia                     Tajikistan          0
## 14096 2020-03-13      Asia                       Thailand          5
## 14097 2020-03-13      Asia                    Timor-Leste          0
## 14098 2020-03-13      Asia                         Turkey          1
## 14099 2020-03-13      Asia                         Turkey          4
## 14100 2020-03-13      Asia           United Arab Emirates          0
## 14101 2020-03-13      Asia           United Arab Emirates         11
## 14102 2020-03-13      Asia                     Uzbekistan          0
## 14103 2020-03-13      Asia                        Vietnam          5
## 14104 2020-03-13      Asia                        Vietnam          8
## 14105 2020-03-13      Asia                          Yemen          0
## 14106 2020-03-13      Asia                      not found          1
## 14107 2020-03-13    Europe                        Albania         10
## 14108 2020-03-13    Europe                        Albania         12
## 14109 2020-03-13    Europe                        Andorra          0
## 14110 2020-03-13    Europe                        Armenia          2
## 14111 2020-03-13    Europe                        Armenia          4
## 14112 2020-03-13    Europe                        Austria        115
## 14113 2020-03-13    Europe                        Austria        202
## 14114 2020-03-13    Europe                     Azerbaijan          0
## 14115 2020-03-13    Europe                     Azerbaijan          4
## 14116 2020-03-13    Europe                        Belarus          9
## 14117 2020-03-13    Europe                        Belarus         15
## 14118 2020-03-13    Europe                        Belgium        245
## 14119 2020-03-13    Europe                        Belgium        250
## 14120 2020-03-13    Europe         Bosnia and Herzegovina          0
## 14121 2020-03-13    Europe         Bosnia and Herzegovina          2
## 14122 2020-03-13    Europe                       Bulgaria         16
## 14123 2020-03-13    Europe                       Bulgaria         16
## 14124 2020-03-13    Europe                        Croatia          9
## 14125 2020-03-13    Europe                        Croatia         13
## 14126 2020-03-13    Europe                         Cyprus          8
## 14127 2020-03-13    Europe                 Czech Republic         22
## 14128 2020-03-13    Europe                 Czech Republic         47
## 14129 2020-03-13    Europe                        Denmark        160
## 14130 2020-03-13    Europe                        Denmark        186
## 14131 2020-03-13    Europe                        Estonia         11
## 14132 2020-03-13    Europe                        Estonia         63
## 14133 2020-03-13    Europe                        Finland         96
## 14134 2020-03-13    Europe                        Finland         96
## 14135 2020-03-13    Europe                         France        595
## 14136 2020-03-13    Europe                         France       1380
## 14137 2020-03-13    Europe                        Georgia          1
## 14138 2020-03-13    Europe                        Georgia          1
## 14139 2020-03-13    Europe                        Germany        802
## 14140 2020-03-13    Europe                        Germany       1597
## 14141 2020-03-13    Europe                         Greece         34
## 14142 2020-03-13    Europe                         Greece         91
## 14143 2020-03-13    Europe                        Hungary          3
## 14144 2020-03-13    Europe                        Hungary          6
## 14145 2020-03-13    Europe                        Iceland         31
## 14146 2020-03-13    Europe                        Iceland         32
## 14147 2020-03-13    Europe                        Ireland         27
## 14148 2020-03-13    Europe                        Ireland         47
## 14149 2020-03-13    Europe                          Italy       2547
## 14150 2020-03-13    Europe                          Italy       2651
## 14151 2020-03-13    Europe                         Kosovo          0
## 14152 2020-03-13    Europe                         Latvia          6
## 14153 2020-03-13    Europe                         Latvia          7
## 14154 2020-03-13    Europe                  Liechtenstein          0
## 14155 2020-03-13    Europe                  Liechtenstein          1
## 14156 2020-03-13    Europe                      Lithuania          3
## 14157 2020-03-13    Europe                     Luxembourg         15
## 14158 2020-03-13    Europe                     Luxembourg         19
## 14159 2020-03-13    Europe                      Macedonia          2
## 14160 2020-03-13    Europe                      Macedonia          7
## 14161 2020-03-13    Europe                          Malta          1
## 14162 2020-03-13    Europe                          Malta          6
## 14163 2020-03-13    Europe                        Moldova          2
## 14164 2020-03-13    Europe                        Moldova          3
## 14165 2020-03-13    Europe                         Monaco          0
## 14166 2020-03-13    Europe                     Montenegro          0
## 14167 2020-03-13    Europe                    Netherlands        111
## 14168 2020-03-13    Europe                    Netherlands        301
## 14169 2020-03-13    Europe                         Norway        132
## 14170 2020-03-13    Europe                         Norway        294
## 14171 2020-03-13    Europe                         Poland         18
## 14172 2020-03-13    Europe                         Poland         19
## 14173 2020-03-13    Europe                       Portugal         19
## 14174 2020-03-13    Europe                       Portugal         53
## 14175 2020-03-13    Europe                        Romania         19
## 14176 2020-03-13    Europe                        Romania         40
## 14177 2020-03-13    Europe                         Russia          5
## 14178 2020-03-13    Europe                         Russia         17
## 14179 2020-03-13    Europe                     San Marino          1
## 14180 2020-03-13    Europe                     San Marino         11
## 14181 2020-03-13    Europe                         Serbia          6
## 14182 2020-03-13    Europe                         Serbia         16
## 14183 2020-03-13    Europe                       Slovakia         11
## 14184 2020-03-13    Europe                       Slovakia         16
## 14185 2020-03-13    Europe                       Slovenia         39
## 14186 2020-03-13    Europe                       Slovenia         52
## 14187 2020-03-13    Europe                          Spain       1531
## 14188 2020-03-13    Europe                          Spain       2955
## 14189 2020-03-13    Europe                         Sweden        158
## 14190 2020-03-13    Europe                         Sweden        215
## 14191 2020-03-13    Europe                    Switzerland        212
## 14192 2020-03-13    Europe                    Switzerland        487
## 14193 2020-03-13    Europe                        Ukraine          2
## 14194 2020-03-13    Europe                        Ukraine          2
## 14195 2020-03-13    Europe                 United Kingdom        134
## 14196 2020-03-13    Europe                 United Kingdom        342
## 14197 2020-03-13    Europe                        Vatican          0
## 14198 2020-03-13   Oceania                      Australia         30
## 14199 2020-03-13   Oceania                           Fiji          0
## 14200 2020-03-13   Oceania                    New Zealand          0
## 14201 2020-03-13   Oceania               Papua New Guinea          0
## 14202 2020-03-14    Africa                        Algeria          1
## 14203 2020-03-14    Africa                        Algeria         11
## 14204 2020-03-14    Africa                         Angola          0
## 14205 2020-03-14    Africa                          Benin          0
## 14206 2020-03-14    Africa                       Botswana          0
## 14207 2020-03-14    Africa                   Burkina Faso          0
## 14208 2020-03-14    Africa                        Burundi          0
## 14209 2020-03-14    Africa                     Cabo Verde          0
## 14210 2020-03-14    Africa                       Cameroon          0
## 14211 2020-03-14    Africa       Central African Republic          0
## 14212 2020-03-14    Africa                           Chad          0
## 14213 2020-03-14    Africa                        Comoros          0
## 14214 2020-03-14    Africa                 Congo Republic          0
## 14215 2020-03-14    Africa                  Cote d'Ivoire          0
## 14216 2020-03-14    Africa                       DR Congo          0
## 14217 2020-03-14    Africa                       DR Congo          1
## 14218 2020-03-14    Africa                       Djibouti          0
## 14219 2020-03-14    Africa                          Egypt         13
## 14220 2020-03-14    Africa                          Egypt         29
## 14221 2020-03-14    Africa              Equatorial Guinea          0
## 14222 2020-03-14    Africa                        Eritrea          0
## 14223 2020-03-14    Africa                       Eswatini          1
## 14224 2020-03-14    Africa                       Ethiopia          0
## 14225 2020-03-14    Africa                       Ethiopia          1
## 14226 2020-03-14    Africa                          Gabon          1
## 14227 2020-03-14    Africa                         Gambia          0
## 14228 2020-03-14    Africa                          Ghana          3
## 14229 2020-03-14    Africa                         Guinea          0
## 14230 2020-03-14    Africa                         Guinea          1
## 14231 2020-03-14    Africa                  Guinea-Bissau          0
## 14232 2020-03-14    Africa                          Kenya          0
## 14233 2020-03-14    Africa                          Kenya          1
## 14234 2020-03-14    Africa                        Lesotho          0
## 14235 2020-03-14    Africa                        Liberia          0
## 14236 2020-03-14    Africa                          Libya          0
## 14237 2020-03-14    Africa                     Madagascar          0
## 14238 2020-03-14    Africa                         Malawi          0
## 14239 2020-03-14    Africa                           Mali          0
## 14240 2020-03-14    Africa                     Mauritania          1
## 14241 2020-03-14    Africa                      Mauritius          0
## 14242 2020-03-14    Africa                        Morocco          1
## 14243 2020-03-14    Africa                        Morocco         10
## 14244 2020-03-14    Africa                     Mozambique          0
## 14245 2020-03-14    Africa                        Namibia          2
## 14246 2020-03-14    Africa                          Niger          0
## 14247 2020-03-14    Africa                        Nigeria          0
## 14248 2020-03-14    Africa                         Rwanda          1
## 14249 2020-03-14    Africa          Sao Tome and Principe          0
## 14250 2020-03-14    Africa                        Senegal          0
## 14251 2020-03-14    Africa                        Senegal         13
## 14252 2020-03-14    Africa                     Seychelles          2
## 14253 2020-03-14    Africa                   Sierra Leone          0
## 14254 2020-03-14    Africa                        Somalia          0
## 14255 2020-03-14    Africa                   South Africa          7
## 14256 2020-03-14    Africa                   South Africa         14
## 14257 2020-03-14    Africa                    South Sudan          0
## 14258 2020-03-14    Africa                          Sudan          0
## 14259 2020-03-14    Africa                          Sudan          1
## 14260 2020-03-14    Africa                       Tanzania          0
## 14261 2020-03-14    Africa                           Togo          0
## 14262 2020-03-14    Africa                        Tunisia          2
## 14263 2020-03-14    Africa                        Tunisia          3
## 14264 2020-03-14    Africa                         Uganda          0
## 14265 2020-03-14    Africa                 Western Sahara          0
## 14266 2020-03-14    Africa                         Zambia          0
## 14267 2020-03-14    Africa                       Zimbabwe          0
## 14268 2020-03-14   America            Antigua and Barbuda          0
## 14269 2020-03-14   America                      Argentina          3
## 14270 2020-03-14   America                      Argentina          3
## 14271 2020-03-14   America                        Bahamas          0
## 14272 2020-03-14   America                       Barbados          0
## 14273 2020-03-14   America                         Belize          0
## 14274 2020-03-14   America                        Bolivia          7
## 14275 2020-03-14   America                        Bolivia          7
## 14276 2020-03-14   America                         Brazil          0
## 14277 2020-03-14   America                         Brazil         21
## 14278 2020-03-14   America                         Canada         38
## 14279 2020-03-14   America                          Chile         10
## 14280 2020-03-14   America                          Chile         18
## 14281 2020-03-14   America                       Colombia          7
## 14282 2020-03-14   America                       Colombia          9
## 14283 2020-03-14   America                     Costa Rica          3
## 14284 2020-03-14   America                     Costa Rica          3
## 14285 2020-03-14   America                           Cuba          0
## 14286 2020-03-14   America                           Cuba          1
## 14287 2020-03-14   America                       Dominica          0
## 14288 2020-03-14   America             Dominican Republic          6
## 14289 2020-03-14   America             Dominican Republic          6
## 14290 2020-03-14   America                        Ecuador          6
## 14291 2020-03-14   America                        Ecuador         11
## 14292 2020-03-14   America                    El Salvador          0
## 14293 2020-03-14   America                        Grenada          0
## 14294 2020-03-14   America                      Guatemala          1
## 14295 2020-03-14   America                         Guyana          0
## 14296 2020-03-14   America                          Haiti          0
## 14297 2020-03-14   America                       Honduras          0
## 14298 2020-03-14   America                       Honduras          1
## 14299 2020-03-14   America                        Jamaica          0
## 14300 2020-03-14   America                        Jamaica          2
## 14301 2020-03-14   America                         Mexico         10
## 14302 2020-03-14   America                         Mexico         15
## 14303 2020-03-14   America                      Nicaragua          0
## 14304 2020-03-14   America                         Panama          9
## 14305 2020-03-14   America                         Panama          9
## 14306 2020-03-14   America                       Paraguay          0
## 14307 2020-03-14   America                       Paraguay          1
## 14308 2020-03-14   America                           Peru         10
## 14309 2020-03-14   America                           Peru         16
## 14310 2020-03-14   America            St. Kitts and Nevis          0
## 14311 2020-03-14   America                      St. Lucia          1
## 14312 2020-03-14   America St. Vincent and the Grenadines          1
## 14313 2020-03-14   America                       Suriname          1
## 14314 2020-03-14   America            Trinidad and Tobago          1
## 14315 2020-03-14   America            Trinidad and Tobago          2
## 14316 2020-03-14   America                  United States        511
## 14317 2020-03-14   America                  United States        713
## 14318 2020-03-14   America                        Uruguay          2
## 14319 2020-03-14   America                      Venezuela          2
## 14320 2020-03-14      Asia                    Afghanistan          4
## 14321 2020-03-14      Asia                        Bahrain         15
## 14322 2020-03-14      Asia                        Bahrain         48
## 14323 2020-03-14      Asia                     Bangladesh          0
## 14324 2020-03-14      Asia                         Bhutan          0
## 14325 2020-03-14      Asia              Brunei Darussalam          3
## 14326 2020-03-14      Asia              Brunei Darussalam         12
## 14327 2020-03-14      Asia                       Cambodia          2
## 14328 2020-03-14      Asia                          China         19
## 14329 2020-03-14      Asia                          India          8
## 14330 2020-03-14      Asia                          India         20
## 14331 2020-03-14      Asia                      Indonesia         27
## 14332 2020-03-14      Asia                      Indonesia         35
## 14333 2020-03-14      Asia                           Iran       1289
## 14334 2020-03-14      Asia                           Iran       1365
## 14335 2020-03-14      Asia                           Iraq          9
## 14336 2020-03-14      Asia                           Iraq         11
## 14337 2020-03-14      Asia                         Israel         20
## 14338 2020-03-14      Asia                         Israel         29
## 14339 2020-03-14      Asia                          Japan         62
## 14340 2020-03-14      Asia                          Japan         72
## 14341 2020-03-14      Asia                         Jordan          0
## 14342 2020-03-14      Asia                     Kazakhstan          2
## 14343 2020-03-14      Asia                         Kuwait         20
## 14344 2020-03-14      Asia                         Kuwait         24
## 14345 2020-03-14      Asia                Kyrgyz Republic          0
## 14346 2020-03-14      Asia                           Laos          0
## 14347 2020-03-14      Asia                        Lebanon         16
## 14348 2020-03-14      Asia                       Malaysia         39
## 14349 2020-03-14      Asia                       Malaysia         41
## 14350 2020-03-14      Asia                       Maldives          1
## 14351 2020-03-14      Asia                       Maldives          1
## 14352 2020-03-14      Asia                       Mongolia          0
## 14353 2020-03-14      Asia                        Myanmar          0
## 14354 2020-03-14      Asia                          Nepal          0
## 14355 2020-03-14      Asia                           Oman          0
## 14356 2020-03-14      Asia                           Oman          2
## 14357 2020-03-14      Asia                       Pakistan          0
## 14358 2020-03-14      Asia                       Pakistan         22
## 14359 2020-03-14      Asia                      Palestine          4
## 14360 2020-03-14      Asia                      Palestine          5
## 14361 2020-03-14      Asia                    Philippines         12
## 14362 2020-03-14      Asia                    Philippines         47
## 14363 2020-03-14      Asia                          Qatar         17
## 14364 2020-03-14      Asia                          Qatar         58
## 14365 2020-03-14      Asia                   Saudi Arabia         17
## 14366 2020-03-14      Asia                   Saudi Arabia         24
## 14367 2020-03-14      Asia                      Singapore         12
## 14368 2020-03-14      Asia                      Singapore         13
## 14369 2020-03-14      Asia                    South Korea        107
## 14370 2020-03-14      Asia                    South Korea        107
## 14371 2020-03-14      Asia                      Sri Lanka          3
## 14372 2020-03-14      Asia                      Sri Lanka          4
## 14373 2020-03-14      Asia                          Syria          0
## 14374 2020-03-14      Asia                     Tajikistan          0
## 14375 2020-03-14      Asia                       Thailand          7
## 14376 2020-03-14      Asia                       Thailand         12
## 14377 2020-03-14      Asia                    Timor-Leste          0
## 14378 2020-03-14      Asia                         Turkey          0
## 14379 2020-03-14      Asia           United Arab Emirates          0
## 14380 2020-03-14      Asia                     Uzbekistan          0
## 14381 2020-03-14      Asia                        Vietnam          6
## 14382 2020-03-14      Asia                        Vietnam          9
## 14383 2020-03-14      Asia                          Yemen          0
## 14384 2020-03-14      Asia                      not found          4
## 14385 2020-03-14    Europe                        Albania          5
## 14386 2020-03-14    Europe                        Albania         10
## 14387 2020-03-14    Europe                        Andorra          0
## 14388 2020-03-14    Europe                        Andorra          1
## 14389 2020-03-14    Europe                        Armenia          7
## 14390 2020-03-14    Europe                        Armenia         10
## 14391 2020-03-14    Europe                        Austria        143
## 14392 2020-03-14    Europe                        Austria        151
## 14393 2020-03-14    Europe                     Azerbaijan          0
## 14394 2020-03-14    Europe                        Belarus          0
## 14395 2020-03-14    Europe                        Belgium        130
## 14396 2020-03-14    Europe                        Belgium        338
## 14397 2020-03-14    Europe         Bosnia and Herzegovina          5
## 14398 2020-03-14    Europe                       Bulgaria          8
## 14399 2020-03-14    Europe                       Bulgaria         18
## 14400 2020-03-14    Europe                        Croatia          6
## 14401 2020-03-14    Europe                        Croatia          6
## 14402 2020-03-14    Europe                         Cyprus          8
## 14403 2020-03-14    Europe                         Cyprus         12
## 14404 2020-03-14    Europe                 Czech Republic         34
## 14405 2020-03-14    Europe                 Czech Republic         48
## 14406 2020-03-14    Europe                        Denmark         26
## 14407 2020-03-14    Europe                        Denmark        128
## 14408 2020-03-14    Europe                        Estonia         36
## 14409 2020-03-14    Europe                        Estonia         52
## 14410 2020-03-14    Europe                        Finland         28
## 14411 2020-03-14    Europe                        Finland         70
## 14412 2020-03-14    Europe                         France        785
## 14413 2020-03-14    Europe                         France        808
## 14414 2020-03-14    Europe                        Georgia          5
## 14415 2020-03-14    Europe                        Georgia          5
## 14416 2020-03-14    Europe                        Germany        693
## 14417 2020-03-14    Europe                        Germany        910
## 14418 2020-03-14    Europe                         Greece         38
## 14419 2020-03-14    Europe                         Greece         57
## 14420 2020-03-14    Europe                        Hungary          9
## 14421 2020-03-14    Europe                        Hungary         11
## 14422 2020-03-14    Europe                        Iceland          0
## 14423 2020-03-14    Europe                        Iceland         22
## 14424 2020-03-14    Europe                        Ireland         21
## 14425 2020-03-14    Europe                        Ireland         39
## 14426 2020-03-14    Europe                          Italy       2547
## 14427 2020-03-14    Europe                          Italy       3497
## 14428 2020-03-14    Europe                         Kosovo          0
## 14429 2020-03-14    Europe                         Latvia          3
## 14430 2020-03-14    Europe                         Latvia          9
## 14431 2020-03-14    Europe                  Liechtenstein          0
## 14432 2020-03-14    Europe                  Liechtenstein          3
## 14433 2020-03-14    Europe                      Lithuania          2
## 14434 2020-03-14    Europe                      Lithuania          3
## 14435 2020-03-14    Europe                     Luxembourg         12
## 14436 2020-03-14    Europe                     Luxembourg         17
## 14437 2020-03-14    Europe                      Macedonia          0
## 14438 2020-03-14    Europe                      Macedonia          4
## 14439 2020-03-14    Europe                          Malta          6
## 14440 2020-03-14    Europe                          Malta         10
## 14441 2020-03-14    Europe                        Moldova          2
## 14442 2020-03-14    Europe                        Moldova          6
## 14443 2020-03-14    Europe                         Monaco          0
## 14444 2020-03-14    Europe                     Montenegro          0
## 14445 2020-03-14    Europe                    Netherlands        155
## 14446 2020-03-14    Europe                    Netherlands        190
## 14447 2020-03-14    Europe                         Norway          0
## 14448 2020-03-14    Europe                         Norway         94
## 14449 2020-03-14    Europe                         Poland         19
## 14450 2020-03-14    Europe                         Poland         35
## 14451 2020-03-14    Europe                       Portugal         34
## 14452 2020-03-14    Europe                       Portugal         57
## 14453 2020-03-14    Europe                        Romania         25
## 14454 2020-03-14    Europe                        Romania         34
## 14455 2020-03-14    Europe                         Russia         14
## 14456 2020-03-14    Europe                         Russia         15
## 14457 2020-03-14    Europe                     San Marino          0
## 14458 2020-03-14    Europe                     San Marino          6
## 14459 2020-03-14    Europe                         Serbia         11
## 14460 2020-03-14    Europe                         Serbia         17
## 14461 2020-03-14    Europe                       Slovakia          9
## 14462 2020-03-14    Europe                       Slovakia         12
## 14463 2020-03-14    Europe                       Slovenia         40
## 14464 2020-03-14    Europe                       Slovenia         45
## 14465 2020-03-14    Europe                          Spain       1159
## 14466 2020-03-14    Europe                          Spain       1683
## 14467 2020-03-14    Europe                         Sweden        147
## 14468 2020-03-14    Europe                         Sweden        155
## 14469 2020-03-14    Europe                    Switzerland        220
## 14470 2020-03-14    Europe                    Switzerland        267
## 14471 2020-03-14    Europe                        Ukraine          0
## 14472 2020-03-14    Europe                 United Kingdom        117
## 14473 2020-03-14    Europe                 United Kingdom        342
## 14474 2020-03-14    Europe                        Vatican          0
## 14475 2020-03-14   Oceania                      Australia         41
## 14476 2020-03-14   Oceania                           Fiji          0
## 14477 2020-03-14   Oceania                    New Zealand          1
## 14478 2020-03-14   Oceania                    New Zealand          1
## 14479 2020-03-14   Oceania               Papua New Guinea          0
## 14480 2020-03-15    Africa                        Algeria         11
## 14481 2020-03-15    Africa                        Algeria         11
## 14482 2020-03-15    Africa                         Angola          0
## 14483 2020-03-15    Africa                          Benin          0
## 14484 2020-03-15    Africa                       Botswana          0
## 14485 2020-03-15    Africa                   Burkina Faso          1
## 14486 2020-03-15    Africa                   Burkina Faso          1
## 14487 2020-03-15    Africa                        Burundi          0
## 14488 2020-03-15    Africa                     Cabo Verde          0
## 14489 2020-03-15    Africa                       Cameroon          0
## 14490 2020-03-15    Africa                       Cameroon          1
## 14491 2020-03-15    Africa       Central African Republic          1
## 14492 2020-03-15    Africa                           Chad          0
## 14493 2020-03-15    Africa                        Comoros          0
## 14494 2020-03-15    Africa                 Congo Republic          1
## 14495 2020-03-15    Africa                  Cote d'Ivoire          0
## 14496 2020-03-15    Africa                  Cote d'Ivoire          3
## 14497 2020-03-15    Africa                       DR Congo          0
## 14498 2020-03-15    Africa                       DR Congo          0
## 14499 2020-03-15    Africa                       Djibouti          0
## 14500 2020-03-15    Africa                          Egypt          0
## 14501 2020-03-15    Africa                          Egypt          1
## 14502 2020-03-15    Africa              Equatorial Guinea          1
## 14503 2020-03-15    Africa              Equatorial Guinea          1
## 14504 2020-03-15    Africa                        Eritrea          0
## 14505 2020-03-15    Africa                       Eswatini          0
## 14506 2020-03-15    Africa                       Eswatini          1
## 14507 2020-03-15    Africa                       Ethiopia          0
## 14508 2020-03-15    Africa                       Ethiopia          0
## 14509 2020-03-15    Africa                          Gabon          0
## 14510 2020-03-15    Africa                          Gabon          0
## 14511 2020-03-15    Africa                         Gambia          0
## 14512 2020-03-15    Africa                          Ghana          0
## 14513 2020-03-15    Africa                          Ghana          3
## 14514 2020-03-15    Africa                         Guinea          0
## 14515 2020-03-15    Africa                         Guinea          0
## 14516 2020-03-15    Africa                  Guinea-Bissau          0
## 14517 2020-03-15    Africa                          Kenya          0
## 14518 2020-03-15    Africa                          Kenya          2
## 14519 2020-03-15    Africa                        Lesotho          0
## 14520 2020-03-15    Africa                        Liberia          0
## 14521 2020-03-15    Africa                          Libya          0
## 14522 2020-03-15    Africa                     Madagascar          0
## 14523 2020-03-15    Africa                         Malawi          0
## 14524 2020-03-15    Africa                           Mali          0
## 14525 2020-03-15    Africa                     Mauritania          0
## 14526 2020-03-15    Africa                     Mauritania          1
## 14527 2020-03-15    Africa                      Mauritius          0
## 14528 2020-03-15    Africa                        Morocco         11
## 14529 2020-03-15    Africa                        Morocco         11
## 14530 2020-03-15    Africa                     Mozambique          0
## 14531 2020-03-15    Africa                        Namibia          0
## 14532 2020-03-15    Africa                        Namibia          2
## 14533 2020-03-15    Africa                          Niger          0
## 14534 2020-03-15    Africa                        Nigeria          0
## 14535 2020-03-15    Africa                        Nigeria          0
## 14536 2020-03-15    Africa                         Rwanda          0
## 14537 2020-03-15    Africa                         Rwanda          1
## 14538 2020-03-15    Africa          Sao Tome and Principe          0
## 14539 2020-03-15    Africa                        Senegal          2
## 14540 2020-03-15    Africa                        Senegal         14
## 14541 2020-03-15    Africa                     Seychelles          0
## 14542 2020-03-15    Africa                     Seychelles          2
## 14543 2020-03-15    Africa                   Sierra Leone          0
## 14544 2020-03-15    Africa                        Somalia          0
## 14545 2020-03-15    Africa                   South Africa          0
## 14546 2020-03-15    Africa                   South Africa         13
## 14547 2020-03-15    Africa                    South Sudan          0
## 14548 2020-03-15    Africa                          Sudan          0
## 14549 2020-03-15    Africa                          Sudan          0
## 14550 2020-03-15    Africa                       Tanzania          0
## 14551 2020-03-15    Africa                           Togo          0
## 14552 2020-03-15    Africa                           Togo          0
## 14553 2020-03-15    Africa                        Tunisia          0
## 14554 2020-03-15    Africa                        Tunisia          0
## 14555 2020-03-15    Africa                         Uganda          0
## 14556 2020-03-15    Africa                 Western Sahara          0
## 14557 2020-03-15    Africa                         Zambia          0
## 14558 2020-03-15    Africa                       Zimbabwe          0
## 14559 2020-03-15   America            Antigua and Barbuda          0
## 14560 2020-03-15   America            Antigua and Barbuda          1
## 14561 2020-03-15   America                      Argentina         11
## 14562 2020-03-15   America                      Argentina         11
## 14563 2020-03-15   America                        Bahamas          0
## 14564 2020-03-15   America                       Barbados          0
## 14565 2020-03-15   America                         Belize          0
## 14566 2020-03-15   America                        Bolivia          0
## 14567 2020-03-15   America                        Bolivia          0
## 14568 2020-03-15   America                         Brazil         11
## 14569 2020-03-15   America                         Brazil         23
## 14570 2020-03-15   America                         Canada         68
## 14571 2020-03-15   America                          Chile         13
## 14572 2020-03-15   America                          Chile         18
## 14573 2020-03-15   America                       Colombia         12
## 14574 2020-03-15   America                       Colombia         18
## 14575 2020-03-15   America                     Costa Rica          1
## 14576 2020-03-15   America                     Costa Rica          1
## 14577 2020-03-15   America                           Cuba          0
## 14578 2020-03-15   America                           Cuba          0
## 14579 2020-03-15   America                       Dominica          0
## 14580 2020-03-15   America             Dominican Republic          0
## 14581 2020-03-15   America             Dominican Republic          0
## 14582 2020-03-15   America                        Ecuador          0
## 14583 2020-03-15   America                        Ecuador          5
## 14584 2020-03-15   America                    El Salvador          0
## 14585 2020-03-15   America                        Grenada          0
## 14586 2020-03-15   America                      Guatemala          0
## 14587 2020-03-15   America                      Guatemala          1
## 14588 2020-03-15   America                         Guyana          3
## 14589 2020-03-15   America                          Haiti          0
## 14590 2020-03-15   America                       Honduras          1
## 14591 2020-03-15   America                        Jamaica          2
## 14592 2020-03-15   America                         Mexico         12
## 14593 2020-03-15   America                         Mexico         15
## 14594 2020-03-15   America                      Nicaragua          0
## 14595 2020-03-15   America                         Panama          7
## 14596 2020-03-15   America                         Panama          7
## 14597 2020-03-15   America                       Paraguay          0
## 14598 2020-03-15   America                           Peru          5
## 14599 2020-03-15   America                           Peru          5
## 14600 2020-03-15   America            St. Kitts and Nevis          0
## 14601 2020-03-15   America                      St. Lucia          1
## 14602 2020-03-15   America                      St. Lucia          2
## 14603 2020-03-15   America St. Vincent and the Grenadines          0
## 14604 2020-03-15   America                       Suriname          0
## 14605 2020-03-15   America                       Suriname          1
## 14606 2020-03-15   America            Trinidad and Tobago          0
## 14607 2020-03-15   America            Trinidad and Tobago          0
## 14608 2020-03-15   America                  United States         98
## 14609 2020-03-15   America                  United States        777
## 14610 2020-03-15   America                        Uruguay          2
## 14611 2020-03-15   America                        Uruguay          6
## 14612 2020-03-15   America                      Venezuela          8
## 14613 2020-03-15   America                      Venezuela         10
## 14614 2020-03-15      Asia                    Afghanistan          3
## 14615 2020-03-15      Asia                    Afghanistan          5
## 14616 2020-03-15      Asia                        Bahrain          1
## 14617 2020-03-15      Asia                        Bahrain          4
## 14618 2020-03-15      Asia                     Bangladesh          0
## 14619 2020-03-15      Asia                     Bangladesh          2
## 14620 2020-03-15      Asia                         Bhutan          0
## 14621 2020-03-15      Asia                         Bhutan          0
## 14622 2020-03-15      Asia              Brunei Darussalam          3
## 14623 2020-03-15      Asia              Brunei Darussalam         10
## 14624 2020-03-15      Asia                       Cambodia          0
## 14625 2020-03-15      Asia                       Cambodia          2
## 14626 2020-03-15      Asia                          China         22
## 14627 2020-03-15      Asia                          India          7
## 14628 2020-03-15      Asia                          India         11
## 14629 2020-03-15      Asia                      Indonesia         21
## 14630 2020-03-15      Asia                      Indonesia         27
## 14631 2020-03-15      Asia                           Iran       1209
## 14632 2020-03-15      Asia                           Iran       1365
## 14633 2020-03-15      Asia                           Iraq          0
## 14634 2020-03-15      Asia                           Iraq          6
## 14635 2020-03-15      Asia                         Israel         58
## 14636 2020-03-15      Asia                         Israel         62
## 14637 2020-03-15      Asia                          Japan         43
## 14638 2020-03-15      Asia                          Japan         66
## 14639 2020-03-15      Asia                         Jordan          0
## 14640 2020-03-15      Asia                         Jordan          7
## 14641 2020-03-15      Asia                     Kazakhstan          3
## 14642 2020-03-15      Asia                     Kazakhstan          6
## 14643 2020-03-15      Asia                         Kuwait          4
## 14644 2020-03-15      Asia                         Kuwait          8
## 14645 2020-03-15      Asia                Kyrgyz Republic          0
## 14646 2020-03-15      Asia                           Laos          0
## 14647 2020-03-15      Asia                        Lebanon         17
## 14648 2020-03-15      Asia                        Lebanon         27
## 14649 2020-03-15      Asia                       Malaysia         41
## 14650 2020-03-15      Asia                       Malaysia        190
## 14651 2020-03-15      Asia                       Maldives          0
## 14652 2020-03-15      Asia                       Maldives          3
## 14653 2020-03-15      Asia                       Mongolia          0
## 14654 2020-03-15      Asia                       Mongolia          0
## 14655 2020-03-15      Asia                        Myanmar          0
## 14656 2020-03-15      Asia                          Nepal          0
## 14657 2020-03-15      Asia                          Nepal          0
## 14658 2020-03-15      Asia                           Oman          0
## 14659 2020-03-15      Asia                           Oman          3
## 14660 2020-03-15      Asia                       Pakistan          9
## 14661 2020-03-15      Asia                       Pakistan         83
## 14662 2020-03-15      Asia                      Palestine          3
## 14663 2020-03-15      Asia                      Palestine          3
## 14664 2020-03-15      Asia                    Philippines         29
## 14665 2020-03-15      Asia                    Philippines         47
## 14666 2020-03-15      Asia                          Qatar         17
## 14667 2020-03-15      Asia                          Qatar         64
## 14668 2020-03-15      Asia                   Saudi Arabia          0
## 14669 2020-03-15      Asia                   Saudi Arabia          0
## 14670 2020-03-15      Asia                      Singapore         14
## 14671 2020-03-15      Asia                      Singapore         14
## 14672 2020-03-15      Asia                    South Korea         76
## 14673 2020-03-15      Asia                    South Korea         76
## 14674 2020-03-15      Asia                      Sri Lanka          5
## 14675 2020-03-15      Asia                      Sri Lanka          8
## 14676 2020-03-15      Asia                          Syria          0
## 14677 2020-03-15      Asia                     Tajikistan          0
## 14678 2020-03-15      Asia                       Thailand          0
## 14679 2020-03-15      Asia                       Thailand         32
## 14680 2020-03-15      Asia                    Timor-Leste          0
## 14681 2020-03-15      Asia                         Turkey          1
## 14682 2020-03-15      Asia           United Arab Emirates          0
## 14683 2020-03-15      Asia           United Arab Emirates         13
## 14684 2020-03-15      Asia                     Uzbekistan          1
## 14685 2020-03-15      Asia                        Vietnam          0
## 14686 2020-03-15      Asia                        Vietnam          3
## 14687 2020-03-15      Asia                          Yemen          0
## 14688 2020-03-15      Asia                      not found          6
## 14689 2020-03-15    Europe                        Albania          4
## 14690 2020-03-15    Europe                        Albania          5
## 14691 2020-03-15    Europe                        Andorra          0
## 14692 2020-03-15    Europe                        Armenia          7
## 14693 2020-03-15    Europe                        Armenia          8
## 14694 2020-03-15    Europe                        Austria        151
## 14695 2020-03-15    Europe                        Austria        205
## 14696 2020-03-15    Europe                     Azerbaijan          6
## 14697 2020-03-15    Europe                     Azerbaijan          8
## 14698 2020-03-15    Europe                        Belarus          0
## 14699 2020-03-15    Europe                        Belgium        179
## 14700 2020-03-15    Europe                        Belgium        197
## 14701 2020-03-15    Europe         Bosnia and Herzegovina          6
## 14702 2020-03-15    Europe                       Bulgaria         10
## 14703 2020-03-15    Europe                       Bulgaria         10
## 14704 2020-03-15    Europe                        Croatia          6
## 14705 2020-03-15    Europe                        Croatia         11
## 14706 2020-03-15    Europe                         Cyprus          0
## 14707 2020-03-15    Europe                         Cyprus          7
## 14708 2020-03-15    Europe                 Czech Republic         64
## 14709 2020-03-15    Europe                 Czech Republic         64
## 14710 2020-03-15    Europe                        Denmark         23
## 14711 2020-03-15    Europe                        Denmark         37
## 14712 2020-03-15    Europe                        Estonia         36
## 14713 2020-03-15    Europe                        Estonia         56
## 14714 2020-03-15    Europe                        Finland         19
## 14715 2020-03-15    Europe                        Finland         27
## 14716 2020-03-15    Europe                         France         30
## 14717 2020-03-15    Europe                         France        838
## 14718 2020-03-15    Europe                        Georgia          0
## 14719 2020-03-15    Europe                        Georgia          3
## 14720 2020-03-15    Europe                        Germany        733
## 14721 2020-03-15    Europe                        Germany       1210
## 14722 2020-03-15    Europe                         Greece         38
## 14723 2020-03-15    Europe                         Greece        103
## 14724 2020-03-15    Europe                        Hungary          2
## 14725 2020-03-15    Europe                        Hungary          6
## 14726 2020-03-15    Europe                        Iceland         15
## 14727 2020-03-15    Europe                        Iceland         21
## 14728 2020-03-15    Europe                        Ireland          0
## 14729 2020-03-15    Europe                        Ireland         38
## 14730 2020-03-15    Europe                          Italy       3497
## 14731 2020-03-15    Europe                          Italy       3590
## 14732 2020-03-15    Europe                         Kosovo          0
## 14733 2020-03-15    Europe                         Latvia          4
## 14734 2020-03-15    Europe                         Latvia          7
## 14735 2020-03-15    Europe                  Liechtenstein          0
## 14736 2020-03-15    Europe                  Liechtenstein          0
## 14737 2020-03-15    Europe                      Lithuania          3
## 14738 2020-03-15    Europe                      Lithuania          4
## 14739 2020-03-15    Europe                     Luxembourg          8
## 14740 2020-03-15    Europe                      Macedonia          0
## 14741 2020-03-15    Europe                          Malta          2
## 14742 2020-03-15    Europe                          Malta          3
## 14743 2020-03-15    Europe                        Moldova         11
## 14744 2020-03-15    Europe                        Moldova         12
## 14745 2020-03-15    Europe                         Monaco          0
## 14746 2020-03-15    Europe                         Monaco          2
## 14747 2020-03-15    Europe                     Montenegro          0
## 14748 2020-03-15    Europe                    Netherlands        155
## 14749 2020-03-15    Europe                    Netherlands        176
## 14750 2020-03-15    Europe                         Norway        131
## 14751 2020-03-15    Europe                         Norway        286
## 14752 2020-03-15    Europe                         Poland         16
## 14753 2020-03-15    Europe                         Poland         36
## 14754 2020-03-15    Europe                       Portugal         57
## 14755 2020-03-15    Europe                       Portugal         76
## 14756 2020-03-15    Europe                        Romania          8
## 14757 2020-03-15    Europe                        Romania         24
## 14758 2020-03-15    Europe                         Russia          4
## 14759 2020-03-15    Europe                         Russia         14
## 14760 2020-03-15    Europe                     San Marino         19
## 14761 2020-03-15    Europe                     San Marino         21
## 14762 2020-03-15    Europe                         Serbia          2
## 14763 2020-03-15    Europe                         Serbia          5
## 14764 2020-03-15    Europe                       Slovakia         10
## 14765 2020-03-15    Europe                       Slovakia         14
## 14766 2020-03-15    Europe                       Slovenia         38
## 14767 2020-03-15    Europe                       Slovenia         40
## 14768 2020-03-15    Europe                          Spain       1407
## 14769 2020-03-15    Europe                          Spain       2144
## 14770 2020-03-15    Europe                         Sweden         61
## 14771 2020-03-15    Europe                         Sweden        149
## 14772 2020-03-15    Europe                    Switzerland        238
## 14773 2020-03-15    Europe                    Switzerland        841
## 14774 2020-03-15    Europe                        Ukraine          0
## 14775 2020-03-15    Europe                 United Kingdom          0
## 14776 2020-03-15    Europe                 United Kingdom        433
## 14777 2020-03-15    Europe                        Vatican          0
## 14778 2020-03-15   Oceania                      Australia         52
## 14779 2020-03-15   Oceania                           Fiji          0
## 14780 2020-03-15   Oceania                    New Zealand          2
## 14781 2020-03-15   Oceania                    New Zealand          2
## 14782 2020-03-15   Oceania               Papua New Guinea          0
## 14783 2020-03-16    Africa                        Algeria          6
## 14784 2020-03-16    Africa                        Algeria         11
## 14785 2020-03-16    Africa                         Angola          0
## 14786 2020-03-16    Africa                          Benin          1
## 14787 2020-03-16    Africa                       Botswana          0
## 14788 2020-03-16    Africa                   Burkina Faso          0
## 14789 2020-03-16    Africa                   Burkina Faso         12
## 14790 2020-03-16    Africa                        Burundi          0
## 14791 2020-03-16    Africa                     Cabo Verde          0
## 14792 2020-03-16    Africa                       Cameroon          1
## 14793 2020-03-16    Africa                       Cameroon          2
## 14794 2020-03-16    Africa       Central African Republic          0
## 14795 2020-03-16    Africa       Central African Republic          1
## 14796 2020-03-16    Africa                           Chad          0
## 14797 2020-03-16    Africa                        Comoros          0
## 14798 2020-03-16    Africa                 Congo Republic          0
## 14799 2020-03-16    Africa                 Congo Republic          1
## 14800 2020-03-16    Africa                  Cote d'Ivoire          0
## 14801 2020-03-16    Africa                  Cote d'Ivoire          0
## 14802 2020-03-16    Africa                       DR Congo          0
## 14803 2020-03-16    Africa                       DR Congo          0
## 14804 2020-03-16    Africa                       Djibouti          0
## 14805 2020-03-16    Africa                          Egypt         17
## 14806 2020-03-16    Africa                          Egypt         40
## 14807 2020-03-16    Africa              Equatorial Guinea          0
## 14808 2020-03-16    Africa              Equatorial Guinea          0
## 14809 2020-03-16    Africa                        Eritrea          0
## 14810 2020-03-16    Africa                       Eswatini          0
## 14811 2020-03-16    Africa                       Eswatini          0
## 14812 2020-03-16    Africa                       Ethiopia          3
## 14813 2020-03-16    Africa                       Ethiopia          4
## 14814 2020-03-16    Africa                          Gabon          0
## 14815 2020-03-16    Africa                          Gabon          0
## 14816 2020-03-16    Africa                         Gambia          0
## 14817 2020-03-16    Africa                          Ghana          0
## 14818 2020-03-16    Africa                          Ghana          0
## 14819 2020-03-16    Africa                         Guinea          0
## 14820 2020-03-16    Africa                  Guinea-Bissau          0
## 14821 2020-03-16    Africa                          Kenya          0
## 14822 2020-03-16    Africa                          Kenya          2
## 14823 2020-03-16    Africa                        Lesotho          0
## 14824 2020-03-16    Africa                        Liberia          1
## 14825 2020-03-16    Africa                          Libya          0
## 14826 2020-03-16    Africa                     Madagascar          0
## 14827 2020-03-16    Africa                         Malawi          0
## 14828 2020-03-16    Africa                           Mali          0
## 14829 2020-03-16    Africa                     Mauritania          0
## 14830 2020-03-16    Africa                     Mauritania          0
## 14831 2020-03-16    Africa                      Mauritius          0
## 14832 2020-03-16    Africa                        Morocco          1
## 14833 2020-03-16    Africa                        Morocco         10
## 14834 2020-03-16    Africa                     Mozambique          0
## 14835 2020-03-16    Africa                        Namibia          0
## 14836 2020-03-16    Africa                        Namibia          0
## 14837 2020-03-16    Africa                          Niger          0
## 14838 2020-03-16    Africa                        Nigeria          0
## 14839 2020-03-16    Africa                        Nigeria          0
## 14840 2020-03-16    Africa                         Rwanda          4
## 14841 2020-03-16    Africa                         Rwanda          4
## 14842 2020-03-16    Africa          Sao Tome and Principe          0
## 14843 2020-03-16    Africa                        Senegal          0
## 14844 2020-03-16    Africa                        Senegal          5
## 14845 2020-03-16    Africa                     Seychelles          1
## 14846 2020-03-16    Africa                     Seychelles          1
## 14847 2020-03-16    Africa                   Sierra Leone          0
## 14848 2020-03-16    Africa                        Somalia          1
## 14849 2020-03-16    Africa                   South Africa         11
## 14850 2020-03-16    Africa                   South Africa         27
## 14851 2020-03-16    Africa                    South Sudan          0
## 14852 2020-03-16    Africa                          Sudan          0
## 14853 2020-03-16    Africa                          Sudan          0
## 14854 2020-03-16    Africa                       Tanzania          1
## 14855 2020-03-16    Africa                           Togo          0
## 14856 2020-03-16    Africa                           Togo          0
## 14857 2020-03-16    Africa                        Tunisia          2
## 14858 2020-03-16    Africa                        Tunisia          2
## 14859 2020-03-16    Africa                         Uganda          0
## 14860 2020-03-16    Africa                 Western Sahara          0
## 14861 2020-03-16    Africa                         Zambia          0
## 14862 2020-03-16    Africa                       Zimbabwe          0
## 14863 2020-03-16   America            Antigua and Barbuda          0
## 14864 2020-03-16   America                      Argentina         11
## 14865 2020-03-16   America                      Argentina         11
## 14866 2020-03-16   America                        Bahamas          1
## 14867 2020-03-16   America                        Bahamas          1
## 14868 2020-03-16   America                       Barbados          0
## 14869 2020-03-16   America                         Belize          0
## 14870 2020-03-16   America                        Bolivia          1
## 14871 2020-03-16   America                         Brazil         38
## 14872 2020-03-16   America                         Brazil         79
## 14873 2020-03-16   America                         Canada         60
## 14874 2020-03-16   America                          Chile         14
## 14875 2020-03-16   America                          Chile         81
## 14876 2020-03-16   America                       Colombia         11
## 14877 2020-03-16   America                       Colombia         20
## 14878 2020-03-16   America                     Costa Rica          8
## 14879 2020-03-16   America                     Costa Rica          8
## 14880 2020-03-16   America                           Cuba          0
## 14881 2020-03-16   America                       Dominica          0
## 14882 2020-03-16   America             Dominican Republic          0
## 14883 2020-03-16   America             Dominican Republic          0
## 14884 2020-03-16   America                        Ecuador          9
## 14885 2020-03-16   America                        Ecuador          9
## 14886 2020-03-16   America                    El Salvador          0
## 14887 2020-03-16   America                        Grenada          0
## 14888 2020-03-16   America                      Guatemala          0
## 14889 2020-03-16   America                      Guatemala          1
## 14890 2020-03-16   America                         Guyana          0
## 14891 2020-03-16   America                         Guyana          3
## 14892 2020-03-16   America                          Haiti          0
## 14893 2020-03-16   America                       Honduras          3
## 14894 2020-03-16   America                       Honduras          3
## 14895 2020-03-16   America                        Jamaica          0
## 14896 2020-03-16   America                        Jamaica          2
## 14897 2020-03-16   America                         Mexico         12
## 14898 2020-03-16   America                         Mexico         29
## 14899 2020-03-16   America                      Nicaragua          0
## 14900 2020-03-16   America                         Panama          0
## 14901 2020-03-16   America                         Panama         12
## 14902 2020-03-16   America                       Paraguay          1
## 14903 2020-03-16   America                       Paraguay          2
## 14904 2020-03-16   America                           Peru         28
## 14905 2020-03-16   America                           Peru         43
## 14906 2020-03-16   America            St. Kitts and Nevis          0
## 14907 2020-03-16   America                      St. Lucia          0
## 14908 2020-03-16   America                      St. Lucia          0
## 14909 2020-03-16   America St. Vincent and the Grenadines          0
## 14910 2020-03-16   America                       Suriname          0
## 14911 2020-03-16   America            Trinidad and Tobago          2
## 14912 2020-03-16   America            Trinidad and Tobago          2
## 14913 2020-03-16   America                  United States        823
## 14914 2020-03-16   America                  United States       1392
## 14915 2020-03-16   America                        Uruguay          2
## 14916 2020-03-16   America                        Uruguay         21
## 14917 2020-03-16   America                      Venezuela          5
## 14918 2020-03-16   America                      Venezuela          7
## 14919 2020-03-16      Asia                    Afghanistan          5
## 14920 2020-03-16      Asia                    Afghanistan          6
## 14921 2020-03-16      Asia                        Bahrain          0
## 14922 2020-03-16      Asia                        Bahrain          3
## 14923 2020-03-16      Asia                     Bangladesh          3
## 14924 2020-03-16      Asia                         Bhutan          0
## 14925 2020-03-16      Asia              Brunei Darussalam          4
## 14926 2020-03-16      Asia              Brunei Darussalam         10
## 14927 2020-03-16      Asia                       Cambodia          0
## 14928 2020-03-16      Asia                       Cambodia          5
## 14929 2020-03-16      Asia                          China         25
## 14930 2020-03-16      Asia                          India          3
## 14931 2020-03-16      Asia                          India          6
## 14932 2020-03-16      Asia                      Indonesia         17
## 14933 2020-03-16      Asia                      Indonesia         21
## 14934 2020-03-16      Asia                           Iran       1053
## 14935 2020-03-16      Asia                           Iran       1209
## 14936 2020-03-16      Asia                           Iraq          8
## 14937 2020-03-16      Asia                           Iraq         39
## 14938 2020-03-16      Asia                         Israel          5
## 14939 2020-03-16      Asia                         Israel         72
## 14940 2020-03-16      Asia                          Japan          0
## 14941 2020-03-16      Asia                          Japan         34
## 14942 2020-03-16      Asia                         Jordan          9
## 14943 2020-03-16      Asia                         Jordan         14
## 14944 2020-03-16      Asia                     Kazakhstan          1
## 14945 2020-03-16      Asia                     Kazakhstan          3
## 14946 2020-03-16      Asia                         Kuwait          8
## 14947 2020-03-16      Asia                         Kuwait         11
## 14948 2020-03-16      Asia                Kyrgyz Republic          0
## 14949 2020-03-16      Asia                           Laos          0
## 14950 2020-03-16      Asia                        Lebanon          0
## 14951 2020-03-16      Asia                        Lebanon          6
## 14952 2020-03-16      Asia                       Malaysia        138
## 14953 2020-03-16      Asia                       Malaysia        190
## 14954 2020-03-16      Asia                       Maldives          0
## 14955 2020-03-16      Asia                       Maldives          4
## 14956 2020-03-16      Asia                       Mongolia          0
## 14957 2020-03-16      Asia                        Myanmar          0
## 14958 2020-03-16      Asia                          Nepal          0
## 14959 2020-03-16      Asia                           Oman          0
## 14960 2020-03-16      Asia                           Oman          2
## 14961 2020-03-16      Asia                       Pakistan          1
## 14962 2020-03-16      Asia                       Pakistan        100
## 14963 2020-03-16      Asia                      Palestine          0
## 14964 2020-03-16      Asia                      Palestine          0
## 14965 2020-03-16      Asia                    Philippines          2
## 14966 2020-03-16      Asia                    Philippines         29
## 14967 2020-03-16      Asia                          Qatar         38
## 14968 2020-03-16      Asia                          Qatar         64
## 14969 2020-03-16      Asia                   Saudi Arabia         15
## 14970 2020-03-16      Asia                   Saudi Arabia         32
## 14971 2020-03-16      Asia                      Singapore         12
## 14972 2020-03-16      Asia                      Singapore         17
## 14973 2020-03-16      Asia                    South Korea         74
## 14974 2020-03-16      Asia                    South Korea         74
## 14975 2020-03-16      Asia                      Sri Lanka          8
## 14976 2020-03-16      Asia                      Sri Lanka         10
## 14977 2020-03-16      Asia                          Syria          0
## 14978 2020-03-16      Asia                     Tajikistan          0
## 14979 2020-03-16      Asia                       Thailand         32
## 14980 2020-03-16      Asia                       Thailand         33
## 14981 2020-03-16      Asia                    Timor-Leste          0
## 14982 2020-03-16      Asia                         Turkey         12
## 14983 2020-03-16      Asia                         Turkey         16
## 14984 2020-03-16      Asia           United Arab Emirates          0
## 14985 2020-03-16      Asia           United Arab Emirates          1
## 14986 2020-03-16      Asia                     Uzbekistan          5
## 14987 2020-03-16      Asia                     Uzbekistan          6
## 14988 2020-03-16      Asia                        Vietnam          4
## 14989 2020-03-16      Asia                        Vietnam          5
## 14990 2020-03-16      Asia                          Yemen          0
## 14991 2020-03-16      Asia                      not found          0
## 14992 2020-03-16    Europe                        Albania          4
## 14993 2020-03-16    Europe                        Albania          9
## 14994 2020-03-16    Europe                        Andorra          1
## 14995 2020-03-16    Europe                        Andorra          3
## 14996 2020-03-16    Europe                        Armenia         10
## 14997 2020-03-16    Europe                        Armenia         26
## 14998 2020-03-16    Europe                        Austria        158
## 14999 2020-03-16    Europe                        Austria        205
## 15000 2020-03-16    Europe                     Azerbaijan          0
## 15001 2020-03-16    Europe                     Azerbaijan          5
## 15002 2020-03-16    Europe                        Belarus          6
## 15003 2020-03-16    Europe                        Belarus          9
## 15004 2020-03-16    Europe                        Belgium        172
## 15005 2020-03-16    Europe                        Belgium        214
## 15006 2020-03-16    Europe         Bosnia and Herzegovina          1
## 15007 2020-03-16    Europe         Bosnia and Herzegovina         15
## 15008 2020-03-16    Europe                       Bulgaria          1
## 15009 2020-03-16    Europe                       Bulgaria         10
## 15010 2020-03-16    Europe                        Croatia          8
## 15011 2020-03-16    Europe                        Croatia         11
## 15012 2020-03-16    Europe                         Cyprus          7
## 15013 2020-03-16    Europe                         Cyprus          9
## 15014 2020-03-16    Europe                 Czech Republic         45
## 15015 2020-03-16    Europe                 Czech Republic         84
## 15016 2020-03-16    Europe                        Denmark         48
## 15017 2020-03-16    Europe                        Denmark         50
## 15018 2020-03-16    Europe                        Estonia         34
## 15019 2020-03-16    Europe                        Estonia         56
## 15020 2020-03-16    Europe                        Finland         33
## 15021 2020-03-16    Europe                        Finland         57
## 15022 2020-03-16    Europe                         France        924
## 15023 2020-03-16    Europe                         France       2134
## 15024 2020-03-16    Europe                        Georgia          0
## 15025 2020-03-16    Europe                        Georgia          0
## 15026 2020-03-16    Europe                        Germany       1043
## 15027 2020-03-16    Europe                        Germany       1477
## 15028 2020-03-16    Europe                         Greece          0
## 15029 2020-03-16    Europe                         Greece        103
## 15030 2020-03-16    Europe                        Hungary          7
## 15031 2020-03-16    Europe                        Hungary          8
## 15032 2020-03-16    Europe                        Iceland          9
## 15033 2020-03-16    Europe                        Iceland         40
## 15034 2020-03-16    Europe                        Ireland         40
## 15035 2020-03-16    Europe                        Ireland         40
## 15036 2020-03-16    Europe                          Italy       2823
## 15037 2020-03-16    Europe                          Italy       3233
## 15038 2020-03-16    Europe                         Kosovo          0
## 15039 2020-03-16    Europe                         Kosovo          2
## 15040 2020-03-16    Europe                         Latvia          4
## 15041 2020-03-16    Europe                         Latvia          5
## 15042 2020-03-16    Europe                  Liechtenstein          0
## 15043 2020-03-16    Europe                  Liechtenstein          3
## 15044 2020-03-16    Europe                      Lithuania          5
## 15045 2020-03-16    Europe                      Lithuania          5
## 15046 2020-03-16    Europe                     Luxembourg         18
## 15047 2020-03-16    Europe                     Luxembourg         39
## 15048 2020-03-16    Europe                      Macedonia          0
## 15049 2020-03-16    Europe                      Macedonia          4
## 15050 2020-03-16    Europe                          Malta          9
## 15051 2020-03-16    Europe                          Malta         10
## 15052 2020-03-16    Europe                        Moldova          0
## 15053 2020-03-16    Europe                        Moldova          3
## 15054 2020-03-16    Europe                         Monaco          4
## 15055 2020-03-16    Europe                         Monaco          5
## 15056 2020-03-16    Europe                     Montenegro          0
## 15057 2020-03-16    Europe                    Netherlands        176
## 15058 2020-03-16    Europe                    Netherlands        278
## 15059 2020-03-16    Europe                         Norway        112
## 15060 2020-03-16    Europe                         Norway        170
## 15061 2020-03-16    Europe                         Poland         21
## 15062 2020-03-16    Europe                         Poland         58
## 15063 2020-03-16    Europe                       Portugal         76
## 15064 2020-03-16    Europe                       Portugal         86
## 15065 2020-03-16    Europe                        Romania         26
## 15066 2020-03-16    Europe                        Romania         27
## 15067 2020-03-16    Europe                         Russia          4
## 15068 2020-03-16    Europe                         Russia         27
## 15069 2020-03-16    Europe                     San Marino          6
## 15070 2020-03-16    Europe                     San Marino          8
## 15071 2020-03-16    Europe                         Serbia          7
## 15072 2020-03-16    Europe                         Serbia          9
## 15073 2020-03-16    Europe                       Slovakia          9
## 15074 2020-03-16    Europe                       Slovakia         17
## 15075 2020-03-16    Europe                       Slovenia         34
## 15076 2020-03-16    Europe                       Slovenia         38
## 15077 2020-03-16    Europe                          Spain       1706
## 15078 2020-03-16    Europe                          Spain       2144
## 15079 2020-03-16    Europe                         Sweden         81
## 15080 2020-03-16    Europe                         Sweden        108
## 15081 2020-03-16    Europe                    Switzerland          0
## 15082 2020-03-16    Europe                    Switzerland        841
## 15083 2020-03-16    Europe                        Ukraine          0
## 15084 2020-03-16    Europe                        Ukraine          4
## 15085 2020-03-16    Europe                 United Kingdom        251
## 15086 2020-03-16    Europe                 United Kingdom        403
## 15087 2020-03-16    Europe                        Vatican          0
## 15088 2020-03-16    Europe                        Vatican          0
## 15089 2020-03-16   Oceania                      Australia         49
## 15090 2020-03-16   Oceania                           Fiji          0
## 15091 2020-03-16   Oceania                    New Zealand          0
## 15092 2020-03-16   Oceania               Papua New Guinea          0
## 15093 2020-03-17    Africa                        Algeria          6
## 15094 2020-03-17    Africa                        Algeria         10
## 15095 2020-03-17    Africa                         Angola          0
## 15096 2020-03-17    Africa                          Benin          0
## 15097 2020-03-17    Africa                          Benin          1
## 15098 2020-03-17    Africa                       Botswana          0
## 15099 2020-03-17    Africa                   Burkina Faso          0
## 15100 2020-03-17    Africa                   Burkina Faso         17
## 15101 2020-03-17    Africa                        Burundi          0
## 15102 2020-03-17    Africa                     Cabo Verde          0
## 15103 2020-03-17    Africa                       Cameroon          0
## 15104 2020-03-17    Africa                       Cameroon          6
## 15105 2020-03-17    Africa       Central African Republic          0
## 15106 2020-03-17    Africa       Central African Republic          0
## 15107 2020-03-17    Africa                           Chad          0
## 15108 2020-03-17    Africa                        Comoros          0
## 15109 2020-03-17    Africa                 Congo Republic          0
## 15110 2020-03-17    Africa                 Congo Republic          0
## 15111 2020-03-17    Africa                  Cote d'Ivoire          1
## 15112 2020-03-17    Africa                  Cote d'Ivoire          4
## 15113 2020-03-17    Africa                       DR Congo          1
## 15114 2020-03-17    Africa                       DR Congo          1
## 15115 2020-03-17    Africa                       Djibouti          0
## 15116 2020-03-17    Africa                          Egypt         16
## 15117 2020-03-17    Africa                          Egypt         46
## 15118 2020-03-17    Africa              Equatorial Guinea          0
## 15119 2020-03-17    Africa              Equatorial Guinea          0
## 15120 2020-03-17    Africa                        Eritrea          0
## 15121 2020-03-17    Africa                       Eswatini          0
## 15122 2020-03-17    Africa                       Eswatini          0
## 15123 2020-03-17    Africa                       Ethiopia          0
## 15124 2020-03-17    Africa                       Ethiopia          1
## 15125 2020-03-17    Africa                          Gabon          0
## 15126 2020-03-17    Africa                          Gabon          0
## 15127 2020-03-17    Africa                         Gambia          1
## 15128 2020-03-17    Africa                          Ghana          1
## 15129 2020-03-17    Africa                          Ghana          4
## 15130 2020-03-17    Africa                         Guinea          0
## 15131 2020-03-17    Africa                         Guinea          0
## 15132 2020-03-17    Africa                  Guinea-Bissau          0
## 15133 2020-03-17    Africa                          Kenya          0
## 15134 2020-03-17    Africa                          Kenya          0
## 15135 2020-03-17    Africa                        Lesotho          0
## 15136 2020-03-17    Africa                        Liberia          0
## 15137 2020-03-17    Africa                        Liberia          1
## 15138 2020-03-17    Africa                          Libya          0
## 15139 2020-03-17    Africa                     Madagascar          0
## 15140 2020-03-17    Africa                         Malawi          0
## 15141 2020-03-17    Africa                           Mali          0
## 15142 2020-03-17    Africa                     Mauritania          0
## 15143 2020-03-17    Africa                     Mauritania          0
## 15144 2020-03-17    Africa                      Mauritius          0
## 15145 2020-03-17    Africa                        Morocco          9
## 15146 2020-03-17    Africa                        Morocco          9
## 15147 2020-03-17    Africa                     Mozambique          0
## 15148 2020-03-17    Africa                        Namibia          0
## 15149 2020-03-17    Africa                        Namibia          0
## 15150 2020-03-17    Africa                          Niger          0
## 15151 2020-03-17    Africa                        Nigeria          0
## 15152 2020-03-17    Africa                        Nigeria          1
## 15153 2020-03-17    Africa                         Rwanda          0
## 15154 2020-03-17    Africa                         Rwanda          2
## 15155 2020-03-17    Africa          Sao Tome and Principe          0
## 15156 2020-03-17    Africa                        Senegal          1
## 15157 2020-03-17    Africa                        Senegal          2
## 15158 2020-03-17    Africa                     Seychelles          1
## 15159 2020-03-17    Africa                     Seychelles          1
## 15160 2020-03-17    Africa                   Sierra Leone          0
## 15161 2020-03-17    Africa                        Somalia          0
## 15162 2020-03-17    Africa                        Somalia          1
## 15163 2020-03-17    Africa                   South Africa          0
## 15164 2020-03-17    Africa                   South Africa         11
## 15165 2020-03-17    Africa                    South Sudan          0
## 15166 2020-03-17    Africa                          Sudan          0
## 15167 2020-03-17    Africa                          Sudan          0
## 15168 2020-03-17    Africa                       Tanzania          0
## 15169 2020-03-17    Africa                       Tanzania          1
## 15170 2020-03-17    Africa                           Togo          0
## 15171 2020-03-17    Africa                           Togo          0
## 15172 2020-03-17    Africa                        Tunisia          2
## 15173 2020-03-17    Africa                        Tunisia          4
## 15174 2020-03-17    Africa                         Uganda          0
## 15175 2020-03-17    Africa                 Western Sahara          0
## 15176 2020-03-17    Africa                         Zambia          0
## 15177 2020-03-17    Africa                       Zimbabwe          0
## 15178 2020-03-17   America            Antigua and Barbuda          0
## 15179 2020-03-17   America                      Argentina          9
## 15180 2020-03-17   America                      Argentina         12
## 15181 2020-03-17   America                        Bahamas          0
## 15182 2020-03-17   America                        Bahamas          0
## 15183 2020-03-17   America                       Barbados          2
## 15184 2020-03-17   America                         Belize          0
## 15185 2020-03-17   America                        Bolivia          0
## 15186 2020-03-17   America                        Bolivia          1
## 15187 2020-03-17   America                         Brazil         34
## 15188 2020-03-17   America                         Brazil        121
## 15189 2020-03-17   America                         Canada        120
## 15190 2020-03-17   America                          Chile         46
## 15191 2020-03-17   America                          Chile         81
## 15192 2020-03-17   America                       Colombia         11
## 15193 2020-03-17   America                       Colombia         12
## 15194 2020-03-17   America                     Costa Rica          6
## 15195 2020-03-17   America                     Costa Rica          6
## 15196 2020-03-17   America                           Cuba          1
## 15197 2020-03-17   America                       Dominica          0
## 15198 2020-03-17   America             Dominican Republic          0
## 15199 2020-03-17   America             Dominican Republic         10
## 15200 2020-03-17   America                        Ecuador         21
## 15201 2020-03-17   America                        Ecuador         21
## 15202 2020-03-17   America                    El Salvador          0
## 15203 2020-03-17   America                        Grenada          0
## 15204 2020-03-17   America                      Guatemala          4
## 15205 2020-03-17   America                      Guatemala          5
## 15206 2020-03-17   America                         Guyana          0
## 15207 2020-03-17   America                         Guyana          3
## 15208 2020-03-17   America                          Haiti          0
## 15209 2020-03-17   America                       Honduras          2
## 15210 2020-03-17   America                       Honduras          2
## 15211 2020-03-17   America                        Jamaica          0
## 15212 2020-03-17   America                        Jamaica          2
## 15213 2020-03-17   America                         Mexico         11
## 15214 2020-03-17   America                         Mexico         29
## 15215 2020-03-17   America                      Nicaragua          0
## 15216 2020-03-17   America                         Panama         14
## 15217 2020-03-17   America                         Panama         26
## 15218 2020-03-17   America                       Paraguay          1
## 15219 2020-03-17   America                       Paraguay          1
## 15220 2020-03-17   America                           Peru         15
## 15221 2020-03-17   America                           Peru         31
## 15222 2020-03-17   America            St. Kitts and Nevis          0
## 15223 2020-03-17   America                      St. Lucia          0
## 15224 2020-03-17   America                      St. Lucia          0
## 15225 2020-03-17   America St. Vincent and the Grenadines          0
## 15226 2020-03-17   America                       Suriname          0
## 15227 2020-03-17   America            Trinidad and Tobago          1
## 15228 2020-03-17   America            Trinidad and Tobago          1
## 15229 2020-03-17   America                  United States        887
## 15230 2020-03-17   America                  United States       1781
## 15231 2020-03-17   America                        Uruguay         21
## 15232 2020-03-17   America                        Uruguay         21
## 15233 2020-03-17   America                      Venezuela         16
## 15234 2020-03-17   America                      Venezuela         18
## 15235 2020-03-17      Asia                    Afghanistan          1
## 15236 2020-03-17      Asia                    Afghanistan          5
## 15237 2020-03-17      Asia                        Bahrain          7
## 15238 2020-03-17      Asia                        Bahrain         14
## 15239 2020-03-17      Asia                     Bangladesh          2
## 15240 2020-03-17      Asia                     Bangladesh          2
## 15241 2020-03-17      Asia                         Bhutan          0
## 15242 2020-03-17      Asia                         Bhutan          0
## 15243 2020-03-17      Asia              Brunei Darussalam          2
## 15244 2020-03-17      Asia              Brunei Darussalam          4
## 15245 2020-03-17      Asia                       Cambodia         12
## 15246 2020-03-17      Asia                       Cambodia         26
## 15247 2020-03-17      Asia                          China         43
## 15248 2020-03-17      Asia                          India         23
## 15249 2020-03-17      Asia                          India         32
## 15250 2020-03-17      Asia                      Indonesia         17
## 15251 2020-03-17      Asia                      Indonesia         38
## 15252 2020-03-17      Asia                           Iran       1053
## 15253 2020-03-17      Asia                           Iran       1178
## 15254 2020-03-17      Asia                           Iraq          0
## 15255 2020-03-17      Asia                           Iraq         30
## 15256 2020-03-17      Asia                         Israel         10
## 15257 2020-03-17      Asia                         Israel         32
## 15258 2020-03-17      Asia                          Japan         10
## 15259 2020-03-17      Asia                          Japan         39
## 15260 2020-03-17      Asia                         Jordan          1
## 15261 2020-03-17      Asia                         Jordan         17
## 15262 2020-03-17      Asia                     Kazakhstan          2
## 15263 2020-03-17      Asia                     Kazakhstan         23
## 15264 2020-03-17      Asia                         Kuwait          7
## 15265 2020-03-17      Asia                         Kuwait         11
## 15266 2020-03-17      Asia                Kyrgyz Republic          0
## 15267 2020-03-17      Asia                           Laos          0
## 15268 2020-03-17      Asia                        Lebanon         10
## 15269 2020-03-17      Asia                        Lebanon         21
## 15270 2020-03-17      Asia                       Malaysia        107
## 15271 2020-03-17      Asia                       Malaysia        125
## 15272 2020-03-17      Asia                       Maldives          0
## 15273 2020-03-17      Asia                       Maldives          0
## 15274 2020-03-17      Asia                       Mongolia          4
## 15275 2020-03-17      Asia                        Myanmar          0
## 15276 2020-03-17      Asia                        Myanmar          0
## 15277 2020-03-17      Asia                          Nepal          0
## 15278 2020-03-17      Asia                          Nepal          0
## 15279 2020-03-17      Asia                           Oman          2
## 15280 2020-03-17      Asia                           Oman          2
## 15281 2020-03-17      Asia                       Pakistan         63
## 15282 2020-03-17      Asia                       Pakistan        156
## 15283 2020-03-17      Asia                      Palestine          1
## 15284 2020-03-17      Asia                      Palestine          1
## 15285 2020-03-17      Asia                    Philippines          2
## 15286 2020-03-17      Asia                    Philippines         45
## 15287 2020-03-17      Asia                          Qatar          0
## 15288 2020-03-17      Asia                          Qatar         38
## 15289 2020-03-17      Asia                   Saudi Arabia         15
## 15290 2020-03-17      Asia                   Saudi Arabia         53
## 15291 2020-03-17      Asia                      Singapore         17
## 15292 2020-03-17      Asia                      Singapore         23
## 15293 2020-03-17      Asia                    South Korea         84
## 15294 2020-03-17      Asia                    South Korea         84
## 15295 2020-03-17      Asia                      Sri Lanka         10
## 15296 2020-03-17      Asia                      Sri Lanka         16
## 15297 2020-03-17      Asia                          Syria          0
## 15298 2020-03-17      Asia                     Tajikistan          0
## 15299 2020-03-17      Asia                       Thailand         30
## 15300 2020-03-17      Asia                       Thailand         63
## 15301 2020-03-17      Asia                    Timor-Leste          0
## 15302 2020-03-17      Asia                         Turkey         29
## 15303 2020-03-17      Asia                         Turkey         29
## 15304 2020-03-17      Asia           United Arab Emirates          0
## 15305 2020-03-17      Asia           United Arab Emirates         12
## 15306 2020-03-17      Asia                     Uzbekistan          2
## 15307 2020-03-17      Asia                     Uzbekistan          4
## 15308 2020-03-17      Asia                        Vietnam          4
## 15309 2020-03-17      Asia                        Vietnam          5
## 15310 2020-03-17      Asia                          Yemen          0
## 15311 2020-03-17      Asia                      not found          8
## 15312 2020-03-17    Europe                        Albania          4
## 15313 2020-03-17    Europe                        Albania          9
## 15314 2020-03-17    Europe                        Andorra          9
## 15315 2020-03-17    Europe                        Andorra         37
## 15316 2020-03-17    Europe                        Armenia         22
## 15317 2020-03-17    Europe                        Armenia         26
## 15318 2020-03-17    Europe                        Austria        156
## 15319 2020-03-17    Europe                        Austria        314
## 15320 2020-03-17    Europe                     Azerbaijan          0
## 15321 2020-03-17    Europe                     Azerbaijan          0
## 15322 2020-03-17    Europe                        Belarus          0
## 15323 2020-03-17    Europe                        Belarus          9
## 15324 2020-03-17    Europe                        Belgium        185
## 15325 2020-03-17    Europe                        Belgium        387
## 15326 2020-03-17    Europe         Bosnia and Herzegovina          1
## 15327 2020-03-17    Europe         Bosnia and Herzegovina          3
## 15328 2020-03-17    Europe                       Bulgaria         11
## 15329 2020-03-17    Europe                       Bulgaria         15
## 15330 2020-03-17    Europe                        Croatia          8
## 15331 2020-03-17    Europe                        Croatia          8
## 15332 2020-03-17    Europe                         Cyprus         10
## 15333 2020-03-17    Europe                         Cyprus         13
## 15334 2020-03-17    Europe                 Czech Republic         46
## 15335 2020-03-17    Europe                 Czech Republic         98
## 15336 2020-03-17    Europe                        Denmark         57
## 15337 2020-03-17    Europe                        Denmark         63
## 15338 2020-03-17    Europe                        Estonia         20
## 15339 2020-03-17    Europe                        Estonia         34
## 15340 2020-03-17    Europe                        Finland          5
## 15341 2020-03-17    Europe                        Finland         44
## 15342 2020-03-17    Europe                         France       1019
## 15343 2020-03-17    Europe                         France       1210
## 15344 2020-03-17    Europe                        Georgia          1
## 15345 2020-03-17    Europe                        Georgia          3
## 15346 2020-03-17    Europe                        Germany       1174
## 15347 2020-03-17    Europe                        Germany       1985
## 15348 2020-03-17    Europe                         Greece         21
## 15349 2020-03-17    Europe                         Greece         56
## 15350 2020-03-17    Europe                        Hungary         11
## 15351 2020-03-17    Europe                        Hungary         11
## 15352 2020-03-17    Europe                        Iceland         21
## 15353 2020-03-17    Europe                        Iceland         40
## 15354 2020-03-17    Europe                        Ireland         54
## 15355 2020-03-17    Europe                        Ireland         54
## 15356 2020-03-17    Europe                          Italy       3526
## 15357 2020-03-17    Europe                          Italy       4000
## 15358 2020-03-17    Europe                         Kosovo          0
## 15359 2020-03-17    Europe                         Kosovo          0
## 15360 2020-03-17    Europe                         Latvia          5
## 15361 2020-03-17    Europe                         Latvia         15
## 15362 2020-03-17    Europe                  Liechtenstein          0
## 15363 2020-03-17    Europe                  Liechtenstein          3
## 15364 2020-03-17    Europe                      Lithuania          3
## 15365 2020-03-17    Europe                      Lithuania          8
## 15366 2020-03-17    Europe                     Luxembourg          4
## 15367 2020-03-17    Europe                     Luxembourg         63
## 15368 2020-03-17    Europe                      Macedonia          6
## 15369 2020-03-17    Europe                      Macedonia          8
## 15370 2020-03-17    Europe                          Malta          8
## 15371 2020-03-17    Europe                          Malta          8
## 15372 2020-03-17    Europe                        Moldova          6
## 15373 2020-03-17    Europe                        Moldova          7
## 15374 2020-03-17    Europe                         Monaco          0
## 15375 2020-03-17    Europe                         Monaco          2
## 15376 2020-03-17    Europe                     Montenegro          2
## 15377 2020-03-17    Europe                    Netherlands        278
## 15378 2020-03-17    Europe                    Netherlands        292
## 15379 2020-03-17    Europe                         Norway         92
## 15380 2020-03-17    Europe                         Norway        130
## 15381 2020-03-17    Europe                         Poland         52
## 15382 2020-03-17    Europe                         Poland         61
## 15383 2020-03-17    Europe                       Portugal         86
## 15384 2020-03-17    Europe                       Portugal        117
## 15385 2020-03-17    Europe                        Romania         26
## 15386 2020-03-17    Europe                        Romania         45
## 15387 2020-03-17    Europe                         Russia         24
## 15388 2020-03-17    Europe                         Russia         30
## 15389 2020-03-17    Europe                     San Marino          0
## 15390 2020-03-17    Europe                     San Marino          4
## 15391 2020-03-17    Europe                         Serbia          2
## 15392 2020-03-17    Europe                         Serbia         10
## 15393 2020-03-17    Europe                       Slovakia          9
## 15394 2020-03-17    Europe                       Slovakia         23
## 15395 2020-03-17    Europe                       Slovenia         22
## 15396 2020-03-17    Europe                       Slovenia         34
## 15397 2020-03-17    Europe                          Spain       1806
## 15398 2020-03-17    Europe                          Spain       2503
## 15399 2020-03-17    Europe                         Sweden         87
## 15400 2020-03-17    Europe                         Sweden         89
## 15401 2020-03-17    Europe                    Switzerland          0
## 15402 2020-03-17    Europe                    Switzerland        500
## 15403 2020-03-17    Europe                        Ukraine          2
## 15404 2020-03-17    Europe                        Ukraine          7
## 15405 2020-03-17    Europe                 United Kingdom        152
## 15406 2020-03-17    Europe                 United Kingdom        407
## 15407 2020-03-17    Europe                        Vatican          0
## 15408 2020-03-17    Europe                        Vatican          0
## 15409 2020-03-17   Oceania                      Australia         77
## 15410 2020-03-17   Oceania                           Fiji          0
## 15411 2020-03-17   Oceania                    New Zealand          4
## 15412 2020-03-17   Oceania               Papua New Guinea          0
## 15413 2020-03-18    Africa                        Algeria          2
## 15414 2020-03-18    Africa                        Algeria         14
## 15415 2020-03-18    Africa                         Angola          0
## 15416 2020-03-18    Africa                          Benin          0
## 15417 2020-03-18    Africa                          Benin          1
## 15418 2020-03-18    Africa                       Botswana          0
## 15419 2020-03-18    Africa                   Burkina Faso          0
## 15420 2020-03-18    Africa                   Burkina Faso          5
## 15421 2020-03-18    Africa                        Burundi          0
## 15422 2020-03-18    Africa                     Cabo Verde          0
## 15423 2020-03-18    Africa                       Cameroon          0
## 15424 2020-03-18    Africa                       Cameroon          6
## 15425 2020-03-18    Africa       Central African Republic          0
## 15426 2020-03-18    Africa       Central African Republic          0
## 15427 2020-03-18    Africa                           Chad          0
## 15428 2020-03-18    Africa                        Comoros          0
## 15429 2020-03-18    Africa                 Congo Republic          0
## 15430 2020-03-18    Africa                 Congo Republic          0
## 15431 2020-03-18    Africa                  Cote d'Ivoire          0
## 15432 2020-03-18    Africa                  Cote d'Ivoire          1
## 15433 2020-03-18    Africa                       DR Congo          0
## 15434 2020-03-18    Africa                       DR Congo          1
## 15435 2020-03-18    Africa                       Djibouti          1
## 15436 2020-03-18    Africa                          Egypt          0
## 15437 2020-03-18    Africa                          Egypt         40
## 15438 2020-03-18    Africa              Equatorial Guinea          0
## 15439 2020-03-18    Africa              Equatorial Guinea          3
## 15440 2020-03-18    Africa                        Eritrea          0
## 15441 2020-03-18    Africa                       Eswatini          0
## 15442 2020-03-18    Africa                       Eswatini          0
## 15443 2020-03-18    Africa                       Ethiopia          0
## 15444 2020-03-18    Africa                       Ethiopia          1
## 15445 2020-03-18    Africa                          Gabon          0
## 15446 2020-03-18    Africa                          Gabon          0
## 15447 2020-03-18    Africa                         Gambia          0
## 15448 2020-03-18    Africa                         Gambia          1
## 15449 2020-03-18    Africa                          Ghana          0
## 15450 2020-03-18    Africa                          Ghana          0
## 15451 2020-03-18    Africa                         Guinea          0
## 15452 2020-03-18    Africa                         Guinea          0
## 15453 2020-03-18    Africa                  Guinea-Bissau          0
## 15454 2020-03-18    Africa                          Kenya          0
## 15455 2020-03-18    Africa                          Kenya          1
## 15456 2020-03-18    Africa                        Lesotho          0
## 15457 2020-03-18    Africa                        Liberia          1
## 15458 2020-03-18    Africa                        Liberia          1
## 15459 2020-03-18    Africa                          Libya          0
## 15460 2020-03-18    Africa                     Madagascar          0
## 15461 2020-03-18    Africa                         Malawi          0
## 15462 2020-03-18    Africa                           Mali          0
## 15463 2020-03-18    Africa                     Mauritania          0
## 15464 2020-03-18    Africa                     Mauritania          0
## 15465 2020-03-18    Africa                      Mauritius          3
## 15466 2020-03-18    Africa                        Morocco          7
## 15467 2020-03-18    Africa                        Morocco         11
## 15468 2020-03-18    Africa                     Mozambique          0
## 15469 2020-03-18    Africa                        Namibia          0
## 15470 2020-03-18    Africa                        Namibia          0
## 15471 2020-03-18    Africa                          Niger          0
## 15472 2020-03-18    Africa                        Nigeria          1
## 15473 2020-03-18    Africa                        Nigeria          5
## 15474 2020-03-18    Africa                         Rwanda          1
## 15475 2020-03-18    Africa                         Rwanda          2
## 15476 2020-03-18    Africa          Sao Tome and Principe          0
## 15477 2020-03-18    Africa                        Senegal          4
## 15478 2020-03-18    Africa                        Senegal          5
## 15479 2020-03-18    Africa                     Seychelles          0
## 15480 2020-03-18    Africa                     Seychelles          0
## 15481 2020-03-18    Africa                   Sierra Leone          0
## 15482 2020-03-18    Africa                        Somalia          0
## 15483 2020-03-18    Africa                        Somalia          0
## 15484 2020-03-18    Africa                   South Africa         23
## 15485 2020-03-18    Africa                   South Africa         54
## 15486 2020-03-18    Africa                    South Sudan          0
## 15487 2020-03-18    Africa                          Sudan          0
## 15488 2020-03-18    Africa                          Sudan          1
## 15489 2020-03-18    Africa                       Tanzania          0
## 15490 2020-03-18    Africa                       Tanzania          2
## 15491 2020-03-18    Africa                           Togo          0
## 15492 2020-03-18    Africa                           Togo          0
## 15493 2020-03-18    Africa                        Tunisia          4
## 15494 2020-03-18    Africa                        Tunisia          5
## 15495 2020-03-18    Africa                         Uganda          0
## 15496 2020-03-18    Africa                 Western Sahara          0
## 15497 2020-03-18    Africa                         Zambia          2
## 15498 2020-03-18    Africa                       Zimbabwe          0
## 15499 2020-03-18   America            Antigua and Barbuda          0
## 15500 2020-03-18   America                      Argentina         11
## 15501 2020-03-18   America                      Argentina         14
## 15502 2020-03-18   America                        Bahamas          0
## 15503 2020-03-18   America                       Barbados          0
## 15504 2020-03-18   America                       Barbados          1
## 15505 2020-03-18   America                         Belize          0
## 15506 2020-03-18   America                        Bolivia          1
## 15507 2020-03-18   America                        Bolivia          1
## 15508 2020-03-18   America                         Brazil         51
## 15509 2020-03-18   America                         Brazil         57
## 15510 2020-03-18   America                         Canada        145
## 15511 2020-03-18   America                          Chile         37
## 15512 2020-03-18   America                          Chile         45
## 15513 2020-03-18   America                       Colombia          8
## 15514 2020-03-18   America                       Colombia         28
## 15515 2020-03-18   America                     Costa Rica          9
## 15516 2020-03-18   America                     Costa Rica          9
## 15517 2020-03-18   America                           Cuba          2
## 15518 2020-03-18   America                           Cuba          3
## 15519 2020-03-18   America                       Dominica          0
## 15520 2020-03-18   America             Dominican Republic          0
## 15521 2020-03-18   America             Dominican Republic          0
## 15522 2020-03-18   America                        Ecuador         53
## 15523 2020-03-18   America                        Ecuador         53
## 15524 2020-03-18   America                    El Salvador          0
## 15525 2020-03-18   America                        Grenada          0
## 15526 2020-03-18   America                      Guatemala          0
## 15527 2020-03-18   America                      Guatemala          0
## 15528 2020-03-18   America                         Guyana          0
## 15529 2020-03-18   America                         Guyana          0
## 15530 2020-03-18   America                          Haiti          0
## 15531 2020-03-18   America                       Honduras          1
## 15532 2020-03-18   America                       Honduras          1
## 15533 2020-03-18   America                        Jamaica          1
## 15534 2020-03-18   America                        Jamaica          3
## 15535 2020-03-18   America                         Mexico         11
## 15536 2020-03-18   America                         Mexico         25
## 15537 2020-03-18   America                      Nicaragua          0
## 15538 2020-03-18   America                         Panama         17
## 15539 2020-03-18   America                         Panama         17
## 15540 2020-03-18   America                       Paraguay          2
## 15541 2020-03-18   America                       Paraguay          2
## 15542 2020-03-18   America                           Peru         28
## 15543 2020-03-18   America                           Peru         31
## 15544 2020-03-18   America            St. Kitts and Nevis          0
## 15545 2020-03-18   America                      St. Lucia          0
## 15546 2020-03-18   America                      St. Lucia          0
## 15547 2020-03-18   America St. Vincent and the Grenadines          0
## 15548 2020-03-18   America                       Suriname          0
## 15549 2020-03-18   America            Trinidad and Tobago          2
## 15550 2020-03-18   America            Trinidad and Tobago          2
## 15551 2020-03-18   America                  United States       1766
## 15552 2020-03-18   America                  United States       2773
## 15553 2020-03-18   America                        Uruguay         21
## 15554 2020-03-18   America                        Uruguay         29
## 15555 2020-03-18   America                      Venezuela          0
## 15556 2020-03-18   America                      Venezuela          3
## 15557 2020-03-18      Asia                    Afghanistan          0
## 15558 2020-03-18      Asia                    Afghanistan          1
## 15559 2020-03-18      Asia                        Bahrain         16
## 15560 2020-03-18      Asia                        Bahrain         28
## 15561 2020-03-18      Asia                     Bangladesh          3
## 15562 2020-03-18      Asia                     Bangladesh          4
## 15563 2020-03-18      Asia                         Bhutan          0
## 15564 2020-03-18      Asia                         Bhutan          0
## 15565 2020-03-18      Asia              Brunei Darussalam          2
## 15566 2020-03-18      Asia              Brunei Darussalam         12
## 15567 2020-03-18      Asia                       Cambodia          0
## 15568 2020-03-18      Asia                       Cambodia          2
## 15569 2020-03-18      Asia                          China         23
## 15570 2020-03-18      Asia                          India         12
## 15571 2020-03-18      Asia                          India         14
## 15572 2020-03-18      Asia                      Indonesia         38
## 15573 2020-03-18      Asia                      Indonesia         55
## 15574 2020-03-18      Asia                           Iran       1178
## 15575 2020-03-18      Asia                           Iran       1192
## 15576 2020-03-18      Asia                           Iraq         10
## 15577 2020-03-18      Asia                           Iraq         30
## 15578 2020-03-18      Asia                         Israel         54
## 15579 2020-03-18      Asia                         Israel        167
## 15580 2020-03-18      Asia                          Japan          5
## 15581 2020-03-18      Asia                          Japan         11
## 15582 2020-03-18      Asia                         Jordan         18
## 15583 2020-03-18      Asia                         Jordan         19
## 15584 2020-03-18      Asia                     Kazakhstan          2
## 15585 2020-03-18      Asia                     Kazakhstan         22
## 15586 2020-03-18      Asia                         Kuwait          7
## 15587 2020-03-18      Asia                         Kuwait         12
## 15588 2020-03-18      Asia                Kyrgyz Republic          3
## 15589 2020-03-18      Asia                           Laos          0
## 15590 2020-03-18      Asia                        Lebanon          0
## 15591 2020-03-18      Asia                        Lebanon         13
## 15592 2020-03-18      Asia                       Malaysia        117
## 15593 2020-03-18      Asia                       Malaysia        120
## 15594 2020-03-18      Asia                       Maldives          0
## 15595 2020-03-18      Asia                       Maldives          0
## 15596 2020-03-18      Asia                       Mongolia          1
## 15597 2020-03-18      Asia                       Mongolia          3
## 15598 2020-03-18      Asia                        Myanmar          0
## 15599 2020-03-18      Asia                          Nepal          0
## 15600 2020-03-18      Asia                          Nepal          0
## 15601 2020-03-18      Asia                           Oman          0
## 15602 2020-03-18      Asia                           Oman         15
## 15603 2020-03-18      Asia                       Pakistan          0
## 15604 2020-03-18      Asia                       Pakistan        155
## 15605 2020-03-18      Asia                      Palestine          2
## 15606 2020-03-18      Asia                      Palestine          2
## 15607 2020-03-18      Asia                    Philippines         15
## 15608 2020-03-18      Asia                    Philippines         45
## 15609 2020-03-18      Asia                          Qatar          3
## 15610 2020-03-18      Asia                          Qatar         13
## 15611 2020-03-18      Asia                   Saudi Arabia          0
## 15612 2020-03-18      Asia                   Saudi Arabia          0
## 15613 2020-03-18      Asia                      Singapore         23
## 15614 2020-03-18      Asia                      Singapore         47
## 15615 2020-03-18      Asia                    South Korea         93
## 15616 2020-03-18      Asia                    South Korea         93
## 15617 2020-03-18      Asia                      Sri Lanka          7
## 15618 2020-03-18      Asia                      Sri Lanka         13
## 15619 2020-03-18      Asia                          Syria          0
## 15620 2020-03-18      Asia                     Tajikistan          0
## 15621 2020-03-18      Asia                       Thailand          0
## 15622 2020-03-18      Asia                       Thailand         35
## 15623 2020-03-18      Asia                    Timor-Leste          0
## 15624 2020-03-18      Asia                         Turkey         51
## 15625 2020-03-18      Asia                         Turkey         51
## 15626 2020-03-18      Asia           United Arab Emirates         15
## 15627 2020-03-18      Asia           United Arab Emirates         15
## 15628 2020-03-18      Asia                     Uzbekistan          5
## 15629 2020-03-18      Asia                     Uzbekistan          8
## 15630 2020-03-18      Asia                        Vietnam          7
## 15631 2020-03-18      Asia                        Vietnam          9
## 15632 2020-03-18      Asia                          Yemen          0
## 15633 2020-03-18      Asia                      not found         10
## 15634 2020-03-18    Europe                        Albania          4
## 15635 2020-03-18    Europe                        Albania          4
## 15636 2020-03-18    Europe                        Andorra          0
## 15637 2020-03-18    Europe                        Andorra          0
## 15638 2020-03-18    Europe                        Armenia          6
## 15639 2020-03-18    Europe                        Armenia         26
## 15640 2020-03-18    Europe                        Austria        314
## 15641 2020-03-18    Europe                        Austria        316
## 15642 2020-03-18    Europe                     Azerbaijan          0
## 15643 2020-03-18    Europe                     Azerbaijan          9
## 15644 2020-03-18    Europe                        Belarus          0
## 15645 2020-03-18    Europe                        Belarus         15
## 15646 2020-03-18    Europe                        Belgium        243
## 15647 2020-03-18    Europe                        Belgium        422
## 15648 2020-03-18    Europe         Bosnia and Herzegovina          0
## 15649 2020-03-18    Europe         Bosnia and Herzegovina         12
## 15650 2020-03-18    Europe                       Bulgaria         19
## 15651 2020-03-18    Europe                       Bulgaria         25
## 15652 2020-03-18    Europe                        Croatia         13
## 15653 2020-03-18    Europe                        Croatia         16
## 15654 2020-03-18    Europe                         Cyprus          0
## 15655 2020-03-18    Europe                         Cyprus          3
## 15656 2020-03-18    Europe                 Czech Republic         68
## 15657 2020-03-18    Europe                 Czech Republic         90
## 15658 2020-03-18    Europe                        Denmark         80
## 15659 2020-03-18    Europe                        Denmark         92
## 15660 2020-03-18    Europe                        Estonia         20
## 15661 2020-03-18    Europe                        Estonia         33
## 15662 2020-03-18    Europe                        Finland         15
## 15663 2020-03-18    Europe                        Finland         47
## 15664 2020-03-18    Europe                         France       1097
## 15665 2020-03-18    Europe                         France       1391
## 15666 2020-03-18    Europe                        Georgia          1
## 15667 2020-03-18    Europe                        Georgia          4
## 15668 2020-03-18    Europe                        Germany       1144
## 15669 2020-03-18    Europe                        Germany       3070
## 15670 2020-03-18    Europe                         Greece         31
## 15671 2020-03-18    Europe                         Greece         35
## 15672 2020-03-18    Europe                        Hungary          0
## 15673 2020-03-18    Europe                        Hungary          8
## 15674 2020-03-18    Europe                        Iceland         30
## 15675 2020-03-18    Europe                        Iceland         48
## 15676 2020-03-18    Europe                        Ireland         69
## 15677 2020-03-18    Europe                        Ireland         69
## 15678 2020-03-18    Europe                          Italy       3526
## 15679 2020-03-18    Europe                          Italy       4207
## 15680 2020-03-18    Europe                         Kosovo          0
## 15681 2020-03-18    Europe                         Kosovo         17
## 15682 2020-03-18    Europe                         Latvia         22
## 15683 2020-03-18    Europe                         Latvia         25
## 15684 2020-03-18    Europe                  Liechtenstein          0
## 15685 2020-03-18    Europe                  Liechtenstein         21
## 15686 2020-03-18    Europe                      Lithuania          2
## 15687 2020-03-18    Europe                      Lithuania          8
## 15688 2020-03-18    Europe                     Luxembourg         59
## 15689 2020-03-18    Europe                     Luxembourg         63
## 15690 2020-03-18    Europe                      Macedonia          9
## 15691 2020-03-18    Europe                      Macedonia         12
## 15692 2020-03-18    Europe                          Malta          0
## 15693 2020-03-18    Europe                          Malta         10
## 15694 2020-03-18    Europe                        Moldova          0
## 15695 2020-03-18    Europe                        Moldova          1
## 15696 2020-03-18    Europe                         Monaco          0
## 15697 2020-03-18    Europe                         Monaco          0
## 15698 2020-03-18    Europe                     Montenegro          0
## 15699 2020-03-18    Europe                     Montenegro          2
## 15700 2020-03-18    Europe                    Netherlands        292
## 15701 2020-03-18    Europe                    Netherlands        346
## 15702 2020-03-18    Europe                         Norway         87
## 15703 2020-03-18    Europe                         Norway        139
## 15704 2020-03-18    Europe                         Poland         13
## 15705 2020-03-18    Europe                         Poland         61
## 15706 2020-03-18    Europe                       Portugal          0
## 15707 2020-03-18    Europe                       Portugal        117
## 15708 2020-03-18    Europe                        Romania         33
## 15709 2020-03-18    Europe                        Romania         76
## 15710 2020-03-18    Europe                         Russia         21
## 15711 2020-03-18    Europe                         Russia         33
## 15712 2020-03-18    Europe                     San Marino          2
## 15713 2020-03-18    Europe                     San Marino         10
## 15714 2020-03-18    Europe                         Serbia         15
## 15715 2020-03-18    Europe                         Serbia         18
## 15716 2020-03-18    Europe                       Slovakia         13
## 15717 2020-03-18    Europe                       Slovakia         33
## 15718 2020-03-18    Europe                       Slovenia          0
## 15719 2020-03-18    Europe                       Slovenia         22
## 15720 2020-03-18    Europe                          Spain       2162
## 15721 2020-03-18    Europe                          Spain       3694
## 15722 2020-03-18    Europe                         Sweden         46
## 15723 2020-03-18    Europe                         Sweden         89
## 15724 2020-03-18    Europe                    Switzerland        328
## 15725 2020-03-18    Europe                    Switzerland        450
## 15726 2020-03-18    Europe                        Ukraine          0
## 15727 2020-03-18    Europe                        Ukraine          9
## 15728 2020-03-18    Europe                 United Kingdom        407
## 15729 2020-03-18    Europe                 United Kingdom        676
## 15730 2020-03-18    Europe                        Vatican          0
## 15731 2020-03-18    Europe                        Vatican          0
## 15732 2020-03-18   Oceania                      Australia         79
## 15733 2020-03-18   Oceania                           Fiji          0
## 15734 2020-03-18   Oceania                    New Zealand          8
## 15735 2020-03-18   Oceania                    New Zealand         12
## 15736 2020-03-18   Oceania               Papua New Guinea          0
## 15737 2020-03-19    Africa                        Algeria         12
## 15738 2020-03-19    Africa                        Algeria         13
## 15739 2020-03-19    Africa                         Angola          0
## 15740 2020-03-19    Africa                          Benin          0
## 15741 2020-03-19    Africa                          Benin          0
## 15742 2020-03-19    Africa                       Botswana          0
## 15743 2020-03-19    Africa                   Burkina Faso          6
## 15744 2020-03-19    Africa                   Burkina Faso         13
## 15745 2020-03-19    Africa                        Burundi          0
## 15746 2020-03-19    Africa                     Cabo Verde          0
## 15747 2020-03-19    Africa                       Cameroon          0
## 15748 2020-03-19    Africa                       Cameroon          3
## 15749 2020-03-19    Africa       Central African Republic          0
## 15750 2020-03-19    Africa       Central African Republic          0
## 15751 2020-03-19    Africa                           Chad          1
## 15752 2020-03-19    Africa                        Comoros          0
## 15753 2020-03-19    Africa                 Congo Republic          2
## 15754 2020-03-19    Africa                 Congo Republic          2
## 15755 2020-03-19    Africa                  Cote d'Ivoire          1
## 15756 2020-03-19    Africa                  Cote d'Ivoire          3
## 15757 2020-03-19    Africa                       DR Congo         10
## 15758 2020-03-19    Africa                       DR Congo         11
## 15759 2020-03-19    Africa                       Djibouti          0
## 15760 2020-03-19    Africa                       Djibouti          1
## 15761 2020-03-19    Africa                          Egypt         30
## 15762 2020-03-19    Africa                          Egypt         60
## 15763 2020-03-19    Africa              Equatorial Guinea          2
## 15764 2020-03-19    Africa              Equatorial Guinea          2
## 15765 2020-03-19    Africa                        Eritrea          0
## 15766 2020-03-19    Africa                       Eswatini          0
## 15767 2020-03-19    Africa                       Eswatini          0
## 15768 2020-03-19    Africa                       Ethiopia          0
## 15769 2020-03-19    Africa                       Ethiopia          1
## 15770 2020-03-19    Africa                          Gabon          0
## 15771 2020-03-19    Africa                          Gabon          2
## 15772 2020-03-19    Africa                         Gambia          0
## 15773 2020-03-19    Africa                         Gambia          0
## 15774 2020-03-19    Africa                          Ghana          1
## 15775 2020-03-19    Africa                          Ghana          4
## 15776 2020-03-19    Africa                         Guinea          0
## 15777 2020-03-19    Africa                         Guinea          0
## 15778 2020-03-19    Africa                  Guinea-Bissau          0
## 15779 2020-03-19    Africa                          Kenya          3
## 15780 2020-03-19    Africa                          Kenya          4
## 15781 2020-03-19    Africa                        Lesotho          0
## 15782 2020-03-19    Africa                        Liberia          0
## 15783 2020-03-19    Africa                        Liberia          0
## 15784 2020-03-19    Africa                          Libya          0
## 15785 2020-03-19    Africa                     Madagascar          0
## 15786 2020-03-19    Africa                         Malawi          0
## 15787 2020-03-19    Africa                           Mali          0
## 15788 2020-03-19    Africa                     Mauritania          0
## 15789 2020-03-19    Africa                     Mauritania          1
## 15790 2020-03-19    Africa                      Mauritius          0
## 15791 2020-03-19    Africa                        Morocco         10
## 15792 2020-03-19    Africa                        Morocco         14
## 15793 2020-03-19    Africa                     Mozambique          0
## 15794 2020-03-19    Africa                        Namibia          0
## 15795 2020-03-19    Africa                        Namibia          1
## 15796 2020-03-19    Africa                          Niger          0
## 15797 2020-03-19    Africa                        Nigeria          0
## 15798 2020-03-19    Africa                        Nigeria          5
## 15799 2020-03-19    Africa                         Rwanda          0
## 15800 2020-03-19    Africa                         Rwanda          4
## 15801 2020-03-19    Africa          Sao Tome and Principe          0
## 15802 2020-03-19    Africa                        Senegal          0
## 15803 2020-03-19    Africa                        Senegal          5
## 15804 2020-03-19    Africa                     Seychelles          2
## 15805 2020-03-19    Africa                     Seychelles          2
## 15806 2020-03-19    Africa                   Sierra Leone          0
## 15807 2020-03-19    Africa                        Somalia          0
## 15808 2020-03-19    Africa                        Somalia          0
## 15809 2020-03-19    Africa                   South Africa         31
## 15810 2020-03-19    Africa                   South Africa         34
## 15811 2020-03-19    Africa                    South Sudan          0
## 15812 2020-03-19    Africa                          Sudan          0
## 15813 2020-03-19    Africa                          Sudan          1
## 15814 2020-03-19    Africa                       Tanzania          2
## 15815 2020-03-19    Africa                       Tanzania          3
## 15816 2020-03-19    Africa                           Togo          0
## 15817 2020-03-19    Africa                           Togo          0
## 15818 2020-03-19    Africa                        Tunisia          5
## 15819 2020-03-19    Africa                        Tunisia         10
## 15820 2020-03-19    Africa                         Uganda          0
## 15821 2020-03-19    Africa                 Western Sahara          0
## 15822 2020-03-19    Africa                         Zambia          0
## 15823 2020-03-19    Africa                         Zambia          2
## 15824 2020-03-19    Africa                       Zimbabwe          0
## 15825 2020-03-19   America            Antigua and Barbuda          0
## 15826 2020-03-19   America                      Argentina         18
## 15827 2020-03-19   America                      Argentina         18
## 15828 2020-03-19   America                        Bahamas          2
## 15829 2020-03-19   America                       Barbados          0
## 15830 2020-03-19   America                       Barbados          3
## 15831 2020-03-19   America                         Belize          0
## 15832 2020-03-19   America                        Bolivia          0
## 15833 2020-03-19   America                        Bolivia          0
## 15834 2020-03-19   America                         Brazil        137
## 15835 2020-03-19   America                         Brazil        249
## 15836 2020-03-19   America                         Canada        121
## 15837 2020-03-19   America                          Chile          0
## 15838 2020-03-19   America                          Chile         37
## 15839 2020-03-19   America                       Colombia          9
## 15840 2020-03-19   America                       Colombia         37
## 15841 2020-03-19   America                     Costa Rica         19
## 15842 2020-03-19   America                     Costa Rica         19
## 15843 2020-03-19   America                           Cuba          4
## 15844 2020-03-19   America                           Cuba          4
## 15845 2020-03-19   America                       Dominica          0
## 15846 2020-03-19   America             Dominican Republic         10
## 15847 2020-03-19   America             Dominican Republic         13
## 15848 2020-03-19   America                        Ecuador         57
## 15849 2020-03-19   America                        Ecuador         88
## 15850 2020-03-19   America                    El Salvador          1
## 15851 2020-03-19   America                    El Salvador          1
## 15852 2020-03-19   America                        Grenada          0
## 15853 2020-03-19   America                      Guatemala          2
## 15854 2020-03-19   America                      Guatemala          3
## 15855 2020-03-19   America                         Guyana          0
## 15856 2020-03-19   America                         Guyana          1
## 15857 2020-03-19   America                          Haiti          0
## 15858 2020-03-19   America                       Honduras          3
## 15859 2020-03-19   America                       Honduras          3
## 15860 2020-03-19   America                        Jamaica          2
## 15861 2020-03-19   America                        Jamaica          2
## 15862 2020-03-19   America                         Mexico         25
## 15863 2020-03-19   America                         Mexico         46
## 15864 2020-03-19   America                      Nicaragua          1
## 15865 2020-03-19   America                      Nicaragua          1
## 15866 2020-03-19   America                         Panama         23
## 15867 2020-03-19   America                         Panama         23
## 15868 2020-03-19   America                       Paraguay          0
## 15869 2020-03-19   America                       Paraguay          0
## 15870 2020-03-19   America                           Peru         28
## 15871 2020-03-19   America                           Peru         89
## 15872 2020-03-19   America            St. Kitts and Nevis          0
## 15873 2020-03-19   America                      St. Lucia          0
## 15874 2020-03-19   America                      St. Lucia          0
## 15875 2020-03-19   America St. Vincent and the Grenadines          0
## 15876 2020-03-19   America                       Suriname          0
## 15877 2020-03-19   America            Trinidad and Tobago          2
## 15878 2020-03-19   America            Trinidad and Tobago          2
## 15879 2020-03-19   America                  United States       2988
## 15880 2020-03-19   America                  United States       5239
## 15881 2020-03-19   America                        Uruguay         15
## 15882 2020-03-19   America                        Uruguay         29
## 15883 2020-03-19   America                      Venezuela          0
## 15884 2020-03-19   America                      Venezuela          6
## 15885 2020-03-19      Asia                    Afghanistan          0
## 15886 2020-03-19      Asia                    Afghanistan          0
## 15887 2020-03-19      Asia                        Bahrain         19
## 15888 2020-03-19      Asia                        Bahrain         22
## 15889 2020-03-19      Asia                     Bangladesh          2
## 15890 2020-03-19      Asia                     Bangladesh          3
## 15891 2020-03-19      Asia                         Bhutan          0
## 15892 2020-03-19      Asia                         Bhutan          0
## 15893 2020-03-19      Asia              Brunei Darussalam          7
## 15894 2020-03-19      Asia              Brunei Darussalam         12
## 15895 2020-03-19      Asia                       Cambodia          0
## 15896 2020-03-19      Asia                       Cambodia          2
## 15897 2020-03-19      Asia                          China         44
## 15898 2020-03-19      Asia                          India         28
## 15899 2020-03-19      Asia                          India         38
## 15900 2020-03-19      Asia                      Indonesia          0
## 15901 2020-03-19      Asia                      Indonesia         84
## 15902 2020-03-19      Asia                           Iran       1046
## 15903 2020-03-19      Asia                           Iran       1192
## 15904 2020-03-19      Asia                           Iraq         10
## 15905 2020-03-19      Asia                           Iraq         28
## 15906 2020-03-19      Asia                         Israel          6
## 15907 2020-03-19      Asia                         Israel        123
## 15908 2020-03-19      Asia                          Japan         35
## 15909 2020-03-19      Asia                          Japan         44
## 15910 2020-03-19      Asia                         Jordan         17
## 15911 2020-03-19      Asia                         Jordan         17
## 15912 2020-03-19      Asia                     Kazakhstan          4
## 15913 2020-03-19      Asia                     Kazakhstan          9
## 15914 2020-03-19      Asia                         Kuwait          6
## 15915 2020-03-19      Asia                         Kuwait         12
## 15916 2020-03-19      Asia                Kyrgyz Republic          0
## 15917 2020-03-19      Asia                Kyrgyz Republic          3
## 15918 2020-03-19      Asia                           Laos          0
## 15919 2020-03-19      Asia                        Lebanon         13
## 15920 2020-03-19      Asia                        Lebanon         24
## 15921 2020-03-19      Asia                       Malaysia        110
## 15922 2020-03-19      Asia                       Malaysia        117
## 15923 2020-03-19      Asia                       Maldives          0
## 15924 2020-03-19      Asia                       Maldives          0
## 15925 2020-03-19      Asia                       Mongolia          0
## 15926 2020-03-19      Asia                       Mongolia          1
## 15927 2020-03-19      Asia                        Myanmar          0
## 15928 2020-03-19      Asia                          Nepal          0
## 15929 2020-03-19      Asia                          Nepal          0
## 15930 2020-03-19      Asia                           Oman          9
## 15931 2020-03-19      Asia                           Oman         15
## 15932 2020-03-19      Asia                       Pakistan         47
## 15933 2020-03-19      Asia                       Pakistan        115
## 15934 2020-03-19      Asia                      Palestine          3
## 15935 2020-03-19      Asia                      Palestine          3
## 15936 2020-03-19      Asia                    Philippines         15
## 15937 2020-03-19      Asia                    Philippines         15
## 15938 2020-03-19      Asia                          Qatar          8
## 15939 2020-03-19      Asia                          Qatar         10
## 15940 2020-03-19      Asia                   Saudi Arabia         38
## 15941 2020-03-19      Asia                   Saudi Arabia        103
## 15942 2020-03-19      Asia                      Singapore         32
## 15943 2020-03-19      Asia                      Singapore         47
## 15944 2020-03-19      Asia                    South Korea        152
## 15945 2020-03-19      Asia                    South Korea        152
## 15946 2020-03-19      Asia                      Sri Lanka          0
## 15947 2020-03-19      Asia                      Sri Lanka          9
## 15948 2020-03-19      Asia                          Syria          0
## 15949 2020-03-19      Asia                     Tajikistan          0
## 15950 2020-03-19      Asia                       Thailand          0
## 15951 2020-03-19      Asia                       Thailand         60
## 15952 2020-03-19      Asia                    Timor-Leste          0
## 15953 2020-03-19      Asia                         Turkey         93
## 15954 2020-03-19      Asia                         Turkey         94
## 15955 2020-03-19      Asia           United Arab Emirates          0
## 15956 2020-03-19      Asia           United Arab Emirates         27
## 15957 2020-03-19      Asia                     Uzbekistan          7
## 15958 2020-03-19      Asia                     Uzbekistan          8
## 15959 2020-03-19      Asia                        Vietnam          8
## 15960 2020-03-19      Asia                        Vietnam         10
## 15961 2020-03-19      Asia                          Yemen          0
## 15962 2020-03-19      Asia                      not found         31
## 15963 2020-03-19    Europe                        Albania          4
## 15964 2020-03-19    Europe                        Albania          5
## 15965 2020-03-19    Europe                        Andorra         14
## 15966 2020-03-19    Europe                        Andorra         39
## 15967 2020-03-19    Europe                        Armenia         31
## 15968 2020-03-19    Europe                        Armenia         37
## 15969 2020-03-19    Europe                        Austria        314
## 15970 2020-03-19    Europe                        Austria        367
## 15971 2020-03-19    Europe                     Azerbaijan          6
## 15972 2020-03-19    Europe                     Azerbaijan         16
## 15973 2020-03-19    Europe                        Belarus          0
## 15974 2020-03-19    Europe                        Belarus         10
## 15975 2020-03-19    Europe                        Belgium        309
## 15976 2020-03-19    Europe                        Belgium        534
## 15977 2020-03-19    Europe         Bosnia and Herzegovina         15
## 15978 2020-03-19    Europe         Bosnia and Herzegovina         25
## 15979 2020-03-19    Europe                       Bulgaria          2
## 15980 2020-03-19    Europe                       Bulgaria         11
## 15981 2020-03-19    Europe                        Croatia         12
## 15982 2020-03-19    Europe                        Croatia         24
## 15983 2020-03-19    Europe                         Cyprus         18
## 15984 2020-03-19    Europe                         Cyprus         18
## 15985 2020-03-19    Europe                 Czech Republic         88
## 15986 2020-03-19    Europe                 Czech Republic        230
## 15987 2020-03-19    Europe                        Denmark         91
## 15988 2020-03-19    Europe                        Denmark         94
## 15989 2020-03-19    Europe                        Estonia          9
## 15990 2020-03-19    Europe                        Estonia         33
## 15991 2020-03-19    Europe                        Finland         50
## 15992 2020-03-19    Europe                        Finland         64
## 15993 2020-03-19    Europe                         France       1404
## 15994 2020-03-19    Europe                         France       1828
## 15995 2020-03-19    Europe                        Georgia          0
## 15996 2020-03-19    Europe                        Georgia          2
## 15997 2020-03-19    Europe                        Germany       1042
## 15998 2020-03-19    Europe                        Germany       2993
## 15999 2020-03-19    Europe                         Greece          0
## 16000 2020-03-19    Europe                         Greece         31
## 16001 2020-03-19    Europe                        Hungary         15
## 16002 2020-03-19    Europe                        Hungary         23
## 16003 2020-03-19    Europe                        Iceland          3
## 16004 2020-03-19    Europe                        Iceland         80
## 16005 2020-03-19    Europe                        Ireland         74
## 16006 2020-03-19    Europe                        Ireland        265
## 16007 2020-03-19    Europe                          Italy       4207
## 16008 2020-03-19    Europe                          Italy       5322
## 16009 2020-03-19    Europe                         Kosovo          0
## 16010 2020-03-19    Europe                         Kosovo          0
## 16011 2020-03-19    Europe                         Latvia         10
## 16012 2020-03-19    Europe                         Latvia         15
## 16013 2020-03-19    Europe                  Liechtenstein          0
## 16014 2020-03-19    Europe                  Liechtenstein         18
## 16015 2020-03-19    Europe                      Lithuania          8
## 16016 2020-03-19    Europe                      Lithuania          9
## 16017 2020-03-19    Europe                     Luxembourg         70
## 16018 2020-03-19    Europe                     Luxembourg        132
## 16019 2020-03-19    Europe                      Macedonia         11
## 16020 2020-03-19    Europe                      Macedonia         13
## 16021 2020-03-19    Europe                          Malta          4
## 16022 2020-03-19    Europe                          Malta         15
## 16023 2020-03-19    Europe                        Moldova          6
## 16024 2020-03-19    Europe                        Moldova         19
## 16025 2020-03-19    Europe                         Monaco          0
## 16026 2020-03-19    Europe                         Monaco          0
## 16027 2020-03-19    Europe                     Montenegro          1
## 16028 2020-03-19    Europe                     Montenegro          6
## 16029 2020-03-19    Europe                    Netherlands        346
## 16030 2020-03-19    Europe                    Netherlands        409
## 16031 2020-03-19    Europe                         Norway        115
## 16032 2020-03-19    Europe                         Norway        196
## 16033 2020-03-19    Europe                         Poland         49
## 16034 2020-03-19    Europe                         Poland        104
## 16035 2020-03-19    Europe                       Portugal        194
## 16036 2020-03-19    Europe                       Portugal        337
## 16037 2020-03-19    Europe                        Romania         17
## 16038 2020-03-19    Europe                        Romania         43
## 16039 2020-03-19    Europe                         Russia         33
## 16040 2020-03-19    Europe                         Russia         52
## 16041 2020-03-19    Europe                     San Marino          0
## 16042 2020-03-19    Europe                     San Marino          5
## 16043 2020-03-19    Europe                         Serbia         20
## 16044 2020-03-19    Europe                         Serbia         22
## 16045 2020-03-19    Europe                       Slovakia         10
## 16046 2020-03-19    Europe                       Slovakia         18
## 16047 2020-03-19    Europe                       Slovenia         11
## 16048 2020-03-19    Europe                       Slovenia         11
## 16049 2020-03-19    Europe                          Spain       4047
## 16050 2020-03-19    Europe                          Spain       4053
## 16051 2020-03-19    Europe                         Sweden        134
## 16052 2020-03-19    Europe                         Sweden        160
## 16053 2020-03-19    Europe                    Switzerland        360
## 16054 2020-03-19    Europe                    Switzerland       1047
## 16055 2020-03-19    Europe                        Ukraine          2
## 16056 2020-03-19    Europe                        Ukraine          5
## 16057 2020-03-19    Europe                 United Kingdom         63
## 16058 2020-03-19    Europe                 United Kingdom        680
## 16059 2020-03-19    Europe                        Vatican          0
## 16060 2020-03-19    Europe                        Vatican          0
## 16061 2020-03-19   Oceania                      Australia        111
## 16062 2020-03-19   Oceania                           Fiji          1
## 16063 2020-03-19   Oceania               French Polynesia          3
## 16064 2020-03-19   Oceania                           Guam          3
## 16065 2020-03-19   Oceania                    New Zealand          8
## 16066 2020-03-19   Oceania                    New Zealand          8
## 16067 2020-03-19   Oceania               Papua New Guinea          0
## 16068 2020-03-20    Africa                        Algeria          3
## 16069 2020-03-20    Africa                        Algeria         18
## 16070 2020-03-20    Africa                         Angola          1
## 16071 2020-03-20    Africa                          Benin          0
## 16072 2020-03-20    Africa                          Benin          1
## 16073 2020-03-20    Africa                       Botswana          0
## 16074 2020-03-20    Africa                   Burkina Faso          7
## 16075 2020-03-20    Africa                   Burkina Faso          7
## 16076 2020-03-20    Africa                        Burundi          0
## 16077 2020-03-20    Africa                     Cabo Verde          1
## 16078 2020-03-20    Africa                       Cameroon          4
## 16079 2020-03-20    Africa                       Cameroon          7
## 16080 2020-03-20    Africa       Central African Republic          0
## 16081 2020-03-20    Africa       Central African Republic          2
## 16082 2020-03-20    Africa                           Chad          0
## 16083 2020-03-20    Africa                           Chad          1
## 16084 2020-03-20    Africa                        Comoros          0
## 16085 2020-03-20    Africa                 Congo Republic          0
## 16086 2020-03-20    Africa                 Congo Republic          0
## 16087 2020-03-20    Africa                  Cote d'Ivoire          0
## 16088 2020-03-20    Africa                  Cote d'Ivoire          3
## 16089 2020-03-20    Africa                       DR Congo          0
## 16090 2020-03-20    Africa                       DR Congo          4
## 16091 2020-03-20    Africa                       Djibouti          0
## 16092 2020-03-20    Africa                       Djibouti          0
## 16093 2020-03-20    Africa                          Egypt         14
## 16094 2020-03-20    Africa                          Egypt         29
## 16095 2020-03-20    Africa              Equatorial Guinea          0
## 16096 2020-03-20    Africa              Equatorial Guinea          1
## 16097 2020-03-20    Africa                        Eritrea          0
## 16098 2020-03-20    Africa                       Eswatini          0
## 16099 2020-03-20    Africa                       Eswatini          0
## 16100 2020-03-20    Africa                       Ethiopia          1
## 16101 2020-03-20    Africa                       Ethiopia          3
## 16102 2020-03-20    Africa                          Gabon          0
## 16103 2020-03-20    Africa                          Gabon          2
## 16104 2020-03-20    Africa                         Gambia          0
## 16105 2020-03-20    Africa                         Gambia          0
## 16106 2020-03-20    Africa                          Ghana          4
## 16107 2020-03-20    Africa                          Ghana          5
## 16108 2020-03-20    Africa                         Guinea          0
## 16109 2020-03-20    Africa                         Guinea          0
## 16110 2020-03-20    Africa                  Guinea-Bissau          0
## 16111 2020-03-20    Africa                          Kenya          0
## 16112 2020-03-20    Africa                          Kenya          0
## 16113 2020-03-20    Africa                        Lesotho          0
## 16114 2020-03-20    Africa                        Liberia          0
## 16115 2020-03-20    Africa                        Liberia          0
## 16116 2020-03-20    Africa                          Libya          0
## 16117 2020-03-20    Africa                     Madagascar          3
## 16118 2020-03-20    Africa                         Malawi          0
## 16119 2020-03-20    Africa                           Mali          0
## 16120 2020-03-20    Africa                     Mauritania          0
## 16121 2020-03-20    Africa                     Mauritania          1
## 16122 2020-03-20    Africa                      Mauritius          3
## 16123 2020-03-20    Africa                      Mauritius          9
## 16124 2020-03-20    Africa                        Morocco          9
## 16125 2020-03-20    Africa                        Morocco         14
## 16126 2020-03-20    Africa                     Mozambique          0
## 16127 2020-03-20    Africa                        Namibia          0
## 16128 2020-03-20    Africa                        Namibia          0
## 16129 2020-03-20    Africa                          Niger          1
## 16130 2020-03-20    Africa                        Nigeria          0
## 16131 2020-03-20    Africa                        Nigeria          4
## 16132 2020-03-20    Africa                         Rwanda          0
## 16133 2020-03-20    Africa                         Rwanda          9
## 16134 2020-03-20    Africa          Sao Tome and Principe          0
## 16135 2020-03-20    Africa                        Senegal          0
## 16136 2020-03-20    Africa                        Senegal          7
## 16137 2020-03-20    Africa                     Seychelles          0
## 16138 2020-03-20    Africa                     Seychelles          1
## 16139 2020-03-20    Africa                   Sierra Leone          0
## 16140 2020-03-20    Africa                        Somalia          0
## 16141 2020-03-20    Africa                        Somalia          0
## 16142 2020-03-20    Africa                   South Africa         34
## 16143 2020-03-20    Africa                   South Africa         52
## 16144 2020-03-20    Africa                    South Sudan          0
## 16145 2020-03-20    Africa                          Sudan          0
## 16146 2020-03-20    Africa                          Sudan          0
## 16147 2020-03-20    Africa                       Tanzania          0
## 16148 2020-03-20    Africa                       Tanzania          0
## 16149 2020-03-20    Africa                           Togo          0
## 16150 2020-03-20    Africa                           Togo          8
## 16151 2020-03-20    Africa                        Tunisia         10
## 16152 2020-03-20    Africa                        Tunisia         15
## 16153 2020-03-20    Africa                         Uganda          0
## 16154 2020-03-20    Africa                 Western Sahara          0
## 16155 2020-03-20    Africa                         Zambia          0
## 16156 2020-03-20    Africa                         Zambia          0
## 16157 2020-03-20    Africa                       Zimbabwe          1
## 16158 2020-03-20   America            Antigua and Barbuda          0
## 16159 2020-03-20   America                      Argentina         31
## 16160 2020-03-20   America                      Argentina         31
## 16161 2020-03-20   America                          Aruba          2
## 16162 2020-03-20   America                        Bahamas          0
## 16163 2020-03-20   America                        Bahamas          2
## 16164 2020-03-20   America                       Barbados          0
## 16165 2020-03-20   America                       Barbados          1
## 16166 2020-03-20   America                         Belize          0
## 16167 2020-03-20   America                        Bermuda          2
## 16168 2020-03-20   America                        Bolivia          3
## 16169 2020-03-20   America                        Bolivia          3
## 16170 2020-03-20   America                         Brazil        172
## 16171 2020-03-20   America                         Brazil        193
## 16172 2020-03-20   America                         Canada        156
## 16173 2020-03-20   America                 Cayman Islands          1
## 16174 2020-03-20   America                          Chile        104
## 16175 2020-03-20   America                          Chile        196
## 16176 2020-03-20   America                       Colombia         26
## 16177 2020-03-20   America                       Colombia         26
## 16178 2020-03-20   America                     Costa Rica         18
## 16179 2020-03-20   America                     Costa Rica         20
## 16180 2020-03-20   America                           Cuba          5
## 16181 2020-03-20   America                           Cuba          5
## 16182 2020-03-20   America                        Curacao          2
## 16183 2020-03-20   America                       Dominica          0
## 16184 2020-03-20   America             Dominican Republic          0
## 16185 2020-03-20   America             Dominican Republic         38
## 16186 2020-03-20   America                        Ecuador         31
## 16187 2020-03-20   America                        Ecuador        168
## 16188 2020-03-20   America                    El Salvador          0
## 16189 2020-03-20   America                    El Salvador          0
## 16190 2020-03-20   America                      Greenland          2
## 16191 2020-03-20   America                        Grenada          0
## 16192 2020-03-20   America                      Guatemala          1
## 16193 2020-03-20   America                      Guatemala          3
## 16194 2020-03-20   America                         Guyana          0
## 16195 2020-03-20   America                         Guyana          0
## 16196 2020-03-20   America                          Haiti          2
## 16197 2020-03-20   America                          Haiti          2
## 16198 2020-03-20   America                       Honduras         12
## 16199 2020-03-20   America                       Honduras         12
## 16200 2020-03-20   America                        Jamaica          1
## 16201 2020-03-20   America                        Jamaica          1
## 16202 2020-03-20   America                         Mexico         39
## 16203 2020-03-20   America                         Mexico         46
## 16204 2020-03-20   America                      Nicaragua          0
## 16205 2020-03-20   America                      Nicaragua          0
## 16206 2020-03-20   America                         Panama         28
## 16207 2020-03-20   America                         Panama         28
## 16208 2020-03-20   America                       Paraguay          2
## 16209 2020-03-20   America                       Paraguay          2
## 16210 2020-03-20   America                           Peru          0
## 16211 2020-03-20   America                           Peru         89
## 16212 2020-03-20   America            St. Kitts and Nevis          0
## 16213 2020-03-20   America                      St. Lucia          0
## 16214 2020-03-20   America                      St. Lucia          0
## 16215 2020-03-20   America St. Vincent and the Grenadines          0
## 16216 2020-03-20   America                       Suriname          3
## 16217 2020-03-20   America            Trinidad and Tobago          0
## 16218 2020-03-20   America            Trinidad and Tobago          0
## 16219 2020-03-20   America                  United States       4835
## 16220 2020-03-20   America                  United States       5326
## 16221 2020-03-20   America                        Uruguay         15
## 16222 2020-03-20   America                        Uruguay         16
## 16223 2020-03-20   America                      Venezuela          0
## 16224 2020-03-20   America                      Venezuela          0
## 16225 2020-03-20      Asia                    Afghanistan          0
## 16226 2020-03-20      Asia                    Afghanistan          2
## 16227 2020-03-20      Asia                        Bahrain          7
## 16228 2020-03-20      Asia                        Bahrain         13
## 16229 2020-03-20      Asia                     Bangladesh          0
## 16230 2020-03-20      Asia                     Bangladesh          3
## 16231 2020-03-20      Asia                         Bhutan          0
## 16232 2020-03-20      Asia                         Bhutan          1
## 16233 2020-03-20      Asia              Brunei Darussalam          3
## 16234 2020-03-20      Asia              Brunei Darussalam          5
## 16235 2020-03-20      Asia                       Cambodia          0
## 16236 2020-03-20      Asia                       Cambodia         14
## 16237 2020-03-20      Asia                          China         99
## 16238 2020-03-20      Asia                          India         26
## 16239 2020-03-20      Asia                          India         50
## 16240 2020-03-20      Asia                      Indonesia         55
## 16241 2020-03-20      Asia                      Indonesia         58
## 16242 2020-03-20      Asia                           Iran       1046
## 16243 2020-03-20      Asia                           Iran       1237
## 16244 2020-03-20      Asia                           Iraq         13
## 16245 2020-03-20      Asia                           Iraq         16
## 16246 2020-03-20      Asia                         Israel        102
## 16247 2020-03-20      Asia                         Israel        244
## 16248 2020-03-20      Asia                          Japan         39
## 16249 2020-03-20      Asia                          Japan         77
## 16250 2020-03-20      Asia                         Jordan          4
## 16251 2020-03-20      Asia                         Jordan         16
## 16252 2020-03-20      Asia                     Kazakhstan          5
## 16253 2020-03-20      Asia                     Kazakhstan         12
## 16254 2020-03-20      Asia                         Kuwait          6
## 16255 2020-03-20      Asia                         Kuwait         11
## 16256 2020-03-20      Asia                Kyrgyz Republic          3
## 16257 2020-03-20      Asia                Kyrgyz Republic          3
## 16258 2020-03-20      Asia                           Laos          0
## 16259 2020-03-20      Asia                        Lebanon          6
## 16260 2020-03-20      Asia                        Lebanon         16
## 16261 2020-03-20      Asia                       Malaysia        110
## 16262 2020-03-20      Asia                       Malaysia        130
## 16263 2020-03-20      Asia                       Maldives          0
## 16264 2020-03-20      Asia                       Maldives          0
## 16265 2020-03-20      Asia                       Mongolia          0
## 16266 2020-03-20      Asia                       Mongolia          0
## 16267 2020-03-20      Asia                        Myanmar          0
## 16268 2020-03-20      Asia                          Nepal          0
## 16269 2020-03-20      Asia                          Nepal          0
## 16270 2020-03-20      Asia                           Oman          0
## 16271 2020-03-20      Asia                           Oman          0
## 16272 2020-03-20      Asia                       Pakistan        176
## 16273 2020-03-20      Asia                       Pakistan        229
## 16274 2020-03-20      Asia                      Palestine          3
## 16275 2020-03-20      Asia                      Palestine          3
## 16276 2020-03-20      Asia                    Philippines         13
## 16277 2020-03-20      Asia                    Philippines         28
## 16278 2020-03-20      Asia                          Qatar          8
## 16279 2020-03-20      Asia                          Qatar         10
## 16280 2020-03-20      Asia                   Saudi Arabia         67
## 16281 2020-03-20      Asia                   Saudi Arabia         70
## 16282 2020-03-20      Asia                      Singapore         32
## 16283 2020-03-20      Asia                      Singapore         40
## 16284 2020-03-20      Asia                    South Korea         87
## 16285 2020-03-20      Asia                    South Korea         87
## 16286 2020-03-20      Asia                      Sri Lanka         11
## 16287 2020-03-20      Asia                      Sri Lanka         13
## 16288 2020-03-20      Asia                          Syria          0
## 16289 2020-03-20      Asia                     Tajikistan          0
## 16290 2020-03-20      Asia                       Thailand         35
## 16291 2020-03-20      Asia                       Thailand         50
## 16292 2020-03-20      Asia                    Timor-Leste          0
## 16293 2020-03-20      Asia                         Turkey        167
## 16294 2020-03-20      Asia                         Turkey        168
## 16295 2020-03-20      Asia           United Arab Emirates          0
## 16296 2020-03-20      Asia           United Arab Emirates         27
## 16297 2020-03-20      Asia                     Uzbekistan          0
## 16298 2020-03-20      Asia                     Uzbekistan         10
## 16299 2020-03-20      Asia                        Vietnam          6
## 16300 2020-03-20      Asia                        Vietnam         11
## 16301 2020-03-20      Asia                          Yemen          0
## 16302 2020-03-20      Asia                      not found          0
## 16303 2020-03-20    Europe                        Albania          6
## 16304 2020-03-20    Europe                        Albania         11
## 16305 2020-03-20    Europe                        Andorra         22
## 16306 2020-03-20    Europe                        Andorra         22
## 16307 2020-03-20    Europe                        Armenia          7
## 16308 2020-03-20    Europe                        Armenia         21
## 16309 2020-03-20    Europe                        Austria        375
## 16310 2020-03-20    Europe                        Austria        550
## 16311 2020-03-20    Europe                     Azerbaijan          0
## 16312 2020-03-20    Europe                     Azerbaijan         10
## 16313 2020-03-20    Europe                        Belarus         11
## 16314 2020-03-20    Europe                        Belarus         18
## 16315 2020-03-20    Europe                        Belgium        462
## 16316 2020-03-20    Europe                        Belgium        713
## 16317 2020-03-20    Europe         Bosnia and Herzegovina          8
## 16318 2020-03-20    Europe         Bosnia and Herzegovina         26
## 16319 2020-03-20    Europe                       Bulgaria         13
## 16320 2020-03-20    Europe                       Bulgaria         33
## 16321 2020-03-20    Europe                        Croatia         23
## 16322 2020-03-20    Europe                        Croatia         23
## 16323 2020-03-20    Europe                         Cyprus          0
## 16324 2020-03-20    Europe                         Cyprus          0
## 16325 2020-03-20    Europe                 Czech Republic        139
## 16326 2020-03-20    Europe                 Czech Republic        172
## 16327 2020-03-20    Europe                        Denmark         36
## 16328 2020-03-20    Europe                        Denmark        104
## 16329 2020-03-20    Europe                        Estonia          9
## 16330 2020-03-20    Europe                        Estonia         16
## 16331 2020-03-20    Europe                 Faeroe Islands         72
## 16332 2020-03-20    Europe                        Finland         31
## 16333 2020-03-20    Europe                        Finland         50
## 16334 2020-03-20    Europe                         France       1741
## 16335 2020-03-20    Europe                         France       1861
## 16336 2020-03-20    Europe                        Georgia          3
## 16337 2020-03-20    Europe                        Georgia          6
## 16338 2020-03-20    Europe                        Germany       4528
## 16339 2020-03-20    Europe                        Germany       5940
## 16340 2020-03-20    Europe                      Gibraltar         10
## 16341 2020-03-20    Europe                         Greece         46
## 16342 2020-03-20    Europe                         Greece         77
## 16343 2020-03-20    Europe                       Guernsey          1
## 16344 2020-03-20    Europe                        Hungary         12
## 16345 2020-03-20    Europe                        Hungary         12
## 16346 2020-03-20    Europe                        Iceland         79
## 16347 2020-03-20    Europe                        Iceland         80
## 16348 2020-03-20    Europe                        Ireland        126
## 16349 2020-03-20    Europe                        Ireland        191
## 16350 2020-03-20    Europe                          Italy       5322
## 16351 2020-03-20    Europe                          Italy       5986
## 16352 2020-03-20    Europe                         Jersey          5
## 16353 2020-03-20    Europe                         Kosovo          0
## 16354 2020-03-20    Europe                         Kosovo          2
## 16355 2020-03-20    Europe                         Latvia         15
## 16356 2020-03-20    Europe                         Latvia         25
## 16357 2020-03-20    Europe                  Liechtenstein          0
## 16358 2020-03-20    Europe                  Liechtenstein          0
## 16359 2020-03-20    Europe                      Lithuania         13
## 16360 2020-03-20    Europe                      Lithuania         15
## 16361 2020-03-20    Europe                     Luxembourg        135
## 16362 2020-03-20    Europe                     Luxembourg        149
## 16363 2020-03-20    Europe                      Macedonia          6
## 16364 2020-03-20    Europe                      Macedonia         19
## 16365 2020-03-20    Europe                          Malta         11
## 16366 2020-03-20    Europe                          Malta         12
## 16367 2020-03-20    Europe                        Moldova         13
## 16368 2020-03-20    Europe                        Moldova         17
## 16369 2020-03-20    Europe                         Monaco          2
## 16370 2020-03-20    Europe                         Monaco          4
## 16371 2020-03-20    Europe                     Montenegro          5
## 16372 2020-03-20    Europe                     Montenegro         11
## 16373 2020-03-20    Europe                    Netherlands        409
## 16374 2020-03-20    Europe                    Netherlands        534
## 16375 2020-03-20    Europe                         Norway        129
## 16376 2020-03-20    Europe                         Norway        168
## 16377 2020-03-20    Europe                         Poland         68
## 16378 2020-03-20    Europe                         Poland         70
## 16379 2020-03-20    Europe                       Portugal        143
## 16380 2020-03-20    Europe                       Portugal        235
## 16381 2020-03-20    Europe                        Romania         17
## 16382 2020-03-20    Europe                        Romania         31
## 16383 2020-03-20    Europe                         Russia         52
## 16384 2020-03-20    Europe                         Russia         54
## 16385 2020-03-20    Europe                     San Marino         17
## 16386 2020-03-20    Europe                     San Marino         25
## 16387 2020-03-20    Europe                         Serbia         32
## 16388 2020-03-20    Europe                         Serbia         32
## 16389 2020-03-20    Europe                       Slovakia         14
## 16390 2020-03-20    Europe                       Slovakia         16
## 16391 2020-03-20    Europe                       Slovenia         33
## 16392 2020-03-20    Europe                       Slovenia         55
## 16393 2020-03-20    Europe                          Spain       2447
## 16394 2020-03-20    Europe                          Spain       4569
## 16395 2020-03-20    Europe                         Sweden        122
## 16396 2020-03-20    Europe                         Sweden        200
## 16397 2020-03-20    Europe                    Switzerland        878
## 16398 2020-03-20    Europe                    Switzerland       1219
## 16399 2020-03-20    Europe                        Ukraine          7
## 16400 2020-03-20    Europe                        Ukraine         13
## 16401 2020-03-20    Europe                 United Kingdom        647
## 16402 2020-03-20    Europe                 United Kingdom       1294
## 16403 2020-03-20    Europe                        Vatican          0
## 16404 2020-03-20    Europe                        Vatican          0
## 16405 2020-03-20   Oceania                      Australia        144
## 16406 2020-03-20   Oceania                           Fiji          0
## 16407 2020-03-20   Oceania                           Fiji          1
## 16408 2020-03-20   Oceania               French Polynesia          0
## 16409 2020-03-20   Oceania                           Guam          9
## 16410 2020-03-20   Oceania                    New Zealand         11
## 16411 2020-03-20   Oceania                    New Zealand         11
## 16412 2020-03-20   Oceania               Papua New Guinea          1
## 16413 2020-03-21    Africa                        Algeria         12
## 16414 2020-03-21    Africa                        Algeria         49
## 16415 2020-03-21    Africa                         Angola          1
## 16416 2020-03-21    Africa                          Benin          0
## 16417 2020-03-21    Africa                          Benin          0
## 16418 2020-03-21    Africa                       Botswana          0
## 16419 2020-03-21    Africa                   Burkina Faso          7
## 16420 2020-03-21    Africa                   Burkina Faso         24
## 16421 2020-03-21    Africa                        Burundi          0
## 16422 2020-03-21    Africa                     Cabo Verde          2
## 16423 2020-03-21    Africa                     Cabo Verde          2
## 16424 2020-03-21    Africa                       Cameroon          7
## 16425 2020-03-21    Africa                       Cameroon         13
## 16426 2020-03-21    Africa       Central African Republic          0
## 16427 2020-03-21    Africa       Central African Republic          0
## 16428 2020-03-21    Africa                           Chad          0
## 16429 2020-03-21    Africa                           Chad          0
## 16430 2020-03-21    Africa                        Comoros          0
## 16431 2020-03-21    Africa                 Congo Republic          0
## 16432 2020-03-21    Africa                 Congo Republic          0
## 16433 2020-03-21    Africa                  Cote d'Ivoire          5
## 16434 2020-03-21    Africa                  Cote d'Ivoire          5
## 16435 2020-03-21    Africa                       DR Congo          0
## 16436 2020-03-21    Africa                       DR Congo          5
## 16437 2020-03-21    Africa                       Djibouti          0
## 16438 2020-03-21    Africa                       Djibouti          0
## 16439 2020-03-21    Africa                          Egypt          9
## 16440 2020-03-21    Africa                          Egypt         46
## 16441 2020-03-21    Africa              Equatorial Guinea          0
## 16442 2020-03-21    Africa              Equatorial Guinea          0
## 16443 2020-03-21    Africa                        Eritrea          1
## 16444 2020-03-21    Africa                       Eswatini          0
## 16445 2020-03-21    Africa                       Eswatini          0
## 16446 2020-03-21    Africa                       Ethiopia          0
## 16447 2020-03-21    Africa                       Ethiopia          2
## 16448 2020-03-21    Africa                          Gabon          0
## 16449 2020-03-21    Africa                          Gabon          1
## 16450 2020-03-21    Africa                         Gambia          0
## 16451 2020-03-21    Africa                         Gambia          0
## 16452 2020-03-21    Africa                          Ghana          3
## 16453 2020-03-21    Africa                          Ghana          5
## 16454 2020-03-21    Africa                         Guinea          1
## 16455 2020-03-21    Africa                         Guinea          1
## 16456 2020-03-21    Africa                  Guinea-Bissau          0
## 16457 2020-03-21    Africa                          Kenya          0
## 16458 2020-03-21    Africa                          Kenya          0
## 16459 2020-03-21    Africa                        Lesotho          0
## 16460 2020-03-21    Africa                        Liberia          0
## 16461 2020-03-21    Africa                        Liberia          1
## 16462 2020-03-21    Africa                          Libya          0
## 16463 2020-03-21    Africa                     Madagascar          0
## 16464 2020-03-21    Africa                     Madagascar          3
## 16465 2020-03-21    Africa                         Malawi          0
## 16466 2020-03-21    Africa                           Mali          0
## 16467 2020-03-21    Africa                     Mauritania          0
## 16468 2020-03-21    Africa                     Mauritania          0
## 16469 2020-03-21    Africa                      Mauritius          2
## 16470 2020-03-21    Africa                      Mauritius          9
## 16471 2020-03-21    Africa                        Morocco         19
## 16472 2020-03-21    Africa                        Morocco         23
## 16473 2020-03-21    Africa                     Mozambique          0
## 16474 2020-03-21    Africa                        Namibia          0
## 16475 2020-03-21    Africa                        Namibia          1
## 16476 2020-03-21    Africa                          Niger          0
## 16477 2020-03-21    Africa                          Niger          1
## 16478 2020-03-21    Africa                        Nigeria          4
## 16479 2020-03-21    Africa                        Nigeria         10
## 16480 2020-03-21    Africa                         Rwanda          0
## 16481 2020-03-21    Africa                         Rwanda          6
## 16482 2020-03-21    Africa          Sao Tome and Principe          0
## 16483 2020-03-21    Africa                        Senegal          9
## 16484 2020-03-21    Africa                        Senegal         11
## 16485 2020-03-21    Africa                     Seychelles          0
## 16486 2020-03-21    Africa                     Seychelles          1
## 16487 2020-03-21    Africa                   Sierra Leone          0
## 16488 2020-03-21    Africa                        Somalia          0
## 16489 2020-03-21    Africa                        Somalia          0
## 16490 2020-03-21    Africa                   South Africa         38
## 16491 2020-03-21    Africa                   South Africa         55
## 16492 2020-03-21    Africa                    South Sudan          0
## 16493 2020-03-21    Africa                          Sudan          0
## 16494 2020-03-21    Africa                          Sudan          0
## 16495 2020-03-21    Africa                       Tanzania          0
## 16496 2020-03-21    Africa                       Tanzania          0
## 16497 2020-03-21    Africa                           Togo          7
## 16498 2020-03-21    Africa                           Togo          8
## 16499 2020-03-21    Africa                        Tunisia          6
## 16500 2020-03-21    Africa                        Tunisia         15
## 16501 2020-03-21    Africa                         Uganda          1
## 16502 2020-03-21    Africa                 Western Sahara          0
## 16503 2020-03-21    Africa                         Zambia          0
## 16504 2020-03-21    Africa                         Zambia          0
## 16505 2020-03-21    Africa                       Zimbabwe          1
## 16506 2020-03-21    Africa                       Zimbabwe          2
## 16507 2020-03-21   America            Antigua and Barbuda          0
## 16508 2020-03-21   America            Antigua and Barbuda          0
## 16509 2020-03-21   America                      Argentina         30
## 16510 2020-03-21   America                      Argentina         30
## 16511 2020-03-21   America                        Bahamas          1
## 16512 2020-03-21   America                        Bahamas          1
## 16513 2020-03-21   America                       Barbados          1
## 16514 2020-03-21   America                       Barbados          4
## 16515 2020-03-21   America                         Belize          0
## 16516 2020-03-21   America                        Bermuda          0
## 16517 2020-03-21   America                        Bolivia          4
## 16518 2020-03-21   America                        Bolivia          4
## 16519 2020-03-21   America                         Brazil        228
## 16520 2020-03-21   America                         Brazil        283
## 16521 2020-03-21   America                         Canada        125
## 16522 2020-03-21   America                 Cayman Islands          2
## 16523 2020-03-21   America                          Chile         92
## 16524 2020-03-21   America                          Chile        103
## 16525 2020-03-21   America                       Colombia         30
## 16526 2020-03-21   America                       Colombia         68
## 16527 2020-03-21   America                     Costa Rica         26
## 16528 2020-03-21   America                     Costa Rica         28
## 16529 2020-03-21   America                           Cuba          5
## 16530 2020-03-21   America                           Cuba          5
## 16531 2020-03-21   America                       Dominica          0
## 16532 2020-03-21   America             Dominican Republic         13
## 16533 2020-03-21   America             Dominican Republic         40
## 16534 2020-03-21   America                        Ecuador        139
## 16535 2020-03-21   America                        Ecuador        227
## 16536 2020-03-21   America                    El Salvador          2
## 16537 2020-03-21   America                    El Salvador          2
## 16538 2020-03-21   America                      Greenland          0
## 16539 2020-03-21   America                        Grenada          0
## 16540 2020-03-21   America                      Guatemala          4
## 16541 2020-03-21   America                      Guatemala          5
## 16542 2020-03-21   America                         Guyana          0
## 16543 2020-03-21   America                         Guyana          0
## 16544 2020-03-21   America                          Haiti          0
## 16545 2020-03-21   America                          Haiti          0
## 16546 2020-03-21   America                       Honduras          0
## 16547 2020-03-21   America                       Honduras          0
## 16548 2020-03-21   America                        Jamaica          0
## 16549 2020-03-21   America                        Jamaica          3
## 16550 2020-03-21   America                         Mexico         39
## 16551 2020-03-21   America                         Mexico         48
## 16552 2020-03-21   America                      Nicaragua          1
## 16553 2020-03-21   America                      Nicaragua          1
## 16554 2020-03-21   America                         Panama         63
## 16555 2020-03-21   America                         Panama         63
## 16556 2020-03-21   America                       Paraguay          5
## 16557 2020-03-21   America                       Paraguay          5
## 16558 2020-03-21   America                           Peru         29
## 16559 2020-03-21   America                           Peru         84
## 16560 2020-03-21   America            St. Kitts and Nevis          0
## 16561 2020-03-21   America                      St. Lucia          0
## 16562 2020-03-21   America                      St. Lucia          0
## 16563 2020-03-21   America St. Vincent and the Grenadines          0
## 16564 2020-03-21   America                       Suriname          0
## 16565 2020-03-21   America                       Suriname          0
## 16566 2020-03-21   America            Trinidad and Tobago          0
## 16567 2020-03-21   America            Trinidad and Tobago         40
## 16568 2020-03-21   America                  United States       5374
## 16569 2020-03-21   America                  United States       6339
## 16570 2020-03-21   America                        Uruguay         16
## 16571 2020-03-21   America                        Uruguay         25
## 16572 2020-03-21   America                      Venezuela          3
## 16573 2020-03-21   America                      Venezuela         28
## 16574 2020-03-21   America                      not found          1
## 16575 2020-03-21      Asia                    Afghanistan          0
## 16576 2020-03-21      Asia                    Afghanistan          2
## 16577 2020-03-21      Asia                        Bahrain         16
## 16578 2020-03-21      Asia                        Bahrain         20
## 16579 2020-03-21      Asia                     Bangladesh          5
## 16580 2020-03-21      Asia                     Bangladesh          7
## 16581 2020-03-21      Asia                         Bhutan          0
## 16582 2020-03-21      Asia                         Bhutan          1
## 16583 2020-03-21      Asia              Brunei Darussalam          5
## 16584 2020-03-21      Asia              Brunei Darussalam          5
## 16585 2020-03-21      Asia                       Cambodia          2
## 16586 2020-03-21      Asia                       Cambodia         23
## 16587 2020-03-21      Asia                          China         52
## 16588 2020-03-21      Asia                          India         40
## 16589 2020-03-21      Asia                          India         86
## 16590 2020-03-21      Asia                      Indonesia         81
## 16591 2020-03-21      Asia                      Indonesia         82
## 16592 2020-03-21      Asia                           Iran        966
## 16593 2020-03-21      Asia                           Iran       1237
## 16594 2020-03-21      Asia                           Iraq          6
## 16595 2020-03-21      Asia                           Iraq         16
## 16596 2020-03-21      Asia                         Israel         35
## 16597 2020-03-21      Asia                         Israel        183
## 16598 2020-03-21      Asia                          Japan         44
## 16599 2020-03-21      Asia                          Japan         57
## 16600 2020-03-21      Asia                         Jordan          0
## 16601 2020-03-21      Asia                         Jordan         13
## 16602 2020-03-21      Asia                     Kazakhstan          4
## 16603 2020-03-21      Asia                     Kazakhstan          4
## 16604 2020-03-21      Asia                         Kuwait         11
## 16605 2020-03-21      Asia                         Kuwait         17
## 16606 2020-03-21      Asia                Kyrgyz Republic          0
## 16607 2020-03-21      Asia                Kyrgyz Republic          8
## 16608 2020-03-21      Asia                           Laos          0
## 16609 2020-03-21      Asia                        Lebanon         14
## 16610 2020-03-21      Asia                        Lebanon         24
## 16611 2020-03-21      Asia                       Malaysia        130
## 16612 2020-03-21      Asia                       Malaysia        153
## 16613 2020-03-21      Asia                       Maldives          0
## 16614 2020-03-21      Asia                       Maldives          0
## 16615 2020-03-21      Asia                       Mongolia          1
## 16616 2020-03-21      Asia                       Mongolia          4
## 16617 2020-03-21      Asia                        Myanmar          0
## 16618 2020-03-21      Asia                          Nepal          0
## 16619 2020-03-21      Asia                          Nepal          0
## 16620 2020-03-21      Asia                           Oman          4
## 16621 2020-03-21      Asia                           Oman          9
## 16622 2020-03-21      Asia                       Pakistan         17
## 16623 2020-03-21      Asia                       Pakistan         46
## 16624 2020-03-21      Asia                      Palestine          1
## 16625 2020-03-21      Asia                      Palestine          1
## 16626 2020-03-21      Asia                    Philippines          0
## 16627 2020-03-21      Asia                    Philippines         77
## 16628 2020-03-21      Asia                          Qatar         10
## 16629 2020-03-21      Asia                          Qatar         11
## 16630 2020-03-21      Asia                   Saudi Arabia         36
## 16631 2020-03-21      Asia                   Saudi Arabia         48
## 16632 2020-03-21      Asia                      Singapore         40
## 16633 2020-03-21      Asia                      Singapore         47
## 16634 2020-03-21      Asia                    South Korea        147
## 16635 2020-03-21      Asia                    South Korea        147
## 16636 2020-03-21      Asia                      Sri Lanka          4
## 16637 2020-03-21      Asia                      Sri Lanka         13
## 16638 2020-03-21      Asia                          Syria          0
## 16639 2020-03-21      Asia                     Tajikistan          0
## 16640 2020-03-21      Asia                       Thailand         89
## 16641 2020-03-21      Asia                       Thailand        154
## 16642 2020-03-21      Asia                    Timor-Leste          0
## 16643 2020-03-21      Asia                         Turkey        311
## 16644 2020-03-21      Asia                         Turkey        311
## 16645 2020-03-21      Asia           United Arab Emirates          0
## 16646 2020-03-21      Asia           United Arab Emirates         13
## 16647 2020-03-21      Asia                     Uzbekistan         10
## 16648 2020-03-21      Asia                     Uzbekistan         10
## 16649 2020-03-21      Asia                        Vietnam          1
## 16650 2020-03-21      Asia                        Vietnam          3
## 16651 2020-03-21      Asia                          Yemen          0
## 16652 2020-03-21      Asia                      not found         27
## 16653 2020-03-21    Europe                        Albania          0
## 16654 2020-03-21    Europe                        Albania          6
## 16655 2020-03-21    Europe                        Andorra          0
## 16656 2020-03-21    Europe                        Andorra         13
## 16657 2020-03-21    Europe                        Armenia         14
## 16658 2020-03-21    Europe                        Armenia         24
## 16659 2020-03-21    Europe                        Austria        426
## 16660 2020-03-21    Europe                        Austria        453
## 16661 2020-03-21    Europe                     Azerbaijan          0
## 16662 2020-03-21    Europe                     Azerbaijan          9
## 16663 2020-03-21    Europe                        Belarus          0
## 16664 2020-03-21    Europe                        Belarus          7
## 16665 2020-03-21    Europe                        Belgium        558
## 16666 2020-03-21    Europe                        Belgium        663
##       cases_of_covid_death covid_recovery_cases
## 1                        0                   NA
## 2                        0                   NA
## 3                        0                   NA
## 4                        0                   NA
## 5                        0                   NA
## 6                        0                   NA
## 7                        0                   NA
## 8                        0                   NA
## 9                        0                   NA
## 10                       0                   NA
## 11                       0                   NA
## 12                       0                   NA
## 13                       0                   NA
## 14                       0                   NA
## 15                       0                   NA
## 16                       0                   NA
## 17                       0                   NA
## 18                       0                   NA
## 19                       0                   NA
## 20                       0                   NA
## 21                       0                   NA
## 22                       0                   NA
## 23                       0                   NA
## 24                       0                   NA
## 25                       0                   NA
## 26                       0                   NA
## 27                       0                   NA
## 28                       0                   NA
## 29                       0                   NA
## 30                       0                   NA
## 31                       0                   NA
## 32                       0                   NA
## 33                       0                   NA
## 34                       0                   NA
## 35                       0                   NA
## 36                       0                   NA
## 37                       0                   NA
## 38                       0                   NA
## 39                       0                   NA
## 40                       0                   NA
## 41                       0                   NA
## 42                       0                   NA
## 43                       0                   NA
## 44                       0                   NA
## 45                       0                   NA
## 46                       0                   NA
## 47                       0                   NA
## 48                       0                   NA
## 49                       0                   NA
## 50                       0                   NA
## 51                       0                   NA
## 52                       0                   NA
## 53                       0                   NA
## 54                       0                   NA
## 55                       0                   NA
## 56                       0                   NA
## 57                       0                   NA
## 58                       0                   NA
## 59                       0                   NA
## 60                       0                   NA
## 61                       0                   NA
## 62                       0                   NA
## 63                       0                   NA
## 64                       0                   NA
## 65                       0                   NA
## 66                       0                   NA
## 67                       0                   NA
## 68                       0                   NA
## 69                       0                   NA
## 70                       0                   NA
## 71                       0                   NA
## 72                       0                   NA
## 73                       0                   NA
## 74                       0                   NA
## 75                       0                   NA
## 76                       0                   NA
## 77                       0                   NA
## 78                       0                   NA
## 79                       0                   NA
## 80                       0                   NA
## 81                       0                   NA
## 82                       0                   NA
## 83                       0                   NA
## 84                       0                   NA
## 85                       0                   NA
## 86                       0                   NA
## 87                       0                   NA
## 88                       0                   NA
## 89                       0                   NA
## 90                       0                   NA
## 91                       0                   NA
## 92                       0                   NA
## 93                       0                   NA
## 94                       0                   NA
## 95                       0                   NA
## 96                       0                   NA
## 97                       0                   NA
## 98                       0                   NA
## 99                       0                   NA
## 100                      0                   NA
## 101                      0                   NA
## 102                      0                   NA
## 103                      0                   NA
## 104                      0                   NA
## 105                      0                   NA
## 106                      0                   NA
## 107                      0                   NA
## 108                      0                   NA
## 109                      0                   NA
## 110                      0                   NA
## 111                      0                   NA
## 112                      0                   NA
## 113                      0                   NA
## 114                      0                   NA
## 115                      0                   NA
## 116                      0                   NA
## 117                      0                   NA
## 118                      0                   NA
## 119                      0                   NA
## 120                      0                   NA
## 121                      0                   NA
## 122                      0                   NA
## 123                      0                   NA
## 124                      0                   NA
## 125                      0                   NA
## 126                      0                   NA
## 127                      0                   NA
## 128                      0                   NA
## 129                      0                   NA
## 130                      0                   NA
## 131                      0                   NA
## 132                      0                   NA
## 133                      0                   NA
## 134                      0                   NA
## 135                      0                   NA
## 136                      0                   NA
## 137                      0                   NA
## 138                      0                   NA
## 139                      0                   NA
## 140                      0                   NA
## 141                      0                   NA
## 142                      0                   NA
## 143                      0                   NA
## 144                      0                   NA
## 145                      0                   NA
## 146                      0                   NA
## 147                      0                   NA
## 148                      0                   NA
## 149                      0                   NA
## 150                      0                   NA
## 151                      0                   NA
## 152                      0                   NA
## 153                      0                   NA
## 154                      0                   NA
## 155                      0                   NA
## 156                      0                   NA
## 157                      0                   NA
## 158                      0                   NA
## 159                      0                   NA
## 160                      0                   NA
## 161                      0                   NA
## 162                      0                   NA
## 163                      0                   NA
## 164                      0                   NA
## 165                      0                   NA
## 166                      0                   NA
## 167                      0                   NA
## 168                      0                   NA
## 169                      0                   NA
## 170                      0                   NA
## 171                      0                   NA
## 172                      0                   NA
## 173                      0                   NA
## 174                      0                   NA
## 175                      0                   NA
## 176                      0                   NA
## 177                      0                   NA
## 178                      0                   NA
## 179                      0                   NA
## 180                      0                   NA
## 181                      0                   NA
## 182                      0                   NA
## 183                      0                   NA
## 184                      0                   NA
## 185                      0                   NA
## 186                      0                   NA
## 187                      0                   NA
## 188                      0                   NA
## 189                      0                   NA
## 190                      0                   NA
## 191                      0                   NA
## 192                      0                   NA
## 193                      0                   NA
## 194                      0                   NA
## 195                      0                   NA
## 196                      0                   NA
## 197                      0                   NA
## 198                      0                   NA
## 199                      0                   NA
## 200                      0                   NA
## 201                      0                   NA
## 202                      0                   NA
## 203                      0                   NA
## 204                      0                   NA
## 205                      0                   NA
## 206                      0                   NA
## 207                      0                   NA
## 208                      0                   NA
## 209                      0                   NA
## 210                      0                   NA
## 211                      0                   NA
## 212                      0                   NA
## 213                      0                   NA
## 214                      0                   NA
## 215                      0                   NA
## 216                      0                   NA
## 217                      0                   NA
## 218                      0                   NA
## 219                      0                   NA
## 220                      0                   NA
## 221                      0                   NA
## 222                      0                   NA
## 223                      0                   NA
## 224                      0                   NA
## 225                      0                   NA
## 226                      0                   NA
## 227                      0                   NA
## 228                      0                   NA
## 229                      0                   NA
## 230                      0                   NA
## 231                      0                   NA
## 232                      0                   NA
## 233                      0                   NA
## 234                      0                   NA
## 235                      0                   NA
## 236                      0                   NA
## 237                      0                   NA
## 238                      0                   NA
## 239                      0                   NA
## 240                      0                   NA
## 241                      0                   NA
## 242                      0                   NA
## 243                      0                   NA
## 244                      0                   NA
## 245                      0                   NA
## 246                      0                   NA
## 247                      0                   NA
## 248                      0                   NA
## 249                      0                   NA
## 250                      0                   NA
## 251                      0                   NA
## 252                      0                   NA
## 253                      0                   NA
## 254                      0                   NA
## 255                      0                   NA
## 256                      0                   NA
## 257                      0                   NA
## 258                      0                   NA
## 259                      0                   NA
## 260                      0                   NA
## 261                      0                   NA
## 262                      0                   NA
## 263                      0                   NA
## 264                      0                   NA
## 265                      0                   NA
## 266                      0                   NA
## 267                      0                   NA
## 268                      0                   NA
## 269                      0                   NA
## 270                      0                   NA
## 271                      0                   NA
## 272                      0                   NA
## 273                      0                   NA
## 274                      0                   NA
## 275                      0                   NA
## 276                      0                   NA
## 277                      0                   NA
## 278                      0                   NA
## 279                      0                   NA
## 280                      0                   NA
## 281                      0                   NA
## 282                      0                   NA
## 283                      0                   NA
## 284                      0                   NA
## 285                      0                   NA
## 286                      0                   NA
## 287                      0                   NA
## 288                      0                   NA
## 289                      0                   NA
## 290                      0                   NA
## 291                      0                   NA
## 292                      0                   NA
## 293                      0                   NA
## 294                      0                   NA
## 295                      0                   NA
## 296                      0                   NA
## 297                      0                   NA
## 298                      0                   NA
## 299                      0                   NA
## 300                      0                   NA
## 301                      0                   NA
## 302                      0                   NA
## 303                      0                   NA
## 304                      0                   NA
## 305                      0                   NA
## 306                      0                   NA
## 307                      0                   NA
## 308                      0                   NA
## 309                      0                   NA
## 310                      0                   NA
## 311                      0                   NA
## 312                      0                   NA
## 313                      0                   NA
## 314                      0                   NA
## 315                      0                   NA
## 316                      0                   NA
## 317                      0                   NA
## 318                      0                   NA
## 319                      0                   NA
## 320                      0                   NA
## 321                      0                   NA
## 322                      0                   NA
## 323                      0                   NA
## 324                      0                   NA
## 325                      0                   NA
## 326                      0                   NA
## 327                      0                   NA
## 328                      0                   NA
## 329                      0                   NA
## 330                      0                   NA
## 331                      0                   NA
## 332                      0                   NA
## 333                      0                   NA
## 334                      0                   NA
## 335                      0                   NA
## 336                      0                   NA
## 337                      0                   NA
## 338                      0                   NA
## 339                      0                   NA
## 340                      0                   NA
## 341                      0                   NA
## 342                      0                   NA
## 343                      0                   NA
## 344                      0                   NA
## 345                      0                   NA
## 346                      0                   NA
## 347                      0                   NA
## 348                      0                   NA
## 349                      0                   NA
## 350                      0                   NA
## 351                      0                   NA
## 352                      0                   NA
## 353                      0                   NA
## 354                      0                   NA
## 355                      0                   NA
## 356                      0                   NA
## 357                      0                   NA
## 358                      0                   NA
## 359                      0                   NA
## 360                      0                   NA
## 361                      0                   NA
## 362                      0                   NA
## 363                      0                   NA
## 364                      0                   NA
## 365                      0                   NA
## 366                      0                   NA
## 367                      0                   NA
## 368                      0                   NA
## 369                      0                   NA
## 370                      0                   NA
## 371                      0                   NA
## 372                      0                   NA
## 373                      0                   NA
## 374                      0                   NA
## 375                      0                   NA
## 376                      0                   NA
## 377                      0                   NA
## 378                      0                   NA
## 379                      0                   NA
## 380                      0                   NA
## 381                      0                   NA
## 382                      0                   NA
## 383                      0                   NA
## 384                      0                   NA
## 385                      0                   NA
## 386                      0                   NA
## 387                      0                   NA
## 388                      0                   NA
## 389                      0                   NA
## 390                      0                   NA
## 391                      0                   NA
## 392                      0                   NA
## 393                      0                   NA
## 394                      0                   NA
## 395                      0                   NA
## 396                      0                   NA
## 397                      0                   NA
## 398                      0                   NA
## 399                      0                   NA
## 400                      0                   NA
## 401                      0                   NA
## 402                      0                   NA
## 403                      0                   NA
## 404                      0                   NA
## 405                      0                   NA
## 406                      0                   NA
## 407                      0                   NA
## 408                      0                   NA
## 409                      0                   NA
## 410                      0                   NA
## 411                      0                   NA
## 412                      0                   NA
## 413                      0                   NA
## 414                      0                   NA
## 415                      0                   NA
## 416                      0                   NA
## 417                      0                   NA
## 418                      0                   NA
## 419                      0                   NA
## 420                      0                   NA
## 421                      0                   NA
## 422                      0                   NA
## 423                      0                   NA
## 424                      0                   NA
## 425                      0                   NA
## 426                      0                   NA
## 427                      0                   NA
## 428                      0                   NA
## 429                      0                   NA
## 430                      0                   NA
## 431                      0                   NA
## 432                      0                   NA
## 433                      0                   NA
## 434                      0                   NA
## 435                      0                   NA
## 436                      0                   NA
## 437                      0                   NA
## 438                      0                   NA
## 439                      0                   NA
## 440                      0                   NA
## 441                      0                   NA
## 442                      0                   NA
## 443                      0                   NA
## 444                      0                   NA
## 445                      0                   NA
## 446                      0                   NA
## 447                      0                   NA
## 448                      0                   NA
## 449                      0                   NA
## 450                      0                   NA
## 451                      0                   NA
## 452                      0                   NA
## 453                      0                   NA
## 454                      0                   NA
## 455                      0                   NA
## 456                      0                   NA
## 457                      0                   NA
## 458                      0                   NA
## 459                      0                   NA
## 460                      0                   NA
## 461                      0                   NA
## 462                      0                   NA
## 463                      0                   NA
## 464                      0                   NA
## 465                      0                   NA
## 466                      0                   NA
## 467                      0                   NA
## 468                      0                   NA
## 469                      0                   NA
## 470                      0                   NA
## 471                      0                   NA
## 472                      0                   NA
## 473                      0                   NA
## 474                      0                   NA
## 475                      0                   NA
## 476                      0                   NA
## 477                      0                   NA
## 478                      0                   NA
## 479                      0                   NA
## 480                      0                   NA
## 481                      0                   NA
## 482                      0                   NA
## 483                      0                   NA
## 484                      0                   NA
## 485                      0                   NA
## 486                      0                   NA
## 487                      0                   NA
## 488                      0                   NA
## 489                      0                   NA
## 490                      0                   NA
## 491                      0                   NA
## 492                      0                   NA
## 493                      0                   NA
## 494                      0                   NA
## 495                      0                   NA
## 496                      0                   NA
## 497                      0                   NA
## 498                      0                   NA
## 499                      0                   NA
## 500                      0                   NA
## 501                      0                   NA
## 502                      0                   NA
## 503                      0                   NA
## 504                      0                   NA
## 505                      0                   NA
## 506                      0                   NA
## 507                      0                   NA
## 508                      0                   NA
## 509                      0                   NA
## 510                      0                   NA
## 511                      0                   NA
## 512                      0                   NA
## 513                      0                   NA
## 514                      0                   NA
## 515                      0                   NA
## 516                      0                   NA
## 517                      0                   NA
## 518                      0                   NA
## 519                      0                   NA
## 520                      0                   NA
## 521                      0                   NA
## 522                      0                   NA
## 523                      0                   NA
## 524                      0                   NA
## 525                      0                   NA
## 526                      0                   NA
## 527                      0                   NA
## 528                      0                   NA
## 529                      0                   NA
## 530                      0                   NA
## 531                      0                   NA
## 532                      0                   NA
## 533                      0                   NA
## 534                      0                   NA
## 535                      0                   NA
## 536                      0                   NA
## 537                      0                   NA
## 538                      0                   NA
## 539                      0                   NA
## 540                      0                   NA
## 541                      0                   NA
## 542                      0                   NA
## 543                      0                   NA
## 544                      0                   NA
## 545                      0                   NA
## 546                      0                   NA
## 547                      0                   NA
## 548                      0                   NA
## 549                      0                   NA
## 550                      0                   NA
## 551                      0                   NA
## 552                      0                   NA
## 553                      0                   NA
## 554                      0                   NA
## 555                      0                   NA
## 556                      0                   NA
## 557                      0                   NA
## 558                      0                   NA
## 559                      0                   NA
## 560                      0                   NA
## 561                      0                   NA
## 562                      0                   NA
## 563                      0                   NA
## 564                      0                   NA
## 565                      0                   NA
## 566                      0                   NA
## 567                      0                   NA
## 568                      0                   NA
## 569                      0                   NA
## 570                      0                   NA
## 571                      0                   NA
## 572                      0                   NA
## 573                      0                   NA
## 574                      0                   NA
## 575                      0                   NA
## 576                      0                   NA
## 577                      0                   NA
## 578                      0                   NA
## 579                      0                   NA
## 580                      0                   NA
## 581                      0                   NA
## 582                      0                   NA
## 583                      0                   NA
## 584                      0                   NA
## 585                      0                   NA
## 586                      0                   NA
## 587                      0                   NA
## 588                      0                   NA
## 589                      0                   NA
## 590                      0                   NA
## 591                      0                   NA
## 592                      0                   NA
## 593                      0                   NA
## 594                      0                   NA
## 595                      0                   NA
## 596                      0                   NA
## 597                      0                   NA
## 598                      0                   NA
## 599                      0                   NA
## 600                      0                   NA
## 601                      0                   NA
## 602                      0                   NA
## 603                      0                   NA
## 604                      0                   NA
## 605                      0                   NA
## 606                      0                   NA
## 607                      0                   NA
## 608                      0                   NA
## 609                      0                   NA
## 610                      0                   NA
## 611                      0                   NA
## 612                      0                   NA
## 613                      0                   NA
## 614                      0                   NA
## 615                      0                   NA
## 616                      0                   NA
## 617                      0                   NA
## 618                      0                   NA
## 619                      0                   NA
## 620                      0                   NA
## 621                      0                   NA
## 622                      0                   NA
## 623                      0                   NA
## 624                      0                   NA
## 625                      0                   NA
## 626                      0                   NA
## 627                      0                   NA
## 628                      0                   NA
## 629                      0                   NA
## 630                      0                   NA
## 631                      0                   NA
## 632                      0                   NA
## 633                      0                   NA
## 634                      0                   NA
## 635                      0                   NA
## 636                      0                   NA
## 637                      0                   NA
## 638                      0                   NA
## 639                      0                   NA
## 640                      0                   NA
## 641                      0                   NA
## 642                      0                   NA
## 643                      0                   NA
## 644                      0                   NA
## 645                      0                   NA
## 646                      0                   NA
## 647                      0                   NA
## 648                      0                   NA
## 649                      0                   NA
## 650                      0                   NA
## 651                      0                   NA
## 652                      0                   NA
## 653                      0                   NA
## 654                      0                   NA
## 655                      0                   NA
## 656                      0                   NA
## 657                      0                   NA
## 658                      0                   NA
## 659                      0                   NA
## 660                      0                   NA
## 661                      0                   NA
## 662                      0                   NA
## 663                      0                   NA
## 664                      0                   NA
## 665                      0                   NA
## 666                      0                   NA
## 667                      0                   NA
## 668                      0                   NA
## 669                      0                   NA
## 670                      0                   NA
## 671                      0                   NA
## 672                      0                   NA
## 673                      0                   NA
## 674                      0                   NA
## 675                      0                   NA
## 676                      0                   NA
## 677                      0                   NA
## 678                      0                   NA
## 679                      0                   NA
## 680                      0                   NA
## 681                      0                   NA
## 682                      0                   NA
## 683                      0                   NA
## 684                      0                   NA
## 685                      0                   NA
## 686                      0                   NA
## 687                      0                   NA
## 688                      0                   NA
## 689                      0                   NA
## 690                      0                   NA
## 691                      0                   NA
## 692                      0                   NA
## 693                      0                   NA
## 694                      0                   NA
## 695                      0                   NA
## 696                      0                   NA
## 697                      0                   NA
## 698                      0                   NA
## 699                      0                   NA
## 700                      0                   NA
## 701                      0                   NA
## 702                      0                   NA
## 703                      0                   NA
## 704                      0                   NA
## 705                      0                   NA
## 706                      0                   NA
## 707                      0                   NA
## 708                      0                   NA
## 709                      0                   NA
## 710                      0                   NA
## 711                      0                   NA
## 712                      0                   NA
## 713                      0                   NA
## 714                      0                   NA
## 715                      0                   NA
## 716                      0                   NA
## 717                      0                   NA
## 718                      0                   NA
## 719                      0                   NA
## 720                      0                   NA
## 721                      0                   NA
## 722                      0                   NA
## 723                      0                   NA
## 724                      0                   NA
## 725                      0                   NA
## 726                      0                   NA
## 727                      0                   NA
## 728                      0                   NA
## 729                      0                   NA
## 730                      0                   NA
## 731                      0                   NA
## 732                      0                   NA
## 733                      0                   NA
## 734                      0                   NA
## 735                      0                   NA
## 736                      0                   NA
## 737                      0                   NA
## 738                      0                   NA
## 739                      0                   NA
## 740                      0                   NA
## 741                      0                   NA
## 742                      0                   NA
## 743                      0                   NA
## 744                      0                   NA
## 745                      0                   NA
## 746                      0                   NA
## 747                      0                   NA
## 748                      0                   NA
## 749                      0                   NA
## 750                      1                   NA
## 751                      0                   NA
## 752                      0                   NA
## 753                      0                   NA
## 754                      0                   NA
## 755                      0                   NA
## 756                      0                   NA
## 757                      0                   NA
## 758                      0                   NA
## 759                      0                   NA
## 760                      0                   NA
## 761                      0                   NA
## 762                      0                   NA
## 763                      0                   NA
## 764                      0                   NA
## 765                      0                   NA
## 766                      0                   NA
## 767                      0                   NA
## 768                      0                   NA
## 769                      0                   NA
## 770                      0                   NA
## 771                      0                   NA
## 772                      0                   NA
## 773                      0                   NA
## 774                      0                   NA
## 775                      0                   NA
## 776                      0                   NA
## 777                      0                   NA
## 778                      0                   NA
## 779                      0                   NA
## 780                      0                   NA
## 781                      0                   NA
## 782                      0                   NA
## 783                      0                   NA
## 784                      0                   NA
## 785                      0                   NA
## 786                      0                   NA
## 787                      0                   NA
## 788                      0                   NA
## 789                      0                   NA
## 790                      0                   NA
## 791                      0                   NA
## 792                      0                   NA
## 793                      0                   NA
## 794                      0                   NA
## 795                      0                   NA
## 796                      0                   NA
## 797                      0                   NA
## 798                      0                   NA
## 799                      0                   NA
## 800                      0                   NA
## 801                      0                   NA
## 802                      0                   NA
## 803                      0                   NA
## 804                      0                   NA
## 805                      0                   NA
## 806                      0                   NA
## 807                      0                   NA
## 808                      0                   NA
## 809                      0                   NA
## 810                      0                   NA
## 811                      0                   NA
## 812                      0                   NA
## 813                      0                   NA
## 814                      0                   NA
## 815                      0                   NA
## 816                      0                   NA
## 817                      0                   NA
## 818                      0                   NA
## 819                      0                   NA
## 820                      0                   NA
## 821                      0                   NA
## 822                      0                   NA
## 823                      0                   NA
## 824                      0                   NA
## 825                      0                   NA
## 826                      0                   NA
## 827                      0                   NA
## 828                      0                   NA
## 829                      0                   NA
## 830                      0                   NA
## 831                      0                   NA
## 832                      0                   NA
## 833                      0                   NA
## 834                      0                   NA
## 835                      0                   NA
## 836                      0                   NA
## 837                      0                   NA
## 838                      0                   NA
## 839                      0                   NA
## 840                      0                   NA
## 841                      0                   NA
## 842                      0                   NA
## 843                      0                   NA
## 844                      0                   NA
## 845                      0                   NA
## 846                      0                   NA
## 847                      0                   NA
## 848                      0                   NA
## 849                      0                   NA
## 850                      0                   NA
## 851                      0                   NA
## 852                      0                   NA
## 853                      0                   NA
## 854                      0                   NA
## 855                      0                   NA
## 856                      0                   NA
## 857                      0                   NA
## 858                      0                   NA
## 859                      0                   NA
## 860                      0                   NA
## 861                      0                   NA
## 862                      0                   NA
## 863                      0                   NA
## 864                      0                   NA
## 865                      0                   NA
## 866                      0                   NA
## 867                      0                   NA
## 868                      0                   NA
## 869                      0                   NA
## 870                      0                   NA
## 871                      0                   NA
## 872                      0                   NA
## 873                      0                   NA
## 874                      0                   NA
## 875                      0                   NA
## 876                      0                   NA
## 877                      0                   NA
## 878                      0                   NA
## 879                      0                   NA
## 880                      0                   NA
## 881                      0                   NA
## 882                      0                   NA
## 883                      0                   NA
## 884                      0                   NA
## 885                      0                   NA
## 886                      0                   NA
## 887                      0                   NA
## 888                      0                   NA
## 889                      0                   NA
## 890                      0                   NA
## 891                      0                   NA
## 892                      0                   NA
## 893                      0                   NA
## 894                      0                   NA
## 895                      0                   NA
## 896                      0                   NA
## 897                      0                   NA
## 898                      0                   NA
## 899                      0                   NA
## 900                      0                   NA
## 901                      0                   NA
## 902                      0                   NA
## 903                      0                   NA
## 904                      0                   NA
## 905                      0                   NA
## 906                      0                   NA
## 907                      0                   NA
## 908                      0                   NA
## 909                      0                   NA
## 910                      0                   NA
## 911                      0                   NA
## 912                      0                   NA
## 913                      0                   NA
## 914                      0                   NA
## 915                      0                   NA
## 916                      0                   NA
## 917                      0                   NA
## 918                      0                   NA
## 919                      0                   NA
## 920                      0                   NA
## 921                      0                   NA
## 922                      0                   NA
## 923                      0                   NA
## 924                      0                   NA
## 925                      0                   NA
## 926                      0                   NA
## 927                      0                   NA
## 928                      0                   NA
## 929                      0                   NA
## 930                      0                   NA
## 931                      0                   NA
## 932                      0                   NA
## 933                      0                   NA
## 934                      0                   NA
## 935                      0                   NA
## 936                      0                   NA
## 937                      0                   NA
## 938                      0                   NA
## 939                      0                   NA
## 940                      0                   NA
## 941                      0                   NA
## 942                      0                   NA
## 943                      0                   NA
## 944                      0                   NA
## 945                      0                   NA
## 946                      0                   NA
## 947                      0                   NA
## 948                      0                   NA
## 949                      0                   NA
## 950                      0                   NA
## 951                      0                   NA
## 952                      0                   NA
## 953                      0                   NA
## 954                      0                   NA
## 955                      0                   NA
## 956                      0                   NA
## 957                      0                   NA
## 958                      0                   NA
## 959                      0                   NA
## 960                      0                   NA
## 961                      0                   NA
## 962                      0                   NA
## 963                      0                   NA
## 964                      0                   NA
## 965                      0                   NA
## 966                      0                   NA
## 967                      0                   NA
## 968                      0                   NA
## 969                      0                   NA
## 970                      0                   NA
## 971                      0                   NA
## 972                      0                   NA
## 973                      0                   NA
## 974                      0                   NA
## 975                      0                   NA
## 976                      0                   NA
## 977                      0                   NA
## 978                      0                   NA
## 979                      0                   NA
## 980                      0                   NA
## 981                      0                   NA
## 982                      0                   NA
## 983                      0                   NA
## 984                      0                   NA
## 985                      0                   NA
## 986                      0                   NA
## 987                      0                   NA
## 988                      0                   NA
## 989                      0                   NA
## 990                      0                   NA
## 991                      0                   NA
## 992                      0                   NA
## 993                      0                   NA
## 994                      0                   NA
## 995                      0                   NA
## 996                      0                   NA
## 997                      0                   NA
## 998                      0                   NA
## 999                      0                   NA
## 1000                     0                   NA
## 1001                     0                   NA
## 1002                     0                   NA
## 1003                     0                   NA
## 1004                     0                   NA
## 1005                     0                   NA
## 1006                     0                   NA
## 1007                     0                   NA
## 1008                     0                   NA
## 1009                     0                   NA
## 1010                     0                   NA
## 1011                     0                   NA
## 1012                     0                   NA
## 1013                     0                   NA
## 1014                     0                   NA
## 1015                     0                   NA
## 1016                     0                   NA
## 1017                     0                   NA
## 1018                     1                   NA
## 1019                     0                   NA
## 1020                     0                   NA
## 1021                     0                   NA
## 1022                     0                   NA
## 1023                     0                   NA
## 1024                     0                   NA
## 1025                     0                   NA
## 1026                     0                   NA
## 1027                     0                   NA
## 1028                     0                   NA
## 1029                     0                   NA
## 1030                     0                   NA
## 1031                     0                   NA
## 1032                     0                   NA
## 1033                     0                   NA
## 1034                     0                   NA
## 1035                     0                   NA
## 1036                     0                   NA
## 1037                     0                   NA
## 1038                     0                   NA
## 1039                     0                   NA
## 1040                     0                   NA
## 1041                     0                   NA
## 1042                     0                   NA
## 1043                     0                   NA
## 1044                     0                   NA
## 1045                     0                   NA
## 1046                     0                   NA
## 1047                     0                   NA
## 1048                     0                   NA
## 1049                     0                   NA
## 1050                     0                   NA
## 1051                     0                   NA
## 1052                     0                   NA
## 1053                     0                   NA
## 1054                     0                   NA
## 1055                     0                   NA
## 1056                     0                   NA
## 1057                     0                   NA
## 1058                     0                   NA
## 1059                     0                   NA
## 1060                     0                   NA
## 1061                     0                   NA
## 1062                     0                   NA
## 1063                     0                   NA
## 1064                     0                   NA
## 1065                     0                   NA
## 1066                     0                   NA
## 1067                     0                   NA
## 1068                     0                   NA
## 1069                     0                   NA
## 1070                     0                   NA
## 1071                     0                   NA
## 1072                     0                   NA
## 1073                     0                   NA
## 1074                     0                   NA
## 1075                     0                   NA
## 1076                     0                   NA
## 1077                     0                   NA
## 1078                     0                   NA
## 1079                     0                   NA
## 1080                     0                   NA
## 1081                     0                   NA
## 1082                     0                   NA
## 1083                     0                   NA
## 1084                     0                   NA
## 1085                     0                   NA
## 1086                     0                   NA
## 1087                     0                   NA
## 1088                     0                   NA
## 1089                     0                   NA
## 1090                     0                   NA
## 1091                     0                   NA
## 1092                     0                   NA
## 1093                     0                   NA
## 1094                     0                   NA
## 1095                     0                   NA
## 1096                     0                   NA
## 1097                     0                   NA
## 1098                     0                   NA
## 1099                     0                   NA
## 1100                     0                   NA
## 1101                     0                   NA
## 1102                     0                   NA
## 1103                     0                   NA
## 1104                     0                   NA
## 1105                     0                   NA
## 1106                     0                   NA
## 1107                     0                   NA
## 1108                     0                   NA
## 1109                     0                   NA
## 1110                     0                   NA
## 1111                     0                   NA
## 1112                     0                   NA
## 1113                     0                   NA
## 1114                     0                   NA
## 1115                     0                   NA
## 1116                     0                   NA
## 1117                     0                   NA
## 1118                     0                   NA
## 1119                     0                   NA
## 1120                     0                   NA
## 1121                     0                   NA
## 1122                     0                   NA
## 1123                     0                   NA
## 1124                     0                   NA
## 1125                     0                   NA
## 1126                     0                   NA
## 1127                     0                   NA
## 1128                     0                   NA
## 1129                     0                   NA
## 1130                     0                   NA
## 1131                     0                   NA
## 1132                     0                   NA
## 1133                     0                   NA
## 1134                     0                   NA
## 1135                     0                   NA
## 1136                     0                   NA
## 1137                     0                   NA
## 1138                     0                   NA
## 1139                     0                   NA
## 1140                     0                   NA
## 1141                     0                   NA
## 1142                     0                   NA
## 1143                     0                   NA
## 1144                     0                   NA
## 1145                     0                   NA
## 1146                     0                   NA
## 1147                     0                   NA
## 1148                     0                   NA
## 1149                     0                   NA
## 1150                     0                   NA
## 1151                     0                   NA
## 1152                     0                   NA
## 1153                     0                   NA
## 1154                     0                   NA
## 1155                     0                   NA
## 1156                     0                   NA
## 1157                     0                   NA
## 1158                     0                   NA
## 1159                     0                   NA
## 1160                     0                   NA
## 1161                     0                   NA
## 1162                     0                   NA
## 1163                     0                   NA
## 1164                     0                   NA
## 1165                     0                   NA
## 1166                     0                   NA
## 1167                     0                   NA
## 1168                     0                   NA
## 1169                     0                   NA
## 1170                     0                   NA
## 1171                     0                   NA
## 1172                     0                   NA
## 1173                     0                   NA
## 1174                     0                   NA
## 1175                     0                   NA
## 1176                     0                   NA
## 1177                     0                   NA
## 1178                     0                   NA
## 1179                     0                   NA
## 1180                     0                   NA
## 1181                     0                   NA
## 1182                     0                   NA
## 1183                     0                   NA
## 1184                     0                   NA
## 1185                     0                   NA
## 1186                     0                   NA
## 1187                     0                   NA
## 1188                     0                   NA
## 1189                     0                   NA
## 1190                     0                   NA
## 1191                     0                   NA
## 1192                     0                   NA
## 1193                     0                   NA
## 1194                     0                   NA
## 1195                     0                   NA
## 1196                     0                   NA
## 1197                     0                   NA
## 1198                     0                   NA
## 1199                     0                   NA
## 1200                     0                   NA
## 1201                     0                   NA
## 1202                     0                   NA
## 1203                     0                   NA
## 1204                     0                   NA
## 1205                     0                   NA
## 1206                     0                   NA
## 1207                     0                   NA
## 1208                     0                   NA
## 1209                     0                   NA
## 1210                     0                   NA
## 1211                     0                   NA
## 1212                     0                   NA
## 1213                     0                   NA
## 1214                     0                   NA
## 1215                     0                   NA
## 1216                     0                   NA
## 1217                     0                   NA
## 1218                     0                   NA
## 1219                     0                   NA
## 1220                     0                   NA
## 1221                     0                   NA
## 1222                     0                   NA
## 1223                     0                   NA
## 1224                     0                   NA
## 1225                     0                   NA
## 1226                     0                   NA
## 1227                     0                   NA
## 1228                     0                   NA
## 1229                     0                   NA
## 1230                     0                   NA
## 1231                     0                   NA
## 1232                     0                   NA
## 1233                     0                   NA
## 1234                     0                   NA
## 1235                     0                   NA
## 1236                     0                   NA
## 1237                     0                   NA
## 1238                     0                   NA
## 1239                     0                   NA
## 1240                     0                   NA
## 1241                     0                   NA
## 1242                     0                   NA
## 1243                     0                   NA
## 1244                     0                   NA
## 1245                     0                   NA
## 1246                     0                   NA
## 1247                     0                   NA
## 1248                     0                   NA
## 1249                     0                   NA
## 1250                     0                   NA
## 1251                     0                   NA
## 1252                     0                   NA
## 1253                     0                   NA
## 1254                     0                   NA
## 1255                     0                   NA
## 1256                     0                   NA
## 1257                     0                   NA
## 1258                     0                   NA
## 1259                     0                   NA
## 1260                     0                   NA
## 1261                     0                   NA
## 1262                     0                   NA
## 1263                     0                   NA
## 1264                     0                   NA
## 1265                     0                   NA
## 1266                     0                   NA
## 1267                     0                   NA
## 1268                     0                   NA
## 1269                     0                   NA
## 1270                     0                   NA
## 1271                     0                   NA
## 1272                     0                   NA
## 1273                     0                   NA
## 1274                     0                   NA
## 1275                     0                   NA
## 1276                     0                   NA
## 1277                     0                   NA
## 1278                     0                   NA
## 1279                     0                   NA
## 1280                     0                   NA
## 1281                     0                   NA
## 1282                     0                   NA
## 1283                     0                   NA
## 1284                     0                   NA
## 1285                     0                   NA
## 1286                     1                   NA
## 1287                     0                   NA
## 1288                     0                   NA
## 1289                     0                   NA
## 1290                     0                   NA
## 1291                     0                   NA
## 1292                     0                   NA
## 1293                     0                   NA
## 1294                     0                   NA
## 1295                     0                   NA
## 1296                     0                   NA
## 1297                     0                   NA
## 1298                     0                   NA
## 1299                     0                   NA
## 1300                     0                   NA
## 1301                     0                   NA
## 1302                     0                   NA
## 1303                     0                   NA
## 1304                     0                   NA
## 1305                     0                   NA
## 1306                     0                   NA
## 1307                     0                   NA
## 1308                     0                   NA
## 1309                     0                   NA
## 1310                     0                   NA
## 1311                     0                   NA
## 1312                     0                   NA
## 1313                     0                   NA
## 1314                     0                   NA
## 1315                     0                   NA
## 1316                     0                   NA
## 1317                     0                   NA
## 1318                     0                   NA
## 1319                     0                   NA
## 1320                     0                   NA
## 1321                     0                   NA
## 1322                     0                   NA
## 1323                     0                   NA
## 1324                     0                   NA
## 1325                     0                   NA
## 1326                     0                   NA
## 1327                     0                   NA
## 1328                     0                   NA
## 1329                     0                   NA
## 1330                     0                   NA
## 1331                     0                   NA
## 1332                     0                   NA
## 1333                     0                   NA
## 1334                     0                   NA
## 1335                     0                   NA
## 1336                     0                   NA
## 1337                     0                   NA
## 1338                     0                   NA
## 1339                     0                   NA
## 1340                     0                   NA
## 1341                     0                   NA
## 1342                     0                   NA
## 1343                     0                   NA
## 1344                     0                   NA
## 1345                     0                   NA
## 1346                     0                   NA
## 1347                     0                   NA
## 1348                     0                   NA
## 1349                     0                   NA
## 1350                     0                   NA
## 1351                     0                   NA
## 1352                     0                   NA
## 1353                     0                   NA
## 1354                     0                   NA
## 1355                     0                   NA
## 1356                     0                   NA
## 1357                     0                   NA
## 1358                     0                   NA
## 1359                     0                   NA
## 1360                     0                   NA
## 1361                     0                   NA
## 1362                     0                   NA
## 1363                     0                   NA
## 1364                     0                   NA
## 1365                     0                   NA
## 1366                     0                   NA
## 1367                     0                   NA
## 1368                     0                   NA
## 1369                     0                   NA
## 1370                     0                   NA
## 1371                     0                   NA
## 1372                     0                   NA
## 1373                     0                   NA
## 1374                     0                   NA
## 1375                     0                   NA
## 1376                     0                   NA
## 1377                     0                   NA
## 1378                     0                   NA
## 1379                     0                   NA
## 1380                     0                   NA
## 1381                     0                   NA
## 1382                     0                   NA
## 1383                     0                   NA
## 1384                     0                   NA
## 1385                     0                   NA
## 1386                     0                   NA
## 1387                     0                   NA
## 1388                     0                   NA
## 1389                     0                   NA
## 1390                     0                   NA
## 1391                     0                   NA
## 1392                     0                   NA
## 1393                     0                   NA
## 1394                     0                   NA
## 1395                     0                   NA
## 1396                     0                   NA
## 1397                     0                   NA
## 1398                     0                   NA
## 1399                     0                   NA
## 1400                     0                   NA
## 1401                     0                   NA
## 1402                     0                   NA
## 1403                     0                   NA
## 1404                     0                   NA
## 1405                     0                   NA
## 1406                     0                   NA
## 1407                     0                   NA
## 1408                     0                   NA
## 1409                     0                   NA
## 1410                     0                   NA
## 1411                     0                   NA
## 1412                     0                   NA
## 1413                     0                   NA
## 1414                     0                   NA
## 1415                     0                   NA
## 1416                     0                   NA
## 1417                     0                   NA
## 1418                     0                   NA
## 1419                     0                   NA
## 1420                     3                   NA
## 1421                     0                   NA
## 1422                     0                   NA
## 1423                     0                   NA
## 1424                     0                   NA
## 1425                     0                   NA
## 1426                     0                   NA
## 1427                     0                   NA
## 1428                     0                   NA
## 1429                     0                   NA
## 1430                     0                   NA
## 1431                     0                   NA
## 1432                     0                   NA
## 1433                     0                   NA
## 1434                     0                   NA
## 1435                     0                   NA
## 1436                     0                   NA
## 1437                     0                   NA
## 1438                     0                   NA
## 1439                     0                   NA
## 1440                     0                   NA
## 1441                     0                   NA
## 1442                     0                   NA
## 1443                     0                   NA
## 1444                     0                   NA
## 1445                     0                   NA
## 1446                     0                   NA
## 1447                     0                   NA
## 1448                     0                   NA
## 1449                     0                   NA
## 1450                     0                   NA
## 1451                     0                   NA
## 1452                     0                   NA
## 1453                     0                   NA
## 1454                     0                   NA
## 1455                     0                   NA
## 1456                     0                   NA
## 1457                     0                   NA
## 1458                     0                   NA
## 1459                     0                   NA
## 1460                     0                   NA
## 1461                     0                   NA
## 1462                     0                   NA
## 1463                     0                   NA
## 1464                     0                   NA
## 1465                     0                   NA
## 1466                     0                   NA
## 1467                     0                   NA
## 1468                     0                   NA
## 1469                     0                   NA
## 1470                     0                   NA
## 1471                     0                   NA
## 1472                     0                   NA
## 1473                     0                   NA
## 1474                     0                   NA
## 1475                     0                   NA
## 1476                     0                   NA
## 1477                     0                   NA
## 1478                     0                   NA
## 1479                     0                   NA
## 1480                     0                   NA
## 1481                     0                   NA
## 1482                     0                   NA
## 1483                     0                   NA
## 1484                     0                   NA
## 1485                     0                   NA
## 1486                     0                   NA
## 1487                    11                   NA
## 1488                     0                   NA
## 1489                     0                   NA
## 1490                     0                   NA
## 1491                     0                   NA
## 1492                     0                   NA
## 1493                     0                   NA
## 1494                     0                   NA
## 1495                     0                   NA
## 1496                     0                   NA
## 1497                     0                   NA
## 1498                     0                   NA
## 1499                     0                   NA
## 1500                     0                   NA
## 1501                     0                   NA
## 1502                     0                   NA
## 1503                     0                   NA
## 1504                     0                   NA
## 1505                     0                   NA
## 1506                     0                   NA
## 1507                     0                   NA
## 1508                     0                   NA
## 1509                     0                   NA
## 1510                     0                   NA
## 1511                     0                   NA
## 1512                     0                   NA
## 1513                     0                   NA
## 1514                     0                   NA
## 1515                     0                   NA
## 1516                     0                   NA
## 1517                     0                   NA
## 1518                     0                   NA
## 1519                     0                   NA
## 1520                     0                   NA
## 1521                     0                   NA
## 1522                     0                   NA
## 1523                     0                   NA
## 1524                     0                   NA
## 1525                     0                   NA
## 1526                     0                   NA
## 1527                     0                   NA
## 1528                     0                   NA
## 1529                     0                   NA
## 1530                     0                   NA
## 1531                     0                   NA
## 1532                     0                   NA
## 1533                     0                   NA
## 1534                     0                   NA
## 1535                     0                   NA
## 1536                     0                   NA
## 1537                     0                   NA
## 1538                     0                   NA
## 1539                     0                   NA
## 1540                     0                   NA
## 1541                     0                   NA
## 1542                     0                    0
## 1543                     0                   NA
## 1544                     0                    0
## 1545                     0                    0
## 1546                     0                    0
## 1547                     0                    0
## 1548                     0                    0
## 1549                     0                    0
## 1550                     0                    0
## 1551                     0                    0
## 1552                     0                    0
## 1553                     0                    0
## 1554                     0                    0
## 1555                     0                    0
## 1556                     0                    0
## 1557                     0                    0
## 1558                     0                    0
## 1559                     0                   NA
## 1560                     0                    0
## 1561                     0                    0
## 1562                     0                    0
## 1563                     0                    0
## 1564                     0                    0
## 1565                     0                    0
## 1566                     0                    0
## 1567                     0                    0
## 1568                     0                    0
## 1569                     0                    0
## 1570                     0                    0
## 1571                     0                    0
## 1572                     0                    0
## 1573                     0                    0
## 1574                     0                    0
## 1575                     0                    0
## 1576                     0                    0
## 1577                     0                    0
## 1578                     0                    0
## 1579                     0                    0
## 1580                     0                    0
## 1581                     0                    0
## 1582                     0                    0
## 1583                     0                   NA
## 1584                     0                    0
## 1585                     0                    0
## 1586                     0                    0
## 1587                     0                    0
## 1588                     0                    0
## 1589                     0                    0
## 1590                     0                    0
## 1591                     0                    0
## 1592                     0                    0
## 1593                     0                    0
## 1594                     0                    0
## 1595                     0                    0
## 1596                     0                    0
## 1597                     0                    0
## 1598                     0                    0
## 1599                     0                    0
## 1600                     0                    0
## 1601                     0                    0
## 1602                     0                    0
## 1603                     0                    0
## 1604                     0                    0
## 1605                     0                    0
## 1606                     0                    0
## 1607                     0                   NA
## 1608                     0                   NA
## 1609                     0                    0
## 1610                     0                    0
## 1611                     0                    0
## 1612                     0                    0
## 1613                     0                    0
## 1614                     0                    0
## 1615                     0                   NA
## 1616                     0                    0
## 1617                     0                   NA
## 1618                     0                    0
## 1619                     0                    0
## 1620                     0                    0
## 1621                     0                    0
## 1622                     0                    0
## 1623                     0                    0
## 1624                     0                    0
## 1625                     0                    0
## 1626                     0                   NA
## 1627                     0                    0
## 1628                     0                    0
## 1629                     0                    0
## 1630                     0                    0
## 1631                     0                    0
## 1632                     0                    0
## 1633                     0                    0
## 1634                     0                    0
## 1635                     0                    0
## 1636                     0                    0
## 1637                     0                   NA
## 1638                     0                    0
## 1639                     0                    0
## 1640                     0                    0
## 1641                     0                   NA
## 1642                     0                    0
## 1643                     0                   NA
## 1644                     0                    0
## 1645                     0                    0
## 1646                     0                    0
## 1647                     0                    0
## 1648                     0                   NA
## 1649                     0                   NA
## 1650                     0                    0
## 1651                     0                   NA
## 1652                     0                    0
## 1653                     0                   NA
## 1654                     0                    0
## 1655                     0                   NA
## 1656                     0                    0
## 1657                     0                   NA
## 1658                     0                    0
## 1659                     0                   NA
## 1660                     0                    0
## 1661                     0                   NA
## 1662                     0                    0
## 1663                     0                    0
## 1664                     0                    0
## 1665                     0                   NA
## 1666                     0                    0
## 1667                     0                    0
## 1668                     0                    0
## 1669                     0                   NA
## 1670                     0                    0
## 1671                     0                   NA
## 1672                     0                    0
## 1673                     0                    0
## 1674                     0                    0
## 1675                     0                    0
## 1676                     0                   NA
## 1677                     0                    0
## 1678                     0                   NA
## 1679                     0                    0
## 1680                     0                   NA
## 1681                     0                    0
## 1682                     0                    0
## 1683                     0                   NA
## 1684                     0                    0
## 1685                     0                   NA
## 1686                     0                    0
## 1687                     0                   NA
## 1688                     0                    0
## 1689                     0                    0
## 1690                     0                   NA
## 1691                     0                    0
## 1692                     0                   NA
## 1693                     0                    0
## 1694                     0                    0
## 1695                     0                   NA
## 1696                     0                    0
## 1697                     0                    0
## 1698                     0                    0
## 1699                     0                    0
## 1700                     0                   NA
## 1701                     0                    0
## 1702                     0                   NA
## 1703                     0                    0
## 1704                     0                    0
## 1705                     0                   NA
## 1706                     0                    0
## 1707                     0                    0
## 1708                     0                    0
## 1709                     0                   NA
## 1710                     0                    0
## 1711                     0                   NA
## 1712                     0                    0
## 1713                     0                   NA
## 1714                     0                    0
## 1715                     0                   NA
## 1716                     0                    0
## 1717                     0                   NA
## 1718                     0                    0
## 1719                     0                    0
## 1720                     0                    0
## 1721                     0                   NA
## 1722                     0                    0
## 1723                     0                    0
## 1724                     0                   NA
## 1725                     0                    0
## 1726                     0                   NA
## 1727                     0                    0
## 1728                     0                   NA
## 1729                     0                    0
## 1730                     0                   NA
## 1731                     0                    0
## 1732                     0                   NA
## 1733                     0                    0
## 1734                     0                   NA
## 1735                     0                    0
## 1736                     0                   NA
## 1737                     0                    0
## 1738                     0                   NA
## 1739                     0                    0
## 1740                     0                    0
## 1741                     0                   NA
## 1742                     0                    0
## 1743                     0                   NA
## 1744                     0                    0
## 1745                     0                   NA
## 1746                     0                    0
## 1747                     0                    0
## 1748                     0                    0
## 1749                     0                    0
## 1750                     0                   NA
## 1751                     0                    0
## 1752                     0                   NA
## 1753                     0                    0
## 1754                     0                   NA
## 1755                     0                    0
## 1756                     0                    0
## 1757                     0                    0
## 1758                     0                   NA
## 1759                     0                    0
## 1760                     0                    0
## 1761                     0                   NA
## 1762                     0                    0
## 1763                     0                   NA
## 1764                     0                    0
## 1765                     0                    0
## 1766                     0                    0
## 1767                     0                   NA
## 1768                     0                    0
## 1769                     0                   NA
## 1770                     0                    0
## 1771                     0                   NA
## 1772                     0                    0
## 1773                     0                    0
## 1774                     0                    0
## 1775                     0                    0
## 1776                     0                   NA
## 1777                     0                    0
## 1778                     0                   NA
## 1779                     0                    0
## 1780                     0                   NA
## 1781                     0                    0
## 1782                     0                    0
## 1783                     0                   NA
## 1784                     0                    0
## 1785                     0                   NA
## 1786                     0                    0
## 1787                     0                    0
## 1788                     0                   NA
## 1789                     0                    0
## 1790                     0                   NA
## 1791                     0                    0
## 1792                     0                   NA
## 1793                     0                    0
## 1794                     0                    0
## 1795                     0                    0
## 1796                     0                    0
## 1797                     0                    0
## 1798                     0                    0
## 1799                     0                    0
## 1800                     0                    0
## 1801                     0                    0
## 1802                     0                    0
## 1803                     0                    0
## 1804                     0                    0
## 1805                     0                    0
## 1806                     0                    0
## 1807                     0                    0
## 1808                     0                   NA
## 1809                     0                    0
## 1810                     0                    0
## 1811                     0                    0
## 1812                     0                    0
## 1813                     0                    0
## 1814                     0                    0
## 1815                     0                    0
## 1816                     0                    0
## 1817                     0                    0
## 1818                     0                    0
## 1819                     0                    0
## 1820                     0                    0
## 1821                     0                    0
## 1822                     0                    0
## 1823                     0                    0
## 1824                     0                    0
## 1825                     0                    0
## 1826                     0                    0
## 1827                     0                    0
## 1828                     0                    0
## 1829                     0                    0
## 1830                     0                    0
## 1831                     0                    0
## 1832                     0                   NA
## 1833                     0                    0
## 1834                     0                    0
## 1835                     0                    0
## 1836                     0                    0
## 1837                     0                    0
## 1838                     0                    0
## 1839                     0                    0
## 1840                     0                    0
## 1841                     0                    0
## 1842                     0                    0
## 1843                     0                    0
## 1844                     0                    0
## 1845                     0                    0
## 1846                     0                    0
## 1847                     0                    0
## 1848                     0                    0
## 1849                     0                    0
## 1850                     0                    0
## 1851                     0                    0
## 1852                     0                    0
## 1853                     0                    0
## 1854                     0                    0
## 1855                     0                    0
## 1856                     0                   NA
## 1857                     0                   NA
## 1858                     0                    0
## 1859                     0                    0
## 1860                     0                    0
## 1861                     0                    0
## 1862                     0                    0
## 1863                     0                    0
## 1864                     0                   NA
## 1865                     0                    0
## 1866                     0                   NA
## 1867                     0                    0
## 1868                     0                    0
## 1869                     0                    0
## 1870                     0                    0
## 1871                     0                    0
## 1872                     0                    0
## 1873                     0                    0
## 1874                     0                    0
## 1875                     0                   NA
## 1876                     0                    0
## 1877                     0                    0
## 1878                     0                    0
## 1879                     0                    0
## 1880                     0                    0
## 1881                     0                    0
## 1882                     0                    0
## 1883                     0                    0
## 1884                     0                    0
## 1885                     0                   NA
## 1886                     0                    0
## 1887                     0                    0
## 1888                     0                    0
## 1889                     0                    0
## 1890                     0                   NA
## 1891                     0                    0
## 1892                     0                   NA
## 1893                     0                    0
## 1894                     0                    0
## 1895                     0                    0
## 1896                     0                    0
## 1897                     0                   NA
## 1898                     9                   NA
## 1899                     0                    0
## 1900                     0                   NA
## 1901                     0                    0
## 1902                     0                   NA
## 1903                     0                    0
## 1904                     0                   NA
## 1905                     0                    0
## 1906                     0                   NA
## 1907                     0                    0
## 1908                     0                   NA
## 1909                     0                    0
## 1910                     0                   NA
## 1911                     0                    0
## 1912                     0                    0
## 1913                     0                    0
## 1914                     0                   NA
## 1915                     0                    0
## 1916                     0                    0
## 1917                     0                    0
## 1918                     0                   NA
## 1919                     0                    0
## 1920                     0                   NA
## 1921                     0                    0
## 1922                     0                    0
## 1923                     0                    0
## 1924                     0                    0
## 1925                     0                   NA
## 1926                     0                    0
## 1927                     0                   NA
## 1928                     0                    0
## 1929                     0                   NA
## 1930                     0                    0
## 1931                     0                    0
## 1932                     0                   NA
## 1933                     0                    0
## 1934                     0                   NA
## 1935                     0                    0
## 1936                     0                    0
## 1937                     0                   NA
## 1938                     0                    0
## 1939                     0                   NA
## 1940                     0                    0
## 1941                     0                   NA
## 1942                     0                    0
## 1943                     0                    0
## 1944                     0                   NA
## 1945                     0                    0
## 1946                     0                    0
## 1947                     0                    0
## 1948                     0                    0
## 1949                     0                   NA
## 1950                     0                    0
## 1951                     0                    0
## 1952                     0                   NA
## 1953                     0                    0
## 1954                     0                   NA
## 1955                     0                    0
## 1956                     0                    0
## 1957                     0                    0
## 1958                     0                   NA
## 1959                     0                    0
## 1960                     0                   NA
## 1961                     0                    0
## 1962                     0                   NA
## 1963                     0                    0
## 1964                     0                   NA
## 1965                     0                    0
## 1966                     0                   NA
## 1967                     0                    0
## 1968                     0                    0
## 1969                     0                    0
## 1970                     0                   NA
## 1971                     0                    0
## 1972                     0                    0
## 1973                     0                   NA
## 1974                     0                    0
## 1975                     0                   NA
## 1976                     0                    0
## 1977                     0                   NA
## 1978                     0                    0
## 1979                     0                   NA
## 1980                     0                   NA
## 1981                     0                    0
## 1982                     0                    0
## 1983                     0                   NA
## 1984                     0                    0
## 1985                     0                   NA
## 1986                     0                    0
## 1987                     0                   NA
## 1988                     0                    0
## 1989                     0                    0
## 1990                     0                   NA
## 1991                     0                    0
## 1992                     0                   NA
## 1993                     0                    0
## 1994                     0                   NA
## 1995                     0                    0
## 1996                     0                    0
## 1997                     0                    0
## 1998                     0                    0
## 1999                     0                   NA
## 2000                     0                    0
## 2001                     0                   NA
## 2002                     0                    0
## 2003                     0                   NA
## 2004                     0                    0
## 2005                     0                    0
## 2006                     0                    0
## 2007                     0                   NA
## 2008                     0                    0
## 2009                     0                    0
## 2010                     0                   NA
## 2011                     0                    0
## 2012                     0                   NA
## 2013                     0                    0
## 2014                     0                    0
## 2015                     0                    0
## 2016                     0                   NA
## 2017                     0                    0
## 2018                     0                   NA
## 2019                     0                    0
## 2020                     0                   NA
## 2021                     0                    0
## 2022                     0                    0
## 2023                     0                    0
## 2024                     0                    0
## 2025                     0                   NA
## 2026                     0                    0
## 2027                     0                   NA
## 2028                     0                    0
## 2029                     0                   NA
## 2030                     0                    0
## 2031                     0                    0
## 2032                     0                   NA
## 2033                     0                    0
## 2034                     0                   NA
## 2035                     0                    0
## 2036                     0                    0
## 2037                     0                   NA
## 2038                     0                    0
## 2039                     0                   NA
## 2040                     0                    0
## 2041                     0                   NA
## 2042                     0                    0
## 2043                     0                    0
## 2044                     0                    0
## 2045                     0                    0
## 2046                     0                    0
## 2047                     0                    0
## 2048                     0                    0
## 2049                     0                    0
## 2050                     0                    0
## 2051                     0                    0
## 2052                     0                    0
## 2053                     0                    0
## 2054                     0                    0
## 2055                     0                    0
## 2056                     0                    0
## 2057                     0                   NA
## 2058                     0                    0
## 2059                     0                    0
## 2060                     0                    0
## 2061                     0                    0
## 2062                     0                    0
## 2063                     0                    0
## 2064                     0                    0
## 2065                     0                    0
## 2066                     0                    0
## 2067                     0                    0
## 2068                     0                    0
## 2069                     0                    0
## 2070                     0                    0
## 2071                     0                    0
## 2072                     0                    0
## 2073                     0                    0
## 2074                     0                    0
## 2075                     0                    0
## 2076                     0                    0
## 2077                     0                    0
## 2078                     0                    0
## 2079                     0                    0
## 2080                     0                    0
## 2081                     0                   NA
## 2082                     0                    0
## 2083                     0                    0
## 2084                     0                    0
## 2085                     0                    0
## 2086                     0                    0
## 2087                     0                    0
## 2088                     0                    0
## 2089                     0                    0
## 2090                     0                    0
## 2091                     0                    0
## 2092                     0                    0
## 2093                     0                    0
## 2094                     0                    0
## 2095                     0                    0
## 2096                     0                    0
## 2097                     0                    0
## 2098                     0                    0
## 2099                     0                    0
## 2100                     0                    0
## 2101                     0                    0
## 2102                     0                    0
## 2103                     0                    0
## 2104                     0                    0
## 2105                     0                   NA
## 2106                     0                   NA
## 2107                     0                    0
## 2108                     0                    0
## 2109                     0                    0
## 2110                     0                    0
## 2111                     0                    0
## 2112                     0                    0
## 2113                     0                   NA
## 2114                     0                    0
## 2115                     0                   NA
## 2116                     0                    0
## 2117                     0                    0
## 2118                     0                    0
## 2119                     0                    0
## 2120                     0                    0
## 2121                     0                    0
## 2122                     0                    0
## 2123                     0                    0
## 2124                     0                   NA
## 2125                     0                    0
## 2126                     0                    0
## 2127                     0                    0
## 2128                     0                    0
## 2129                     0                    0
## 2130                     0                    0
## 2131                     0                    0
## 2132                     0                    0
## 2133                     0                    0
## 2134                     0                    0
## 2135                     0                   NA
## 2136                     0                    0
## 2137                     0                    0
## 2138                     0                    0
## 2139                     0                   NA
## 2140                     0                    0
## 2141                     0                   NA
## 2142                     0                    0
## 2143                     0                    0
## 2144                     0                    0
## 2145                     0                    0
## 2146                     0                   NA
## 2147                    15                   NA
## 2148                     0                    0
## 2149                     0                   NA
## 2150                     0                    0
## 2151                     0                   NA
## 2152                     0                    0
## 2153                     0                   NA
## 2154                     0                    0
## 2155                     0                   NA
## 2156                     0                    0
## 2157                     0                   NA
## 2158                     0                    0
## 2159                     0                   NA
## 2160                     0                    0
## 2161                     0                    0
## 2162                     0                    0
## 2163                     0                   NA
## 2164                     0                    0
## 2165                     0                    0
## 2166                     0                    0
## 2167                     0                   NA
## 2168                     0                    0
## 2169                     0                   NA
## 2170                     0                    0
## 2171                     0                    0
## 2172                     0                    0
## 2173                     0                    0
## 2174                     0                   NA
## 2175                     0                    0
## 2176                     0                   NA
## 2177                     0                    0
## 2178                     0                   NA
## 2179                     0                    0
## 2180                     0                    0
## 2181                     0                   NA
## 2182                     0                    0
## 2183                     0                   NA
## 2184                     0                    0
## 2185                     0                    0
## 2186                     0                   NA
## 2187                     0                    0
## 2188                     0                   NA
## 2189                     0                    0
## 2190                     0                   NA
## 2191                     0                    0
## 2192                     0                    0
## 2193                     0                   NA
## 2194                     0                    0
## 2195                     0                    0
## 2196                     0                    0
## 2197                     0                    0
## 2198                     0                   NA
## 2199                     0                    0
## 2200                     0                    0
## 2201                     0                   NA
## 2202                     0                    0
## 2203                     0                   NA
## 2204                     0                    0
## 2205                     0                    0
## 2206                     0                    0
## 2207                     0                   NA
## 2208                     0                    0
## 2209                     0                   NA
## 2210                     0                    0
## 2211                     0                   NA
## 2212                     0                    0
## 2213                     0                   NA
## 2214                     0                    0
## 2215                     0                   NA
## 2216                     0                    0
## 2217                     0                    0
## 2218                     0                    0
## 2219                     0                   NA
## 2220                     0                    0
## 2221                     0                    0
## 2222                     0                   NA
## 2223                     0                    0
## 2224                     0                   NA
## 2225                     0                    0
## 2226                     0                   NA
## 2227                     0                    0
## 2228                     0                   NA
## 2229                     0                    0
## 2230                     0                   NA
## 2231                     0                    0
## 2232                     0                   NA
## 2233                     0                    0
## 2234                     0                   NA
## 2235                     0                    0
## 2236                     0                   NA
## 2237                     0                    0
## 2238                     0                    0
## 2239                     0                   NA
## 2240                     0                    0
## 2241                     0                   NA
## 2242                     0                    0
## 2243                     0                   NA
## 2244                     0                    0
## 2245                     0                    0
## 2246                     0                    0
## 2247                     0                    0
## 2248                     0                   NA
## 2249                     0                    0
## 2250                     0                   NA
## 2251                     0                    0
## 2252                     0                   NA
## 2253                     0                    0
## 2254                     0                    0
## 2255                     0                    0
## 2256                     0                   NA
## 2257                     0                    0
## 2258                     0                    0
## 2259                     0                   NA
## 2260                     0                    0
## 2261                     0                   NA
## 2262                     0                    0
## 2263                     0                    0
## 2264                     0                    0
## 2265                     0                   NA
## 2266                     0                    0
## 2267                     0                   NA
## 2268                     0                    0
## 2269                     0                   NA
## 2270                     0                    0
## 2271                     0                    0
## 2272                     0                    0
## 2273                     0                    0
## 2274                     0                   NA
## 2275                     0                    0
## 2276                     0                   NA
## 2277                     0                    0
## 2278                     0                   NA
## 2279                     0                    0
## 2280                     0                    0
## 2281                     0                   NA
## 2282                     0                    0
## 2283                     0                   NA
## 2284                     0                    0
## 2285                     0                    0
## 2286                     0                   NA
## 2287                     0                    0
## 2288                     0                   NA
## 2289                     0                    0
## 2290                     0                   NA
## 2291                     0                    0
## 2292                     0                    0
## 2293                     0                    0
## 2294                     0                    0
## 2295                     0                    0
## 2296                     0                    0
## 2297                     0                    0
## 2298                     0                    0
## 2299                     0                    0
## 2300                     0                    0
## 2301                     0                    0
## 2302                     0                    0
## 2303                     0                    0
## 2304                     0                    0
## 2305                     0                    0
## 2306                     0                   NA
## 2307                     0                    0
## 2308                     0                    0
## 2309                     0                    0
## 2310                     0                    0
## 2311                     0                    0
## 2312                     0                    0
## 2313                     0                    0
## 2314                     0                    0
## 2315                     0                    0
## 2316                     0                    0
## 2317                     0                    0
## 2318                     0                    0
## 2319                     0                    0
## 2320                     0                    0
## 2321                     0                    0
## 2322                     0                    0
## 2323                     0                    0
## 2324                     0                    0
## 2325                     0                    0
## 2326                     0                    0
## 2327                     0                    0
## 2328                     0                    0
## 2329                     0                    0
## 2330                     0                   NA
## 2331                     0                    0
## 2332                     0                    0
## 2333                     0                    0
## 2334                     0                    0
## 2335                     0                    0
## 2336                     0                    0
## 2337                     0                    0
## 2338                     0                    0
## 2339                     0                    0
## 2340                     0                    0
## 2341                     0                    0
## 2342                     0                    0
## 2343                     0                    0
## 2344                     0                    0
## 2345                     0                    0
## 2346                     0                    0
## 2347                     0                    0
## 2348                     0                    0
## 2349                     0                    0
## 2350                     0                    0
## 2351                     0                    0
## 2352                     0                    0
## 2353                     0                    0
## 2354                     0                   NA
## 2355                     0                   NA
## 2356                     0                    0
## 2357                     0                    0
## 2358                     0                    0
## 2359                     0                    0
## 2360                     0                    0
## 2361                     0                    0
## 2362                     0                   NA
## 2363                     0                    0
## 2364                     0                   NA
## 2365                     0                    0
## 2366                     0                    0
## 2367                     0                    0
## 2368                     0                    0
## 2369                     0                    0
## 2370                     0                    0
## 2371                     0                    0
## 2372                     0                    0
## 2373                     0                   NA
## 2374                     0                    0
## 2375                     0                    0
## 2376                     0                    0
## 2377                     0                    0
## 2378                     0                    0
## 2379                     0                    0
## 2380                     0                    0
## 2381                     0                    0
## 2382                     0                    0
## 2383                     0                   NA
## 2384                     0                    0
## 2385                     0                    0
## 2386                     0                    0
## 2387                     0                    0
## 2388                     0                   NA
## 2389                     0                    0
## 2390                     0                   NA
## 2391                     0                    0
## 2392                     0                    0
## 2393                     0                    0
## 2394                     0                    0
## 2395                     0                   NA
## 2396                    15                   NA
## 2397                     0                    0
## 2398                     0                   NA
## 2399                     0                    0
## 2400                     0                   NA
## 2401                     0                    0
## 2402                     0                   NA
## 2403                     0                    0
## 2404                     0                   NA
## 2405                     0                    0
## 2406                     0                   NA
## 2407                     0                   NA
## 2408                     0                    1
## 2409                     0                    0
## 2410                     0                    0
## 2411                     0                    0
## 2412                     0                   NA
## 2413                     0                    0
## 2414                     0                    0
## 2415                     0                    0
## 2416                     0                   NA
## 2417                     0                    0
## 2418                     0                   NA
## 2419                     0                    0
## 2420                     0                    0
## 2421                     0                    0
## 2422                     0                    0
## 2423                     0                   NA
## 2424                     0                    0
## 2425                     0                   NA
## 2426                     0                    0
## 2427                     0                   NA
## 2428                     0                    0
## 2429                     0                    0
## 2430                     0                   NA
## 2431                     0                    0
## 2432                     0                   NA
## 2433                     0                    0
## 2434                     0                    0
## 2435                     0                   NA
## 2436                     0                    0
## 2437                     0                   NA
## 2438                     0                    0
## 2439                     0                   NA
## 2440                     0                    0
## 2441                     0                    0
## 2442                     0                   NA
## 2443                     0                    2
## 2444                     0                    0
## 2445                     0                    0
## 2446                     0                    0
## 2447                     0                   NA
## 2448                     0                    0
## 2449                     0                    0
## 2450                     0                   NA
## 2451                     0                    0
## 2452                     0                   NA
## 2453                     0                    0
## 2454                     0                    0
## 2455                     0                    0
## 2456                     0                   NA
## 2457                     0                    0
## 2458                     0                   NA
## 2459                     0                    0
## 2460                     0                   NA
## 2461                     0                    0
## 2462                     0                   NA
## 2463                     0                    0
## 2464                     0                   NA
## 2465                     0                    0
## 2466                     0                    0
## 2467                     0                    0
## 2468                     0                   NA
## 2469                     0                    0
## 2470                     0                    0
## 2471                     0                   NA
## 2472                     0                    0
## 2473                     0                   NA
## 2474                     0                    0
## 2475                     0                   NA
## 2476                     0                    0
## 2477                     0                   NA
## 2478                     0                    0
## 2479                     0                   NA
## 2480                     0                    0
## 2481                     0                   NA
## 2482                     0                    0
## 2483                     0                   NA
## 2484                     0                    0
## 2485                     0                   NA
## 2486                     0                    0
## 2487                     0                    0
## 2488                     0                   NA
## 2489                     0                    0
## 2490                     0                   NA
## 2491                     0                    0
## 2492                     0                   NA
## 2493                     0                    0
## 2494                     0                    0
## 2495                     0                    0
## 2496                     0                    0
## 2497                     0                   NA
## 2498                     0                    0
## 2499                     0                   NA
## 2500                     0                    0
## 2501                     0                   NA
## 2502                     0                    0
## 2503                     0                    0
## 2504                     0                    0
## 2505                     0                   NA
## 2506                     0                    0
## 2507                     0                    0
## 2508                     0                   NA
## 2509                     0                    0
## 2510                     0                   NA
## 2511                     0                    0
## 2512                     0                    0
## 2513                     0                    0
## 2514                     0                   NA
## 2515                     0                    0
## 2516                     0                   NA
## 2517                     0                    0
## 2518                     0                   NA
## 2519                     0                    0
## 2520                     0                    0
## 2521                     0                    0
## 2522                     0                    0
## 2523                     0                   NA
## 2524                     0                    0
## 2525                     0                   NA
## 2526                     0                    0
## 2527                     0                   NA
## 2528                     0                    0
## 2529                     0                    0
## 2530                     0                   NA
## 2531                     0                    0
## 2532                     0                   NA
## 2533                     0                    0
## 2534                     0                    0
## 2535                     0                   NA
## 2536                     0                    0
## 2537                     0                   NA
## 2538                     0                    0
## 2539                     0                   NA
## 2540                     0                    0
## 2541                     0                    0
## 2542                     0                    0
## 2543                     0                    0
## 2544                     0                    0
## 2545                     0                    0
## 2546                     0                    0
## 2547                     0                    0
## 2548                     0                    0
## 2549                     0                    0
## 2550                     0                    0
## 2551                     0                    0
## 2552                     0                    0
## 2553                     0                    0
## 2554                     0                    0
## 2555                     0                   NA
## 2556                     0                    0
## 2557                     0                    0
## 2558                     0                    0
## 2559                     0                    0
## 2560                     0                    0
## 2561                     0                    0
## 2562                     0                    0
## 2563                     0                    0
## 2564                     0                    0
## 2565                     0                    0
## 2566                     0                    0
## 2567                     0                    0
## 2568                     0                    0
## 2569                     0                    0
## 2570                     0                    0
## 2571                     0                    0
## 2572                     0                    0
## 2573                     0                    0
## 2574                     0                    0
## 2575                     0                    0
## 2576                     0                    0
## 2577                     0                    0
## 2578                     0                    0
## 2579                     0                   NA
## 2580                     0                    0
## 2581                     0                    0
## 2582                     0                    0
## 2583                     0                    0
## 2584                     0                    0
## 2585                     0                    0
## 2586                     0                    0
## 2587                     0                    0
## 2588                     0                    0
## 2589                     0                    0
## 2590                     0                    0
## 2591                     0                    0
## 2592                     0                    0
## 2593                     0                    0
## 2594                     0                    0
## 2595                     0                    0
## 2596                     0                    0
## 2597                     0                    0
## 2598                     0                    0
## 2599                     0                    0
## 2600                     0                    0
## 2601                     0                    0
## 2602                     0                    0
## 2603                     0                   NA
## 2604                     0                   NA
## 2605                     0                    0
## 2606                     0                    0
## 2607                     0                    0
## 2608                     0                    0
## 2609                     0                    0
## 2610                     0                    0
## 2611                     0                   NA
## 2612                     0                    0
## 2613                     0                   NA
## 2614                     0                    0
## 2615                     0                    0
## 2616                     0                    0
## 2617                     0                    0
## 2618                     0                    0
## 2619                     0                    0
## 2620                     0                    0
## 2621                     0                    0
## 2622                     0                   NA
## 2623                     0                    0
## 2624                     0                    0
## 2625                     0                    0
## 2626                     0                    0
## 2627                     0                    0
## 2628                     0                    0
## 2629                     0                    0
## 2630                     0                    0
## 2631                     0                    0
## 2632                     0                    0
## 2633                     0                   NA
## 2634                     0                    0
## 2635                     0                    0
## 2636                     0                    0
## 2637                     0                   NA
## 2638                     0                    0
## 2639                     0                   NA
## 2640                     0                    0
## 2641                     0                    0
## 2642                     0                    0
## 2643                     0                   NA
## 2644                     0                    0
## 2645                    25                   NA
## 2646                     0                    0
## 2647                     0                   NA
## 2648                     0                    0
## 2649                     0                   NA
## 2650                     0                    0
## 2651                     0                   NA
## 2652                     0                    0
## 2653                     0                   NA
## 2654                     0                    0
## 2655                     0                   NA
## 2656                     0                    0
## 2657                     0                   NA
## 2658                     0                    0
## 2659                     0                    0
## 2660                     0                    0
## 2661                     0                   NA
## 2662                     0                    0
## 2663                     0                    0
## 2664                     0                    0
## 2665                     0                   NA
## 2666                     0                    0
## 2667                     0                   NA
## 2668                     0                    0
## 2669                     0                    0
## 2670                     0                    0
## 2671                     0                    0
## 2672                     0                   NA
## 2673                     0                    0
## 2674                     0                   NA
## 2675                     0                    0
## 2676                     0                   NA
## 2677                     0                    0
## 2678                     0                    0
## 2679                     0                   NA
## 2680                     0                    0
## 2681                     0                   NA
## 2682                     0                    0
## 2683                     0                   NA
## 2684                     0                    0
## 2685                     0                    0
## 2686                     0                   NA
## 2687                     0                   NA
## 2688                     0                    0
## 2689                     0                    0
## 2690                     0                    0
## 2691                     0                    0
## 2692                     0                   NA
## 2693                     0                    0
## 2694                     0                    0
## 2695                     0                    0
## 2696                     0                   NA
## 2697                     0                    0
## 2698                     0                    0
## 2699                     0                   NA
## 2700                     0                    0
## 2701                     0                   NA
## 2702                     0                    0
## 2703                     0                    0
## 2704                     0                    0
## 2705                     0                   NA
## 2706                     0                    0
## 2707                     0                   NA
## 2708                     0                    0
## 2709                     0                   NA
## 2710                     0                    0
## 2711                     0                   NA
## 2712                     0                    0
## 2713                     0                   NA
## 2714                     0                    0
## 2715                     0                    0
## 2716                     0                    0
## 2717                     0                   NA
## 2718                     0                    0
## 2719                     0                    0
## 2720                     0                   NA
## 2721                     0                    0
## 2722                     0                   NA
## 2723                     0                    0
## 2724                     0                   NA
## 2725                     0                    0
## 2726                     0                   NA
## 2727                     0                    0
## 2728                     0                   NA
## 2729                     0                    0
## 2730                     0                   NA
## 2731                     0                   NA
## 2732                     0                    0
## 2733                     0                    0
## 2734                     0                   NA
## 2735                     0                    0
## 2736                     0                    0
## 2737                     0                   NA
## 2738                     0                    0
## 2739                     0                   NA
## 2740                     0                    0
## 2741                     0                   NA
## 2742                     0                    0
## 2743                     0                    0
## 2744                     0                    0
## 2745                     0                    0
## 2746                     0                   NA
## 2747                     0                    0
## 2748                     0                   NA
## 2749                     0                    0
## 2750                     0                   NA
## 2751                     0                    0
## 2752                     0                    0
## 2753                     0                    0
## 2754                     0                   NA
## 2755                     0                    0
## 2756                     0                    0
## 2757                     0                   NA
## 2758                     0                    0
## 2759                     0                   NA
## 2760                     0                    0
## 2761                     0                    0
## 2762                     0                    0
## 2763                     0                   NA
## 2764                     0                    0
## 2765                     0                   NA
## 2766                     0                    0
## 2767                     0                   NA
## 2768                     0                    0
## 2769                     0                    0
## 2770                     0                    0
## 2771                     0                    0
## 2772                     0                   NA
## 2773                     0                    0
## 2774                     0                   NA
## 2775                     0                    0
## 2776                     0                   NA
## 2777                     0                    0
## 2778                     0                    0
## 2779                     0                   NA
## 2780                     0                    0
## 2781                     0                   NA
## 2782                     0                    0
## 2783                     0                    0
## 2784                     0                   NA
## 2785                     0                    0
## 2786                     0                   NA
## 2787                     0                    0
## 2788                     0                   NA
## 2789                     0                    0
## 2790                     0                    0
## 2791                     0                    0
## 2792                     0                    0
## 2793                     0                    0
## 2794                     0                    0
## 2795                     0                    0
## 2796                     0                    0
## 2797                     0                    0
## 2798                     0                    0
## 2799                     0                    0
## 2800                     0                    0
## 2801                     0                    0
## 2802                     0                    0
## 2803                     0                    0
## 2804                     0                   NA
## 2805                     0                    0
## 2806                     0                    0
## 2807                     0                    0
## 2808                     0                    0
## 2809                     0                    0
## 2810                     0                    0
## 2811                     0                    0
## 2812                     0                    0
## 2813                     0                    0
## 2814                     0                    0
## 2815                     0                    0
## 2816                     0                    0
## 2817                     0                    0
## 2818                     0                    0
## 2819                     0                    0
## 2820                     0                    0
## 2821                     0                    0
## 2822                     0                    0
## 2823                     0                    0
## 2824                     0                    0
## 2825                     0                    0
## 2826                     0                    0
## 2827                     0                    0
## 2828                     0                   NA
## 2829                     0                    0
## 2830                     0                    0
## 2831                     0                    0
## 2832                     0                    0
## 2833                     0                    0
## 2834                     0                    0
## 2835                     0                    0
## 2836                     0                    0
## 2837                     0                    0
## 2838                     0                    0
## 2839                     0                    0
## 2840                     0                    0
## 2841                     0                    0
## 2842                     0                    0
## 2843                     0                    0
## 2844                     0                    0
## 2845                     0                    0
## 2846                     0                    0
## 2847                     0                    0
## 2848                     0                    0
## 2849                     0                    0
## 2850                     0                    0
## 2851                     0                    0
## 2852                     0                   NA
## 2853                     0                   NA
## 2854                     0                    0
## 2855                     0                    0
## 2856                     0                    0
## 2857                     0                    0
## 2858                     0                    0
## 2859                     0                    0
## 2860                     0                   NA
## 2861                     0                    0
## 2862                     0                   NA
## 2863                     0                    0
## 2864                     0                    0
## 2865                     0                    0
## 2866                     0                    0
## 2867                     0                    0
## 2868                     0                    0
## 2869                     0                    0
## 2870                     0                    0
## 2871                     0                   NA
## 2872                     0                    0
## 2873                     0                    0
## 2874                     0                    0
## 2875                     0                    0
## 2876                     0                    0
## 2877                     0                    0
## 2878                     0                    0
## 2879                     0                    0
## 2880                     0                    0
## 2881                     0                    0
## 2882                     0                   NA
## 2883                     0                    0
## 2884                     0                    0
## 2885                     0                    0
## 2886                     0                   NA
## 2887                     0                    0
## 2888                     0                   NA
## 2889                     0                    0
## 2890                     0                    0
## 2891                     0                    0
## 2892                     0                    0
## 2893                     0                   NA
## 2894                    25                   NA
## 2895                     0                    0
## 2896                     0                   NA
## 2897                     0                    0
## 2898                     0                   NA
## 2899                     0                    0
## 2900                     0                   NA
## 2901                     0                    0
## 2902                     0                   NA
## 2903                     0                    0
## 2904                     0                   NA
## 2905                     0                   NA
## 2906                     0                    0
## 2907                     0                    0
## 2908                     0                    0
## 2909                     0                    0
## 2910                     0                   NA
## 2911                     0                    0
## 2912                     0                    0
## 2913                     0                    0
## 2914                     0                   NA
## 2915                     0                    0
## 2916                     0                   NA
## 2917                     0                    0
## 2918                     0                    0
## 2919                     0                    0
## 2920                     0                    0
## 2921                     0                   NA
## 2922                     0                    0
## 2923                     0                   NA
## 2924                     0                    0
## 2925                     0                   NA
## 2926                     0                    0
## 2927                     0                    0
## 2928                     0                   NA
## 2929                     0                    0
## 2930                     0                   NA
## 2931                     0                    0
## 2932                     0                   NA
## 2933                     0                    0
## 2934                     0                    0
## 2935                     0                   NA
## 2936                     0                    0
## 2937                     0                   NA
## 2938                     0                    0
## 2939                     0                    0
## 2940                     0                    3
## 2941                     0                   NA
## 2942                     0                    0
## 2943                     0                    0
## 2944                     0                    0
## 2945                     0                   NA
## 2946                     0                    0
## 2947                     0                    0
## 2948                     0                   NA
## 2949                     0                    0
## 2950                     0                   NA
## 2951                     0                    0
## 2952                     0                    0
## 2953                     0                    0
## 2954                     0                   NA
## 2955                     0                    0
## 2956                     0                   NA
## 2957                     0                    0
## 2958                     0                   NA
## 2959                     0                    0
## 2960                     0                   NA
## 2961                     0                    0
## 2962                     0                   NA
## 2963                     0                    0
## 2964                     0                    0
## 2965                     0                    0
## 2966                     0                   NA
## 2967                     0                    0
## 2968                     0                    0
## 2969                     0                   NA
## 2970                     0                    0
## 2971                     0                   NA
## 2972                     0                    0
## 2973                     0                   NA
## 2974                     0                    0
## 2975                     0                   NA
## 2976                     0                   NA
## 2977                     0                    0
## 2978                     0                    0
## 2979                     0                   NA
## 2980                     0                   NA
## 2981                     0                    0
## 2982                     0                    0
## 2983                     0                   NA
## 2984                     0                    0
## 2985                     0                    0
## 2986                     0                   NA
## 2987                     0                    0
## 2988                     0                   NA
## 2989                     0                    0
## 2990                     0                   NA
## 2991                     0                    0
## 2992                     0                    0
## 2993                     0                    0
## 2994                     0                    0
## 2995                     0                   NA
## 2996                     0                    0
## 2997                     0                   NA
## 2998                     0                    0
## 2999                     0                   NA
## 3000                     0                    0
## 3001                     0                    0
## 3002                     0                    0
## 3003                     0                   NA
## 3004                     0                    0
## 3005                     0                    0
## 3006                     0                   NA
## 3007                     0                    0
## 3008                     0                   NA
## 3009                     0                    0
## 3010                     0                    0
## 3011                     0                    0
## 3012                     0                   NA
## 3013                     0                    0
## 3014                     0                   NA
## 3015                     0                    0
## 3016                     0                   NA
## 3017                     0                    0
## 3018                     0                    0
## 3019                     0                    0
## 3020                     0                    0
## 3021                     0                   NA
## 3022                     0                    0
## 3023                     0                   NA
## 3024                     0                    0
## 3025                     0                   NA
## 3026                     0                    0
## 3027                     0                    0
## 3028                     0                   NA
## 3029                     0                    0
## 3030                     0                   NA
## 3031                     0                    0
## 3032                     0                    0
## 3033                     0                   NA
## 3034                     0                    0
## 3035                     0                   NA
## 3036                     0                    0
## 3037                     0                   NA
## 3038                     0                    0
## 3039                     0                    0
## 3040                     0                    0
## 3041                     0                    0
## 3042                     0                    0
## 3043                     0                    0
## 3044                     0                    0
## 3045                     0                    0
## 3046                     0                    0
## 3047                     0                    0
## 3048                     0                    0
## 3049                     0                    0
## 3050                     0                    0
## 3051                     0                    0
## 3052                     0                    0
## 3053                     0                   NA
## 3054                     0                    0
## 3055                     0                    0
## 3056                     0                    0
## 3057                     0                    0
## 3058                     0                    0
## 3059                     0                    0
## 3060                     0                    0
## 3061                     0                    0
## 3062                     0                    0
## 3063                     0                    0
## 3064                     0                    0
## 3065                     0                    0
## 3066                     0                    0
## 3067                     0                    0
## 3068                     0                    0
## 3069                     0                    0
## 3070                     0                    0
## 3071                     0                    0
## 3072                     0                    0
## 3073                     0                    0
## 3074                     0                    0
## 3075                     0                    0
## 3076                     0                    0
## 3077                     0                   NA
## 3078                     0                    0
## 3079                     0                    0
## 3080                     0                    0
## 3081                     0                    0
## 3082                     0                    0
## 3083                     0                    0
## 3084                     0                    0
## 3085                     0                    0
## 3086                     0                    0
## 3087                     0                    0
## 3088                     0                    0
## 3089                     0                    0
## 3090                     0                    0
## 3091                     0                    0
## 3092                     0                    0
## 3093                     0                    0
## 3094                     0                    0
## 3095                     0                    0
## 3096                     0                    0
## 3097                     0                    0
## 3098                     0                    0
## 3099                     0                    0
## 3100                     0                    0
## 3101                     0                   NA
## 3102                     0                   NA
## 3103                     0                    0
## 3104                     0                    0
## 3105                     0                    0
## 3106                     0                    0
## 3107                     0                    0
## 3108                     0                    0
## 3109                     0                   NA
## 3110                     0                    0
## 3111                     0                   NA
## 3112                     0                    0
## 3113                     0                    0
## 3114                     0                    0
## 3115                     0                    0
## 3116                     0                    0
## 3117                     0                    0
## 3118                     0                    0
## 3119                     0                    0
## 3120                     0                   NA
## 3121                     0                    0
## 3122                     0                    0
## 3123                     0                    0
## 3124                     0                    0
## 3125                     0                    0
## 3126                     0                    0
## 3127                     0                    0
## 3128                     0                    0
## 3129                     0                    0
## 3130                     0                    0
## 3131                     0                   NA
## 3132                     0                    0
## 3133                     0                    0
## 3134                     0                    0
## 3135                     0                   NA
## 3136                     0                    0
## 3137                     0                   NA
## 3138                     0                    0
## 3139                     0                    0
## 3140                     0                    0
## 3141                     0                    0
## 3142                     0                   NA
## 3143                    26                   NA
## 3144                     0                    0
## 3145                     0                   NA
## 3146                     0                    0
## 3147                     0                   NA
## 3148                     0                    0
## 3149                     0                   NA
## 3150                     0                    0
## 3151                     0                   NA
## 3152                     0                    0
## 3153                     0                   NA
## 3154                     0                    0
## 3155                     0                   NA
## 3156                     0                    0
## 3157                     0                    0
## 3158                     0                    0
## 3159                     0                   NA
## 3160                     0                    0
## 3161                     0                    0
## 3162                     0                    0
## 3163                     0                   NA
## 3164                     0                    0
## 3165                     0                   NA
## 3166                     0                    0
## 3167                     0                    0
## 3168                     0                    0
## 3169                     0                    0
## 3170                     0                   NA
## 3171                     0                    0
## 3172                     0                   NA
## 3173                     0                    0
## 3174                     0                   NA
## 3175                     0                    0
## 3176                     0                    0
## 3177                     0                   NA
## 3178                     0                    0
## 3179                     0                   NA
## 3180                     0                    0
## 3181                     0                    0
## 3182                     0                   NA
## 3183                     0                    0
## 3184                     0                   NA
## 3185                     0                    0
## 3186                     0                   NA
## 3187                     0                    0
## 3188                     0                    0
## 3189                     0                    0
## 3190                     0                   NA
## 3191                     0                    0
## 3192                     0                    0
## 3193                     0                   NA
## 3194                     0                    0
## 3195                     0                    0
## 3196                     0                    0
## 3197                     0                   NA
## 3198                     0                    0
## 3199                     0                   NA
## 3200                     0                    0
## 3201                     0                    0
## 3202                     0                    0
## 3203                     0                   NA
## 3204                     0                    0
## 3205                     0                   NA
## 3206                     0                    0
## 3207                     0                   NA
## 3208                     0                    0
## 3209                     0                   NA
## 3210                     0                    0
## 3211                     0                   NA
## 3212                     0                    0
## 3213                     0                    0
## 3214                     0                    0
## 3215                     0                   NA
## 3216                     0                    0
## 3217                     0                    0
## 3218                     0                   NA
## 3219                     0                    0
## 3220                     0                   NA
## 3221                     0                    0
## 3222                     0                   NA
## 3223                     0                   NA
## 3224                     0                    0
## 3225                     0                    0
## 3226                     0                   NA
## 3227                     0                    0
## 3228                     0                   NA
## 3229                     0                    0
## 3230                     0                   NA
## 3231                     0                    0
## 3232                     0                   NA
## 3233                     0                    0
## 3234                     0                    0
## 3235                     0                   NA
## 3236                     0                    0
## 3237                     0                   NA
## 3238                     0                    0
## 3239                     0                   NA
## 3240                     0                    0
## 3241                     0                    0
## 3242                     0                    0
## 3243                     0                    0
## 3244                     0                   NA
## 3245                     0                    0
## 3246                     0                   NA
## 3247                     0                    0
## 3248                     0                   NA
## 3249                     0                    0
## 3250                     0                    0
## 3251                     0                    0
## 3252                     0                   NA
## 3253                     0                    0
## 3254                     0                    0
## 3255                     0                   NA
## 3256                     0                    0
## 3257                     0                   NA
## 3258                     0                    0
## 3259                     0                    0
## 3260                     0                    0
## 3261                     0                   NA
## 3262                     0                    0
## 3263                     0                   NA
## 3264                     0                    0
## 3265                     0                   NA
## 3266                     0                    0
## 3267                     0                    0
## 3268                     0                    0
## 3269                     0                    0
## 3270                     0                   NA
## 3271                     0                    0
## 3272                     0                   NA
## 3273                     0                    0
## 3274                     0                   NA
## 3275                     0                    0
## 3276                     0                    0
## 3277                     0                   NA
## 3278                     0                    0
## 3279                     0                   NA
## 3280                     0                    0
## 3281                     0                    0
## 3282                     0                   NA
## 3283                     0                    0
## 3284                     0                   NA
## 3285                     0                    0
## 3286                     0                   NA
## 3287                     0                    0
## 3288                     0                    0
## 3289                     0                    0
## 3290                     0                    0
## 3291                     0                    0
## 3292                     0                    0
## 3293                     0                    0
## 3294                     0                    0
## 3295                     0                    0
## 3296                     0                    0
## 3297                     0                    0
## 3298                     0                    0
## 3299                     0                    0
## 3300                     0                    0
## 3301                     0                    0
## 3302                     0                   NA
## 3303                     0                    0
## 3304                     0                    0
## 3305                     0                    0
## 3306                     0                    0
## 3307                     0                    0
## 3308                     0                    0
## 3309                     0                    0
## 3310                     0                    0
## 3311                     0                    0
## 3312                     0                    0
## 3313                     0                    0
## 3314                     0                    0
## 3315                     0                    0
## 3316                     0                    0
## 3317                     0                    0
## 3318                     0                    0
## 3319                     0                    0
## 3320                     0                    0
## 3321                     0                    0
## 3322                     0                    0
## 3323                     0                    0
## 3324                     0                    0
## 3325                     0                    0
## 3326                     0                   NA
## 3327                     0                    0
## 3328                     0                    0
## 3329                     0                    0
## 3330                     0                    0
## 3331                     0                    0
## 3332                     0                    0
## 3333                     0                    0
## 3334                     0                    0
## 3335                     0                    0
## 3336                     0                    0
## 3337                     0                    0
## 3338                     0                    0
## 3339                     0                    0
## 3340                     0                    0
## 3341                     0                    0
## 3342                     0                    0
## 3343                     0                    0
## 3344                     0                    0
## 3345                     0                    0
## 3346                     0                    0
## 3347                     0                    0
## 3348                     0                    0
## 3349                     0                    0
## 3350                     0                   NA
## 3351                     0                   NA
## 3352                     0                    0
## 3353                     0                    0
## 3354                     0                    0
## 3355                     0                    0
## 3356                     0                    0
## 3357                     0                    0
## 3358                     0                   NA
## 3359                     0                    0
## 3360                     0                   NA
## 3361                     0                    0
## 3362                     0                    0
## 3363                     0                    0
## 3364                     0                    0
## 3365                     0                    0
## 3366                     0                    0
## 3367                     0                    0
## 3368                     0                    0
## 3369                     0                   NA
## 3370                     0                    0
## 3371                     0                    0
## 3372                     0                    0
## 3373                     0                    0
## 3374                     0                    0
## 3375                     0                    0
## 3376                     0                    0
## 3377                     0                    0
## 3378                     0                    0
## 3379                     0                    0
## 3380                     0                   NA
## 3381                     0                    0
## 3382                     0                    0
## 3383                     0                    0
## 3384                     0                   NA
## 3385                     0                    0
## 3386                     0                   NA
## 3387                     0                    0
## 3388                     0                    0
## 3389                     0                    0
## 3390                     0                    0
## 3391                     0                   NA
## 3392                    38                   NA
## 3393                     0                    0
## 3394                     0                   NA
## 3395                     0                    0
## 3396                     0                   NA
## 3397                     0                    0
## 3398                     0                   NA
## 3399                     0                    0
## 3400                     0                   NA
## 3401                     0                    0
## 3402                     0                   NA
## 3403                     0                    0
## 3404                     0                   NA
## 3405                     0                    0
## 3406                     0                    0
## 3407                     0                    0
## 3408                     0                   NA
## 3409                     0                    0
## 3410                     0                    0
## 3411                     0                    0
## 3412                     0                   NA
## 3413                     0                   NA
## 3414                     0                    0
## 3415                     0                    0
## 3416                     0                    0
## 3417                     0                    0
## 3418                     0                    0
## 3419                     0                   NA
## 3420                     0                    0
## 3421                     0                   NA
## 3422                     0                    0
## 3423                     0                   NA
## 3424                     0                    0
## 3425                     0                    0
## 3426                     0                   NA
## 3427                     0                    0
## 3428                     0                   NA
## 3429                     0                    0
## 3430                     0                    0
## 3431                     0                   NA
## 3432                     0                    0
## 3433                     0                   NA
## 3434                     0                    0
## 3435                     0                   NA
## 3436                     0                    0
## 3437                     0                    0
## 3438                     0                    0
## 3439                     0                   NA
## 3440                     0                    0
## 3441                     0                    0
## 3442                     0                    0
## 3443                     0                   NA
## 3444                     0                    0
## 3445                     0                    0
## 3446                     0                   NA
## 3447                     0                    0
## 3448                     0                   NA
## 3449                     0                    0
## 3450                     0                    0
## 3451                     0                    0
## 3452                     0                   NA
## 3453                     0                    0
## 3454                     0                   NA
## 3455                     0                    0
## 3456                     0                   NA
## 3457                     0                    0
## 3458                     0                   NA
## 3459                     0                    0
## 3460                     0                   NA
## 3461                     0                    0
## 3462                     0                    0
## 3463                     0                    0
## 3464                     0                   NA
## 3465                     0                    0
## 3466                     0                    0
## 3467                     0                   NA
## 3468                     0                    0
## 3469                     0                   NA
## 3470                     0                    0
## 3471                     0                   NA
## 3472                     0                    0
## 3473                     0                   NA
## 3474                     0                    0
## 3475                     0                   NA
## 3476                     0                    0
## 3477                     0                   NA
## 3478                     0                    0
## 3479                     0                   NA
## 3480                     0                    0
## 3481                     0                   NA
## 3482                     0                    0
## 3483                     0                    0
## 3484                     0                   NA
## 3485                     0                    0
## 3486                     0                   NA
## 3487                     0                    0
## 3488                     0                   NA
## 3489                     0                    0
## 3490                     0                    0
## 3491                     0                    0
## 3492                     0                    0
## 3493                     0                   NA
## 3494                     0                    0
## 3495                     0                   NA
## 3496                     0                    0
## 3497                     0                   NA
## 3498                     0                    0
## 3499                     0                    0
## 3500                     0                    0
## 3501                     0                   NA
## 3502                     0                    0
## 3503                     0                    0
## 3504                     0                   NA
## 3505                     0                    0
## 3506                     0                   NA
## 3507                     0                    0
## 3508                     0                    0
## 3509                     0                    0
## 3510                     0                   NA
## 3511                     0                    0
## 3512                     0                   NA
## 3513                     0                    0
## 3514                     0                   NA
## 3515                     0                    0
## 3516                     0                    0
## 3517                     0                    0
## 3518                     0                    0
## 3519                     0                   NA
## 3520                     0                    0
## 3521                     0                   NA
## 3522                     0                    0
## 3523                     0                   NA
## 3524                     0                    0
## 3525                     0                    0
## 3526                     0                   NA
## 3527                     0                    0
## 3528                     0                   NA
## 3529                     0                    0
## 3530                     0                    0
## 3531                     0                   NA
## 3532                     0                    0
## 3533                     0                   NA
## 3534                     0                    0
## 3535                     0                   NA
## 3536                     0                    0
## 3537                     0                    0
## 3538                     0                    0
## 3539                     0                    0
## 3540                     0                    0
## 3541                     0                    0
## 3542                     0                    0
## 3543                     0                    0
## 3544                     0                    0
## 3545                     0                    0
## 3546                     0                    0
## 3547                     0                    0
## 3548                     0                    0
## 3549                     0                    0
## 3550                     0                    0
## 3551                     0                   NA
## 3552                     0                    0
## 3553                     0                    0
## 3554                     0                    0
## 3555                     0                    0
## 3556                     0                    0
## 3557                     0                    0
## 3558                     0                    0
## 3559                     0                    0
## 3560                     0                    0
## 3561                     0                    0
## 3562                     0                    0
## 3563                     0                    0
## 3564                     0                    0
## 3565                     0                    0
## 3566                     0                    0
## 3567                     0                    0
## 3568                     0                    0
## 3569                     0                    0
## 3570                     0                    0
## 3571                     0                    0
## 3572                     0                    0
## 3573                     0                    0
## 3574                     0                    0
## 3575                     0                   NA
## 3576                     0                    0
## 3577                     0                    0
## 3578                     0                    0
## 3579                     0                    0
## 3580                     0                    0
## 3581                     0                    0
## 3582                     0                    0
## 3583                     0                    0
## 3584                     0                    0
## 3585                     0                    0
## 3586                     0                    0
## 3587                     0                    0
## 3588                     0                    0
## 3589                     0                    0
## 3590                     0                    0
## 3591                     0                    0
## 3592                     0                    0
## 3593                     0                    0
## 3594                     0                    0
## 3595                     0                    0
## 3596                     0                    0
## 3597                     0                    0
## 3598                     0                    0
## 3599                     0                   NA
## 3600                     0                   NA
## 3601                     0                    0
## 3602                     0                    0
## 3603                     0                    0
## 3604                     0                    0
## 3605                     0                    0
## 3606                     0                    0
## 3607                     0                   NA
## 3608                     0                    0
## 3609                     0                   NA
## 3610                     0                    0
## 3611                     0                    0
## 3612                     0                    0
## 3613                     0                    0
## 3614                     0                    0
## 3615                     0                    0
## 3616                     0                    0
## 3617                     0                    0
## 3618                     0                   NA
## 3619                     0                    0
## 3620                     0                    0
## 3621                     0                    0
## 3622                     0                    0
## 3623                     0                    0
## 3624                     0                    0
## 3625                     0                    0
## 3626                     0                    0
## 3627                     0                    0
## 3628                     0                   NA
## 3629                     0                    0
## 3630                     0                    0
## 3631                     0                    0
## 3632                     0                    0
## 3633                     0                   NA
## 3634                     0                    0
## 3635                     0                   NA
## 3636                     0                    0
## 3637                     0                    0
## 3638                     0                    0
## 3639                     0                    0
## 3640                     0                   NA
## 3641                    43                   NA
## 3642                     0                    0
## 3643                     0                   NA
## 3644                     0                    0
## 3645                     0                   NA
## 3646                     0                    0
## 3647                     0                   NA
## 3648                     0                    0
## 3649                     0                   NA
## 3650                     0                    0
## 3651                     0                   NA
## 3652                     0                   NA
## 3653                     0                    0
## 3654                     0                    0
## 3655                     0                    0
## 3656                     0                    0
## 3657                     0                   NA
## 3658                     0                    0
## 3659                     0                    0
## 3660                     0                    0
## 3661                     0                   NA
## 3662                     0                    0
## 3663                     0                   NA
## 3664                     0                    0
## 3665                     0                    0
## 3666                     0                    0
## 3667                     0                    0
## 3668                     0                   NA
## 3669                     0                    0
## 3670                     0                   NA
## 3671                     0                    0
## 3672                     0                   NA
## 3673                     0                    0
## 3674                     0                    0
## 3675                     0                   NA
## 3676                     0                    0
## 3677                     0                   NA
## 3678                     0                    0
## 3679                     0                    0
## 3680                     0                   NA
## 3681                     0                   NA
## 3682                     0                    0
## 3683                     0                    0
## 3684                     0                   NA
## 3685                     0                    0
## 3686                     0                    0
## 3687                     0                   NA
## 3688                     0                    0
## 3689                     0                    0
## 3690                     0                    0
## 3691                     0                    0
## 3692                     0                   NA
## 3693                     0                    0
## 3694                     0                    0
## 3695                     0                   NA
## 3696                     0                    0
## 3697                     0                   NA
## 3698                     0                    0
## 3699                     0                    0
## 3700                     0                    0
## 3701                     0                   NA
## 3702                     0                    0
## 3703                     0                   NA
## 3704                     0                    0
## 3705                     0                   NA
## 3706                     0                    0
## 3707                     0                   NA
## 3708                     0                    0
## 3709                     0                   NA
## 3710                     0                    0
## 3711                     0                    0
## 3712                     0                    0
## 3713                     0                   NA
## 3714                     0                    0
## 3715                     0                    0
## 3716                     0                   NA
## 3717                     0                    0
## 3718                     0                   NA
## 3719                     0                    0
## 3720                     0                   NA
## 3721                     0                    0
## 3722                     0                   NA
## 3723                     0                    0
## 3724                     0                   NA
## 3725                     0                    0
## 3726                     0                   NA
## 3727                     0                    0
## 3728                     0                   NA
## 3729                     0                    0
## 3730                     0                   NA
## 3731                     0                    0
## 3732                     0                    0
## 3733                     0                   NA
## 3734                     0                    0
## 3735                     0                   NA
## 3736                     0                    0
## 3737                     0                   NA
## 3738                     0                    0
## 3739                     0                    0
## 3740                     0                    0
## 3741                     0                    0
## 3742                     0                   NA
## 3743                     0                    0
## 3744                     0                   NA
## 3745                     0                    0
## 3746                     0                   NA
## 3747                     0                    0
## 3748                     0                    0
## 3749                     0                    0
## 3750                     0                   NA
## 3751                     0                    0
## 3752                     0                    0
## 3753                     0                   NA
## 3754                     0                    0
## 3755                     0                   NA
## 3756                     0                    0
## 3757                     0                    0
## 3758                     0                    0
## 3759                     0                   NA
## 3760                     0                   NA
## 3761                     0                    0
## 3762                     0                    0
## 3763                     0                   NA
## 3764                     0                    0
## 3765                     0                    0
## 3766                     0                    0
## 3767                     0                    0
## 3768                     0                   NA
## 3769                     0                   NA
## 3770                     0                    0
## 3771                     0                    0
## 3772                     0                   NA
## 3773                     0                    0
## 3774                     0                    0
## 3775                     0                   NA
## 3776                     0                    0
## 3777                     0                   NA
## 3778                     0                    0
## 3779                     0                    0
## 3780                     0                   NA
## 3781                     0                    0
## 3782                     0                   NA
## 3783                     0                    0
## 3784                     0                   NA
## 3785                     0                    0
## 3786                     0                    0
## 3787                     0                    0
## 3788                     0                    0
## 3789                     0                    0
## 3790                     0                    0
## 3791                     0                    0
## 3792                     0                    0
## 3793                     0                    0
## 3794                     0                    0
## 3795                     0                    0
## 3796                     0                    0
## 3797                     0                    0
## 3798                     0                    0
## 3799                     0                    0
## 3800                     0                   NA
## 3801                     0                    0
## 3802                     0                    0
## 3803                     0                    0
## 3804                     0                    0
## 3805                     0                    0
## 3806                     0                    0
## 3807                     0                    0
## 3808                     0                    0
## 3809                     0                    0
## 3810                     0                    0
## 3811                     0                    0
## 3812                     0                    0
## 3813                     0                    0
## 3814                     0                    0
## 3815                     0                    0
## 3816                     0                    0
## 3817                     0                    0
## 3818                     0                    0
## 3819                     0                    0
## 3820                     0                    0
## 3821                     0                    0
## 3822                     0                    0
## 3823                     0                    0
## 3824                     0                   NA
## 3825                     0                    0
## 3826                     0                    0
## 3827                     0                    0
## 3828                     0                    0
## 3829                     0                    0
## 3830                     0                    0
## 3831                     0                    0
## 3832                     0                    0
## 3833                     0                    0
## 3834                     0                    0
## 3835                     0                    0
## 3836                     0                    0
## 3837                     0                    0
## 3838                     0                    0
## 3839                     0                    0
## 3840                     0                    0
## 3841                     0                    0
## 3842                     0                    0
## 3843                     0                    0
## 3844                     0                    0
## 3845                     0                    0
## 3846                     0                    0
## 3847                     0                    0
## 3848                     0                   NA
## 3849                     0                   NA
## 3850                     0                    0
## 3851                     0                    0
## 3852                     0                    0
## 3853                     0                    0
## 3854                     0                    0
## 3855                     0                    0
## 3856                     0                   NA
## 3857                     0                    0
## 3858                     0                   NA
## 3859                     0                    0
## 3860                     0                    0
## 3861                     0                    0
## 3862                     0                    0
## 3863                     0                    0
## 3864                     0                    0
## 3865                     0                    0
## 3866                     0                    0
## 3867                     0                   NA
## 3868                     0                    0
## 3869                     0                    0
## 3870                     0                    0
## 3871                     0                    0
## 3872                     0                    0
## 3873                     0                    0
## 3874                     0                    0
## 3875                     0                    0
## 3876                     0                    0
## 3877                     0                    0
## 3878                     0                   NA
## 3879                     0                    0
## 3880                     0                    0
## 3881                     0                    0
## 3882                     0                   NA
## 3883                     0                    0
## 3884                     0                   NA
## 3885                     0                    0
## 3886                     0                    0
## 3887                     0                    0
## 3888                     0                    0
## 3889                     0                   NA
## 3890                    46                   NA
## 3891                     0                    0
## 3892                     0                   NA
## 3893                     0                    0
## 3894                     0                   NA
## 3895                     0                    0
## 3896                     0                   NA
## 3897                     0                    0
## 3898                     0                   NA
## 3899                     0                    0
## 3900                     0                   NA
## 3901                     0                   NA
## 3902                     0                    0
## 3903                     0                    0
## 3904                     0                    0
## 3905                     0                    0
## 3906                     0                   NA
## 3907                     0                    0
## 3908                     0                    0
## 3909                     0                    0
## 3910                     0                   NA
## 3911                     0                    0
## 3912                     0                   NA
## 3913                     0                    0
## 3914                     0                    0
## 3915                     0                    0
## 3916                     0                    0
## 3917                     0                   NA
## 3918                     0                    0
## 3919                     0                   NA
## 3920                     0                    0
## 3921                     0                   NA
## 3922                     0                    0
## 3923                     0                    0
## 3924                     0                   NA
## 3925                     0                    0
## 3926                     0                   NA
## 3927                     0                    0
## 3928                     0                    0
## 3929                     0                   NA
## 3930                     0                    0
## 3931                     0                   NA
## 3932                     0                    0
## 3933                     0                   NA
## 3934                     0                    0
## 3935                     0                    0
## 3936                     0                    0
## 3937                     0                   NA
## 3938                     0                    0
## 3939                     0                    0
## 3940                     0                    0
## 3941                     0                   NA
## 3942                     0                    0
## 3943                     0                   NA
## 3944                     0                    1
## 3945                     0                    0
## 3946                     0                   NA
## 3947                     0                    0
## 3948                     0                    0
## 3949                     0                    0
## 3950                     0                   NA
## 3951                     0                    0
## 3952                     0                   NA
## 3953                     0                    0
## 3954                     0                   NA
## 3955                     0                    0
## 3956                     0                   NA
## 3957                     0                    0
## 3958                     0                   NA
## 3959                     0                    0
## 3960                     0                    0
## 3961                     0                    0
## 3962                     0                   NA
## 3963                     0                    0
## 3964                     0                    0
## 3965                     0                   NA
## 3966                     0                    0
## 3967                     0                   NA
## 3968                     0                    0
## 3969                     0                   NA
## 3970                     0                    0
## 3971                     0                   NA
## 3972                     0                   NA
## 3973                     0                    0
## 3974                     0                    0
## 3975                     0                   NA
## 3976                     0                   NA
## 3977                     0                    0
## 3978                     0                    0
## 3979                     0                   NA
## 3980                     0                    0
## 3981                     0                    0
## 3982                     0                   NA
## 3983                     0                    0
## 3984                     0                   NA
## 3985                     0                    0
## 3986                     0                   NA
## 3987                     0                    0
## 3988                     0                    0
## 3989                     0                    0
## 3990                     0                    0
## 3991                     0                   NA
## 3992                     0                    0
## 3993                     0                   NA
## 3994                     0                    0
## 3995                     0                   NA
## 3996                     0                    0
## 3997                     0                    0
## 3998                     0                    0
## 3999                     0                   NA
## 4000                     0                    0
## 4001                     0                    0
## 4002                     0                   NA
## 4003                     0                    0
## 4004                     0                   NA
## 4005                     0                    0
## 4006                     0                    0
## 4007                     0                    0
## 4008                     0                   NA
## 4009                     0                    0
## 4010                     0                   NA
## 4011                     0                    0
## 4012                     0                   NA
## 4013                     0                    0
## 4014                     0                    0
## 4015                     0                    0
## 4016                     0                    0
## 4017                     0                   NA
## 4018                     0                    0
## 4019                     0                   NA
## 4020                     0                    0
## 4021                     0                   NA
## 4022                     0                    0
## 4023                     0                    0
## 4024                     0                   NA
## 4025                     0                    0
## 4026                     0                   NA
## 4027                     0                    0
## 4028                     0                    0
## 4029                     0                   NA
## 4030                     0                    0
## 4031                     0                   NA
## 4032                     0                    0
## 4033                     0                   NA
## 4034                     0                    0
## 4035                     0                    0
## 4036                     0                    0
## 4037                     0                    0
## 4038                     0                    0
## 4039                     0                    0
## 4040                     0                    0
## 4041                     0                    0
## 4042                     0                    0
## 4043                     0                    0
## 4044                     0                    0
## 4045                     0                    0
## 4046                     0                    0
## 4047                     0                    0
## 4048                     0                    0
## 4049                     0                   NA
## 4050                     0                    0
## 4051                     0                    0
## 4052                     0                    0
## 4053                     0                    0
## 4054                     0                    0
## 4055                     0                    0
## 4056                     0                    0
## 4057                     0                    0
## 4058                     0                    0
## 4059                     0                    0
## 4060                     0                    0
## 4061                     0                    0
## 4062                     0                    0
## 4063                     0                    0
## 4064                     0                    0
## 4065                     0                    0
## 4066                     0                    0
## 4067                     0                    0
## 4068                     0                    0
## 4069                     0                    0
## 4070                     0                    0
## 4071                     0                    0
## 4072                     0                    0
## 4073                     0                   NA
## 4074                     0                    0
## 4075                     0                    0
## 4076                     0                    0
## 4077                     0                    0
## 4078                     0                    0
## 4079                     0                    0
## 4080                     0                    0
## 4081                     0                    0
## 4082                     0                    0
## 4083                     0                    0
## 4084                     0                    0
## 4085                     0                    0
## 4086                     0                    0
## 4087                     0                    0
## 4088                     0                    0
## 4089                     0                    0
## 4090                     0                    0
## 4091                     0                    0
## 4092                     0                    0
## 4093                     0                    0
## 4094                     0                    0
## 4095                     0                    0
## 4096                     0                    0
## 4097                     0                   NA
## 4098                     0                   NA
## 4099                     0                    0
## 4100                     0                    0
## 4101                     0                    0
## 4102                     0                    0
## 4103                     0                    0
## 4104                     0                    0
## 4105                     0                   NA
## 4106                     0                    0
## 4107                     0                   NA
## 4108                     0                    0
## 4109                     0                    0
## 4110                     0                    0
## 4111                     0                    0
## 4112                     0                    0
## 4113                     0                    0
## 4114                     0                    0
## 4115                     0                    0
## 4116                     0                   NA
## 4117                     0                    0
## 4118                     0                    0
## 4119                     0                    0
## 4120                     0                    0
## 4121                     0                    0
## 4122                     0                    0
## 4123                     0                    0
## 4124                     0                    0
## 4125                     0                    0
## 4126                     0                    0
## 4127                     0                   NA
## 4128                     0                    0
## 4129                     0                    0
## 4130                     0                    0
## 4131                     0                   NA
## 4132                     0                    0
## 4133                     0                   NA
## 4134                     0                    0
## 4135                     0                    0
## 4136                     0                    0
## 4137                     0                    0
## 4138                     0                   NA
## 4139                    45                   NA
## 4140                     0                    0
## 4141                     0                   NA
## 4142                     0                    0
## 4143                     0                   NA
## 4144                     0                    0
## 4145                     0                   NA
## 4146                     0                    0
## 4147                     0                   NA
## 4148                     0                    0
## 4149                     0                   NA
## 4150                     0                    0
## 4151                     0                   NA
## 4152                     0                    0
## 4153                     0                    0
## 4154                     0                    0
## 4155                     0                   NA
## 4156                     0                    0
## 4157                     0                    0
## 4158                     0                    0
## 4159                     0                   NA
## 4160                     0                    0
## 4161                     0                   NA
## 4162                     0                    0
## 4163                     0                    0
## 4164                     0                    0
## 4165                     0                    0
## 4166                     0                   NA
## 4167                     0                    0
## 4168                     0                   NA
## 4169                     0                    0
## 4170                     0                   NA
## 4171                     0                    0
## 4172                     1                    0
## 4173                     1                   NA
## 4174                     0                    0
## 4175                     0                   NA
## 4176                     0                    0
## 4177                     0                    0
## 4178                     0                   NA
## 4179                     0                    0
## 4180                     0                   NA
## 4181                     0                    0
## 4182                     0                   NA
## 4183                     0                    0
## 4184                     0                    0
## 4185                     0                    0
## 4186                     0                   NA
## 4187                     0                    0
## 4188                     0                    0
## 4189                     0                    0
## 4190                     0                   NA
## 4191                     0                    0
## 4192                     0                    0
## 4193                     0                   NA
## 4194                     0                    0
## 4195                     0                   NA
## 4196                     0                    0
## 4197                     0                    0
## 4198                     0                    0
## 4199                     0                   NA
## 4200                     0                    0
## 4201                     0                   NA
## 4202                     0                    0
## 4203                     0                   NA
## 4204                     0                    0
## 4205                     0                   NA
## 4206                     0                    0
## 4207                     0                   NA
## 4208                     0                    0
## 4209                     0                    0
## 4210                     0                    0
## 4211                     0                   NA
## 4212                     0                    0
## 4213                     0                    0
## 4214                     0                   NA
## 4215                     0                    0
## 4216                     0                   NA
## 4217                     0                    0
## 4218                     0                   NA
## 4219                     0                    0
## 4220                     0                   NA
## 4221                     0                    0
## 4222                     0                   NA
## 4223                     0                    0
## 4224                     0                   NA
## 4225                     0                   NA
## 4226                     0                    0
## 4227                     0                    0
## 4228                     0                   NA
## 4229                     0                    0
## 4230                     0                    0
## 4231                     0                   NA
## 4232                     0                    0
## 4233                     0                   NA
## 4234                     0                    0
## 4235                     0                   NA
## 4236                     0                    0
## 4237                     0                    0
## 4238                     0                    0
## 4239                     0                    0
## 4240                     0                   NA
## 4241                     0                    0
## 4242                     0                   NA
## 4243                     0                    0
## 4244                     0                   NA
## 4245                     0                    0
## 4246                     0                    0
## 4247                     0                    0
## 4248                     0                   NA
## 4249                     0                    0
## 4250                     0                    0
## 4251                     0                   NA
## 4252                     0                    0
## 4253                     0                   NA
## 4254                     0                    0
## 4255                     0                    0
## 4256                     0                    0
## 4257                     0                   NA
## 4258                     0                    0
## 4259                     0                   NA
## 4260                     0                    0
## 4261                     0                   NA
## 4262                     0                    0
## 4263                     0                    0
## 4264                     0                    0
## 4265                     0                    0
## 4266                     0                   NA
## 4267                     0                    0
## 4268                     0                   NA
## 4269                     0                    0
## 4270                     0                   NA
## 4271                     0                    0
## 4272                     0                    0
## 4273                     0                   NA
## 4274                     0                    0
## 4275                     0                   NA
## 4276                     0                    0
## 4277                     0                    0
## 4278                     0                   NA
## 4279                     0                    0
## 4280                     0                   NA
## 4281                     0                    0
## 4282                     0                   NA
## 4283                     0                    0
## 4284                     0                    0
## 4285                     0                    0
## 4286                     0                    0
## 4287                     0                    0
## 4288                     0                    0
## 4289                     0                    0
## 4290                     0                    0
## 4291                     0                    0
## 4292                     0                    0
## 4293                     0                    0
## 4294                     0                    0
## 4295                     0                    0
## 4296                     0                    0
## 4297                     0                    0
## 4298                     0                   NA
## 4299                     0                    0
## 4300                     0                    0
## 4301                     0                    0
## 4302                     0                    0
## 4303                     0                    0
## 4304                     0                    0
## 4305                     0                    0
## 4306                     0                    0
## 4307                     0                    0
## 4308                     0                    0
## 4309                     0                    0
## 4310                     0                    0
## 4311                     0                    0
## 4312                     0                    0
## 4313                     0                    0
## 4314                     0                    0
## 4315                     0                    0
## 4316                     0                    0
## 4317                     0                    0
## 4318                     0                    0
## 4319                     0                    0
## 4320                     0                    0
## 4321                     0                    0
## 4322                     0                   NA
## 4323                     0                    0
## 4324                     0                    0
## 4325                     0                    0
## 4326                     0                    0
## 4327                     0                    0
## 4328                     0                    0
## 4329                     0                    0
## 4330                     0                    0
## 4331                     0                    0
## 4332                     0                    0
## 4333                     0                    0
## 4334                     0                    0
## 4335                     0                    0
## 4336                     0                    0
## 4337                     0                    0
## 4338                     0                    0
## 4339                     0                    0
## 4340                     0                    0
## 4341                     0                    0
## 4342                     0                    0
## 4343                     0                    0
## 4344                     0                    0
## 4345                     0                    0
## 4346                     0                   NA
## 4347                     0                   NA
## 4348                     0                    0
## 4349                     0                    0
## 4350                     0                    0
## 4351                     0                    0
## 4352                     0                    0
## 4353                     0                    0
## 4354                     0                   NA
## 4355                     0                    0
## 4356                     0                   NA
## 4357                     0                    0
## 4358                     0                    0
## 4359                     0                    0
## 4360                     0                    0
## 4361                     0                    0
## 4362                     0                    0
## 4363                     0                    0
## 4364                     0                    0
## 4365                     0                   NA
## 4366                     0                    0
## 4367                     0                    0
## 4368                     0                    0
## 4369                     0                    0
## 4370                     0                    0
## 4371                     0                    0
## 4372                     0                    0
## 4373                     0                    0
## 4374                     0                    0
## 4375                     0                    0
## 4376                     0                   NA
## 4377                     0                    0
## 4378                     0                    0
## 4379                     0                    0
## 4380                     0                   NA
## 4381                     0                    0
## 4382                     0                   NA
## 4383                     0                    0
## 4384                     0                    0
## 4385                     0                    0
## 4386                     0                    0
## 4387                     0                   NA
## 4388                    57                   NA
## 4389                     0                   NA
## 4390                     0                    0
## 4391                     0                    0
## 4392                     0                   NA
## 4393                     0                    0
## 4394                     0                   NA
## 4395                     0                    0
## 4396                     0                   NA
## 4397                     0                    0
## 4398                     0                   NA
## 4399                     0                    0
## 4400                     0                   NA
## 4401                     0                    0
## 4402                     0                    0
## 4403                     0                    0
## 4404                     0                   NA
## 4405                     0                    0
## 4406                     0                    0
## 4407                     0                    0
## 4408                     0                   NA
## 4409                     0                    0
## 4410                     0                   NA
## 4411                     0                    0
## 4412                     0                    0
## 4413                     0                    0
## 4414                     0                    0
## 4415                     0                   NA
## 4416                     0                    0
## 4417                     0                   NA
## 4418                     0                    0
## 4419                     0                   NA
## 4420                     0                    0
## 4421                     0                    0
## 4422                     0                   NA
## 4423                     0                    0
## 4424                     0                   NA
## 4425                     0                    0
## 4426                     0                    0
## 4427                     0                   NA
## 4428                     0                    0
## 4429                     0                   NA
## 4430                     0                    0
## 4431                     0                   NA
## 4432                     0                    0
## 4433                     0                    0
## 4434                     0                    0
## 4435                     0                   NA
## 4436                     0                    0
## 4437                     0                    0
## 4438                     0                    0
## 4439                     0                   NA
## 4440                     0                    0
## 4441                     0                   NA
## 4442                     0                    0
## 4443                     0                    0
## 4444                     0                   NA
## 4445                     0                    0
## 4446                     0                    0
## 4447                     0                    0
## 4448                     0                   NA
## 4449                     0                    0
## 4450                     0                   NA
## 4451                     0                    0
## 4452                     0                   NA
## 4453                     0                    0
## 4454                     0                   NA
## 4455                     0                    0
## 4456                     0                   NA
## 4457                     0                    0
## 4458                     0                    0
## 4459                     0                    0
## 4460                     0                   NA
## 4461                     0                    0
## 4462                     0                    0
## 4463                     0                   NA
## 4464                     0                    0
## 4465                     0                   NA
## 4466                     0                    0
## 4467                     0                   NA
## 4468                     0                    0
## 4469                     0                   NA
## 4470                     0                    0
## 4471                     0                   NA
## 4472                     0                    0
## 4473                     0                   NA
## 4474                     0                   NA
## 4475                     0                    0
## 4476                     0                    0
## 4477                     0                   NA
## 4478                     0                    0
## 4479                     0                    0
## 4480                     0                   NA
## 4481                     0                    0
## 4482                     0                   NA
## 4483                     0                    0
## 4484                     0                   NA
## 4485                     0                    0
## 4486                     0                    0
## 4487                     0                    0
## 4488                     0                    0
## 4489                     0                   NA
## 4490                     0                    0
## 4491                     0                   NA
## 4492                     0                    0
## 4493                     0                   NA
## 4494                     0                    0
## 4495                     0                    0
## 4496                     0                    0
## 4497                     0                   NA
## 4498                     0                    0
## 4499                     0                    0
## 4500                     0                   NA
## 4501                     0                    0
## 4502                     0                   NA
## 4503                     0                    0
## 4504                     0                    0
## 4505                     0                    0
## 4506                     0                   NA
## 4507                     0                    0
## 4508                     0                   NA
## 4509                     0                    0
## 4510                     0                   NA
## 4511                     0                    0
## 4512                     0                    0
## 4513                     0                    0
## 4514                     0                    0
## 4515                     0                   NA
## 4516                     0                    0
## 4517                     0                   NA
## 4518                     0                    0
## 4519                     0                   NA
## 4520                     0                    0
## 4521                     0                    0
## 4522                     0                   NA
## 4523                     0                    0
## 4524                     0                   NA
## 4525                     0                    0
## 4526                     0                    0
## 4527                     0                   NA
## 4528                     0                    0
## 4529                     0                   NA
## 4530                     0                    0
## 4531                     0                   NA
## 4532                     0                    0
## 4533                     0                    0
## 4534                     0                    0
## 4535                     0                    0
## 4536                     0                    0
## 4537                     0                    0
## 4538                     0                    0
## 4539                     0                    0
## 4540                     0                    0
## 4541                     0                    0
## 4542                     0                    0
## 4543                     0                    0
## 4544                     0                    0
## 4545                     0                    0
## 4546                     0                    0
## 4547                     0                   NA
## 4548                     0                    0
## 4549                     0                    0
## 4550                     0                    0
## 4551                     0                    0
## 4552                     0                    0
## 4553                     0                    0
## 4554                     0                    0
## 4555                     0                    0
## 4556                     0                    0
## 4557                     0                    0
## 4558                     0                    0
## 4559                     0                    0
## 4560                     0                    0
## 4561                     0                    0
## 4562                     0                    0
## 4563                     0                    0
## 4564                     0                    0
## 4565                     0                    0
## 4566                     0                    0
## 4567                     0                    0
## 4568                     0                    0
## 4569                     0                    0
## 4570                     0                    0
## 4571                     0                   NA
## 4572                     0                    0
## 4573                     0                    0
## 4574                     0                    0
## 4575                     0                    0
## 4576                     0                    0
## 4577                     0                    0
## 4578                     0                    0
## 4579                     0                    0
## 4580                     0                    0
## 4581                     0                    0
## 4582                     0                    0
## 4583                     0                    0
## 4584                     0                    0
## 4585                     0                    0
## 4586                     0                    0
## 4587                     0                    0
## 4588                     0                    0
## 4589                     0                    0
## 4590                     0                    0
## 4591                     0                    0
## 4592                     0                    0
## 4593                     0                    0
## 4594                     0                    0
## 4595                     0                   NA
## 4596                     0                   NA
## 4597                     0                    0
## 4598                     0                    0
## 4599                     0                    0
## 4600                     0                    0
## 4601                     0                    0
## 4602                     0                    0
## 4603                     0                   NA
## 4604                     0                    0
## 4605                     0                   NA
## 4606                     0                    0
## 4607                     0                    0
## 4608                     0                    0
## 4609                     0                    0
## 4610                     0                    0
## 4611                     0                    0
## 4612                     0                    0
## 4613                     0                    0
## 4614                     0                   NA
## 4615                     0                    0
## 4616                     0                    0
## 4617                     0                    0
## 4618                     0                    0
## 4619                     0                    0
## 4620                     0                    0
## 4621                     0                    0
## 4622                     0                    0
## 4623                     0                    0
## 4624                     0                    0
## 4625                     0                   NA
## 4626                     0                    0
## 4627                     0                    0
## 4628                     0                    0
## 4629                     0                   NA
## 4630                     0                    0
## 4631                     0                   NA
## 4632                     0                    0
## 4633                     0                    0
## 4634                     0                    0
## 4635                     0                    0
## 4636                     0                   NA
## 4637                    65                   NA
## 4638                     0                    0
## 4639                     0                   NA
## 4640                     0                    0
## 4641                     0                   NA
## 4642                     0                    0
## 4643                     0                   NA
## 4644                     0                    0
## 4645                     0                   NA
## 4646                     0                    0
## 4647                     0                   NA
## 4648                     0                   NA
## 4649                     0                    0
## 4650                     0                    0
## 4651                     0                    0
## 4652                     0                    0
## 4653                     0                   NA
## 4654                     0                    0
## 4655                     0                    0
## 4656                     0                    0
## 4657                     0                   NA
## 4658                     0                   NA
## 4659                     0                    0
## 4660                     0                    0
## 4661                     0                    0
## 4662                     0                    0
## 4663                     0                    0
## 4664                     0                   NA
## 4665                     0                    0
## 4666                     0                   NA
## 4667                     0                    0
## 4668                     0                   NA
## 4669                     0                    0
## 4670                     0                    0
## 4671                     0                   NA
## 4672                     0                    0
## 4673                     0                   NA
## 4674                     0                    0
## 4675                     0                   NA
## 4676                     0                    0
## 4677                     0                    0
## 4678                     0                   NA
## 4679                     0                    0
## 4680                     0                   NA
## 4681                     0                    0
## 4682                     0                    0
## 4683                     0                   NA
## 4684                     0                    0
## 4685                     0                    0
## 4686                     0                    0
## 4687                     0                    0
## 4688                     0                   NA
## 4689                     0                    0
## 4690                     0                    0
## 4691                     0                   NA
## 4692                     0                    0
## 4693                     0                   NA
## 4694                     0                    0
## 4695                     0                    0
## 4696                     0                    0
## 4697                     0                   NA
## 4698                     0                    0
## 4699                     0                   NA
## 4700                     0                    0
## 4701                     0                   NA
## 4702                     0                    0
## 4703                     0                   NA
## 4704                     0                    0
## 4705                     0                   NA
## 4706                     0                    0
## 4707                     0                    0
## 4708                     0                    0
## 4709                     0                   NA
## 4710                     0                    0
## 4711                     0                    0
## 4712                     0                   NA
## 4713                     0                    0
## 4714                     0                   NA
## 4715                     0                    0
## 4716                     0                   NA
## 4717                     0                    0
## 4718                     0                   NA
## 4719                     0                    0
## 4720                     0                   NA
## 4721                     0                    0
## 4722                     0                   NA
## 4723                     0                    0
## 4724                     0                   NA
## 4725                     0                    0
## 4726                     0                   NA
## 4727                     0                    0
## 4728                     0                    0
## 4729                     0                   NA
## 4730                     0                    0
## 4731                     0                   NA
## 4732                     0                    0
## 4733                     0                   NA
## 4734                     0                    0
## 4735                     0                    0
## 4736                     0                    0
## 4737                     0                    0
## 4738                     0                   NA
## 4739                     0                    0
## 4740                     0                   NA
## 4741                     0                    0
## 4742                     0                   NA
## 4743                     0                    0
## 4744                     0                    0
## 4745                     0                    0
## 4746                     0                   NA
## 4747                     0                    0
## 4748                     0                    0
## 4749                     0                   NA
## 4750                     0                    0
## 4751                     0                   NA
## 4752                     0                    0
## 4753                     0                    0
## 4754                     0                    0
## 4755                     0                   NA
## 4756                     0                    0
## 4757                     0                   NA
## 4758                     0                    0
## 4759                     0                   NA
## 4760                     0                    0
## 4761                     0                    0
## 4762                     0                    0
## 4763                     0                    0
## 4764                     0                   NA
## 4765                     0                    0
## 4766                     0                   NA
## 4767                     0                    0
## 4768                     0                   NA
## 4769                     0                    0
## 4770                     0                    0
## 4771                     0                   NA
## 4772                     0                    0
## 4773                     0                   NA
## 4774                     0                    0
## 4775                     0                    0
## 4776                     0                   NA
## 4777                     0                    0
## 4778                     0                   NA
## 4779                     0                    0
## 4780                     0                   NA
## 4781                     0                    0
## 4782                     0                    0
## 4783                     0                    0
## 4784                     0                    0
## 4785                     0                    0
## 4786                     0                    0
## 4787                     0                    0
## 4788                     0                    0
## 4789                     0                    0
## 4790                     0                    0
## 4791                     0                    0
## 4792                     0                    0
## 4793                     0                    0
## 4794                     0                    0
## 4795                     0                    0
## 4796                     0                   NA
## 4797                     0                    0
## 4798                     0                    0
## 4799                     0                    0
## 4800                     0                    0
## 4801                     0                    0
## 4802                     0                    0
## 4803                     0                    0
## 4804                     0                    0
## 4805                     0                    0
## 4806                     0                    0
## 4807                     0                    0
## 4808                     0                    0
## 4809                     0                    0
## 4810                     0                    0
## 4811                     0                    0
## 4812                     0                    0
## 4813                     0                    0
## 4814                     0                    0
## 4815                     0                    0
## 4816                     0                    0
## 4817                     0                    0
## 4818                     0                    0
## 4819                     0                    0
## 4820                     0                   NA
## 4821                     0                    0
## 4822                     0                    0
## 4823                     0                    0
## 4824                     0                    0
## 4825                     0                    0
## 4826                     0                    0
## 4827                     0                    0
## 4828                     0                    0
## 4829                     0                    0
## 4830                     0                    0
## 4831                     0                    0
## 4832                     0                    0
## 4833                     0                    0
## 4834                     0                    0
## 4835                     0                    0
## 4836                     0                    0
## 4837                     0                    0
## 4838                     0                    0
## 4839                     0                    0
## 4840                     0                    0
## 4841                     0                    0
## 4842                     0                    0
## 4843                     0                    0
## 4844                     0                   NA
## 4845                     0                   NA
## 4846                     0                    0
## 4847                     0                    0
## 4848                     0                    0
## 4849                     0                    0
## 4850                     0                    0
## 4851                     0                    0
## 4852                     0                   NA
## 4853                     0                    0
## 4854                     0                   NA
## 4855                     0                    0
## 4856                     0                    0
## 4857                     0                    0
## 4858                     0                    0
## 4859                     0                    0
## 4860                     0                    0
## 4861                     0                    0
## 4862                     0                    0
## 4863                     0                   NA
## 4864                     0                    0
## 4865                     0                    0
## 4866                     0                    0
## 4867                     0                    0
## 4868                     0                    0
## 4869                     0                    0
## 4870                     0                    0
## 4871                     0                    0
## 4872                     0                    0
## 4873                     0                    0
## 4874                     0                   NA
## 4875                     0                    0
## 4876                     0                    0
## 4877                     0                    0
## 4878                     0                   NA
## 4879                     0                    0
## 4880                     0                   NA
## 4881                     0                    0
## 4882                     0                    0
## 4883                     0                    0
## 4884                     0                    0
## 4885                     0                   NA
## 4886                    66                   NA
## 4887                     0                    0
## 4888                     0                   NA
## 4889                     0                    0
## 4890                     0                   NA
## 4891                     0                    0
## 4892                     0                   NA
## 4893                     0                    0
## 4894                     0                   NA
## 4895                     0                    0
## 4896                     0                   NA
## 4897                     0                    0
## 4898                     0                   NA
## 4899                     0                    0
## 4900                     0                    0
## 4901                     0                    0
## 4902                     0                   NA
## 4903                     0                    0
## 4904                     0                    0
## 4905                     0                    0
## 4906                     0                   NA
## 4907                     0                    0
## 4908                     0                   NA
## 4909                     0                    0
## 4910                     0                    0
## 4911                     0                    0
## 4912                     0                    0
## 4913                     0                   NA
## 4914                     0                    0
## 4915                     0                   NA
## 4916                     0                    0
## 4917                     0                   NA
## 4918                     0                    0
## 4919                     0                    0
## 4920                     0                   NA
## 4921                     0                    0
## 4922                     0                   NA
## 4923                     0                    0
## 4924                     0                    0
## 4925                     0                   NA
## 4926                     0                   NA
## 4927                     0                    0
## 4928                     0                    0
## 4929                     0                   NA
## 4930                     0                    0
## 4931                     0                    0
## 4932                     0                    0
## 4933                     0                   NA
## 4934                     0                    0
## 4935                     0                    0
## 4936                     0                    0
## 4937                     0                   NA
## 4938                     0                    0
## 4939                     0                    0
## 4940                     0                   NA
## 4941                     0                    0
## 4942                     0                   NA
## 4943                     0                    0
## 4944                     0                    0
## 4945                     0                    0
## 4946                     0                   NA
## 4947                     0                    0
## 4948                     0                   NA
## 4949                     0                    0
## 4950                     0                   NA
## 4951                     0                    0
## 4952                     0                   NA
## 4953                     0                    0
## 4954                     0                   NA
## 4955                     0                    0
## 4956                     0                    0
## 4957                     0                    0
## 4958                     0                   NA
## 4959                     0                    0
## 4960                     0                    0
## 4961                     0                   NA
## 4962                     0                    0
## 4963                     0                   NA
## 4964                     0                    0
## 4965                     0                   NA
## 4966                     0                    0
## 4967                     0                   NA
## 4968                     0                    0
## 4969                     0                   NA
## 4970                     0                    0
## 4971                     0                   NA
## 4972                     0                    0
## 4973                     0                   NA
## 4974                     0                    0
## 4975                     0                   NA
## 4976                     0                    0
## 4977                     0                    0
## 4978                     0                   NA
## 4979                     0                    0
## 4980                     0                   NA
## 4981                     0                    0
## 4982                     0                   NA
## 4983                     0                    0
## 4984                     0                    0
## 4985                     0                    0
## 4986                     0                    0
## 4987                     0                   NA
## 4988                     0                    0
## 4989                     0                   NA
## 4990                     0                    0
## 4991                     0                   NA
## 4992                     0                    0
## 4993                     0                    0
## 4994                     0                    0
## 4995                     0                   NA
## 4996                     0                    0
## 4997                     0                    0
## 4998                     0                   NA
## 4999                     0                    0
## 5000                     0                   NA
## 5001                     0                    0
## 5002                     0                    0
## 5003                     0                    0
## 5004                     0                   NA
## 5005                     0                    0
## 5006                     0                   NA
## 5007                     0                    0
## 5008                     0                   NA
## 5009                     0                    0
## 5010                     0                    0
## 5011                     0                    0
## 5012                     0                    0
## 5013                     0                   NA
## 5014                     0                    0
## 5015                     0                   NA
## 5016                     0                    0
## 5017                     0                   NA
## 5018                     0                    0
## 5019                     0                    0
## 5020                     0                   NA
## 5021                     0                    0
## 5022                     0                   NA
## 5023                     0                    0
## 5024                     0                    0
## 5025                     0                   NA
## 5026                     0                    0
## 5027                     0                   NA
## 5028                     0                    0
## 5029                     0                   NA
## 5030                     0                    0
## 5031                     0                    0
## 5032                     0                    0
## 5033                     0                    0
## 5034                     0                    0
## 5035                     0                    0
## 5036                     0                    0
## 5037                     0                    0
## 5038                     0                    0
## 5039                     0                    0
## 5040                     0                    0
## 5041                     0                    0
## 5042                     0                    0
## 5043                     0                    0
## 5044                     0                    0
## 5045                     0                   NA
## 5046                     0                    0
## 5047                     0                    0
## 5048                     0                    0
## 5049                     0                    0
## 5050                     0                    0
## 5051                     0                    0
## 5052                     0                    0
## 5053                     0                    0
## 5054                     0                    0
## 5055                     0                    0
## 5056                     0                    0
## 5057                     0                    0
## 5058                     0                    0
## 5059                     0                    0
## 5060                     0                    0
## 5061                     0                    0
## 5062                     0                    0
## 5063                     0                    0
## 5064                     0                    0
## 5065                     0                    0
## 5066                     0                    0
## 5067                     0                    0
## 5068                     0                    0
## 5069                     0                   NA
## 5070                     0                    0
## 5071                     0                    0
## 5072                     0                    0
## 5073                     0                    0
## 5074                     0                    0
## 5075                     0                    0
## 5076                     0                    0
## 5077                     0                    0
## 5078                     0                    0
## 5079                     0                    0
## 5080                     0                    0
## 5081                     0                    0
## 5082                     0                    0
## 5083                     0                    0
## 5084                     0                    0
## 5085                     0                    0
## 5086                     0                    0
## 5087                     0                    0
## 5088                     0                    0
## 5089                     0                    0
## 5090                     0                    0
## 5091                     0                    0
## 5092                     0                    0
## 5093                     0                   NA
## 5094                     0                   NA
## 5095                     0                    0
## 5096                     0                    0
## 5097                     0                    0
## 5098                     0                    0
## 5099                     0                    0
## 5100                     0                    0
## 5101                     0                   NA
## 5102                     0                    0
## 5103                     0                   NA
## 5104                     0                    0
## 5105                     0                    0
## 5106                     0                    0
## 5107                     0                    0
## 5108                     0                    0
## 5109                     0                    0
## 5110                     0                    0
## 5111                     0                    0
## 5112                     0                   NA
## 5113                     0                    0
## 5114                     0                    0
## 5115                     0                    0
## 5116                     0                    0
## 5117                     0                    0
## 5118                     0                    0
## 5119                     0                    0
## 5120                     0                    0
## 5121                     0                    0
## 5122                     0                    0
## 5123                     0                   NA
## 5124                     0                    0
## 5125                     0                    0
## 5126                     0                    0
## 5127                     0                   NA
## 5128                     0                    0
## 5129                     0                   NA
## 5130                     0                    0
## 5131                     0                    0
## 5132                     0                    0
## 5133                     0                    0
## 5134                     0                   NA
## 5135                    72                   NA
## 5136                     0                    0
## 5137                     0                   NA
## 5138                     0                    0
## 5139                     0                   NA
## 5140                     0                    0
## 5141                     0                   NA
## 5142                     0                    0
## 5143                     0                   NA
## 5144                     0                    0
## 5145                     0                   NA
## 5146                     0                    0
## 5147                     0                   NA
## 5148                     0                    0
## 5149                     0                    0
## 5150                     0                    0
## 5151                     0                   NA
## 5152                     0                    0
## 5153                     0                    0
## 5154                     0                    0
## 5155                     0                   NA
## 5156                     0                    0
## 5157                     0                   NA
## 5158                     0                    0
## 5159                     0                    0
## 5160                     0                    0
## 5161                     0                    0
## 5162                     0                   NA
## 5163                     0                    0
## 5164                     0                   NA
## 5165                     0                    0
## 5166                     0                   NA
## 5167                     0                    0
## 5168                     0                    0
## 5169                     0                   NA
## 5170                     0                    0
## 5171                     0                   NA
## 5172                     0                    0
## 5173                     0                    0
## 5174                     0                   NA
## 5175                     0                    0
## 5176                     0                   NA
## 5177                     0                    0
## 5178                     0                   NA
## 5179                     0                    0
## 5180                     0                    0
## 5181                     0                    0
## 5182                     0                   NA
## 5183                     0                    0
## 5184                     0                    0
## 5185                     0                    0
## 5186                     0                   NA
## 5187                     0                    0
## 5188                     0                   NA
## 5189                     0                    0
## 5190                     0                    0
## 5191                     0                   NA
## 5192                     0                    0
## 5193                     0                    0
## 5194                     0                    0
## 5195                     0                   NA
## 5196                     0                    0
## 5197                     0                   NA
## 5198                     0                    0
## 5199                     0                   NA
## 5200                     0                    0
## 5201                     0                   NA
## 5202                     0                    0
## 5203                     0                   NA
## 5204                     0                    0
## 5205                     0                    0
## 5206                     0                    0
## 5207                     0                   NA
## 5208                     0                    0
## 5209                     0                    0
## 5210                     0                   NA
## 5211                     0                    0
## 5212                     0                   NA
## 5213                     0                    0
## 5214                     0                   NA
## 5215                     0                    0
## 5216                     0                   NA
## 5217                     0                    0
## 5218                     0                   NA
## 5219                     0                    0
## 5220                     0                   NA
## 5221                     0                    0
## 5222                     0                   NA
## 5223                     0                    0
## 5224                     0                   NA
## 5225                     0                    0
## 5226                     0                    0
## 5227                     0                   NA
## 5228                     0                    0
## 5229                     0                   NA
## 5230                     0                    0
## 5231                     0                   NA
## 5232                     0                    0
## 5233                     0                    0
## 5234                     0                    0
## 5235                     0                    0
## 5236                     0                   NA
## 5237                     0                    0
## 5238                     0                   NA
## 5239                     0                    0
## 5240                     0                   NA
## 5241                     0                    0
## 5242                     0                    0
## 5243                     0                    0
## 5244                     0                   NA
## 5245                     0                    0
## 5246                     0                    0
## 5247                     0                   NA
## 5248                     0                    0
## 5249                     0                   NA
## 5250                     0                    0
## 5251                     0                    0
## 5252                     0                    0
## 5253                     0                   NA
## 5254                     0                    0
## 5255                     0                   NA
## 5256                     0                    0
## 5257                     0                   NA
## 5258                     0                    0
## 5259                     0                    0
## 5260                     0                    0
## 5261                     0                    0
## 5262                     0                   NA
## 5263                     0                    0
## 5264                     0                   NA
## 5265                     0                    0
## 5266                     0                   NA
## 5267                     0                    0
## 5268                     0                    0
## 5269                     0                   NA
## 5270                     0                    0
## 5271                     0                   NA
## 5272                     0                    0
## 5273                     0                    0
## 5274                     0                   NA
## 5275                     0                    0
## 5276                     0                   NA
## 5277                     0                    0
## 5278                     0                   NA
## 5279                     0                    0
## 5280                     0                    0
## 5281                     0                    0
## 5282                     0                    0
## 5283                     0                    0
## 5284                     0                    0
## 5285                     0                    0
## 5286                     0                    0
## 5287                     0                    0
## 5288                     0                    0
## 5289                     0                    0
## 5290                     0                    0
## 5291                     0                    0
## 5292                     0                    0
## 5293                     0                    0
## 5294                     0                   NA
## 5295                     0                    0
## 5296                     0                    0
## 5297                     0                    0
## 5298                     0                    0
## 5299                     0                    0
## 5300                     0                    0
## 5301                     0                    0
## 5302                     0                    0
## 5303                     0                    0
## 5304                     0                    0
## 5305                     0                    0
## 5306                     0                    0
## 5307                     0                    0
## 5308                     0                    0
## 5309                     0                    0
## 5310                     0                    0
## 5311                     0                    0
## 5312                     0                    0
## 5313                     0                    0
## 5314                     0                    0
## 5315                     0                    0
## 5316                     0                    0
## 5317                     0                    0
## 5318                     0                   NA
## 5319                     0                    0
## 5320                     0                    0
## 5321                     0                    0
## 5322                     0                    0
## 5323                     0                    0
## 5324                     0                    0
## 5325                     0                    0
## 5326                     0                    0
## 5327                     0                    0
## 5328                     0                    0
## 5329                     0                    0
## 5330                     0                    0
## 5331                     0                    0
## 5332                     0                    0
## 5333                     0                    0
## 5334                     0                    0
## 5335                     0                    0
## 5336                     0                    0
## 5337                     0                    0
## 5338                     0                    0
## 5339                     0                    0
## 5340                     0                    0
## 5341                     0                    0
## 5342                     0                   NA
## 5343                     0                   NA
## 5344                     0                    0
## 5345                     0                    0
## 5346                     0                    0
## 5347                     0                    0
## 5348                     0                    0
## 5349                     0                    0
## 5350                     0                   NA
## 5351                     0                    0
## 5352                     0                   NA
## 5353                     0                    0
## 5354                     0                    0
## 5355                     0                    0
## 5356                     0                    0
## 5357                     0                    0
## 5358                     0                    0
## 5359                     0                    0
## 5360                     0                    0
## 5361                     0                   NA
## 5362                     0                    0
## 5363                     0                    0
## 5364                     0                    0
## 5365                     0                    0
## 5366                     0                    0
## 5367                     0                    0
## 5368                     0                    0
## 5369                     0                    0
## 5370                     0                    0
## 5371                     0                    0
## 5372                     0                   NA
## 5373                     0                    0
## 5374                     0                    0
## 5375                     0                    0
## 5376                     0                   NA
## 5377                     0                    0
## 5378                     0                   NA
## 5379                     0                    0
## 5380                     0                    0
## 5381                     0                    0
## 5382                     0                    0
## 5383                     0                   NA
## 5384                    73                   NA
## 5385                     0                    0
## 5386                     0                   NA
## 5387                     0                    0
## 5388                     0                   NA
## 5389                     0                    0
## 5390                     0                   NA
## 5391                     0                    0
## 5392                     0                   NA
## 5393                     0                    0
## 5394                     0                   NA
## 5395                     0                   NA
## 5396                     0                    0
## 5397                     0                    0
## 5398                     0                    0
## 5399                     0                    0
## 5400                     0                   NA
## 5401                     0                    0
## 5402                     0                    0
## 5403                     0                    0
## 5404                     0                   NA
## 5405                     0                    1
## 5406                     0                   NA
## 5407                     0                    0
## 5408                     0                    0
## 5409                     0                    0
## 5410                     0                    0
## 5411                     0                   NA
## 5412                     0                    0
## 5413                     0                   NA
## 5414                     0                    0
## 5415                     0                   NA
## 5416                     0                    0
## 5417                     0                   NA
## 5418                     0                    0
## 5419                     0                    0
## 5420                     0                   NA
## 5421                     0                    0
## 5422                     0                    0
## 5423                     0                   NA
## 5424                     0                    1
## 5425                     0                   NA
## 5426                     0                    0
## 5427                     0                   NA
## 5428                     0                    0
## 5429                     0                    0
## 5430                     0                    0
## 5431                     0                   NA
## 5432                     0                    0
## 5433                     0                    0
## 5434                     0                    0
## 5435                     0                   NA
## 5436                     0                    0
## 5437                     0                    0
## 5438                     0                   NA
## 5439                     0                    0
## 5440                     0                   NA
## 5441                     0                    0
## 5442                     0                    0
## 5443                     0                    0
## 5444                     0                   NA
## 5445                     0                    0
## 5446                     0                   NA
## 5447                     0                    0
## 5448                     0                   NA
## 5449                     0                    0
## 5450                     0                   NA
## 5451                     0                    0
## 5452                     0                   NA
## 5453                     0                    0
## 5454                     0                    0
## 5455                     0                    0
## 5456                     0                   NA
## 5457                     0                    0
## 5458                     0                    0
## 5459                     0                   NA
## 5460                     0                    0
## 5461                     0                   NA
## 5462                     0                    0
## 5463                     0                   NA
## 5464                     0                    0
## 5465                     0                   NA
## 5466                     0                    0
## 5467                     0                   NA
## 5468                     0                    0
## 5469                     0                   NA
## 5470                     0                    0
## 5471                     0                   NA
## 5472                     0                    0
## 5473                     0                   NA
## 5474                     0                    0
## 5475                     0                    0
## 5476                     0                   NA
## 5477                     0                    0
## 5478                     0                   NA
## 5479                     0                   NA
## 5480                     0                    0
## 5481                     0                    0
## 5482                     0                    0
## 5483                     0                    0
## 5484                     0                    0
## 5485                     0                   NA
## 5486                     0                    0
## 5487                     0                   NA
## 5488                     0                    0
## 5489                     0                   NA
## 5490                     0                    0
## 5491                     0                    0
## 5492                     0                    0
## 5493                     0                   NA
## 5494                     0                    0
## 5495                     0                    0
## 5496                     0                   NA
## 5497                     0                    0
## 5498                     0                   NA
## 5499                     0                    0
## 5500                     0                    0
## 5501                     0                    0
## 5502                     0                   NA
## 5503                     0                    0
## 5504                     0                   NA
## 5505                     0                    0
## 5506                     0                   NA
## 5507                     0                    0
## 5508                     0                    0
## 5509                     0                    0
## 5510                     0                    0
## 5511                     0                   NA
## 5512                     0                    0
## 5513                     0                   NA
## 5514                     0                    0
## 5515                     0                   NA
## 5516                     0                    0
## 5517                     0                    0
## 5518                     0                   NA
## 5519                     0                    0
## 5520                     0                   NA
## 5521                     0                    0
## 5522                     0                    0
## 5523                     0                   NA
## 5524                     0                    0
## 5525                     0                   NA
## 5526                     0                    0
## 5527                     0                   NA
## 5528                     0                    0
## 5529                     0                    0
## 5530                     0                    0
## 5531                     0                    0
## 5532                     0                    0
## 5533                     0                    0
## 5534                     0                    0
## 5535                     0                    0
## 5536                     0                    0
## 5537                     0                    0
## 5538                     0                    0
## 5539                     0                    0
## 5540                     0                    0
## 5541                     0                    0
## 5542                     0                    0
## 5543                     0                   NA
## 5544                     0                    0
## 5545                     0                    0
## 5546                     0                    0
## 5547                     0                    0
## 5548                     0                    0
## 5549                     0                    0
## 5550                     0                    0
## 5551                     0                    0
## 5552                     0                    0
## 5553                     0                    0
## 5554                     0                    0
## 5555                     0                    0
## 5556                     0                    0
## 5557                     0                    0
## 5558                     0                    0
## 5559                     0                    0
## 5560                     0                    0
## 5561                     0                    0
## 5562                     0                    0
## 5563                     0                    0
## 5564                     0                    0
## 5565                     0                    0
## 5566                     0                    0
## 5567                     0                   NA
## 5568                     0                    0
## 5569                     0                    0
## 5570                     0                    0
## 5571                     0                    0
## 5572                     0                    0
## 5573                     0                    0
## 5574                     0                    0
## 5575                     0                    0
## 5576                     0                    0
## 5577                     0                    0
## 5578                     0                    0
## 5579                     0                    0
## 5580                     0                    0
## 5581                     0                    0
## 5582                     0                    0
## 5583                     0                    0
## 5584                     0                    0
## 5585                     0                    0
## 5586                     0                    0
## 5587                     0                    0
## 5588                     0                    0
## 5589                     0                    0
## 5590                     0                    0
## 5591                     0                   NA
## 5592                     0                   NA
## 5593                     0                    0
## 5594                     0                    0
## 5595                     0                    0
## 5596                     0                    0
## 5597                     0                    0
## 5598                     0                    0
## 5599                     0                   NA
## 5600                     0                    0
## 5601                     0                   NA
## 5602                     0                    0
## 5603                     0                    0
## 5604                     0                    0
## 5605                     0                    0
## 5606                     0                    0
## 5607                     0                    0
## 5608                     0                    0
## 5609                     0                    0
## 5610                     0                   NA
## 5611                     0                    0
## 5612                     0                    0
## 5613                     0                    0
## 5614                     0                    0
## 5615                     0                    0
## 5616                     0                    0
## 5617                     0                    0
## 5618                     0                    0
## 5619                     0                    0
## 5620                     0                    0
## 5621                     0                   NA
## 5622                     0                    0
## 5623                     0                    0
## 5624                     0                    0
## 5625                     0                   NA
## 5626                     0                    0
## 5627                     0                   NA
## 5628                     0                    0
## 5629                     0                    0
## 5630                     0                    0
## 5631                     0                    0
## 5632                     0                   NA
## 5633                    86                   NA
## 5634                     0                    0
## 5635                     0                   NA
## 5636                     0                    0
## 5637                     0                   NA
## 5638                     0                    0
## 5639                     0                   NA
## 5640                     0                    0
## 5641                     0                   NA
## 5642                     0                    0
## 5643                     0                   NA
## 5644                     0                    0
## 5645                     0                   NA
## 5646                     0                    0
## 5647                     0                    0
## 5648                     0                    0
## 5649                     0                   NA
## 5650                     0                    0
## 5651                     0                    0
## 5652                     0                    0
## 5653                     0                   NA
## 5654                     0                   NA
## 5655                     0                    0
## 5656                     0                    0
## 5657                     0                    0
## 5658                     0                    0
## 5659                     0                    0
## 5660                     0                   NA
## 5661                     0                    0
## 5662                     0                   NA
## 5663                     0                    0
## 5664                     0                   NA
## 5665                     0                    0
## 5666                     0                    0
## 5667                     0                   NA
## 5668                     0                    0
## 5669                     0                   NA
## 5670                     0                    0
## 5671                     0                    2
## 5672                     0                   NA
## 5673                     0                    0
## 5674                     0                   NA
## 5675                     0                    1
## 5676                     0                   NA
## 5677                     0                    0
## 5678                     0                    0
## 5679                     0                    5
## 5680                     0                   NA
## 5681                     0                    0
## 5682                     0                    0
## 5683                     0                    0
## 5684                     0                   NA
## 5685                     0                    0
## 5686                     0                   NA
## 5687                     0                    0
## 5688                     0                    0
## 5689                     0                   NA
## 5690                     0                    0
## 5691                     0                    0
## 5692                     0                    0
## 5693                     0                   NA
## 5694                     0                    0
## 5695                     0                   NA
## 5696                     0                    0
## 5697                     0                   NA
## 5698                     0                    0
## 5699                     0                   NA
## 5700                     0                    0
## 5701                     0                   NA
## 5702                     0                    0
## 5703                     0                    0
## 5704                     0                    0
## 5705                     0                   NA
## 5706                     0                    0
## 5707                     0                    0
## 5708                     0                   NA
## 5709                     0                    0
## 5710                     0                   NA
## 5711                     0                    0
## 5712                     0                   NA
## 5713                     0                    0
## 5714                     0                   NA
## 5715                     0                    0
## 5716                     0                   NA
## 5717                     0                    0
## 5718                     0                   NA
## 5719                     0                    0
## 5720                     0                   NA
## 5721                     0                    0
## 5722                     0                   NA
## 5723                     0                    0
## 5724                     0                    0
## 5725                     0                   NA
## 5726                     0                    0
## 5727                     0                   NA
## 5728                     0                    0
## 5729                     0                   NA
## 5730                     0                    0
## 5731                     0                    0
## 5732                     0                    0
## 5733                     0                    0
## 5734                     0                   NA
## 5735                     0                    0
## 5736                     0                   NA
## 5737                     0                    0
## 5738                     0                   NA
## 5739                     0                    0
## 5740                     0                    0
## 5741                     0                    0
## 5742                     0                   NA
## 5743                     0                    0
## 5744                     0                    0
## 5745                     0                   NA
## 5746                     0                    0
## 5747                     0                   NA
## 5748                     0                    0
## 5749                     0                    0
## 5750                     0                    0
## 5751                     0                   NA
## 5752                     0                    0
## 5753                     0                   NA
## 5754                     0                    0
## 5755                     0                   NA
## 5756                     0                    0
## 5757                     0                    0
## 5758                     0                    0
## 5759                     0                    0
## 5760                     0                   NA
## 5761                     0                    0
## 5762                     0                   NA
## 5763                     0                    0
## 5764                     0                   NA
## 5765                     0                    0
## 5766                     0                    0
## 5767                     0                   NA
## 5768                     0                    0
## 5769                     0                   NA
## 5770                     0                    0
## 5771                     0                    0
## 5772                     0                   NA
## 5773                     0                    0
## 5774                     0                   NA
## 5775                     0                    0
## 5776                     0                   NA
## 5777                     0                    0
## 5778                     0                    0
## 5779                     0                    0
## 5780                     0                    0
## 5781                     0                    0
## 5782                     0                    0
## 5783                     0                    0
## 5784                     0                    0
## 5785                     0                    0
## 5786                     0                    0
## 5787                     0                    0
## 5788                     0                    0
## 5789                     0                    0
## 5790                     0                    0
## 5791                     0                    0
## 5792                     0                   NA
## 5793                     0                    0
## 5794                     0                    0
## 5795                     0                    0
## 5796                     0                    0
## 5797                     0                    0
## 5798                     0                    0
## 5799                     0                    0
## 5800                     0                    0
## 5801                     0                    0
## 5802                     0                    0
## 5803                     0                    0
## 5804                     0                    0
## 5805                     0                    0
## 5806                     0                    0
## 5807                     0                    0
## 5808                     0                    0
## 5809                     0                    0
## 5810                     0                    0
## 5811                     0                    0
## 5812                     0                    0
## 5813                     0                    0
## 5814                     0                    0
## 5815                     0                    0
## 5816                     0                   NA
## 5817                     0                    0
## 5818                     0                    0
## 5819                     0                    0
## 5820                     0                    0
## 5821                     0                    0
## 5822                     0                    0
## 5823                     0                    0
## 5824                     0                    0
## 5825                     0                    0
## 5826                     0                    0
## 5827                     0                    0
## 5828                     0                    0
## 5829                     0                    0
## 5830                     0                    0
## 5831                     0                    0
## 5832                     0                    0
## 5833                     0                    0
## 5834                     0                    0
## 5835                     0                    0
## 5836                     0                    0
## 5837                     0                    0
## 5838                     0                    0
## 5839                     0                    0
## 5840                     0                   NA
## 5841                     0                   NA
## 5842                     0                    0
## 5843                     0                    0
## 5844                     0                    0
## 5845                     0                    0
## 5846                     0                    0
## 5847                     0                    0
## 5848                     0                   NA
## 5849                     0                    0
## 5850                     0                   NA
## 5851                     0                    0
## 5852                     0                    0
## 5853                     0                    0
## 5854                     0                    0
## 5855                     0                    0
## 5856                     0                    0
## 5857                     0                    0
## 5858                     0                    0
## 5859                     0                   NA
## 5860                     0                    0
## 5861                     0                    0
## 5862                     0                    0
## 5863                     0                    0
## 5864                     0                    0
## 5865                     0                    0
## 5866                     0                    0
## 5867                     0                    0
## 5868                     0                    0
## 5869                     0                    3
## 5870                     0                   NA
## 5871                     0                    0
## 5872                     0                    0
## 5873                     0                    0
## 5874                     0                   NA
## 5875                     0                    0
## 5876                     0                   NA
## 5877                     0                    0
## 5878                     0                    0
## 5879                     0                    0
## 5880                     0                    0
## 5881                     0                   NA
## 5882                    89                   NA
## 5883                     0                    0
## 5884                     0                   NA
## 5885                     0                    0
## 5886                     0                   NA
## 5887                     0                    0
## 5888                     0                   NA
## 5889                     0                    0
## 5890                     0                   NA
## 5891                     0                    0
## 5892                     0                   NA
## 5893                     0                   NA
## 5894                     0                    0
## 5895                     0                    0
## 5896                     0                    0
## 5897                     0                    0
## 5898                     0                   NA
## 5899                     0                    0
## 5900                     0                    0
## 5901                     0                    0
## 5902                     0                   NA
## 5903                     0                    0
## 5904                     0                   NA
## 5905                     0                    0
## 5906                     0                    0
## 5907                     0                    0
## 5908                     0                    0
## 5909                     0                   NA
## 5910                     0                    0
## 5911                     0                   NA
## 5912                     0                    0
## 5913                     0                   NA
## 5914                     0                    0
## 5915                     0                    0
## 5916                     0                   NA
## 5917                     0                    0
## 5918                     0                   NA
## 5919                     0                    0
## 5920                     0                    0
## 5921                     0                   NA
## 5922                     0                    2
## 5923                     0                   NA
## 5924                     0                    0
## 5925                     0                   NA
## 5926                     0                    0
## 5927                     0                    0
## 5928                     0                    0
## 5929                     0                   NA
## 5930                     0                    0
## 5931                     0                    0
## 5932                     0                    0
## 5933                     0                   NA
## 5934                     0                    0
## 5935                     0                    0
## 5936                     0                   NA
## 5937                     0                    0
## 5938                     0                   NA
## 5939                     0                    0
## 5940                     0                    0
## 5941                     0                    0
## 5942                     0                   NA
## 5943                     0                    0
## 5944                     0                   NA
## 5945                     0                    0
## 5946                     0                   NA
## 5947                     0                    0
## 5948                     0                   NA
## 5949                     0                    0
## 5950                     0                   NA
## 5951                     0                    0
## 5952                     0                    0
## 5953                     0                    0
## 5954                     0                   NA
## 5955                     0                    0
## 5956                     0                    0
## 5957                     0                   NA
## 5958                     0                    0
## 5959                     0                   NA
## 5960                     0                    0
## 5961                     0                   NA
## 5962                     0                    0
## 5963                     0                   NA
## 5964                     0                    0
## 5965                     0                   NA
## 5966                     0                    0
## 5967                     0                   NA
## 5968                     0                   NA
## 5969                     0                    0
## 5970                     0                    0
## 5971                     0                   NA
## 5972                     0                    0
## 5973                     0                    0
## 5974                     0                   NA
## 5975                     0                    0
## 5976                     0                   NA
## 5977                     0                    0
## 5978                     0                   NA
## 5979                     0                    0
## 5980                     0                    0
## 5981                     0                    0
## 5982                     0                    0
## 5983                     0                   NA
## 5984                     0                    0
## 5985                     0                   NA
## 5986                     0                    0
## 5987                     0                   NA
## 5988                     0                    0
## 5989                     0                    0
## 5990                     0                    0
## 5991                     0                   NA
## 5992                     0                    0
## 5993                     0                    0
## 5994                     0                   NA
## 5995                     0                    0
## 5996                     0                   NA
## 5997                     0                    0
## 5998                     0                    0
## 5999                     0                    0
## 6000                     0                   NA
## 6001                     0                    0
## 6002                     0                   NA
## 6003                     0                    0
## 6004                     0                   NA
## 6005                     0                    0
## 6006                     0                    0
## 6007                     0                    0
## 6008                     0                   NA
## 6009                     0                    0
## 6010                     0                    0
## 6011                     0                   NA
## 6012                     0                    0
## 6013                     0                   NA
## 6014                     0                    0
## 6015                     0                    0
## 6016                     0                   NA
## 6017                     0                    0
## 6018                     0                   NA
## 6019                     0                    0
## 6020                     0                    0
## 6021                     0                   NA
## 6022                     0                    0
## 6023                     0                   NA
## 6024                     0                    0
## 6025                     0                   NA
## 6026                     0                    0
## 6027                     0                    0
## 6028                     0                    0
## 6029                     0                    0
## 6030                     0                    0
## 6031                     0                    0
## 6032                     0                    0
## 6033                     0                    0
## 6034                     0                    0
## 6035                     0                    0
## 6036                     0                    0
## 6037                     0                    0
## 6038                     0                    0
## 6039                     0                    0
## 6040                     0                    0
## 6041                     0                   NA
## 6042                     0                    0
## 6043                     0                    0
## 6044                     0                    0
## 6045                     0                    0
## 6046                     0                    0
## 6047                     0                    0
## 6048                     0                    0
## 6049                     0                    0
## 6050                     0                    0
## 6051                     0                    0
## 6052                     0                    0
## 6053                     0                    0
## 6054                     0                    0
## 6055                     0                    0
## 6056                     0                    0
## 6057                     0                    0
## 6058                     0                    0
## 6059                     0                    0
## 6060                     0                    0
## 6061                     0                    0
## 6062                     0                    0
## 6063                     0                    0
## 6064                     0                    0
## 6065                     0                   NA
## 6066                     0                    0
## 6067                     0                    0
## 6068                     0                    0
## 6069                     0                    0
## 6070                     0                    0
## 6071                     0                    0
## 6072                     0                    0
## 6073                     0                    0
## 6074                     0                    0
## 6075                     0                    0
## 6076                     0                    0
## 6077                     0                    0
## 6078                     0                    0
## 6079                     0                    0
## 6080                     0                    0
## 6081                     0                    0
## 6082                     0                    0
## 6083                     0                    0
## 6084                     0                    0
## 6085                     0                    0
## 6086                     0                    0
## 6087                     0                    0
## 6088                     0                    0
## 6089                     0                   NA
## 6090                     0                   NA
## 6091                     0                    0
## 6092                     0                    0
## 6093                     0                    0
## 6094                     0                    0
## 6095                     0                    0
## 6096                     0                    0
## 6097                     0                   NA
## 6098                     0                    0
## 6099                     0                   NA
## 6100                     0                    0
## 6101                     0                    0
## 6102                     0                    0
## 6103                     0                    0
## 6104                     0                    0
## 6105                     0                    0
## 6106                     0                    0
## 6107                     0                    0
## 6108                     0                   NA
## 6109                     0                    0
## 6110                     0                    0
## 6111                     0                    0
## 6112                     0                    0
## 6113                     0                    0
## 6114                     0                    0
## 6115                     0                    0
## 6116                     0                    0
## 6117                     0                    0
## 6118                     0                    0
## 6119                     0                   NA
## 6120                     0                    0
## 6121                     0                    0
## 6122                     0                    0
## 6123                     0                   NA
## 6124                     0                    0
## 6125                     0                   NA
## 6126                     0                    0
## 6127                     0                    0
## 6128                     0                    0
## 6129                     0                    0
## 6130                     0                   NA
## 6131                    97                   NA
## 6132                     0                    0
## 6133                     0                   NA
## 6134                     0                    0
## 6135                     0                   NA
## 6136                     0                    0
## 6137                     0                   NA
## 6138                     0                    0
## 6139                     0                   NA
## 6140                     0                    0
## 6141                     0                   NA
## 6142                     0                    3
## 6143                     0                   NA
## 6144                     0                    0
## 6145                     0                    0
## 6146                     0                    0
## 6147                     0                   NA
## 6148                     0                    0
## 6149                     0                    0
## 6150                     0                    0
## 6151                     0                   NA
## 6152                     0                    0
## 6153                     0                   NA
## 6154                     0                    0
## 6155                     0                    0
## 6156                     0                    0
## 6157                     0                    0
## 6158                     0                   NA
## 6159                     0                    0
## 6160                     0                   NA
## 6161                     0                    0
## 6162                     0                   NA
## 6163                     0                    0
## 6164                     0                    0
## 6165                     0                   NA
## 6166                     0                    0
## 6167                     0                   NA
## 6168                     0                    0
## 6169                     0                   NA
## 6170                     0                    0
## 6171                     0                    0
## 6172                     0                   NA
## 6173                     0                    0
## 6174                     0                   NA
## 6175                     0                    0
## 6176                     0                    0
## 6177                     0                    0
## 6178                     0                   NA
## 6179                     0                    0
## 6180                     0                    0
## 6181                     0                   NA
## 6182                     0                    0
## 6183                     0                    0
## 6184                     0                   NA
## 6185                     0                    0
## 6186                     0                    0
## 6187                     0                   NA
## 6188                     0                    0
## 6189                     0                    0
## 6190                     0                    0
## 6191                     0                   NA
## 6192                     0                    0
## 6193                     0                   NA
## 6194                     0                    0
## 6195                     0                   NA
## 6196                     0                    0
## 6197                     0                   NA
## 6198                     0                    0
## 6199                     0                   NA
## 6200                     0                    0
## 6201                     0                    0
## 6202                     0                    0
## 6203                     0                   NA
## 6204                     0                    0
## 6205                     0                    0
## 6206                     0                   NA
## 6207                     0                    0
## 6208                     0                   NA
## 6209                     0                    0
## 6210                     0                   NA
## 6211                     0                    0
## 6212                     0                   NA
## 6213                     0                    0
## 6214                     0                   NA
## 6215                     0                    0
## 6216                     0                   NA
## 6217                     0                    0
## 6218                     0                   NA
## 6219                     0                    0
## 6220                     0                   NA
## 6221                     0                    0
## 6222                     0                    0
## 6223                     0                   NA
## 6224                     0                    0
## 6225                     0                   NA
## 6226                     0                    0
## 6227                     0                   NA
## 6228                     0                    0
## 6229                     0                    0
## 6230                     0                    0
## 6231                     0                    0
## 6232                     0                   NA
## 6233                     0                    0
## 6234                     0                   NA
## 6235                     0                    0
## 6236                     0                   NA
## 6237                     0                    0
## 6238                     0                    0
## 6239                     0                    0
## 6240                     0                   NA
## 6241                     0                    0
## 6242                     0                    0
## 6243                     0                   NA
## 6244                     0                    0
## 6245                     0                   NA
## 6246                     0                    0
## 6247                     0                    0
## 6248                     0                    0
## 6249                     0                   NA
## 6250                     0                    0
## 6251                     0                   NA
## 6252                     0                    0
## 6253                     0                   NA
## 6254                     0                    0
## 6255                     0                    0
## 6256                     0                    0
## 6257                     0                    0
## 6258                     0                   NA
## 6259                     0                    0
## 6260                     0                   NA
## 6261                     0                    0
## 6262                     0                   NA
## 6263                     0                    0
## 6264                     0                   NA
## 6265                     0                    0
## 6266                     0                    0
## 6267                     0                   NA
## 6268                     0                    0
## 6269                     0                    0
## 6270                     0                   NA
## 6271                     0                    0
## 6272                     0                   NA
## 6273                     0                    0
## 6274                     0                   NA
## 6275                     0                    0
## 6276                     0                    0
## 6277                     0                    0
## 6278                     0                    0
## 6279                     0                    0
## 6280                     0                    0
## 6281                     0                    0
## 6282                     0                    0
## 6283                     0                    0
## 6284                     0                    0
## 6285                     0                    0
## 6286                     0                    0
## 6287                     0                    0
## 6288                     0                    0
## 6289                     0                    0
## 6290                     0                   NA
## 6291                     0                    0
## 6292                     0                    0
## 6293                     0                    0
## 6294                     0                    0
## 6295                     0                    0
## 6296                     0                    0
## 6297                     0                    0
## 6298                     0                    0
## 6299                     0                    0
## 6300                     0                    0
## 6301                     0                    0
## 6302                     0                    0
## 6303                     0                    0
## 6304                     0                    0
## 6305                     0                    0
## 6306                     0                    0
## 6307                     0                    0
## 6308                     0                    0
## 6309                     0                    0
## 6310                     0                    0
## 6311                     0                    0
## 6312                     0                    0
## 6313                     0                    0
## 6314                     0                   NA
## 6315                     0                    0
## 6316                     0                    0
## 6317                     0                    0
## 6318                     0                    0
## 6319                     0                    0
## 6320                     0                    0
## 6321                     0                    0
## 6322                     0                    0
## 6323                     0                    0
## 6324                     0                    0
## 6325                     0                    0
## 6326                     0                    0
## 6327                     0                    0
## 6328                     0                    0
## 6329                     0                    0
## 6330                     0                    0
## 6331                     0                    0
## 6332                     0                    0
## 6333                     0                    0
## 6334                     0                    0
## 6335                     0                    0
## 6336                     0                    0
## 6337                     0                    0
## 6338                     0                   NA
## 6339                     0                   NA
## 6340                     0                    0
## 6341                     0                    0
## 6342                     0                    0
## 6343                     0                    0
## 6344                     0                    0
## 6345                     0                    0
## 6346                     0                   NA
## 6347                     0                    0
## 6348                     0                   NA
## 6349                     0                    0
## 6350                     0                    0
## 6351                     0                    0
## 6352                     0                    0
## 6353                     0                    0
## 6354                     0                    0
## 6355                     0                    0
## 6356                     0                    0
## 6357                     0                   NA
## 6358                     0                    0
## 6359                     0                    0
## 6360                     0                    0
## 6361                     0                    0
## 6362                     0                    0
## 6363                     0                    0
## 6364                     0                    0
## 6365                     0                    0
## 6366                     0                    0
## 6367                     0                    0
## 6368                     0                   NA
## 6369                     0                    0
## 6370                     0                    0
## 6371                     0                    0
## 6372                     0                   NA
## 6373                     0                    0
## 6374                     0                   NA
## 6375                     0                    0
## 6376                     0                    0
## 6377                     0                    0
## 6378                     0                    0
## 6379                     0                   NA
## 6380                   108                   NA
## 6381                     0                    0
## 6382                     0                   NA
## 6383                     0                    0
## 6384                     0                   NA
## 6385                     0                    0
## 6386                     0                   NA
## 6387                     0                    0
## 6388                     0                   NA
## 6389                     0                    0
## 6390                     0                   NA
## 6391                     0                    5
## 6392                     0                   NA
## 6393                     0                    0
## 6394                     0                    0
## 6395                     0                    0
## 6396                     0                   NA
## 6397                     0                    0
## 6398                     0                    0
## 6399                     0                    0
## 6400                     0                   NA
## 6401                     0                    2
## 6402                     0                   NA
## 6403                     0                    0
## 6404                     0                    0
## 6405                     0                    0
## 6406                     0                    0
## 6407                     0                   NA
## 6408                     0                    0
## 6409                     0                   NA
## 6410                     0                    0
## 6411                     0                   NA
## 6412                     0                    0
## 6413                     0                    0
## 6414                     0                   NA
## 6415                     0                    0
## 6416                     0                   NA
## 6417                     0                    0
## 6418                     0                    7
## 6419                     0                   NA
## 6420                     0                    0
## 6421                     0                   NA
## 6422                     0                    0
## 6423                     0                   NA
## 6424                     0                    0
## 6425                     0                    0
## 6426                     0                   NA
## 6427                     0                    0
## 6428                     0                    0
## 6429                     0                    0
## 6430                     0                    0
## 6431                     0                   NA
## 6432                     0                    0
## 6433                     0                    5
## 6434                     0                   NA
## 6435                     0                    0
## 6436                     0                   NA
## 6437                     0                    0
## 6438                     0                    0
## 6439                     0                    0
## 6440                     0                   NA
## 6441                     0                    0
## 6442                     0                   NA
## 6443                     0                    0
## 6444                     0                   NA
## 6445                     0                    0
## 6446                     0                   NA
## 6447                     0                    0
## 6448                     0                   NA
## 6449                     0                    0
## 6450                     0                    0
## 6451                     0                    0
## 6452                     0                   NA
## 6453                     0                    0
## 6454                     0                    0
## 6455                     0                   NA
## 6456                     0                    0
## 6457                     0                   NA
## 6458                     0                    0
## 6459                     0                   NA
## 6460                     0                    0
## 6461                     0                   NA
## 6462                     0                    0
## 6463                     0                   NA
## 6464                     0                    0
## 6465                     0                   NA
## 6466                     0                   NA
## 6467                     0                    0
## 6468                     0                    0
## 6469                     0                   NA
## 6470                     0                    0
## 6471                     0                    0
## 6472                     0                   NA
## 6473                     0                    0
## 6474                     0                   NA
## 6475                     0                    0
## 6476                     0                   NA
## 6477                     0                    0
## 6478                     0                    0
## 6479                     0                    0
## 6480                     0                    0
## 6481                     0                   NA
## 6482                     0                    0
## 6483                     0                   NA
## 6484                     0                    0
## 6485                     0                   NA
## 6486                     0                    0
## 6487                     0                    0
## 6488                     0                    0
## 6489                     0                   NA
## 6490                     0                    0
## 6491                     0                    0
## 6492                     0                   NA
## 6493                     0                    0
## 6494                     0                   NA
## 6495                     0                    0
## 6496                     0                    0
## 6497                     0                    0
## 6498                     0                   NA
## 6499                     0                    0
## 6500                     0                   NA
## 6501                     0                    0
## 6502                     0                   NA
## 6503                     0                    0
## 6504                     0                    0
## 6505                     0                    0
## 6506                     0                    0
## 6507                     0                   NA
## 6508                     0                    0
## 6509                     0                   NA
## 6510                     0                    0
## 6511                     0                   NA
## 6512                     0                    0
## 6513                     0                    0
## 6514                     0                   NA
## 6515                     0                    0
## 6516                     0                   NA
## 6517                     0                    0
## 6518                     0                    0
## 6519                     0                   NA
## 6520                     0                    0
## 6521                     0                   NA
## 6522                     0                    0
## 6523                     0                   NA
## 6524                     0                    0
## 6525                     0                    0
## 6526                     0                    0
## 6527                     0                    0
## 6528                     0                    0
## 6529                     0                    0
## 6530                     0                    0
## 6531                     0                    0
## 6532                     0                    0
## 6533                     0                    0
## 6534                     0                    0
## 6535                     0                    0
## 6536                     0                    0
## 6537                     0                    0
## 6538                     0                    0
## 6539                     0                   NA
## 6540                     0                    0
## 6541                     0                    0
## 6542                     0                    0
## 6543                     0                    0
## 6544                     0                    0
## 6545                     0                    0
## 6546                     0                    0
## 6547                     0                    0
## 6548                     0                    0
## 6549                     0                    0
## 6550                     0                    0
## 6551                     0                    0
## 6552                     0                    0
## 6553                     0                    0
## 6554                     0                    0
## 6555                     0                    0
## 6556                     0                    0
## 6557                     0                    0
## 6558                     0                    0
## 6559                     0                    0
## 6560                     0                    0
## 6561                     0                    0
## 6562                     0                    0
## 6563                     0                   NA
## 6564                     0                    0
## 6565                     0                    0
## 6566                     0                    0
## 6567                     0                    0
## 6568                     0                    0
## 6569                     0                    0
## 6570                     0                    0
## 6571                     0                    0
## 6572                     0                    0
## 6573                     0                    0
## 6574                     0                    0
## 6575                     0                    0
## 6576                     0                    0
## 6577                     0                    0
## 6578                     0                    0
## 6579                     0                    0
## 6580                     0                    0
## 6581                     0                    0
## 6582                     0                    0
## 6583                     0                    0
## 6584                     0                    0
## 6585                     0                    0
## 6586                     0                    0
## 6587                     0                   NA
## 6588                     0                   NA
## 6589                     0                    0
## 6590                     0                    0
## 6591                     0                    0
## 6592                     0                    0
## 6593                     0                    0
## 6594                     0                    0
## 6595                     0                   NA
## 6596                     0                    0
## 6597                     0                   NA
## 6598                     0                    0
## 6599                     0                    0
## 6600                     0                    0
## 6601                     0                    0
## 6602                     0                    0
## 6603                     0                    0
## 6604                     0                    0
## 6605                     0                    0
## 6606                     0                   NA
## 6607                     0                    0
## 6608                     0                    0
## 6609                     0                    0
## 6610                     0                    0
## 6611                     0                    0
## 6612                     0                    0
## 6613                     0                    0
## 6614                     0                    0
## 6615                     0                    0
## 6616                     0                    0
## 6617                     0                   NA
## 6618                     0                    0
## 6619                     0                    0
## 6620                     0                    0
## 6621                     0                   NA
## 6622                     0                    0
## 6623                     0                   NA
## 6624                     0                    0
## 6625                     0                    0
## 6626                     0                    0
## 6627                     0                    1
## 6628                     0                   NA
## 6629                    97                   NA
## 6630                     0                    0
## 6631                     0                   NA
## 6632                     0                    0
## 6633                     0                   NA
## 6634                     0                    0
## 6635                     0                   NA
## 6636                     0                    0
## 6637                     0                   NA
## 6638                     0                    0
## 6639                     0                   NA
## 6640                     0                   NA
## 6641                     0                    0
## 6642                     0                    0
## 6643                     0                    0
## 6644                     0                    0
## 6645                     0                   NA
## 6646                     0                    0
## 6647                     0                    0
## 6648                     0                    0
## 6649                     0                   NA
## 6650                     0                    0
## 6651                     0                   NA
## 6652                     0                    0
## 6653                     0                    0
## 6654                     0                    0
## 6655                     0                    1
## 6656                     0                   NA
## 6657                     0                    0
## 6658                     0                   NA
## 6659                     0                    0
## 6660                     0                   NA
## 6661                     0                    0
## 6662                     0                    1
## 6663                     0                   NA
## 6664                     0                    0
## 6665                     0                   NA
## 6666                     0                    0
## 6667                     0                   NA
## 6668                     0                    6
## 6669                     0                    4
## 6670                     0                   NA
## 6671                     0                    0
## 6672                     0                   NA
## 6673                     0                    0
## 6674                     0                    0
## 6675                     0                    0
## 6676                     0                   NA
## 6677                     0                    0
## 6678                     0                    0
## 6679                     0                    1
## 6680                     0                   NA
## 6681                     0                    0
## 6682                     0                    0
## 6683                     0                   NA
## 6684                     0                    0
## 6685                     0                   NA
## 6686                     0                    0
## 6687                     0                    0
## 6688                     0                    0
## 6689                     0                   NA
## 6690                     0                    0
## 6691                     0                   NA
## 6692                     0                    0
## 6693                     0                   NA
## 6694                     0                    0
## 6695                     0                   NA
## 6696                     0                    0
## 6697                     0                   NA
## 6698                     0                    0
## 6699                     0                    0
## 6700                     0                    0
## 6701                     0                   NA
## 6702                     0                    0
## 6703                     0                    0
## 6704                     0                   NA
## 6705                     0                    0
## 6706                     0                   NA
## 6707                     0                    0
## 6708                     0                   NA
## 6709                     0                    1
## 6710                     0                   NA
## 6711                     0                    2
## 6712                     0                   NA
## 6713                     0                    0
## 6714                     0                   NA
## 6715                     0                    0
## 6716                     0                   NA
## 6717                     0                    0
## 6718                     0                   NA
## 6719                     0                    0
## 6720                     0                    0
## 6721                     0                   NA
## 6722                     0                    0
## 6723                     0                   NA
## 6724                     0                    0
## 6725                     0                   NA
## 6726                     0                    0
## 6727                     0                    0
## 6728                     0                    0
## 6729                     0                    0
## 6730                     0                   NA
## 6731                     0                    0
## 6732                     0                   NA
## 6733                     0                    0
## 6734                     0                   NA
## 6735                     0                    0
## 6736                     0                    0
## 6737                     0                    0
## 6738                     0                   NA
## 6739                     0                    0
## 6740                     0                    0
## 6741                     0                   NA
## 6742                     0                    0
## 6743                     0                   NA
## 6744                     0                    0
## 6745                     0                    0
## 6746                     0                    0
## 6747                     0                   NA
## 6748                     0                    2
## 6749                     0                   NA
## 6750                     0                    0
## 6751                     0                   NA
## 6752                     0                    0
## 6753                     0                    0
## 6754                     0                    0
## 6755                     0                    0
## 6756                     0                   NA
## 6757                     0                    0
## 6758                     0                   NA
## 6759                     0                    0
## 6760                     0                   NA
## 6761                     0                    0
## 6762                     0                   NA
## 6763                     0                    1
## 6764                     0                    0
## 6765                     0                   NA
## 6766                     0                    0
## 6767                     0                    0
## 6768                     0                   NA
## 6769                     0                    0
## 6770                     0                   NA
## 6771                     0                    0
## 6772                     0                   NA
## 6773                     0                    0
## 6774                     0                    0
## 6775                     0                    0
## 6776                     0                    0
## 6777                     0                    0
## 6778                     0                    0
## 6779                     0                    0
## 6780                     0                    0
## 6781                     0                    0
## 6782                     0                    0
## 6783                     0                    0
## 6784                     0                    0
## 6785                     0                    0
## 6786                     0                    0
## 6787                     0                    0
## 6788                     0                   NA
## 6789                     0                    0
## 6790                     0                    0
## 6791                     0                    0
## 6792                     0                    0
## 6793                     0                    0
## 6794                     0                    0
## 6795                     0                    0
## 6796                     0                    0
## 6797                     0                    0
## 6798                     0                    0
## 6799                     0                    0
## 6800                     0                    0
## 6801                     0                    0
## 6802                     0                    0
## 6803                     0                    0
## 6804                     0                    0
## 6805                     0                    0
## 6806                     0                    0
## 6807                     0                    0
## 6808                     0                    0
## 6809                     0                    0
## 6810                     0                    0
## 6811                     0                    0
## 6812                     0                   NA
## 6813                     0                    0
## 6814                     0                    0
## 6815                     0                    0
## 6816                     0                    0
## 6817                     0                    0
## 6818                     0                    0
## 6819                     0                    0
## 6820                     0                    0
## 6821                     0                    0
## 6822                     0                    0
## 6823                     0                    0
## 6824                     0                    0
## 6825                     0                    0
## 6826                     0                    0
## 6827                     0                    0
## 6828                     0                    0
## 6829                     0                    0
## 6830                     0                    0
## 6831                     0                    0
## 6832                     0                    0
## 6833                     0                    0
## 6834                     0                    0
## 6835                     0                    0
## 6836                     0                   NA
## 6837                     0                   NA
## 6838                     0                    0
## 6839                     0                    0
## 6840                     0                    0
## 6841                     0                    0
## 6842                     0                    0
## 6843                     0                    0
## 6844                     0                   NA
## 6845                     0                    0
## 6846                     0                   NA
## 6847                     0                    0
## 6848                     0                    0
## 6849                     0                    0
## 6850                     0                    0
## 6851                     0                    0
## 6852                     0                    0
## 6853                     0                    0
## 6854                     0                    0
## 6855                     0                   NA
## 6856                     0                    0
## 6857                     0                    0
## 6858                     0                    0
## 6859                     0                    0
## 6860                     0                    0
## 6861                     0                    0
## 6862                     0                    0
## 6863                     0                    0
## 6864                     0                    0
## 6865                     0                    0
## 6866                     0                   NA
## 6867                     0                    0
## 6868                     0                    0
## 6869                     0                    0
## 6870                     0                   NA
## 6871                     0                    0
## 6872                     0                   NA
## 6873                     0                    0
## 6874                     0                    0
## 6875                     0                    0
## 6876                     0                    0
## 6877                     0                   NA
## 6878                   254                   NA
## 6879                     0                    0
## 6880                     0                   NA
## 6881                     0                    0
## 6882                     0                   NA
## 6883                     0                    0
## 6884                     0                   NA
## 6885                     0                    0
## 6886                     0                   NA
## 6887                     0                    0
## 6888                     0                   NA
## 6889                     1                    0
## 6890                     1                   NA
## 6891                     0                    0
## 6892                     0                    0
## 6893                     0                    0
## 6894                     0                   NA
## 6895                     0                    0
## 6896                     0                    0
## 6897                     0                    0
## 6898                     0                   NA
## 6899                     0                   NA
## 6900                     0                    0
## 6901                     0                    0
## 6902                     0                    0
## 6903                     0                    0
## 6904                     0                    0
## 6905                     0                   NA
## 6906                     0                    0
## 6907                     0                   NA
## 6908                     0                    0
## 6909                     0                   NA
## 6910                     0                    0
## 6911                     0                    0
## 6912                     0                   NA
## 6913                     0                    0
## 6914                     0                   NA
## 6915                     0                    0
## 6916                     0                   NA
## 6917                     0                    0
## 6918                     0                    0
## 6919                     0                   NA
## 6920                     0                    0
## 6921                     0                   NA
## 6922                     0                    0
## 6923                     0                    0
## 6924                     0                    2
## 6925                     0                   NA
## 6926                     0                    0
## 6927                     0                    0
## 6928                     0                    0
## 6929                     0                   NA
## 6930                     0                    0
## 6931                     0                    1
## 6932                     0                   NA
## 6933                     0                    0
## 6934                     0                   NA
## 6935                     0                    0
## 6936                     0                    0
## 6937                     0                    0
## 6938                     0                   NA
## 6939                     0                    0
## 6940                     0                   NA
## 6941                     0                    0
## 6942                     0                   NA
## 6943                     0                    0
## 6944                     0                   NA
## 6945                     0                    0
## 6946                     0                   NA
## 6947                     0                    0
## 6948                     0                    0
## 6949                     0                    0
## 6950                     0                   NA
## 6951                     0                    0
## 6952                     0                    0
## 6953                     0                   NA
## 6954                     0                    0
## 6955                     0                   NA
## 6956                     0                    0
## 6957                     0                   NA
## 6958                     0                    0
## 6959                     0                   NA
## 6960                     0                    0
## 6961                     0                   NA
## 6962                     0                    0
## 6963                     0                   NA
## 6964                     0                    1
## 6965                     0                   NA
## 6966                     0                    0
## 6967                     0                   NA
## 6968                     0                    0
## 6969                     0                    0
## 6970                     0                   NA
## 6971                     0                    0
## 6972                     0                   NA
## 6973                     0                    0
## 6974                     0                   NA
## 6975                     0                    0
## 6976                     0                    0
## 6977                     0                    0
## 6978                     0                    0
## 6979                     0                   NA
## 6980                     0                    0
## 6981                     0                   NA
## 6982                     0                    0
## 6983                     0                   NA
## 6984                     0                    0
## 6985                     0                    0
## 6986                     0                    0
## 6987                     0                   NA
## 6988                     0                    0
## 6989                     0                    0
## 6990                     0                   NA
## 6991                     0                    0
## 6992                     0                   NA
## 6993                     0                    0
## 6994                     0                    0
## 6995                     0                    0
## 6996                     0                   NA
## 6997                     0                    0
## 6998                     0                   NA
## 6999                     0                    0
## 7000                     0                   NA
## 7001                     0                    0
## 7002                     0                    0
## 7003                     0                    0
## 7004                     0                    0
## 7005                     0                   NA
## 7006                     0                    0
## 7007                     0                   NA
## 7008                     0                    0
## 7009                     0                   NA
## 7010                     0                    0
## 7011                     0                    0
## 7012                     0                   NA
## 7013                     0                    0
## 7014                     0                   NA
## 7015                     0                    0
## 7016                     0                    0
## 7017                     0                   NA
## 7018                     0                    0
## 7019                     0                   NA
## 7020                     0                    0
## 7021                     0                   NA
## 7022                     0                    0
## 7023                     0                    0
## 7024                     0                    0
## 7025                     0                    0
## 7026                     0                    0
## 7027                     0                    0
## 7028                     0                    0
## 7029                     0                    0
## 7030                     0                    0
## 7031                     0                    0
## 7032                     0                    0
## 7033                     0                    0
## 7034                     0                    0
## 7035                     0                    0
## 7036                     0                   NA
## 7037                     0                    0
## 7038                     0                    0
## 7039                     0                    0
## 7040                     0                    0
## 7041                     0                    0
## 7042                     0                    0
## 7043                     0                    0
## 7044                     0                    0
## 7045                     0                    0
## 7046                     0                    0
## 7047                     0                    0
## 7048                     0                    0
## 7049                     0                    0
## 7050                     0                    0
## 7051                     0                    0
## 7052                     0                    0
## 7053                     0                    0
## 7054                     0                    0
## 7055                     0                    0
## 7056                     0                    0
## 7057                     0                    0
## 7058                     0                    0
## 7059                     0                    0
## 7060                     0                    0
## 7061                     0                   NA
## 7062                     0                    0
## 7063                     0                    0
## 7064                     0                    0
## 7065                     0                    0
## 7066                     0                    0
## 7067                     0                    0
## 7068                     0                    0
## 7069                     0                    0
## 7070                     0                    0
## 7071                     0                    0
## 7072                     0                    0
## 7073                     0                    0
## 7074                     0                    0
## 7075                     0                    0
## 7076                     0                    0
## 7077                     0                    0
## 7078                     0                    0
## 7079                     0                    0
## 7080                     0                    0
## 7081                     0                    0
## 7082                     0                    0
## 7083                     0                    0
## 7084                     0                    0
## 7085                     0                   NA
## 7086                     0                   NA
## 7087                     0                    0
## 7088                     0                    0
## 7089                     0                    0
## 7090                     0                    0
## 7091                     0                    0
## 7092                     0                    0
## 7093                     0                   NA
## 7094                     0                    0
## 7095                     0                   NA
## 7096                     0                    0
## 7097                     0                    0
## 7098                     0                    0
## 7099                     0                    0
## 7100                     0                    0
## 7101                     0                    0
## 7102                     0                    0
## 7103                     0                    0
## 7104                     0                   NA
## 7105                     0                    0
## 7106                     0                    0
## 7107                     0                    0
## 7108                     0                    0
## 7109                     0                    0
## 7110                     0                    0
## 7111                     0                    0
## 7112                     0                    0
## 7113                     0                    0
## 7114                     0                    0
## 7115                     0                   NA
## 7116                     0                    0
## 7117                     0                    0
## 7118                     0                    0
## 7119                     0                   NA
## 7120                     0                    0
## 7121                     0                   NA
## 7122                     0                    0
## 7123                     0                    0
## 7124                     0                    0
## 7125                     0                    0
## 7126                     0                   NA
## 7127                    13                   NA
## 7128                     0                    0
## 7129                     0                   NA
## 7130                     0                    0
## 7131                     0                   NA
## 7132                     0                    0
## 7133                     0                   NA
## 7134                     0                    0
## 7135                     0                   NA
## 7136                     0                    0
## 7137                     0                   NA
## 7138                     0                    0
## 7139                     0                   NA
## 7140                     0                    0
## 7141                     0                    0
## 7142                     0                    0
## 7143                     0                   NA
## 7144                     0                    0
## 7145                     0                    0
## 7146                     0                    0
## 7147                     0                   NA
## 7148                     0                    0
## 7149                     0                   NA
## 7150                     0                    0
## 7151                     0                    0
## 7152                     0                    0
## 7153                     0                    0
## 7154                     0                   NA
## 7155                     0                    0
## 7156                     0                   NA
## 7157                     0                    0
## 7158                     0                   NA
## 7159                     0                    0
## 7160                     0                    0
## 7161                     0                   NA
## 7162                     0                    0
## 7163                     0                   NA
## 7164                     0                    0
## 7165                     0                   NA
## 7166                     0                    2
## 7167                     0                    0
## 7168                     0                   NA
## 7169                     0                    0
## 7170                     0                   NA
## 7171                     0                    0
## 7172                     0                    0
## 7173                     0                    0
## 7174                     0                   NA
## 7175                     0                    0
## 7176                     0                    0
## 7177                     0                    0
## 7178                     0                   NA
## 7179                     0                    0
## 7180                     0                    0
## 7181                     0                   NA
## 7182                     0                    0
## 7183                     0                   NA
## 7184                     0                    0
## 7185                     0                    0
## 7186                     0                    0
## 7187                     0                   NA
## 7188                     0                    0
## 7189                     0                   NA
## 7190                     0                    0
## 7191                     0                   NA
## 7192                     0                    0
## 7193                     0                   NA
## 7194                     0                    0
## 7195                     0                   NA
## 7196                     0                    0
## 7197                     0                    0
## 7198                     0                    0
## 7199                     0                   NA
## 7200                     0                    0
## 7201                     0                    0
## 7202                     0                   NA
## 7203                     0                    0
## 7204                     0                   NA
## 7205                     0                    0
## 7206                     0                   NA
## 7207                     0                    0
## 7208                     0                   NA
## 7209                     0                    0
## 7210                     0                   NA
## 7211                     0                    0
## 7212                     0                   NA
## 7213                     0                    0
## 7214                     0                   NA
## 7215                     0                    0
## 7216                     0                   NA
## 7217                     0                    0
## 7218                     0                    0
## 7219                     0                   NA
## 7220                     0                    0
## 7221                     0                   NA
## 7222                     0                    0
## 7223                     0                   NA
## 7224                     0                    0
## 7225                     0                    0
## 7226                     0                    0
## 7227                     0                    0
## 7228                     0                   NA
## 7229                     0                    0
## 7230                     0                   NA
## 7231                     0                    0
## 7232                     0                   NA
## 7233                     0                    0
## 7234                     0                    0
## 7235                     0                    0
## 7236                     0                   NA
## 7237                     0                    0
## 7238                     0                    0
## 7239                     0                   NA
## 7240                     0                    0
## 7241                     0                   NA
## 7242                     0                    0
## 7243                     0                    0
## 7244                     0                    0
## 7245                     0                   NA
## 7246                     0                    0
## 7247                     0                   NA
## 7248                     0                    0
## 7249                     0                   NA
## 7250                     0                    0
## 7251                     0                    0
## 7252                     0                    0
## 7253                     0                    0
## 7254                     0                   NA
## 7255                     0                    0
## 7256                     0                   NA
## 7257                     0                    0
## 7258                     0                   NA
## 7259                     0                    0
## 7260                     0                    0
## 7261                     0                   NA
## 7262                     0                    0
## 7263                     0                   NA
## 7264                     0                    0
## 7265                     0                    0
## 7266                     0                   NA
## 7267                     0                    0
## 7268                     0                   NA
## 7269                     0                    0
## 7270                     0                   NA
## 7271                     0                    0
## 7272                     0                    0
## 7273                     0                    0
## 7274                     0                    0
## 7275                     0                    0
## 7276                     0                    0
## 7277                     0                    0
## 7278                     0                    0
## 7279                     0                    0
## 7280                     0                    0
## 7281                     0                    0
## 7282                     0                    0
## 7283                     0                    0
## 7284                     0                    0
## 7285                     0                    0
## 7286                     0                   NA
## 7287                     0                    0
## 7288                     0                    0
## 7289                     0                    0
## 7290                     0                    0
## 7291                     0                    0
## 7292                     0                    0
## 7293                     0                    0
## 7294                     0                    0
## 7295                     0                    0
## 7296                     0                    0
## 7297                     0                    0
## 7298                     0                    0
## 7299                     0                    0
## 7300                     0                    0
## 7301                     0                    0
## 7302                     0                    0
## 7303                     0                    0
## 7304                     0                    0
## 7305                     0                    0
## 7306                     0                    0
## 7307                     0                    0
## 7308                     0                    0
## 7309                     0                    0
## 7310                     0                   NA
## 7311                     0                    0
## 7312                     0                    0
## 7313                     0                    0
## 7314                     0                    0
## 7315                     0                    0
## 7316                     0                    0
## 7317                     0                    0
## 7318                     0                    0
## 7319                     0                    0
## 7320                     0                    0
## 7321                     0                    0
## 7322                     0                    0
## 7323                     0                    0
## 7324                     0                    0
## 7325                     0                    0
## 7326                     0                    0
## 7327                     0                    0
## 7328                     0                    0
## 7329                     0                    0
## 7330                     0                    0
## 7331                     0                    0
## 7332                     0                    0
## 7333                     0                    0
## 7334                     0                   NA
## 7335                     0                   NA
## 7336                     0                    0
## 7337                     0                    0
## 7338                     0                    0
## 7339                     0                    0
## 7340                     0                    0
## 7341                     0                    0
## 7342                     0                   NA
## 7343                     0                    0
## 7344                     0                   NA
## 7345                     0                    0
## 7346                     0                    0
## 7347                     0                    0
## 7348                     0                    0
## 7349                     0                    0
## 7350                     0                    0
## 7351                     0                    0
## 7352                     0                    0
## 7353                     0                   NA
## 7354                     0                    0
## 7355                     0                    0
## 7356                     0                    0
## 7357                     0                    0
## 7358                     0                    0
## 7359                     0                    0
## 7360                     0                    0
## 7361                     0                    0
## 7362                     0                    0
## 7363                     0                    0
## 7364                     0                   NA
## 7365                     0                    0
## 7366                     0                    0
## 7367                     0                    0
## 7368                     0                   NA
## 7369                     0                    0
## 7370                     0                   NA
## 7371                     0                    0
## 7372                     0                    0
## 7373                     0                    0
## 7374                     0                    0
## 7375                     0                   NA
## 7376                   143                   NA
## 7377                     0                    0
## 7378                     0                   NA
## 7379                     0                    0
## 7380                     0                   NA
## 7381                     0                    0
## 7382                     0                   NA
## 7383                     0                    0
## 7384                     0                   NA
## 7385                     0                    0
## 7386                     0                   NA
## 7387                     0                   NA
## 7388                     0                    3
## 7389                     0                    0
## 7390                     0                    0
## 7391                     0                    0
## 7392                     0                   NA
## 7393                     0                    0
## 7394                     0                    0
## 7395                     0                    0
## 7396                     0                   NA
## 7397                     0                   NA
## 7398                     0                    4
## 7399                     0                    0
## 7400                     0                    0
## 7401                     0                    0
## 7402                     0                    0
## 7403                     0                   NA
## 7404                     0                    0
## 7405                     0                   NA
## 7406                     0                    0
## 7407                     0                   NA
## 7408                     0                    0
## 7409                     0                    0
## 7410                     0                   NA
## 7411                     0                    0
## 7412                     0                   NA
## 7413                     0                    0
## 7414                     0                    1
## 7415                     0                   NA
## 7416                     0                    2
## 7417                     0                   NA
## 7418                     0                    0
## 7419                     0                   NA
## 7420                     0                    0
## 7421                     0                    0
## 7422                     0                    0
## 7423                     0                   NA
## 7424                     0                    0
## 7425                     0                    0
## 7426                     0                    2
## 7427                     0                   NA
## 7428                     0                    0
## 7429                     0                    0
## 7430                     0                   NA
## 7431                     0                    0
## 7432                     0                   NA
## 7433                     0                    0
## 7434                     0                    0
## 7435                     0                    0
## 7436                     0                   NA
## 7437                     0                    0
## 7438                     0                   NA
## 7439                     0                    0
## 7440                     0                   NA
## 7441                     0                    0
## 7442                     0                   NA
## 7443                     0                    0
## 7444                     0                   NA
## 7445                     0                    0
## 7446                     0                    0
## 7447                     0                    0
## 7448                     0                   NA
## 7449                     0                    0
## 7450                     0                    0
## 7451                     0                   NA
## 7452                     0                    0
## 7453                     0                   NA
## 7454                     0                    0
## 7455                     0                   NA
## 7456                     0                    0
## 7457                     0                   NA
## 7458                     1                   NA
## 7459                     1                    2
## 7460                     0                    0
## 7461                     0                   NA
## 7462                     0                    0
## 7463                     0                   NA
## 7464                     0                    0
## 7465                     0                   NA
## 7466                     0                    0
## 7467                     0                    0
## 7468                     0                   NA
## 7469                     0                    0
## 7470                     0                   NA
## 7471                     0                    0
## 7472                     0                   NA
## 7473                     0                    0
## 7474                     0                    0
## 7475                     0                    0
## 7476                     0                    0
## 7477                     0                   NA
## 7478                     0                    0
## 7479                     0                   NA
## 7480                     0                    0
## 7481                     0                   NA
## 7482                     0                    0
## 7483                     0                    0
## 7484                     0                    0
## 7485                     0                   NA
## 7486                     0                    0
## 7487                     0                    0
## 7488                     0                   NA
## 7489                     0                    0
## 7490                     0                   NA
## 7491                     0                    0
## 7492                     0                    0
## 7493                     0                    0
## 7494                     0                   NA
## 7495                     0                    0
## 7496                     0                   NA
## 7497                     0                    0
## 7498                     0                   NA
## 7499                     0                    0
## 7500                     0                    0
## 7501                     0                    0
## 7502                     0                    2
## 7503                     0                   NA
## 7504                     0                    0
## 7505                     0                   NA
## 7506                     0                    0
## 7507                     0                   NA
## 7508                     0                    0
## 7509                     0                    0
## 7510                     0                   NA
## 7511                     0                    0
## 7512                     0                   NA
## 7513                     0                    0
## 7514                     0                    0
## 7515                     0                   NA
## 7516                     0                    0
## 7517                     0                   NA
## 7518                     0                    0
## 7519                     0                   NA
## 7520                     0                    0
## 7521                     0                    0
## 7522                     0                    0
## 7523                     0                    0
## 7524                     0                    0
## 7525                     0                    0
## 7526                     0                    0
## 7527                     0                    0
## 7528                     0                    0
## 7529                     0                    0
## 7530                     0                    0
## 7531                     0                    0
## 7532                     0                    0
## 7533                     0                    0
## 7534                     0                    0
## 7535                     0                   NA
## 7536                     0                    0
## 7537                     0                    0
## 7538                     0                    0
## 7539                     0                    0
## 7540                     0                    0
## 7541                     0                    0
## 7542                     0                    0
## 7543                     0                    0
## 7544                     0                    0
## 7545                     0                    0
## 7546                     0                    0
## 7547                     0                    0
## 7548                     0                    0
## 7549                     0                    0
## 7550                     0                    0
## 7551                     0                    0
## 7552                     0                    0
## 7553                     0                    0
## 7554                     0                    0
## 7555                     0                    0
## 7556                     0                    0
## 7557                     0                    0
## 7558                     0                    0
## 7559                     0                   NA
## 7560                     0                    0
## 7561                     0                    0
## 7562                     0                    0
## 7563                     0                    0
## 7564                     0                    0
## 7565                     0                    0
## 7566                     0                    0
## 7567                     0                    0
## 7568                     0                    0
## 7569                     0                    0
## 7570                     0                    0
## 7571                     0                    0
## 7572                     0                    0
## 7573                     0                    0
## 7574                     0                    0
## 7575                     0                    0
## 7576                     0                    0
## 7577                     0                    0
## 7578                     0                    0
## 7579                     0                    0
## 7580                     0                    0
## 7581                     0                    0
## 7582                     0                    0
## 7583                     0                   NA
## 7584                     0                   NA
## 7585                     0                    0
## 7586                     0                    0
## 7587                     0                    0
## 7588                     0                    0
## 7589                     0                    0
## 7590                     0                    0
## 7591                     0                   NA
## 7592                     0                    0
## 7593                     0                   NA
## 7594                     0                    0
## 7595                     0                    0
## 7596                     0                    0
## 7597                     0                    0
## 7598                     0                    0
## 7599                     0                    0
## 7600                     0                    0
## 7601                     0                    0
## 7602                     0                   NA
## 7603                     0                    0
## 7604                     0                    0
## 7605                     0                    0
## 7606                     0                    0
## 7607                     0                    0
## 7608                     0                    0
## 7609                     0                    0
## 7610                     0                    0
## 7611                     0                    0
## 7612                     0                    0
## 7613                     0                   NA
## 7614                     0                    0
## 7615                     0                    0
## 7616                     0                    0
## 7617                     0                   NA
## 7618                     0                    0
## 7619                     0                   NA
## 7620                     0                    0
## 7621                     0                    0
## 7622                     0                    0
## 7623                     0                    0
## 7624                     0                   NA
## 7625                   142                   NA
## 7626                     0                    3
## 7627                     0                   NA
## 7628                     0                    0
## 7629                     0                   NA
## 7630                     0                    0
## 7631                     0                   NA
## 7632                     0                    0
## 7633                     0                   NA
## 7634                     0                    0
## 7635                     0                   NA
## 7636                     0                   NA
## 7637                     0                    0
## 7638                     0                    0
## 7639                     0                    0
## 7640                     0                    0
## 7641                     0                   NA
## 7642                     0                    0
## 7643                     0                    0
## 7644                     0                    0
## 7645                     0                   NA
## 7646                     0                    0
## 7647                     0                   NA
## 7648                     0                    0
## 7649                     0                    0
## 7650                     0                    0
## 7651                     0                    0
## 7652                     0                   NA
## 7653                     0                    0
## 7654                     0                   NA
## 7655                     0                    0
## 7656                     0                   NA
## 7657                     0                    0
## 7658                     0                    0
## 7659                     0                   NA
## 7660                     0                    0
## 7661                     0                   NA
## 7662                     0                    0
## 7663                     0                    0
## 7664                     0                   NA
## 7665                     0                    0
## 7666                     0                   NA
## 7667                     0                    0
## 7668                     0                   NA
## 7669                     0                    0
## 7670                     0                    0
## 7671                     0                   NA
## 7672                     0                    2
## 7673                     0                    0
## 7674                     0                    0
## 7675                     0                   NA
## 7676                     0                    1
## 7677                     0                    0
## 7678                     0                    0
## 7679                     0                   NA
## 7680                     0                    0
## 7681                     0                   NA
## 7682                     0                    0
## 7683                     0                    0
## 7684                     0                    0
## 7685                     0                   NA
## 7686                     0                    0
## 7687                     0                   NA
## 7688                     0                    0
## 7689                     0                   NA
## 7690                     0                    0
## 7691                     0                   NA
## 7692                     0                    0
## 7693                     0                   NA
## 7694                     0                    0
## 7695                     0                    0
## 7696                     0                    0
## 7697                     0                   NA
## 7698                     0                    0
## 7699                     0                    0
## 7700                     0                   NA
## 7701                     0                    0
## 7702                     0                   NA
## 7703                     0                    0
## 7704                     0                   NA
## 7705                     0                    0
## 7706                     0                   NA
## 7707                     0                    0
## 7708                     0                   NA
## 7709                     0                    0
## 7710                     0                   NA
## 7711                     0                    0
## 7712                     0                   NA
## 7713                     0                    0
## 7714                     0                   NA
## 7715                     0                    0
## 7716                     0                    0
## 7717                     0                   NA
## 7718                     0                    0
## 7719                     0                   NA
## 7720                     0                    0
## 7721                     0                   NA
## 7722                     0                    0
## 7723                     0                    0
## 7724                     0                    0
## 7725                     0                    0
## 7726                     0                   NA
## 7727                     0                    0
## 7728                     0                   NA
## 7729                     0                    0
## 7730                     0                   NA
## 7731                     0                    0
## 7732                     0                    0
## 7733                     0                    0
## 7734                     0                   NA
## 7735                     0                    0
## 7736                     0                    0
## 7737                     0                   NA
## 7738                     0                    0
## 7739                     0                   NA
## 7740                     0                    0
## 7741                     0                    0
## 7742                     0                    0
## 7743                     0                   NA
## 7744                     0                    0
## 7745                     0                   NA
## 7746                     0                    0
## 7747                     0                   NA
## 7748                     0                    0
## 7749                     0                    0
## 7750                     0                    0
## 7751                     0                    0
## 7752                     0                   NA
## 7753                     0                    0
## 7754                     0                   NA
## 7755                     0                    0
## 7756                     0                   NA
## 7757                     0                    0
## 7758                     0                    7
## 7759                     0                   NA
## 7760                     0                    0
## 7761                     0                   NA
## 7762                     0                    0
## 7763                     0                    0
## 7764                     0                   NA
## 7765                     0                    0
## 7766                     0                   NA
## 7767                     0                    0
## 7768                     0                   NA
## 7769                     0                    0
## 7770                     0                    0
## 7771                     0                    0
## 7772                     0                    0
## 7773                     0                    0
## 7774                     0                    0
## 7775                     0                    0
## 7776                     0                    0
## 7777                     0                    0
## 7778                     0                    0
## 7779                     0                    0
## 7780                     0                    0
## 7781                     0                    0
## 7782                     0                    0
## 7783                     0                    0
## 7784                     0                   NA
## 7785                     0                    0
## 7786                     0                    0
## 7787                     0                    0
## 7788                     0                    0
## 7789                     0                    0
## 7790                     0                    0
## 7791                     0                    0
## 7792                     0                    0
## 7793                     0                    0
## 7794                     0                    0
## 7795                     0                    0
## 7796                     0                    0
## 7797                     0                    0
## 7798                     0                    0
## 7799                     0                    0
## 7800                     0                    0
## 7801                     0                    0
## 7802                     0                    0
## 7803                     0                    0
## 7804                     0                    0
## 7805                     0                    0
## 7806                     0                    0
## 7807                     0                    0
## 7808                     0                   NA
## 7809                     0                    0
## 7810                     0                    0
## 7811                     0                    0
## 7812                     0                    0
## 7813                     0                    0
## 7814                     0                    0
## 7815                     0                    0
## 7816                     0                    0
## 7817                     0                    0
## 7818                     0                    0
## 7819                     0                    0
## 7820                     0                    0
## 7821                     0                    0
## 7822                     0                    0
## 7823                     0                    0
## 7824                     0                    0
## 7825                     0                    0
## 7826                     0                    0
## 7827                     0                    0
## 7828                     0                    0
## 7829                     0                    0
## 7830                     0                    0
## 7831                     0                    0
## 7832                     0                   NA
## 7833                     0                   NA
## 7834                     0                    0
## 7835                     0                    0
## 7836                     0                    0
## 7837                     0                    0
## 7838                     0                    0
## 7839                     0                    0
## 7840                     0                   NA
## 7841                     0                    0
## 7842                     0                   NA
## 7843                     0                    0
## 7844                     0                    0
## 7845                     0                    0
## 7846                     0                    0
## 7847                     0                    0
## 7848                     0                    0
## 7849                     0                    0
## 7850                     0                    0
## 7851                     0                   NA
## 7852                     0                    0
## 7853                     0                    0
## 7854                     0                    0
## 7855                     0                    0
## 7856                     0                    0
## 7857                     0                    0
## 7858                     0                    0
## 7859                     0                    0
## 7860                     0                    0
## 7861                     0                    0
## 7862                     0                   NA
## 7863                     0                    0
## 7864                     0                    0
## 7865                     0                    0
## 7866                     0                   NA
## 7867                     0                    0
## 7868                     0                   NA
## 7869                     0                    0
## 7870                     0                    0
## 7871                     0                    0
## 7872                     0                    0
## 7873                     0                   NA
## 7874                   105                   NA
## 7875                     0                    0
## 7876                     0                   NA
## 7877                     0                    0
## 7878                     0                   NA
## 7879                     0                    0
## 7880                     0                   NA
## 7881                     0                    0
## 7882                     0                   NA
## 7883                     0                    0
## 7884                     0                   NA
## 7885                     0                    0
## 7886                     0                   NA
## 7887                     0                    0
## 7888                     0                    0
## 7889                     0                    0
## 7890                     0                   NA
## 7891                     0                    0
## 7892                     0                    0
## 7893                     0                    0
## 7894                     0                   NA
## 7895                     0                    0
## 7896                     0                   NA
## 7897                     0                    0
## 7898                     0                    0
## 7899                     0                    0
## 7900                     0                    0
## 7901                     0                   NA
## 7902                     0                    0
## 7903                     0                   NA
## 7904                     0                    0
## 7905                     0                   NA
## 7906                     0                    0
## 7907                     0                    0
## 7908                     0                   NA
## 7909                     0                    0
## 7910                     0                   NA
## 7911                     0                    0
## 7912                     0                    6
## 7913                     0                   NA
## 7914                     0                    1
## 7915                     0                   NA
## 7916                     0                    0
## 7917                     0                   NA
## 7918                     0                    0
## 7919                     0                    0
## 7920                     0                   NA
## 7921                     0                    1
## 7922                     0                    0
## 7923                     0                    0
## 7924                     0                    0
## 7925                     0                   NA
## 7926                     0                    0
## 7927                     0                    0
## 7928                     0                   NA
## 7929                     0                    0
## 7930                     1                   NA
## 7931                     0                    0
## 7932                     0                    0
## 7933                     0                    0
## 7934                     0                   NA
## 7935                     0                    0
## 7936                     0                   NA
## 7937                     0                    0
## 7938                     0                   NA
## 7939                     0                    0
## 7940                     0                   NA
## 7941                     0                    1
## 7942                     0                   NA
## 7943                     0                    0
## 7944                     0                    0
## 7945                     0                    0
## 7946                     0                   NA
## 7947                     0                    0
## 7948                     0                    0
## 7949                     0                   NA
## 7950                     0                    0
## 7951                     0                   NA
## 7952                     0                    0
## 7953                     0                   NA
## 7954                     0                    0
## 7955                     0                   NA
## 7956                     0                    0
## 7957                     0                   NA
## 7958                     0                    0
## 7959                     0                   NA
## 7960                     0                    0
## 7961                     0                   NA
## 7962                     0                    0
## 7963                     0                   NA
## 7964                     0                    0
## 7965                     0                    0
## 7966                     0                   NA
## 7967                     0                    0
## 7968                     0                   NA
## 7969                     0                    0
## 7970                     0                   NA
## 7971                     0                    0
## 7972                     0                    0
## 7973                     0                    0
## 7974                     0                    0
## 7975                     0                   NA
## 7976                     0                    0
## 7977                     0                   NA
## 7978                     0                    0
## 7979                     0                   NA
## 7980                     0                    0
## 7981                     0                    0
## 7982                     0                    0
## 7983                     0                   NA
## 7984                     0                    0
## 7985                     0                    0
## 7986                     0                   NA
## 7987                     0                    0
## 7988                     0                   NA
## 7989                     0                    0
## 7990                     0                    0
## 7991                     0                    0
## 7992                     0                   NA
## 7993                     0                    0
## 7994                     0                   NA
## 7995                     0                    0
## 7996                     0                   NA
## 7997                     0                    0
## 7998                     0                    0
## 7999                     0                    0
## 8000                     0                    0
## 8001                     0                   NA
## 8002                     0                    0
## 8003                     0                   NA
## 8004                     0                    0
## 8005                     0                   NA
## 8006                     0                    0
## 8007                     0                    0
## 8008                     0                   NA
## 8009                     0                    0
## 8010                     0                   NA
## 8011                     0                    0
## 8012                     0                    0
## 8013                     0                   NA
## 8014                     0                    0
## 8015                     0                   NA
## 8016                     0                    0
## 8017                     0                   NA
## 8018                     0                    0
## 8019                     0                    0
## 8020                     0                    0
## 8021                     0                    0
## 8022                     0                    0
## 8023                     0                    0
## 8024                     0                    0
## 8025                     0                    0
## 8026                     0                    0
## 8027                     0                    0
## 8028                     0                    0
## 8029                     0                    0
## 8030                     0                    0
## 8031                     0                    0
## 8032                     0                    0
## 8033                     0                   NA
## 8034                     0                    0
## 8035                     0                    0
## 8036                     0                    0
## 8037                     0                    0
## 8038                     0                    0
## 8039                     0                    0
## 8040                     0                    0
## 8041                     0                    0
## 8042                     0                    0
## 8043                     0                    0
## 8044                     0                    0
## 8045                     0                    0
## 8046                     0                    0
## 8047                     0                    0
## 8048                     0                    0
## 8049                     0                    0
## 8050                     0                    0
## 8051                     0                    0
## 8052                     0                    0
## 8053                     0                    0
## 8054                     0                    0
## 8055                     0                    0
## 8056                     0                    0
## 8057                     0                   NA
## 8058                     0                    0
## 8059                     0                    0
## 8060                     0                    0
## 8061                     0                    0
## 8062                     0                    0
## 8063                     0                    0
## 8064                     0                    0
## 8065                     0                    0
## 8066                     0                    0
## 8067                     0                    0
## 8068                     0                    0
## 8069                     0                    0
## 8070                     0                    0
## 8071                     0                    0
## 8072                     0                    0
## 8073                     0                    0
## 8074                     0                    0
## 8075                     0                    0
## 8076                     0                    0
## 8077                     0                    0
## 8078                     0                    0
## 8079                     0                    0
## 8080                     0                    0
## 8081                     0                   NA
## 8082                     0                   NA
## 8083                     0                    0
## 8084                     0                    0
## 8085                     0                    0
## 8086                     0                    0
## 8087                     0                    0
## 8088                     0                    0
## 8089                     0                   NA
## 8090                     0                    0
## 8091                     0                   NA
## 8092                     0                    0
## 8093                     0                    0
## 8094                     0                    0
## 8095                     0                    0
## 8096                     0                    0
## 8097                     0                    0
## 8098                     0                    0
## 8099                     0                    0
## 8100                     0                   NA
## 8101                     0                    0
## 8102                     0                    0
## 8103                     0                    0
## 8104                     0                    0
## 8105                     0                    0
## 8106                     0                    0
## 8107                     0                    0
## 8108                     0                    0
## 8109                     0                    0
## 8110                     0                    0
## 8111                     0                   NA
## 8112                     0                    0
## 8113                     0                    0
## 8114                     0                    0
## 8115                     0                   NA
## 8116                     0                    0
## 8117                     0                   NA
## 8118                     0                    0
## 8119                     0                    0
## 8120                     0                    0
## 8121                     0                    0
## 8122                     0                   NA
## 8123                    98                   NA
## 8124                     0                    0
## 8125                     0                   NA
## 8126                     0                    0
## 8127                     0                   NA
## 8128                     0                    0
## 8129                     0                   NA
## 8130                     0                    0
## 8131                     0                   NA
## 8132                     0                    0
## 8133                     0                   NA
## 8134                     0                   NA
## 8135                     0                    1
## 8136                     0                    0
## 8137                     0                    0
## 8138                     0                    0
## 8139                     0                   NA
## 8140                     0                    0
## 8141                     0                    0
## 8142                     0                    0
## 8143                     0                   NA
## 8144                     0                    6
## 8145                     0                   NA
## 8146                     0                    0
## 8147                     0                    0
## 8148                     0                    0
## 8149                     0                    0
## 8150                     0                   NA
## 8151                     0                    0
## 8152                     0                   NA
## 8153                     0                    0
## 8154                     0                   NA
## 8155                     0                    0
## 8156                     0                    0
## 8157                     0                   NA
## 8158                     0                    0
## 8159                     0                   NA
## 8160                     0                    0
## 8161                     0                   NA
## 8162                     0                    5
## 8163                     0                    2
## 8164                     0                   NA
## 8165                     0                    0
## 8166                     0                   NA
## 8167                     0                    0
## 8168                     0                    0
## 8169                     0                    0
## 8170                     0                   NA
## 8171                     0                    0
## 8172                     0                    0
## 8173                     0                    0
## 8174                     0                   NA
## 8175                     0                    0
## 8176                     0                    0
## 8177                     0                   NA
## 8178                     0                    0
## 8179                     0                   NA
## 8180                     0                    0
## 8181                     0                    0
## 8182                     0                    0
## 8183                     0                   NA
## 8184                     0                    0
## 8185                     0                   NA
## 8186                     0                    0
## 8187                     0                   NA
## 8188                     0                    0
## 8189                     0                   NA
## 8190                     0                    0
## 8191                     0                   NA
## 8192                     0                    0
## 8193                     0                    0
## 8194                     0                    0
## 8195                     0                   NA
## 8196                     0                    0
## 8197                     0                    0
## 8198                     0                   NA
## 8199                     0                    0
## 8200                     0                   NA
## 8201                     0                    0
## 8202                     0                   NA
## 8203                     0                    0
## 8204                     0                   NA
## 8205                     0                    0
## 8206                     0                   NA
## 8207                     0                    0
## 8208                     0                   NA
## 8209                     0                   11
## 8210                     0                   NA
## 8211                     0                    0
## 8212                     0                   NA
## 8213                     0                    0
## 8214                     0                    0
## 8215                     0                   NA
## 8216                     0                    0
## 8217                     0                   NA
## 8218                     0                    0
## 8219                     0                   NA
## 8220                     0                    0
## 8221                     0                    0
## 8222                     0                    0
## 8223                     0                    0
## 8224                     0                   NA
## 8225                     0                    0
## 8226                     0                   NA
## 8227                     0                    0
## 8228                     0                   NA
## 8229                     0                    0
## 8230                     0                    0
## 8231                     0                    0
## 8232                     0                   NA
## 8233                     0                    0
## 8234                     0                    0
## 8235                     0                   NA
## 8236                     0                    0
## 8237                     0                   NA
## 8238                     0                    0
## 8239                     0                    0
## 8240                     0                    0
## 8241                     0                   NA
## 8242                     0                    0
## 8243                     0                   NA
## 8244                     0                    0
## 8245                     0                   NA
## 8246                     0                    0
## 8247                     0                    0
## 8248                     0                    0
## 8249                     0                    0
## 8250                     0                   NA
## 8251                     0                    0
## 8252                     0                   NA
## 8253                     0                    0
## 8254                     0                   NA
## 8255                     0                    0
## 8256                     0                    0
## 8257                     0                   NA
## 8258                     0                    0
## 8259                     0                   NA
## 8260                     0                    0
## 8261                     0                    0
## 8262                     0                   NA
## 8263                     0                    0
## 8264                     0                   NA
## 8265                     0                    0
## 8266                     0                   NA
## 8267                     0                    0
## 8268                     0                    0
## 8269                     0                    0
## 8270                     0                    0
## 8271                     0                    0
## 8272                     0                    0
## 8273                     0                    0
## 8274                     0                    0
## 8275                     0                    0
## 8276                     0                    0
## 8277                     0                    0
## 8278                     0                    0
## 8279                     0                    0
## 8280                     0                    0
## 8281                     0                    0
## 8282                     0                   NA
## 8283                     0                    0
## 8284                     0                    0
## 8285                     0                    0
## 8286                     0                    0
## 8287                     0                    0
## 8288                     0                    0
## 8289                     0                    0
## 8290                     0                    0
## 8291                     0                    0
## 8292                     0                    0
## 8293                     0                    0
## 8294                     0                    0
## 8295                     0                    0
## 8296                     0                    0
## 8297                     0                    0
## 8298                     0                    0
## 8299                     0                    0
## 8300                     0                    0
## 8301                     0                    0
## 8302                     0                    0
## 8303                     0                    0
## 8304                     0                    0
## 8305                     0                    0
## 8306                     0                   NA
## 8307                     0                    0
## 8308                     0                    0
## 8309                     0                    0
## 8310                     0                    0
## 8311                     0                    0
## 8312                     0                    0
## 8313                     0                    0
## 8314                     0                    0
## 8315                     0                    0
## 8316                     0                    0
## 8317                     0                    0
## 8318                     0                    0
## 8319                     0                    0
## 8320                     0                    0
## 8321                     0                    0
## 8322                     0                    0
## 8323                     0                    0
## 8324                     0                    0
## 8325                     0                    0
## 8326                     0                    0
## 8327                     0                    0
## 8328                     0                    0
## 8329                     0                    0
## 8330                     0                   NA
## 8331                     0                   NA
## 8332                     0                    0
## 8333                     0                    0
## 8334                     0                    0
## 8335                     0                    0
## 8336                     0                    0
## 8337                     0                    0
## 8338                     0                   NA
## 8339                     0                    0
## 8340                     0                   NA
## 8341                     0                    0
## 8342                     0                    0
## 8343                     0                    0
## 8344                     0                    0
## 8345                     0                    0
## 8346                     0                    0
## 8347                     0                    0
## 8348                     0                    0
## 8349                     0                   NA
## 8350                     0                    0
## 8351                     0                    0
## 8352                     0                    0
## 8353                     0                    0
## 8354                     0                    0
## 8355                     0                    0
## 8356                     0                    0
## 8357                     0                    0
## 8358                     0                    0
## 8359                     0                    0
## 8360                     0                   NA
## 8361                     0                    0
## 8362                     0                    0
## 8363                     0                    0
## 8364                     0                   NA
## 8365                     0                    0
## 8366                     0                   NA
## 8367                     0                    0
## 8368                     0                    0
## 8369                     0                    0
## 8370                     0                    0
## 8371                     0                   NA
## 8372                   139                   NA
## 8373                     0                    0
## 8374                     0                   NA
## 8375                     0                    0
## 8376                     0                   NA
## 8377                     0                   NA
## 8378                     2                    0
## 8379                     0                    0
## 8380                     0                   NA
## 8381                     0                    0
## 8382                     0                   NA
## 8383                     0                   NA
## 8384                     0                    5
## 8385                     0                    0
## 8386                     0                    0
## 8387                     0                    0
## 8388                     0                   NA
## 8389                     0                    0
## 8390                     0                    0
## 8391                     0                    0
## 8392                     0                   NA
## 8393                     0                    2
## 8394                     0                   NA
## 8395                     0                    0
## 8396                     0                    0
## 8397                     0                    0
## 8398                     0                    0
## 8399                     0                   NA
## 8400                     0                    0
## 8401                     0                   NA
## 8402                     0                    0
## 8403                     0                   NA
## 8404                     0                    0
## 8405                     0                    0
## 8406                     0                   NA
## 8407                     0                    0
## 8408                     0                   NA
## 8409                     0                    0
## 8410                     0                    5
## 8411                     0                   NA
## 8412                     0                    0
## 8413                     0                   NA
## 8414                     0                    0
## 8415                     0                   NA
## 8416                     0                    0
## 8417                     0                    0
## 8418                     0                    0
## 8419                     0                   NA
## 8420                     0                    0
## 8421                     0                    0
## 8422                     0                    0
## 8423                     0                   NA
## 8424                     0                    0
## 8425                     0                    0
## 8426                     0                   NA
## 8427                     0                    0
## 8428                     0                   NA
## 8429                     0                    0
## 8430                     0                    0
## 8431                     0                    0
## 8432                     0                   NA
## 8433                     0                    0
## 8434                     0                   NA
## 8435                     0                    0
## 8436                     0                   NA
## 8437                     0                    0
## 8438                     0                   NA
## 8439                     0                    0
## 8440                     0                   NA
## 8441                     0                    0
## 8442                     0                    0
## 8443                     0                    0
## 8444                     0                   NA
## 8445                     0                    0
## 8446                     0                    0
## 8447                     0                   NA
## 8448                     0                    0
## 8449                     0                   NA
## 8450                     0                    0
## 8451                     0                   NA
## 8452                     0                    0
## 8453                     0                   NA
## 8454                     0                    0
## 8455                     0                   NA
## 8456                     0                    0
## 8457                     0                   NA
## 8458                     0                    0
## 8459                     0                   NA
## 8460                     0                    0
## 8461                     0                   NA
## 8462                     0                    0
## 8463                     0                    0
## 8464                     0                   NA
## 8465                     0                    0
## 8466                     0                   NA
## 8467                     0                    0
## 8468                     0                   NA
## 8469                     0                    0
## 8470                     0                    0
## 8471                     0                    0
## 8472                     0                    0
## 8473                     0                   NA
## 8474                     0                    0
## 8475                     0                   NA
## 8476                     0                    0
## 8477                     0                   NA
## 8478                     0                    0
## 8479                     0                    0
## 8480                     0                    0
## 8481                     0                   NA
## 8482                     0                    0
## 8483                     0                    0
## 8484                     0                   NA
## 8485                     0                    0
## 8486                     0                   NA
## 8487                     0                    0
## 8488                     0                    0
## 8489                     0                    0
## 8490                     0                   NA
## 8491                     0                    0
## 8492                     0                   NA
## 8493                     0                    0
## 8494                     0                   NA
## 8495                     0                    0
## 8496                     0                    0
## 8497                     0                    0
## 8498                     0                    0
## 8499                     0                   NA
## 8500                     0                    0
## 8501                     0                   NA
## 8502                     0                    0
## 8503                     0                   NA
## 8504                     0                    0
## 8505                     0                    0
## 8506                     0                   NA
## 8507                     0                    0
## 8508                     0                   NA
## 8509                     0                    0
## 8510                     0                    0
## 8511                     0                   NA
## 8512                     0                    0
## 8513                     0                   NA
## 8514                     0                    0
## 8515                     0                   NA
## 8516                     0                    0
## 8517                     0                    0
## 8518                     0                    0
## 8519                     0                    0
## 8520                     0                    0
## 8521                     0                    0
## 8522                     0                    0
## 8523                     0                    0
## 8524                     0                    0
## 8525                     0                    0
## 8526                     0                    0
## 8527                     0                    0
## 8528                     0                    0
## 8529                     0                    0
## 8530                     0                    0
## 8531                     0                   NA
## 8532                     0                    0
## 8533                     0                    0
## 8534                     0                    0
## 8535                     0                    0
## 8536                     0                    0
## 8537                     0                    0
## 8538                     0                    0
## 8539                     0                    0
## 8540                     0                    0
## 8541                     0                    0
## 8542                     0                    0
## 8543                     0                    0
## 8544                     0                    0
## 8545                     0                    0
## 8546                     0                    0
## 8547                     0                    0
## 8548                     0                    0
## 8549                     0                    0
## 8550                     0                    0
## 8551                     0                    0
## 8552                     0                    0
## 8553                     0                    0
## 8554                     0                    0
## 8555                     0                   NA
## 8556                     0                    0
## 8557                     0                    0
## 8558                     0                    0
## 8559                     0                    0
## 8560                     0                    0
## 8561                     0                    0
## 8562                     0                    0
## 8563                     0                    0
## 8564                     0                    0
## 8565                     0                    0
## 8566                     0                    0
## 8567                     0                    0
## 8568                     0                    0
## 8569                     0                    0
## 8570                     0                    0
## 8571                     0                    0
## 8572                     0                    0
## 8573                     0                    0
## 8574                     0                    0
## 8575                     0                    0
## 8576                     0                    0
## 8577                     0                    0
## 8578                     0                    0
## 8579                     0                   NA
## 8580                     0                   NA
## 8581                     0                    0
## 8582                     0                    0
## 8583                     0                    0
## 8584                     0                    0
## 8585                     0                    0
## 8586                     0                    0
## 8587                     0                   NA
## 8588                     0                    0
## 8589                     0                   NA
## 8590                     0                    0
## 8591                     0                    0
## 8592                     0                    0
## 8593                     0                    0
## 8594                     0                    0
## 8595                     0                    0
## 8596                     0                    0
## 8597                     0                    0
## 8598                     0                   NA
## 8599                     0                    0
## 8600                     0                    0
## 8601                     0                    0
## 8602                     0                    0
## 8603                     0                    0
## 8604                     0                    0
## 8605                     0                    0
## 8606                     0                    0
## 8607                     0                    0
## 8608                     0                    0
## 8609                     0                   NA
## 8610                     0                    0
## 8611                     0                    0
## 8612                     0                    0
## 8613                     0                   NA
## 8614                     0                    0
## 8615                     0                   NA
## 8616                     0                    0
## 8617                     0                    0
## 8618                     0                    0
## 8619                     0                    0
## 8620                     0                   NA
## 8621                   112                   NA
## 8622                     0                    0
## 8623                     0                   NA
## 8624                     0                    0
## 8625                     0                   NA
## 8626                     2                   NA
## 8627                     0                    0
## 8628                     0                    0
## 8629                     0                   NA
## 8630                     0                    0
## 8631                     0                   NA
## 8632                     0                    0
## 8633                     0                   NA
## 8634                     0                    0
## 8635                     0                    0
## 8636                     0                    0
## 8637                     0                   NA
## 8638                     0                    0
## 8639                     0                    0
## 8640                     0                    0
## 8641                     0                   NA
## 8642                     0                    0
## 8643                     0                   NA
## 8644                     0                    0
## 8645                     0                    0
## 8646                     0                    0
## 8647                     0                    0
## 8648                     0                   NA
## 8649                     0                    0
## 8650                     0                   NA
## 8651                     0                    0
## 8652                     0                   NA
## 8653                     0                    0
## 8654                     0                    0
## 8655                     0                   NA
## 8656                     0                    0
## 8657                     0                   NA
## 8658                     0                    0
## 8659                     0                    0
## 8660                     0                   NA
## 8661                     0                   NA
## 8662                     1                    4
## 8663                     0                    0
## 8664                     0                   NA
## 8665                     0                    0
## 8666                     0                    0
## 8667                     0                    0
## 8668                     0                   NA
## 8669                     0                    0
## 8670                     0                    0
## 8671                     0                    0
## 8672                     0                   NA
## 8673                     0                    0
## 8674                     0                    0
## 8675                     0                   NA
## 8676                     0                    0
## 8677                     0                   NA
## 8678                     0                    0
## 8679                     0                    0
## 8680                     0                    0
## 8681                     0                   NA
## 8682                     0                    0
## 8683                     0                   NA
## 8684                     0                    0
## 8685                     0                   NA
## 8686                     0                    0
## 8687                     0                   NA
## 8688                     0                    0
## 8689                     0                   NA
## 8690                     0                    0
## 8691                     0                    0
## 8692                     0                    0
## 8693                     0                   NA
## 8694                     0                    0
## 8695                     0                    0
## 8696                     0                   NA
## 8697                     0                    0
## 8698                     0                   NA
## 8699                     0                    0
## 8700                     0                   NA
## 8701                     0                    0
## 8702                     0                   NA
## 8703                     0                    0
## 8704                     0                   NA
## 8705                     0                    0
## 8706                     0                   NA
## 8707                     0                    0
## 8708                     0                   NA
## 8709                     0                    0
## 8710                     0                   NA
## 8711                     0                    0
## 8712                     0                    0
## 8713                     0                   NA
## 8714                     0                    0
## 8715                     0                   NA
## 8716                     0                    0
## 8717                     0                   NA
## 8718                     0                    0
## 8719                     0                    0
## 8720                     0                    0
## 8721                     0                    0
## 8722                     0                   NA
## 8723                     0                    0
## 8724                     0                   NA
## 8725                     0                    0
## 8726                     0                   NA
## 8727                     0                    0
## 8728                     0                    0
## 8729                     0                    0
## 8730                     0                   NA
## 8731                     0                    0
## 8732                     0                    0
## 8733                     0                   NA
## 8734                     0                    0
## 8735                     0                   NA
## 8736                     0                    0
## 8737                     0                    0
## 8738                     0                    0
## 8739                     0                   NA
## 8740                     0                    0
## 8741                     0                   NA
## 8742                     0                    0
## 8743                     0                   NA
## 8744                     0                    0
## 8745                     0                    0
## 8746                     0                    0
## 8747                     0                    0
## 8748                     0                   NA
## 8749                     0                    0
## 8750                     0                   NA
## 8751                     0                    0
## 8752                     0                   NA
## 8753                     0                    0
## 8754                     0                    0
## 8755                     0                   NA
## 8756                     0                    0
## 8757                     0                   NA
## 8758                     0                    0
## 8759                     0                    0
## 8760                     0                   NA
## 8761                     0                    0
## 8762                     2                   NA
## 8763                     0                    0
## 8764                     0                   NA
## 8765                     0                    0
## 8766                     0                    0
## 8767                     0                    0
## 8768                     0                    0
## 8769                     0                    0
## 8770                     0                    0
## 8771                     0                    0
## 8772                     0                    0
## 8773                     0                    0
## 8774                     0                    0
## 8775                     0                    0
## 8776                     0                    0
## 8777                     0                    0
## 8778                     0                    0
## 8779                     0                    0
## 8780                     0                   NA
## 8781                     0                    0
## 8782                     0                    0
## 8783                     0                    0
## 8784                     0                    0
## 8785                     0                    0
## 8786                     0                    0
## 8787                     0                    0
## 8788                     0                    0
## 8789                     0                    0
## 8790                     0                    0
## 8791                     0                    0
## 8792                     0                    0
## 8793                     0                    0
## 8794                     0                    0
## 8795                     0                    0
## 8796                     0                    0
## 8797                     0                    0
## 8798                     0                    0
## 8799                     0                    0
## 8800                     0                    0
## 8801                     0                    0
## 8802                     0                    0
## 8803                     0                    0
## 8804                     0                   NA
## 8805                     0                    0
## 8806                     0                    0
## 8807                     0                    0
## 8808                     0                    0
## 8809                     0                    0
## 8810                     0                    0
## 8811                     0                    0
## 8812                     0                    0
## 8813                     0                    0
## 8814                     0                    0
## 8815                     0                    0
## 8816                     0                    0
## 8817                     0                    0
## 8818                     0                    0
## 8819                     0                    0
## 8820                     0                    0
## 8821                     0                    0
## 8822                     0                    0
## 8823                     0                    0
## 8824                     0                    0
## 8825                     0                    0
## 8826                     0                    0
## 8827                     0                    0
## 8828                     0                   NA
## 8829                     0                   NA
## 8830                     0                    0
## 8831                     0                    0
## 8832                     0                    0
## 8833                     0                    0
## 8834                     0                    0
## 8835                     0                    0
## 8836                     0                   NA
## 8837                     0                    0
## 8838                     0                   NA
## 8839                     0                    0
## 8840                     0                    0
## 8841                     0                    0
## 8842                     0                    0
## 8843                     0                    0
## 8844                     0                    0
## 8845                     0                    0
## 8846                     0                    0
## 8847                     0                   NA
## 8848                     0                    0
## 8849                     0                    0
## 8850                     0                    0
## 8851                     0                    0
## 8852                     0                    0
## 8853                     0                    0
## 8854                     0                    0
## 8855                     0                    0
## 8856                     0                    0
## 8857                     0                   NA
## 8858                     0                    2
## 8859                     0                    0
## 8860                     0                    0
## 8861                     0                    0
## 8862                     0                   NA
## 8863                     0                    0
## 8864                     0                   NA
## 8865                     0                    0
## 8866                     0                    0
## 8867                     0                    0
## 8868                     0                    0
## 8869                     0                   NA
## 8870                   118                   NA
## 8871                     0                    0
## 8872                     0                   NA
## 8873                     0                    0
## 8874                     0                   NA
## 8875                     0                   NA
## 8876                     2                    0
## 8877                     0                    0
## 8878                     0                   NA
## 8879                     0                   NA
## 8880                     0                    0
## 8881                     0                   NA
## 8882                     0                    4
## 8883                     0                    0
## 8884                     0                    0
## 8885                     0                    0
## 8886                     0                   NA
## 8887                     0                    0
## 8888                     0                    0
## 8889                     0                   NA
## 8890                     0                    0
## 8891                     0                    0
## 8892                     0                   NA
## 8893                     0                    0
## 8894                     0                    0
## 8895                     0                    0
## 8896                     0                    0
## 8897                     0                   NA
## 8898                     0                    0
## 8899                     0                   NA
## 8900                     0                    0
## 8901                     0                   NA
## 8902                     0                    0
## 8903                     0                    0
## 8904                     0                   NA
## 8905                     0                    0
## 8906                     0                   NA
## 8907                     0                    0
## 8908                     0                    3
## 8909                     0                   NA
## 8910                     1                   NA
## 8911                     1                    0
## 8912                     0                    0
## 8913                     0                   NA
## 8914                     0                    0
## 8915                     0                    0
## 8916                     0                    2
## 8917                     0                   NA
## 8918                     0                    0
## 8919                     0                    0
## 8920                     0                    0
## 8921                     0                   NA
## 8922                     0                    0
## 8923                     0                    7
## 8924                     0                   NA
## 8925                     0                    0
## 8926                     0                   NA
## 8927                     0                    0
## 8928                     0                    0
## 8929                     0                    0
## 8930                     0                   NA
## 8931                     0                    0
## 8932                     0                   NA
## 8933                     0                    0
## 8934                     0                   NA
## 8935                     0                    0
## 8936                     0                   NA
## 8937                     0                    0
## 8938                     0                   NA
## 8939                     0                    0
## 8940                     0                    0
## 8941                     0                    0
## 8942                     0                   NA
## 8943                     0                    0
## 8944                     0                    0
## 8945                     0                   NA
## 8946                     0                    0
## 8947                     0                   NA
## 8948                     0                    0
## 8949                     0                   NA
## 8950                     0                    0
## 8951                     0                   NA
## 8952                     0                    0
## 8953                     0                   NA
## 8954                     0                    0
## 8955                     0                   NA
## 8956                     0                    2
## 8957                     0                   NA
## 8958                     0                    0
## 8959                     0                   NA
## 8960                     0                    0
## 8961                     0                    0
## 8962                     0                   NA
## 8963                     0                    0
## 8964                     0                   NA
## 8965                     0                   NA
## 8966                     1                    0
## 8967                     0                    0
## 8968                     0                    0
## 8969                     0                    0
## 8970                     0                    0
## 8971                     0                   NA
## 8972                     0                    0
## 8973                     0                   NA
## 8974                     0                    0
## 8975                     0                   NA
## 8976                     0                    0
## 8977                     0                    0
## 8978                     0                    0
## 8979                     0                   NA
## 8980                     0                    0
## 8981                     0                    0
## 8982                     0                   NA
## 8983                     0                    0
## 8984                     0                   NA
## 8985                     0                    0
## 8986                     0                    0
## 8987                     0                    0
## 8988                     0                   NA
## 8989                     0                    0
## 8990                     0                   NA
## 8991                     0                    0
## 8992                     0                   NA
## 8993                     0                    0
## 8994                     0                    0
## 8995                     0                    0
## 8996                     0                    0
## 8997                     0                   NA
## 8998                     0                    0
## 8999                     0                   NA
## 9000                     0                    0
## 9001                     0                   NA
## 9002                     0                    0
## 9003                     0                    0
## 9004                     0                   NA
## 9005                     0                    0
## 9006                     0                   NA
## 9007                     0                    0
## 9008                     0                    0
## 9009                     0                   NA
## 9010                     0                    0
## 9011                     0                   NA
## 9012                     0                    0
## 9013                     0                   NA
## 9014                     0                    0
## 9015                     0                    0
## 9016                     0                    0
## 9017                     0                    0
## 9018                     0                    0
## 9019                     0                    0
## 9020                     0                    0
## 9021                     0                    0
## 9022                     0                    0
## 9023                     0                    0
## 9024                     0                    0
## 9025                     0                    0
## 9026                     0                    0
## 9027                     0                    0
## 9028                     0                    0
## 9029                     0                   NA
## 9030                     0                    0
## 9031                     0                    0
## 9032                     0                    0
## 9033                     0                    0
## 9034                     0                    0
## 9035                     0                    0
## 9036                     0                    0
## 9037                     0                    0
## 9038                     0                    0
## 9039                     0                    0
## 9040                     0                    0
## 9041                     0                    0
## 9042                     0                    0
## 9043                     0                    0
## 9044                     0                    0
## 9045                     0                    0
## 9046                     0                    0
## 9047                     0                    0
## 9048                     0                    0
## 9049                     0                    0
## 9050                     0                    0
## 9051                     0                    0
## 9052                     0                    0
## 9053                     0                   NA
## 9054                     0                    0
## 9055                     0                    0
## 9056                     0                    0
## 9057                     0                    0
## 9058                     0                    0
## 9059                     0                    0
## 9060                     0                    0
## 9061                     0                    0
## 9062                     0                    0
## 9063                     0                    0
## 9064                     0                    0
## 9065                     0                    0
## 9066                     0                    0
## 9067                     0                    0
## 9068                     0                    0
## 9069                     0                    0
## 9070                     0                    0
## 9071                     0                    0
## 9072                     0                    0
## 9073                     0                    0
## 9074                     0                    0
## 9075                     0                    0
## 9076                     0                    0
## 9077                     0                   NA
## 9078                     0                   NA
## 9079                     0                    0
## 9080                     0                    0
## 9081                     0                    0
## 9082                     0                    0
## 9083                     0                    0
## 9084                     0                    0
## 9085                     0                   NA
## 9086                     0                    0
## 9087                     0                   NA
## 9088                     0                    0
## 9089                     0                    0
## 9090                     0                    0
## 9091                     0                    0
## 9092                     0                    0
## 9093                     0                    0
## 9094                     0                    0
## 9095                     0                    0
## 9096                     0                   NA
## 9097                     0                    0
## 9098                     0                    0
## 9099                     0                    0
## 9100                     0                    0
## 9101                     0                    0
## 9102                     0                    0
## 9103                     0                    0
## 9104                     0                    0
## 9105                     0                    0
## 9106                     0                    0
## 9107                     0                   NA
## 9108                     0                    0
## 9109                     0                    0
## 9110                     0                    0
## 9111                     0                   NA
## 9112                     0                    0
## 9113                     0                   NA
## 9114                     0                    0
## 9115                     0                    0
## 9116                     0                    0
## 9117                     0                    0
## 9118                     0                   NA
## 9119                   109                   NA
## 9120                     0                    0
## 9121                     0                   NA
## 9122                     0                    0
## 9123                     0                   NA
## 9124                     1                    0
## 9125                     2                   NA
## 9126                     0                    0
## 9127                     0                   NA
## 9128                     0                    0
## 9129                     0                   NA
## 9130                     0                   NA
## 9131                     0                    0
## 9132                     0                    0
## 9133                     0                    0
## 9134                     0                    0
## 9135                     0                   NA
## 9136                     0                    0
## 9137                     0                    0
## 9138                     0                    0
## 9139                     0                   NA
## 9140                     0                    0
## 9141                     0                   NA
## 9142                     0                    0
## 9143                     0                    0
## 9144                     0                    0
## 9145                     0                    0
## 9146                     0                   NA
## 9147                     0                    0
## 9148                     0                   NA
## 9149                     0                    0
## 9150                     0                   NA
## 9151                     0                    0
## 9152                     0                    0
## 9153                     0                   NA
## 9154                     0                    0
## 9155                     0                   NA
## 9156                     0                    0
## 9157                     0                    0
## 9158                     0                   NA
## 9159                     1                   NA
## 9160                     0                    0
## 9161                     0                    0
## 9162                     0                   NA
## 9163                     0                    0
## 9164                     0                    0
## 9165                     0                    0
## 9166                     0                   NA
## 9167                     0                    0
## 9168                     0                    0
## 9169                     0                   NA
## 9170                     0                    0
## 9171                     0                    0
## 9172                     0                    0
## 9173                     0                   NA
## 9174                     0                    0
## 9175                     0                   NA
## 9176                     0                    0
## 9177                     0                    0
## 9178                     0                    0
## 9179                     0                   NA
## 9180                     0                    0
## 9181                     0                   NA
## 9182                     0                    0
## 9183                     0                   NA
## 9184                     0                    0
## 9185                     0                   NA
## 9186                     0                    0
## 9187                     0                   NA
## 9188                     0                    0
## 9189                     0                    0
## 9190                     0                    0
## 9191                     0                   NA
## 9192                     0                    0
## 9193                     0                    0
## 9194                     0                   NA
## 9195                     0                    0
## 9196                     0                   NA
## 9197                     0                    0
## 9198                     0                   NA
## 9199                     0                    0
## 9200                     0                   NA
## 9201                     0                    0
## 9202                     0                   NA
## 9203                     0                    0
## 9204                     0                   NA
## 9205                     0                    0
## 9206                     0                   NA
## 9207                     0                    0
## 9208                     0                   NA
## 9209                     0                    0
## 9210                     0                    0
## 9211                     0                   NA
## 9212                     0                    0
## 9213                     0                   NA
## 9214                     0                   NA
## 9215                     1                    1
## 9216                     0                    0
## 9217                     0                    0
## 9218                     0                    0
## 9219                     0                    0
## 9220                     0                   NA
## 9221                     0                    0
## 9222                     0                   NA
## 9223                     0                    0
## 9224                     0                   NA
## 9225                     0                    0
## 9226                     0                    0
## 9227                     0                    0
## 9228                     0                   NA
## 9229                     0                    0
## 9230                     0                    0
## 9231                     0                   NA
## 9232                     0                    0
## 9233                     0                   NA
## 9234                     0                    0
## 9235                     0                    0
## 9236                     0                    0
## 9237                     0                   NA
## 9238                     0                    0
## 9239                     0                   NA
## 9240                     0                    0
## 9241                     0                   NA
## 9242                     0                    0
## 9243                     0                    0
## 9244                     0                    0
## 9245                     0                    0
## 9246                     0                   NA
## 9247                     0                    0
## 9248                     0                   NA
## 9249                     0                    0
## 9250                     0                   NA
## 9251                     0                    0
## 9252                     0                    0
## 9253                     0                   NA
## 9254                     0                    0
## 9255                     0                   NA
## 9256                     0                    0
## 9257                     0                    0
## 9258                     0                   NA
## 9259                     0                    0
## 9260                     0                   NA
## 9261                     0                    0
## 9262                     0                   NA
## 9263                     0                    0
## 9264                     0                    0
## 9265                     0                    0
## 9266                     0                    0
## 9267                     0                    0
## 9268                     0                    0
## 9269                     0                    0
## 9270                     0                    0
## 9271                     0                    0
## 9272                     0                    0
## 9273                     0                    0
## 9274                     0                    0
## 9275                     0                    0
## 9276                     0                    0
## 9277                     0                    0
## 9278                     0                   NA
## 9279                     0                    0
## 9280                     0                    0
## 9281                     0                    0
## 9282                     0                    0
## 9283                     0                    0
## 9284                     0                    0
## 9285                     0                    0
## 9286                     0                    0
## 9287                     0                    0
## 9288                     0                    0
## 9289                     0                    0
## 9290                     0                    0
## 9291                     0                    0
## 9292                     0                    0
## 9293                     0                    0
## 9294                     0                    0
## 9295                     0                    0
## 9296                     0                    0
## 9297                     0                    0
## 9298                     0                    0
## 9299                     0                    0
## 9300                     0                    0
## 9301                     0                    0
## 9302                     0                   NA
## 9303                     0                    0
## 9304                     0                    0
## 9305                     0                    0
## 9306                     0                    0
## 9307                     0                    0
## 9308                     0                    0
## 9309                     0                    0
## 9310                     0                    0
## 9311                     0                    0
## 9312                     0                    0
## 9313                     0                    0
## 9314                     0                    0
## 9315                     0                    0
## 9316                     0                    0
## 9317                     0                    0
## 9318                     0                    0
## 9319                     0                    0
## 9320                     0                    0
## 9321                     0                    0
## 9322                     0                    0
## 9323                     0                    0
## 9324                     0                    0
## 9325                     0                    0
## 9326                     0                   NA
## 9327                     0                   NA
## 9328                     0                    0
## 9329                     0                    0
## 9330                     0                    0
## 9331                     0                    0
## 9332                     0                    0
## 9333                     0                    0
## 9334                     0                   NA
## 9335                     0                    0
## 9336                     0                   NA
## 9337                     0                    0
## 9338                     0                    0
## 9339                     0                    0
## 9340                     0                    0
## 9341                     0                    0
## 9342                     0                    0
## 9343                     0                    0
## 9344                     0                    0
## 9345                     0                   NA
## 9346                     0                    0
## 9347                     0                    0
## 9348                     0                    0
## 9349                     0                    0
## 9350                     0                    0
## 9351                     0                    0
## 9352                     0                    0
## 9353                     0                    0
## 9354                     0                    0
## 9355                     0                    0
## 9356                     0                   NA
## 9357                     0                    0
## 9358                     0                    0
## 9359                     0                    0
## 9360                     0                   NA
## 9361                     0                    0
## 9362                     0                   NA
## 9363                     0                    0
## 9364                     0                    0
## 9365                     0                    0
## 9366                     0                    0
## 9367                     0                   NA
## 9368                    98                   NA
## 9369                     0                    0
## 9370                     0                   NA
## 9371                     0                    0
## 9372                     0                   NA
## 9373                     1                   NA
## 9374                     3                    0
## 9375                     0                    0
## 9376                     0                   NA
## 9377                     0                    0
## 9378                     0                   NA
## 9379                     0                    0
## 9380                     0                   NA
## 9381                     0                    0
## 9382                     0                    0
## 9383                     0                    0
## 9384                     0                   NA
## 9385                     0                    0
## 9386                     0                    0
## 9387                     0                    0
## 9388                     0                   NA
## 9389                     0                    0
## 9390                     0                   NA
## 9391                     0                    0
## 9392                     0                    0
## 9393                     0                    0
## 9394                     0                    0
## 9395                     0                   NA
## 9396                     0                    0
## 9397                     0                   NA
## 9398                     0                    0
## 9399                     0                   NA
## 9400                     0                    0
## 9401                     0                    0
## 9402                     0                   NA
## 9403                     0                    0
## 9404                     0                   NA
## 9405                     0                    0
## 9406                     0                   NA
## 9407                     0                   14
## 9408                     4                    2
## 9409                     3                   NA
## 9410                     0                    0
## 9411                     0                   NA
## 9412                     0                    0
## 9413                     0                    0
## 9414                     0                    4
## 9415                     0                   NA
## 9416                     0                    0
## 9417                     0                    0
## 9418                     0                    0
## 9419                     0                   NA
## 9420                     0                    0
## 9421                     0                    0
## 9422                     0                   NA
## 9423                     0                    0
## 9424                     0                   NA
## 9425                     0                    0
## 9426                     0                    0
## 9427                     0                    0
## 9428                     0                   NA
## 9429                     0                    0
## 9430                     0                   NA
## 9431                     0                    0
## 9432                     0                   NA
## 9433                     0                    0
## 9434                     0                   NA
## 9435                     0                    0
## 9436                     0                   NA
## 9437                     0                    0
## 9438                     0                    0
## 9439                     0                    0
## 9440                     0                   NA
## 9441                     0                    0
## 9442                     0                    0
## 9443                     0                   NA
## 9444                     0                    0
## 9445                     0                   NA
## 9446                     0                    0
## 9447                     0                   NA
## 9448                     0                    0
## 9449                     0                   NA
## 9450                     0                    0
## 9451                     0                   NA
## 9452                     0                    0
## 9453                     0                   NA
## 9454                     0                    0
## 9455                     0                   NA
## 9456                     0                    0
## 9457                     0                   NA
## 9458                     0                    0
## 9459                     0                    0
## 9460                     0                   NA
## 9461                     0                    0
## 9462                     0                   NA
## 9463                     2                   NA
## 9464                     1                    1
## 9465                     0                    0
## 9466                     0                    0
## 9467                     0                    0
## 9468                     0                    0
## 9469                     0                   NA
## 9470                     0                    0
## 9471                     0                   NA
## 9472                     0                    0
## 9473                     0                   NA
## 9474                     0                    0
## 9475                     0                    0
## 9476                     0                    0
## 9477                     0                   NA
## 9478                     0                    0
## 9479                     0                    0
## 9480                     0                   NA
## 9481                     0                    0
## 9482                     0                   NA
## 9483                     0                    0
## 9484                     0                    0
## 9485                     0                    0
## 9486                     0                   NA
## 9487                     0                    0
## 9488                     0                   NA
## 9489                     0                    0
## 9490                     0                   NA
## 9491                     0                    0
## 9492                     0                    0
## 9493                     0                    0
## 9494                     0                    0
## 9495                     0                   NA
## 9496                     0                    0
## 9497                     0                   NA
## 9498                     0                    0
## 9499                     0                   NA
## 9500                     0                    0
## 9501                     0                    0
## 9502                     0                   NA
## 9503                     0                    0
## 9504                     0                   NA
## 9505                     0                    0
## 9506                     0                    0
## 9507                     0                   NA
## 9508                     0                    0
## 9509                     0                   NA
## 9510                     0                    0
## 9511                     0                   NA
## 9512                     0                    0
## 9513                     0                    0
## 9514                     0                    0
## 9515                     0                    0
## 9516                     0                    0
## 9517                     0                    0
## 9518                     0                    0
## 9519                     0                    0
## 9520                     0                    0
## 9521                     0                    0
## 9522                     0                    0
## 9523                     0                    0
## 9524                     0                    0
## 9525                     0                    0
## 9526                     0                    0
## 9527                     0                   NA
## 9528                     0                    0
## 9529                     0                    0
## 9530                     0                    0
## 9531                     0                    0
## 9532                     0                    0
## 9533                     0                    0
## 9534                     0                    0
## 9535                     0                    0
## 9536                     0                    0
## 9537                     0                    0
## 9538                     0                    0
## 9539                     0                    0
## 9540                     0                    0
## 9541                     0                    0
## 9542                     0                    0
## 9543                     0                    0
## 9544                     0                    0
## 9545                     0                    0
## 9546                     0                    0
## 9547                     0                    0
## 9548                     0                    0
## 9549                     0                    0
## 9550                     0                    0
## 9551                     0                   NA
## 9552                     0                    0
## 9553                     0                    0
## 9554                     0                    0
## 9555                     0                    0
## 9556                     0                    0
## 9557                     0                    0
## 9558                     0                    0
## 9559                     0                    0
## 9560                     0                    0
## 9561                     0                    0
## 9562                     0                    0
## 9563                     0                    0
## 9564                     0                    0
## 9565                     0                    0
## 9566                     0                    0
## 9567                     0                    0
## 9568                     0                    0
## 9569                     0                    0
## 9570                     0                    0
## 9571                     0                    0
## 9572                     0                    0
## 9573                     0                    0
## 9574                     0                    0
## 9575                     0                   NA
## 9576                     0                   NA
## 9577                     0                    0
## 9578                     0                    0
## 9579                     0                    0
## 9580                     0                    0
## 9581                     0                    0
## 9582                     0                    0
## 9583                     0                   NA
## 9584                     0                    0
## 9585                     0                   NA
## 9586                     0                    0
## 9587                     0                    0
## 9588                     0                    0
## 9589                     0                    0
## 9590                     0                    0
## 9591                     0                    0
## 9592                     0                    0
## 9593                     0                    0
## 9594                     0                   NA
## 9595                     0                    0
## 9596                     0                    0
## 9597                     0                    0
## 9598                     0                    0
## 9599                     0                    0
## 9600                     0                    0
## 9601                     0                    0
## 9602                     0                    0
## 9603                     0                    0
## 9604                     0                    0
## 9605                     0                   NA
## 9606                     0                    0
## 9607                     0                    0
## 9608                     0                   NA
## 9609                     0                    0
## 9610                     0                    0
## 9611                     0                   NA
## 9612                     0                    0
## 9613                     0                    0
## 9614                     0                    0
## 9615                     0                    0
## 9616                     0                   NA
## 9617                   150                   NA
## 9618                     0                    0
## 9619                     0                   NA
## 9620                     0                    0
## 9621                     0                   NA
## 9622                     3                   NA
## 9623                     4                    0
## 9624                     0                   NA
## 9625                     0                    0
## 9626                     0                    0
## 9627                     0                   NA
## 9628                     0                    0
## 9629                     0                   NA
## 9630                     0                    0
## 9631                     0                    0
## 9632                     0                    0
## 9633                     0                   NA
## 9634                     0                    0
## 9635                     0                    0
## 9636                     0                    0
## 9637                     0                   NA
## 9638                     0                    3
## 9639                     0                   NA
## 9640                     0                    0
## 9641                     0                    0
## 9642                     0                    0
## 9643                     0                    0
## 9644                     0                   NA
## 9645                     0                   NA
## 9646                     0                    0
## 9647                     0                    0
## 9648                     0                   NA
## 9649                     0                    0
## 9650                     0                    0
## 9651                     0                   NA
## 9652                     0                    0
## 9653                     0                   NA
## 9654                     0                    0
## 9655                     0                    0
## 9656                     0                   NA
## 9657                     2                   NA
## 9658                     2                    0
## 9659                     0                    0
## 9660                     0                   NA
## 9661                     0                    0
## 9662                     0                    0
## 9663                     0                    0
## 9664                     0                   NA
## 9665                     0                    0
## 9666                     0                    0
## 9667                     0                    0
## 9668                     0                   NA
## 9669                     0                    0
## 9670                     0                    0
## 9671                     0                   NA
## 9672                     0                    0
## 9673                     0                   NA
## 9674                     0                    0
## 9675                     0                    0
## 9676                     0                    0
## 9677                     0                   NA
## 9678                     0                    0
## 9679                     0                   NA
## 9680                     0                    0
## 9681                     0                   NA
## 9682                     0                    0
## 9683                     0                   NA
## 9684                     0                    0
## 9685                     0                   NA
## 9686                     0                    0
## 9687                     0                    0
## 9688                     0                    0
## 9689                     0                   NA
## 9690                     0                    0
## 9691                     0                    0
## 9692                     0                   NA
## 9693                     0                    0
## 9694                     0                   NA
## 9695                     0                    0
## 9696                     0                   NA
## 9697                     0                    0
## 9698                     0                   NA
## 9699                     0                    0
## 9700                     0                   NA
## 9701                     0                    0
## 9702                     0                   NA
## 9703                     0                    0
## 9704                     0                   NA
## 9705                     0                    0
## 9706                     0                   NA
## 9707                     0                    0
## 9708                     0                    0
## 9709                     0                   NA
## 9710                     0                    0
## 9711                     0                   NA
## 9712                     0                   NA
## 9713                     4                   -1
## 9714                     0                    0
## 9715                     0                    0
## 9716                     0                    0
## 9717                     0                    0
## 9718                     0                   NA
## 9719                     0                    0
## 9720                     0                   NA
## 9721                     0                    0
## 9722                     0                   NA
## 9723                     0                    0
## 9724                     0                    0
## 9725                     0                    0
## 9726                     0                   NA
## 9727                     0                    0
## 9728                     0                    0
## 9729                     0                   NA
## 9730                     0                    0
## 9731                     0                   NA
## 9732                     0                    0
## 9733                     0                    0
## 9734                     0                    0
## 9735                     0                   NA
## 9736                     0                    0
## 9737                     0                   NA
## 9738                     0                    0
## 9739                     0                   NA
## 9740                     0                    0
## 9741                     0                    0
## 9742                     0                    0
## 9743                     0                    0
## 9744                     0                   NA
## 9745                     0                    0
## 9746                     0                   NA
## 9747                     0                    0
## 9748                     0                   NA
## 9749                     0                    0
## 9750                     0                    0
## 9751                     0                   NA
## 9752                     0                    0
## 9753                     0                   NA
## 9754                     0                    0
## 9755                     0                    0
## 9756                     0                   NA
## 9757                     0                    0
## 9758                     1                   NA
## 9759                     0                   NA
## 9760                     0                    0
## 9761                     0                    0
## 9762                     0                    0
## 9763                     0                    0
## 9764                     0                    0
## 9765                     0                    0
## 9766                     0                    0
## 9767                     0                    0
## 9768                     0                    0
## 9769                     0                    0
## 9770                     0                    0
## 9771                     0                    0
## 9772                     0                    0
## 9773                     0                    0
## 9774                     0                    0
## 9775                     0                    0
## 9776                     0                   NA
## 9777                     0                    0
## 9778                     0                    0
## 9779                     0                    0
## 9780                     0                    0
## 9781                     0                    0
## 9782                     0                    0
## 9783                     0                    0
## 9784                     0                    0
## 9785                     0                    0
## 9786                     0                    0
## 9787                     0                    0
## 9788                     0                    0
## 9789                     0                    0
## 9790                     0                    0
## 9791                     0                    0
## 9792                     0                    0
## 9793                     0                    0
## 9794                     0                    0
## 9795                     0                    0
## 9796                     0                    0
## 9797                     0                    0
## 9798                     0                    0
## 9799                     0                    0
## 9800                     0                   NA
## 9801                     0                    0
## 9802                     0                    0
## 9803                     0                    0
## 9804                     0                    0
## 9805                     0                    0
## 9806                     0                    0
## 9807                     0                    0
## 9808                     0                    0
## 9809                     0                    0
## 9810                     0                    0
## 9811                     0                    0
## 9812                     0                    0
## 9813                     0                    0
## 9814                     0                    0
## 9815                     0                    0
## 9816                     0                    0
## 9817                     0                    0
## 9818                     0                    0
## 9819                     0                    0
## 9820                     0                    0
## 9821                     0                    0
## 9822                     0                    0
## 9823                     0                    0
## 9824                     0                   NA
## 9825                     0                   NA
## 9826                     0                    0
## 9827                     0                    0
## 9828                     0                    0
## 9829                     0                    0
## 9830                     0                    0
## 9831                     0                    0
## 9832                     0                   NA
## 9833                     0                    0
## 9834                     0                   NA
## 9835                     0                    0
## 9836                     0                    0
## 9837                     0                    0
## 9838                     0                    0
## 9839                     0                    0
## 9840                     0                    0
## 9841                     0                    0
## 9842                     0                    0
## 9843                     0                   NA
## 9844                     0                    0
## 9845                     0                    0
## 9846                     0                    0
## 9847                     0                    0
## 9848                     0                    0
## 9849                     0                    0
## 9850                     0                    0
## 9851                     0                    0
## 9852                     0                    0
## 9853                     0                    1
## 9854                     0                   NA
## 9855                     0                    0
## 9856                     0                    0
## 9857                     0                    0
## 9858                     0                   NA
## 9859                     0                   NA
## 9860                     0                    0
## 9861                     0                    0
## 9862                     0                    0
## 9863                     0                    0
## 9864                     0                    0
## 9865                     0                   NA
## 9866                    70                   NA
## 9867                     0                    0
## 9868                     0                   NA
## 9869                     0                    0
## 9870                     0                   NA
## 9871                     4                   NA
## 9872                     4                    0
## 9873                     0                    0
## 9874                     0                   NA
## 9875                     0                    0
## 9876                     0                   NA
## 9877                     0                   NA
## 9878                     0                    0
## 9879                     0                    0
## 9880                     0                    0
## 9881                     0                   NA
## 9882                     0                    0
## 9883                     0                    0
## 9884                     0                    0
## 9885                     0                    0
## 9886                     0                   NA
## 9887                     0                    0
## 9888                     0                   NA
## 9889                     0                    0
## 9890                     0                    0
## 9891                     0                    0
## 9892                     0                    0
## 9893                     0                   NA
## 9894                     0                    0
## 9895                     0                   NA
## 9896                     0                   NA
## 9897                     0                    0
## 9898                     0                    0
## 9899                     0                    0
## 9900                     0                   NA
## 9901                     0                    0
## 9902                     0                   NA
## 9903                     0                    0
## 9904                     0                   NA
## 9905                     0                    2
## 9906                     1                   NA
## 9907                     2                    4
## 9908                     0                    0
## 9909                     0                   NA
## 9910                     0                    0
## 9911                     0                    0
## 9912                     0                    1
## 9913                     0                   NA
## 9914                     0                    0
## 9915                     0                    0
## 9916                     0                    0
## 9917                     0                   NA
## 9918                     0                    0
## 9919                     0                    2
## 9920                     0                   NA
## 9921                     0                    0
## 9922                     0                   NA
## 9923                     0                    0
## 9924                     0                    0
## 9925                     0                    0
## 9926                     0                   NA
## 9927                     0                   NA
## 9928                     0                    0
## 9929                     0                    0
## 9930                     0                   NA
## 9931                     0                    0
## 9932                     0                   NA
## 9933                     0                    0
## 9934                     0                   NA
## 9935                     0                    0
## 9936                     0                    0
## 9937                     0                   NA
## 9938                     0                    0
## 9939                     0                    0
## 9940                     0                    0
## 9941                     0                   NA
## 9942                     0                    0
## 9943                     0                   NA
## 9944                     0                    0
## 9945                     0                   NA
## 9946                     0                    0
## 9947                     0                   NA
## 9948                     0                   NA
## 9949                     0                    7
## 9950                     0                    0
## 9951                     0                   NA
## 9952                     0                   NA
## 9953                     0                    0
## 9954                     0                    0
## 9955                     0                   NA
## 9956                     0                    0
## 9957                     0                    0
## 9958                     0                   NA
## 9959                     0                    0
## 9960                     0                   NA
## 9961                     3                    0
## 9962                     4                   NA
## 9963                     0                    0
## 9964                     0                    0
## 9965                     0                    0
## 9966                     0                    0
## 9967                     0                   NA
## 9968                     0                    0
## 9969                     0                   NA
## 9970                     0                    0
## 9971                     0                   NA
## 9972                     0                    0
## 9973                     0                    0
## 9974                     0                    0
## 9975                     0                   NA
## 9976                     0                    0
## 9977                     0                    0
## 9978                     0                   NA
## 9979                     0                    0
## 9980                     0                   NA
## 9981                     0                    0
## 9982                     0                    0
## 9983                     0                    0
## 9984                     0                   NA
## 9985                     0                    0
## 9986                     0                   NA
## 9987                     0                    0
## 9988                     0                   NA
## 9989                     0                    0
## 9990                     0                    0
## 9991                     0                    0
## 9992                     0                   NA
## 9993                     0                    0
## 9994                     0                    0
## 9995                     0                   NA
## 9996                     0                   NA
## 9997                     0                    0
## 9998                     0                    0
## 9999                     0                    0
## 10000                    0                   NA
## 10001                    0                    0
## 10002                    0                   NA
## 10003                    0                    0
## 10004                    0                    0
## 10005                    0                   NA
## 10006                    0                    0
## 10007                    0                   NA
## 10008                    0                    0
## 10009                    0                   NA
## 10010                    0                    0
## 10011                    0                    0
## 10012                    0                    0
## 10013                    0                    0
## 10014                    0                    0
## 10015                    0                    0
## 10016                    0                    0
## 10017                    0                    0
## 10018                    0                    0
## 10019                    0                    0
## 10020                    0                    0
## 10021                    0                    0
## 10022                    0                    0
## 10023                    0                    0
## 10024                    0                    0
## 10025                    0                   NA
## 10026                    0                    0
## 10027                    0                    0
## 10028                    0                    0
## 10029                    0                    0
## 10030                    0                    0
## 10031                    0                    0
## 10032                    0                    0
## 10033                    0                    0
## 10034                    0                    0
## 10035                    0                    0
## 10036                    0                    0
## 10037                    0                    0
## 10038                    0                    0
## 10039                    0                    0
## 10040                    0                    0
## 10041                    0                    0
## 10042                    0                    0
## 10043                    0                    0
## 10044                    0                    0
## 10045                    0                    0
## 10046                    0                    0
## 10047                    0                    0
## 10048                    0                    0
## 10049                    0                   NA
## 10050                    0                    0
## 10051                    0                    0
## 10052                    0                    0
## 10053                    0                    0
## 10054                    0                    0
## 10055                    0                    0
## 10056                    0                    0
## 10057                    0                    0
## 10058                    0                    0
## 10059                    0                    0
## 10060                    0                    0
## 10061                    0                    0
## 10062                    0                    0
## 10063                    0                    0
## 10064                    0                    0
## 10065                    0                    0
## 10066                    0                    0
## 10067                    0                    0
## 10068                    0                    0
## 10069                    0                    0
## 10070                    0                    0
## 10071                    0                    0
## 10072                    0                    0
## 10073                    0                   NA
## 10074                    0                   NA
## 10075                    0                    0
## 10076                    0                    0
## 10077                    0                    0
## 10078                    0                    0
## 10079                    0                    0
## 10080                    0                    0
## 10081                    0                   NA
## 10082                    0                    0
## 10083                    0                   NA
## 10084                    0                    0
## 10085                    0                    0
## 10086                    0                    0
## 10087                    0                    0
## 10088                    0                    0
## 10089                    0                    0
## 10090                    0                    0
## 10091                    0                    0
## 10092                    0                   NA
## 10093                    0                    0
## 10094                    0                    0
## 10095                    0                    0
## 10096                    0                    0
## 10097                    0                    0
## 10098                    0                    0
## 10099                    0                    0
## 10100                    0                    0
## 10101                    0                    0
## 10102                    0                    0
## 10103                    0                   NA
## 10104                    0                    0
## 10105                    0                    0
## 10106                    0                    0
## 10107                    0                   NA
## 10108                    0                    0
## 10109                    0                   NA
## 10110                    0                    0
## 10111                    0                    0
## 10112                    0                    0
## 10113                    0                    0
## 10114                    0                   NA
## 10115                   52                   NA
## 10116                    0                    0
## 10117                    0                   NA
## 10118                    0                    0
## 10119                    0                   NA
## 10120                    3                   NA
## 10121                    3                   49
## 10122                    0                    0
## 10123                    0                   NA
## 10124                    0                   NA
## 10125                    0                    0
## 10126                    1                    0
## 10127                    0                   NA
## 10128                    0                    0
## 10129                    0                    0
## 10130                    0                   NA
## 10131                    0                    0
## 10132                    0                    0
## 10133                    0                    0
## 10134                    0                   NA
## 10135                    0                    0
## 10136                    0                    0
## 10137                    0                   NA
## 10138                    0                    0
## 10139                    0                    0
## 10140                    0                    0
## 10141                    0                    0
## 10142                    0                   NA
## 10143                    0                    0
## 10144                    0                   NA
## 10145                    0                    0
## 10146                    0                   NA
## 10147                    0                    0
## 10148                    0                    0
## 10149                    0                   NA
## 10150                    0                    0
## 10151                    0                   NA
## 10152                    0                    0
## 10153                    0                   NA
## 10154                    0                    9
## 10155                    3                   NA
## 10156                    2                    0
## 10157                    0                    0
## 10158                    0                   NA
## 10159                    0                    0
## 10160                    0                    0
## 10161                    0                    0
## 10162                    0                   NA
## 10163                    0                    0
## 10164                    0                    0
## 10165                    0                    0
## 10166                    0                   NA
## 10167                    0                    0
## 10168                    0                    0
## 10169                    0                   NA
## 10170                    0                    0
## 10171                    0                   NA
## 10172                    0                    0
## 10173                    0                    0
## 10174                    0                    0
## 10175                    0                   NA
## 10176                    0                    0
## 10177                    0                   NA
## 10178                    0                    0
## 10179                    0                   NA
## 10180                    0                    0
## 10181                    0                   NA
## 10182                    0                    0
## 10183                    0                   NA
## 10184                    0                    0
## 10185                    0                    0
## 10186                    0                   NA
## 10187                    0                    0
## 10188                    0                    0
## 10189                    0                    0
## 10190                    0                   NA
## 10191                    0                    0
## 10192                    0                   NA
## 10193                    0                    0
## 10194                    0                   NA
## 10195                    0                   NA
## 10196                    0                    0
## 10197                    0                   NA
## 10198                    1                    0
## 10199                    0                   NA
## 10200                    0                    0
## 10201                    0                   NA
## 10202                    0                    1
## 10203                    0                   NA
## 10204                    0                    0
## 10205                    0                    0
## 10206                    0                    0
## 10207                    0                   NA
## 10208                    0                    0
## 10209                    0                   NA
## 10210                    5                   NA
## 10211                    2                    2
## 10212                    0                    0
## 10213                    0                    0
## 10214                    0                    0
## 10215                    0                    0
## 10216                    0                   NA
## 10217                    0                    0
## 10218                    0                   NA
## 10219                    0                   NA
## 10220                    0                    0
## 10221                    0                    0
## 10222                    0                    0
## 10223                    0                    0
## 10224                    0                   NA
## 10225                    0                    0
## 10226                    0                    0
## 10227                    0                   NA
## 10228                    0                   NA
## 10229                    0                    0
## 10230                    0                    0
## 10231                    0                    0
## 10232                    0                   NA
## 10233                    0                    0
## 10234                    0                    0
## 10235                    0                   NA
## 10236                    0                    0
## 10237                    0                   NA
## 10238                    0                    0
## 10239                    0                    0
## 10240                    0                    0
## 10241                    0                   NA
## 10242                    0                    0
## 10243                    0                   NA
## 10244                    0                    0
## 10245                    0                    0
## 10246                    0                   NA
## 10247                    0                    0
## 10248                    0                    0
## 10249                    0                   NA
## 10250                    0                    0
## 10251                    0                   NA
## 10252                    0                    0
## 10253                    0                    0
## 10254                    0                   NA
## 10255                    0                    0
## 10256                    1                   NA
## 10257                    0                    0
## 10258                    0                   NA
## 10259                    0                    0
## 10260                    0                    0
## 10261                    0                    0
## 10262                    0                    0
## 10263                    0                    0
## 10264                    0                    0
## 10265                    0                    0
## 10266                    0                    0
## 10267                    0                    0
## 10268                    0                    0
## 10269                    0                    0
## 10270                    0                    0
## 10271                    0                    0
## 10272                    0                    0
## 10273                    0                    0
## 10274                    0                   NA
## 10275                    0                    0
## 10276                    0                    0
## 10277                    0                    0
## 10278                    0                    0
## 10279                    0                    0
## 10280                    0                    0
## 10281                    0                    0
## 10282                    0                    0
## 10283                    0                    0
## 10284                    0                    0
## 10285                    0                    0
## 10286                    0                    0
## 10287                    0                    0
## 10288                    0                    0
## 10289                    0                    0
## 10290                    0                    0
## 10291                    0                    0
## 10292                    0                    0
## 10293                    0                    0
## 10294                    0                    0
## 10295                    0                    0
## 10296                    0                    0
## 10297                    0                    0
## 10298                    0                   NA
## 10299                    0                    0
## 10300                    0                    0
## 10301                    0                    0
## 10302                    0                    0
## 10303                    0                    0
## 10304                    0                    0
## 10305                    0                    0
## 10306                    0                    0
## 10307                    0                    0
## 10308                    0                    0
## 10309                    0                    0
## 10310                    0                    0
## 10311                    0                    0
## 10312                    0                    0
## 10313                    0                    0
## 10314                    0                    0
## 10315                    0                    0
## 10316                    0                    0
## 10317                    0                    0
## 10318                    0                    0
## 10319                    0                    0
## 10320                    0                    0
## 10321                    0                    0
## 10322                    0                   NA
## 10323                    0                   NA
## 10324                    0                    0
## 10325                    0                    0
## 10326                    0                    0
## 10327                    0                    0
## 10328                    0                    0
## 10329                    0                    0
## 10330                    0                   NA
## 10331                    0                    0
## 10332                    0                   NA
## 10333                    0                    0
## 10334                    0                    0
## 10335                    0                    0
## 10336                    0                    0
## 10337                    0                    0
## 10338                    0                    0
## 10339                    0                    0
## 10340                    0                    0
## 10341                    0                   NA
## 10342                    0                    0
## 10343                    0                    0
## 10344                    0                    0
## 10345                    0                    0
## 10346                    0                    0
## 10347                    0                    0
## 10348                    0                    0
## 10349                    0                    0
## 10350                    0                    0
## 10351                    0                    0
## 10352                    0                   NA
## 10353                    0                    0
## 10354                    0                    0
## 10355                    0                    0
## 10356                    0                   NA
## 10357                    0                    0
## 10358                    0                   NA
## 10359                    0                    0
## 10360                    0                    0
## 10361                    0                    0
## 10362                    0                    0
## 10363                    0                   NA
## 10364                   29                   NA
## 10365                    0                    0
## 10366                    0                   NA
## 10367                    0                    0
## 10368                    0                   NA
## 10369                    4                   NA
## 10370                    7                    0
## 10371                    0                   NA
## 10372                    0                    0
## 10373                    0                   NA
## 10374                    0                    1
## 10375                    2                   NA
## 10376                    2                    0
## 10377                    0                    0
## 10378                    0                    0
## 10379                    0                   NA
## 10380                    0                    0
## 10381                    0                    0
## 10382                    0                    0
## 10383                    0                    0
## 10384                    0                   NA
## 10385                    0                   NA
## 10386                    0                    0
## 10387                    0                    0
## 10388                    0                    0
## 10389                    0                    0
## 10390                    0                    0
## 10391                    0                   NA
## 10392                    0                    0
## 10393                    0                   NA
## 10394                    0                    0
## 10395                    0                   NA
## 10396                    0                    0
## 10397                    0                    0
## 10398                    0                   NA
## 10399                    0                    0
## 10400                    0                   NA
## 10401                    0                    0
## 10402                    0                    0
## 10403                    0                   NA
## 10404                    1                   NA
## 10405                    1                    0
## 10406                    0                    0
## 10407                    0                   NA
## 10408                    0                    0
## 10409                    0                    0
## 10410                    0                    0
## 10411                    0                   NA
## 10412                    0                    0
## 10413                    0                    0
## 10414                    0                    0
## 10415                    0                   NA
## 10416                    0                    0
## 10417                    0                    0
## 10418                    0                   NA
## 10419                    0                    0
## 10420                    0                   NA
## 10421                    0                    0
## 10422                    0                    0
## 10423                    0                    0
## 10424                    0                   NA
## 10425                    0                   NA
## 10426                    0                    0
## 10427                    0                    0
## 10428                    0                   NA
## 10429                    0                    0
## 10430                    0                   NA
## 10431                    0                    0
## 10432                    0                   NA
## 10433                    0                    0
## 10434                    0                    0
## 10435                    0                    0
## 10436                    0                   NA
## 10437                    0                    0
## 10438                    0                    0
## 10439                    0                   NA
## 10440                    0                    0
## 10441                    0                   NA
## 10442                    0                   NA
## 10443                    0                    0
## 10444                    0                    0
## 10445                    0                   NA
## 10446                    1                   NA
## 10447                    0                    0
## 10448                    0                    0
## 10449                    0                   NA
## 10450                    0                   NA
## 10451                    0                    1
## 10452                    0                   NA
## 10453                    0                    0
## 10454                    0                    0
## 10455                    0                    0
## 10456                    0                   NA
## 10457                    0                    0
## 10458                    0                   NA
## 10459                    1                   NA
## 10460                    5                   42
## 10461                    0                    0
## 10462                    0                    0
## 10463                    0                    0
## 10464                    0                    0
## 10465                    0                   NA
## 10466                    0                    0
## 10467                    0                   NA
## 10468                    0                    0
## 10469                    0                   NA
## 10470                    0                    0
## 10471                    0                    0
## 10472                    0                    0
## 10473                    0                   NA
## 10474                    0                    0
## 10475                    0                   NA
## 10476                    0                    0
## 10477                    0                    0
## 10478                    0                   NA
## 10479                    0                    0
## 10480                    0                    0
## 10481                    0                    0
## 10482                    0                   NA
## 10483                    0                    0
## 10484                    0                   NA
## 10485                    0                   NA
## 10486                    0                    0
## 10487                    0                    0
## 10488                    0                    0
## 10489                    0                    0
## 10490                    0                    0
## 10491                    0                   NA
## 10492                    0                   NA
## 10493                    0                    0
## 10494                    0                   NA
## 10495                    0                    0
## 10496                    0                    0
## 10497                    0                   NA
## 10498                    0                    0
## 10499                    0                    0
## 10500                    0                   NA
## 10501                    0                    0
## 10502                    0                    0
## 10503                    0                   NA
## 10504                    0                    0
## 10505                    0                   NA
## 10506                    0                    0
## 10507                    0                   NA
## 10508                    0                    0
## 10509                    0                    0
## 10510                    0                    0
## 10511                    0                    0
## 10512                    0                    0
## 10513                    0                    0
## 10514                    0                    0
## 10515                    0                    0
## 10516                    0                    0
## 10517                    0                    0
## 10518                    0                    0
## 10519                    0                    0
## 10520                    0                    0
## 10521                    0                    0
## 10522                    0                    1
## 10523                    0                   NA
## 10524                    0                    0
## 10525                    0                    0
## 10526                    0                    0
## 10527                    0                    0
## 10528                    0                    0
## 10529                    0                    0
## 10530                    0                    0
## 10531                    0                    0
## 10532                    0                    0
## 10533                    0                    0
## 10534                    0                    0
## 10535                    0                    0
## 10536                    0                    0
## 10537                    0                    0
## 10538                    0                    0
## 10539                    0                    0
## 10540                    0                    0
## 10541                    0                    0
## 10542                    0                    0
## 10543                    0                    0
## 10544                    0                    0
## 10545                    0                    0
## 10546                    0                    0
## 10547                    0                   NA
## 10548                    0                    0
## 10549                    0                    0
## 10550                    0                    0
## 10551                    0                    0
## 10552                    0                    0
## 10553                    0                    0
## 10554                    0                    0
## 10555                    0                    0
## 10556                    0                    0
## 10557                    0                    0
## 10558                    0                    0
## 10559                    0                    0
## 10560                    0                    0
## 10561                    0                    0
## 10562                    0                    0
## 10563                    0                    0
## 10564                    0                    0
## 10565                    0                    0
## 10566                    0                    0
## 10567                    0                    0
## 10568                    0                    0
## 10569                    0                    0
## 10570                    0                    0
## 10571                    0                   NA
## 10572                    0                   NA
## 10573                    0                    0
## 10574                    0                    0
## 10575                    0                    0
## 10576                    0                    0
## 10577                    0                    0
## 10578                    0                    0
## 10579                    0                   NA
## 10580                    0                    0
## 10581                    0                   NA
## 10582                    0                    0
## 10583                    0                    0
## 10584                    0                    0
## 10585                    0                    0
## 10586                    0                    0
## 10587                    0                    0
## 10588                    0                    0
## 10589                    0                   NA
## 10590                    0                    0
## 10591                    0                    0
## 10592                    0                    0
## 10593                    0                    0
## 10594                    0                    0
## 10595                    0                    0
## 10596                    0                    0
## 10597                    0                    0
## 10598                    0                    0
## 10599                    0                    0
## 10600                    0                    1
## 10601                    0                   NA
## 10602                    0                    0
## 10603                    0                    0
## 10604                    0                    0
## 10605                    0                   NA
## 10606                    0                   NA
## 10607                    0                    0
## 10608                    0                    0
## 10609                    0                    0
## 10610                    0                    0
## 10611                    0                    0
## 10612                    0                   NA
## 10613                   44                   NA
## 10614                    0                    0
## 10615                    0                   NA
## 10616                    0                    0
## 10617                    0                   NA
## 10618                    7                   NA
## 10619                    8                   24
## 10620                    0                    0
## 10621                    0                   NA
## 10622                    0                    0
## 10623                    0                   NA
## 10624                    0                    0
## 10625                    0                   NA
## 10626                    0                    0
## 10627                    0                    0
## 10628                    0                    0
## 10629                    0                   NA
## 10630                    0                    0
## 10631                    0                    0
## 10632                    0                    0
## 10633                    0                   NA
## 10634                    0                    0
## 10635                    0                   NA
## 10636                    0                    0
## 10637                    0                    0
## 10638                    0                    0
## 10639                    0                    0
## 10640                    0                   NA
## 10641                    0                    0
## 10642                    0                   NA
## 10643                    0                   NA
## 10644                    0                    0
## 10645                    0                    0
## 10646                    0                    0
## 10647                    0                   NA
## 10648                    0                    0
## 10649                    0                   NA
## 10650                    0                    0
## 10651                    0                    0
## 10652                    0                   NA
## 10653                    1                   NA
## 10654                    0                    0
## 10655                    0                    0
## 10656                    0                   NA
## 10657                    0                    0
## 10658                    0                    0
## 10659                    0                   NA
## 10660                    0                    6
## 10661                    0                    0
## 10662                    0                    0
## 10663                    0                    1
## 10664                    0                   NA
## 10665                    0                    0
## 10666                    0                    0
## 10667                    0                   NA
## 10668                    0                    0
## 10669                    0                   NA
## 10670                    0                    0
## 10671                    0                    0
## 10672                    0                    0
## 10673                    0                   NA
## 10674                    0                    0
## 10675                    0                   NA
## 10676                    0                    0
## 10677                    0                   NA
## 10678                    0                    0
## 10679                    0                   NA
## 10680                    0                    0
## 10681                    0                   NA
## 10682                    0                    0
## 10683                    0                    0
## 10684                    0                   NA
## 10685                    0                    0
## 10686                    0                    0
## 10687                    0                    0
## 10688                    0                   NA
## 10689                    0                    0
## 10690                    0                   NA
## 10691                    0                    0
## 10692                    0                   NA
## 10693                    0                    0
## 10694                    0                   NA
## 10695                    0                    0
## 10696                    0                   NA
## 10697                    0                    0
## 10698                    0                   NA
## 10699                    0                    0
## 10700                    0                   NA
## 10701                    0                    0
## 10702                    0                   NA
## 10703                    0                    0
## 10704                    0                   NA
## 10705                    0                    0
## 10706                    0                    0
## 10707                    0                   NA
## 10708                    4                    1
## 10709                    5                   NA
## 10710                    0                    0
## 10711                    0                    0
## 10712                    0                    0
## 10713                    0                    0
## 10714                    0                   NA
## 10715                    0                    0
## 10716                    0                   NA
## 10717                    0                    0
## 10718                    0                   NA
## 10719                    0                    0
## 10720                    0                    0
## 10721                    0                    0
## 10722                    0                   NA
## 10723                    0                    0
## 10724                    0                    0
## 10725                    0                   NA
## 10726                    0                   NA
## 10727                    0                    0
## 10728                    0                    0
## 10729                    0                    0
## 10730                    0                   NA
## 10731                    0                    0
## 10732                    0                    0
## 10733                    0                   NA
## 10734                    0                    0
## 10735                    0                   NA
## 10736                    0                    0
## 10737                    0                    0
## 10738                    0                    0
## 10739                    0                    0
## 10740                    0                   NA
## 10741                    0                    0
## 10742                    0                   NA
## 10743                    0                    0
## 10744                    0                   NA
## 10745                    0                    0
## 10746                    0                   NA
## 10747                    0                    0
## 10748                    0                    0
## 10749                    0                   NA
## 10750                    0                    0
## 10751                    0                    0
## 10752                    0                   NA
## 10753                    0                    0
## 10754                    0                   NA
## 10755                    0                    0
## 10756                    0                   NA
## 10757                    0                    0
## 10758                    0                    0
## 10759                    0                    0
## 10760                    0                    0
## 10761                    0                    0
## 10762                    0                    0
## 10763                    0                    0
## 10764                    0                    0
## 10765                    0                    0
## 10766                    0                    0
## 10767                    0                    0
## 10768                    0                    0
## 10769                    0                    0
## 10770                    0                    0
## 10771                    0                    0
## 10772                    0                   NA
## 10773                    0                    0
## 10774                    0                    0
## 10775                    0                    0
## 10776                    0                    0
## 10777                    0                    0
## 10778                    0                    0
## 10779                    0                    0
## 10780                    0                    0
## 10781                    0                    0
## 10782                    0                    0
## 10783                    0                    0
## 10784                    0                    0
## 10785                    0                    0
## 10786                    0                    0
## 10787                    0                    0
## 10788                    0                    0
## 10789                    0                    0
## 10790                    0                    0
## 10791                    0                    0
## 10792                    0                    0
## 10793                    0                    0
## 10794                    0                    0
## 10795                    0                    0
## 10796                    0                   NA
## 10797                    0                    0
## 10798                    0                    0
## 10799                    0                    0
## 10800                    0                    0
## 10801                    0                    0
## 10802                    0                    0
## 10803                    0                    0
## 10804                    0                    0
## 10805                    0                    0
## 10806                    0                    0
## 10807                    0                    0
## 10808                    0                    0
## 10809                    0                    0
## 10810                    0                    0
## 10811                    0                    0
## 10812                    0                    0
## 10813                    0                    0
## 10814                    0                    0
## 10815                    0                    0
## 10816                    0                    0
## 10817                    0                    0
## 10818                    0                    0
## 10819                    0                   NA
## 10820                    0                    0
## 10821                    0                   NA
## 10822                    0                    0
## 10823                    0                    0
## 10824                    0                    0
## 10825                    0                    0
## 10826                    0                    0
## 10827                    0                    0
## 10828                    0                   NA
## 10829                    0                    0
## 10830                    0                   NA
## 10831                    0                    0
## 10832                    0                    0
## 10833                    0                    0
## 10834                    0                    0
## 10835                    0                    0
## 10836                    0                    0
## 10837                    0                    0
## 10838                    0                   NA
## 10839                    0                    0
## 10840                    0                    0
## 10841                    0                    0
## 10842                    0                    0
## 10843                    0                    0
## 10844                    0                    0
## 10845                    0                    0
## 10846                    0                    0
## 10847                    0                    0
## 10848                    0                    0
## 10849                    0                   NA
## 10850                    1                    0
## 10851                    0                    0
## 10852                    0                    0
## 10853                    0                    0
## 10854                    0                   NA
## 10855                    0                    0
## 10856                    0                   NA
## 10857                    0                    0
## 10858                    0                    0
## 10859                    0                    0
## 10860                    0                    0
## 10861                    0                   NA
## 10862                   47                   NA
## 10863                    0                    0
## 10864                    0                   NA
## 10865                    0                    0
## 10866                    0                   NA
## 10867                    8                   NA
## 10868                    9                   50
## 10869                    0                   NA
## 10870                    0                    0
## 10871                    0                    0
## 10872                    0                   NA
## 10873                    1                   10
## 10874                    0                   NA
## 10875                    0                    0
## 10876                    0                    0
## 10877                    0                    0
## 10878                    0                   NA
## 10879                    0                    0
## 10880                    0                    0
## 10881                    0                   NA
## 10882                    0                    0
## 10883                    0                    0
## 10884                    0                   NA
## 10885                    0                    0
## 10886                    0                    0
## 10887                    0                    0
## 10888                    0                    0
## 10889                    0                   NA
## 10890                    0                   NA
## 10891                    0                    1
## 10892                    0                    0
## 10893                    0                   NA
## 10894                    0                    0
## 10895                    0                    0
## 10896                    0                   NA
## 10897                    0                   NA
## 10898                    0                    0
## 10899                    0                    0
## 10900                    0                   NA
## 10901                    0                   10
## 10902                    3                    5
## 10903                    3                   NA
## 10904                    0                    0
## 10905                    0                   NA
## 10906                    0                    0
## 10907                    0                    0
## 10908                    0                    0
## 10909                    0                   NA
## 10910                    0                    0
## 10911                    0                    0
## 10912                    0                   NA
## 10913                    0                    0
## 10914                    0                    0
## 10915                    0                    0
## 10916                    0                   NA
## 10917                    0                    0
## 10918                    0                   NA
## 10919                    0                    0
## 10920                    0                    0
## 10921                    0                    0
## 10922                    0                   NA
## 10923                    0                   NA
## 10924                    0                    0
## 10925                    0                    0
## 10926                    0                   NA
## 10927                    0                    0
## 10928                    0                   NA
## 10929                    0                    0
## 10930                    0                   NA
## 10931                    0                    0
## 10932                    0                    0
## 10933                    0                    0
## 10934                    0                   NA
## 10935                    0                    0
## 10936                    0                    0
## 10937                    0                   NA
## 10938                    0                   NA
## 10939                    0                    0
## 10940                    0                    0
## 10941                    0                   NA
## 10942                    0                    0
## 10943                    0                   NA
## 10944                    0                   NA
## 10945                    0                    1
## 10946                    0                    0
## 10947                    0                   NA
## 10948                    0                   NA
## 10949                    0                    0
## 10950                    0                    0
## 10951                    0                   NA
## 10952                    0                    0
## 10953                    0                    0
## 10954                    0                   NA
## 10955                    0                   NA
## 10956                    0                    0
## 10957                    4                   NA
## 10958                    8                    0
## 10959                    0                    0
## 10960                    0                    0
## 10961                    0                    0
## 10962                    0                    0
## 10963                    0                   NA
## 10964                    0                   NA
## 10965                    0                    0
## 10966                    0                    0
## 10967                    0                   NA
## 10968                    0                    0
## 10969                    0                    0
## 10970                    0                    0
## 10971                    0                   NA
## 10972                    0                    0
## 10973                    0                   NA
## 10974                    0                    0
## 10975                    0                   NA
## 10976                    0                    0
## 10977                    0                    0
## 10978                    0                    0
## 10979                    0                    0
## 10980                    0                   NA
## 10981                    0                    0
## 10982                    0                   NA
## 10983                    0                    0
## 10984                    0                   NA
## 10985                    0                    0
## 10986                    0                    0
## 10987                    0                    0
## 10988                    0                    0
## 10989                    0                   NA
## 10990                    0                    0
## 10991                    0                   NA
## 10992                    0                   NA
## 10993                    0                    0
## 10994                    0                    0
## 10995                    0                   NA
## 10996                    0                    0
## 10997                    0                    0
## 10998                    0                   NA
## 10999                    0                    0
## 11000                    0                    0
## 11001                    0                   NA
## 11002                    0                    0
## 11003                    2                   NA
## 11004                    0                    0
## 11005                    0                   NA
## 11006                    0                    0
## 11007                    0                    0
## 11008                    0                    0
## 11009                    0                    0
## 11010                    0                    0
## 11011                    0                    0
## 11012                    0                    0
## 11013                    0                    0
## 11014                    0                    0
## 11015                    0                    0
## 11016                    0                    0
## 11017                    0                    0
## 11018                    0                    0
## 11019                    0                    0
## 11020                    0                   NA
## 11021                    0                    0
## 11022                    0                    0
## 11023                    0                    0
## 11024                    0                    0
## 11025                    0                    0
## 11026                    0                    0
## 11027                    0                    0
## 11028                    0                    0
## 11029                    0                    0
## 11030                    0                    0
## 11031                    0                    0
## 11032                    0                    0
## 11033                    0                    0
## 11034                    0                    0
## 11035                    0                    0
## 11036                    0                    0
## 11037                    0                    0
## 11038                    0                    0
## 11039                    0                    0
## 11040                    0                    0
## 11041                    0                    0
## 11042                    0                    0
## 11043                    0                    0
## 11044                    0                    0
## 11045                    0                   NA
## 11046                    0                    0
## 11047                    0                    0
## 11048                    0                    0
## 11049                    0                    0
## 11050                    0                    0
## 11051                    0                    0
## 11052                    0                    0
## 11053                    0                    0
## 11054                    0                    0
## 11055                    0                    0
## 11056                    0                    0
## 11057                    0                    0
## 11058                    0                    0
## 11059                    0                    0
## 11060                    0                    0
## 11061                    0                    0
## 11062                    0                    0
## 11063                    0                    0
## 11064                    0                    0
## 11065                    0                    0
## 11066                    0                    0
## 11067                    0                    0
## 11068                    0                    0
## 11069                    0                   NA
## 11070                    0                   NA
## 11071                    0                    0
## 11072                    0                    0
## 11073                    0                    0
## 11074                    0                    0
## 11075                    0                    0
## 11076                    0                   NA
## 11077                    0                    0
## 11078                    0                   NA
## 11079                    0                    0
## 11080                    0                    0
## 11081                    0                    0
## 11082                    0                    0
## 11083                    0                    0
## 11084                    0                    0
## 11085                    0                    0
## 11086                    0                    0
## 11087                    0                    0
## 11088                    0                   NA
## 11089                    0                    0
## 11090                    0                    0
## 11091                    0                    0
## 11092                    0                    0
## 11093                    0                    0
## 11094                    0                    0
## 11095                    0                    0
## 11096                    0                    0
## 11097                    0                    0
## 11098                    1                   NA
## 11099                    0                    0
## 11100                    0                    0
## 11101                    0                    0
## 11102                    0                    0
## 11103                    0                   NA
## 11104                    0                   NA
## 11105                    0                    0
## 11106                    0                    0
## 11107                    0                    0
## 11108                    0                    0
## 11109                    0                    0
## 11110                    0                   NA
## 11111                   35                   NA
## 11112                    0                    0
## 11113                    0                   NA
## 11114                    0                    0
## 11115                    0                   NA
## 11116                    9                   NA
## 11117                   11                   52
## 11118                    0                    0
## 11119                    0                   NA
## 11120                    0                   NA
## 11121                    0                    0
## 11122                    2                   NA
## 11123                    1                    0
## 11124                    0                    0
## 11125                    0                    0
## 11126                    0                    0
## 11127                    0                   NA
## 11128                    0                    0
## 11129                    0                    0
## 11130                    0                   NA
## 11131                    0                    0
## 11132                    0                   NA
## 11133                    0                    0
## 11134                    0                    0
## 11135                    0                    0
## 11136                    0                    0
## 11137                    0                    0
## 11138                    0                   NA
## 11139                    0                    0
## 11140                    0                   NA
## 11141                    0                    0
## 11142                    0                   NA
## 11143                    0                    0
## 11144                    0                    0
## 11145                    0                   NA
## 11146                    0                   NA
## 11147                    0                    0
## 11148                    0                    0
## 11149                    0                    0
## 11150                    0                   NA
## 11151                    1                    3
## 11152                    1                   NA
## 11153                    0                    0
## 11154                    0                   NA
## 11155                    0                    0
## 11156                    0                    0
## 11157                    1                    0
## 11158                    1                   NA
## 11159                    0                    0
## 11160                    0                    0
## 11161                    0                    0
## 11162                    0                   NA
## 11163                    0                    0
## 11164                    0                    0
## 11165                    0                   NA
## 11166                    0                    0
## 11167                    0                   NA
## 11168                    0                    0
## 11169                    0                    0
## 11170                    0                    0
## 11171                    0                   NA
## 11172                    0                   NA
## 11173                    0                    0
## 11174                    0                   NA
## 11175                    0                    0
## 11176                    0                    0
## 11177                    0                   NA
## 11178                    0                   NA
## 11179                    0                    0
## 11180                    0                    0
## 11181                    0                    0
## 11182                    0                   NA
## 11183                    0                    0
## 11184                    0                    0
## 11185                    0                   NA
## 11186                    0                    0
## 11187                    0                    0
## 11188                    0                   NA
## 11189                    0                    0
## 11190                    0                   NA
## 11191                    0                   NA
## 11192                    0                    0
## 11193                    0                    0
## 11194                    0                   NA
## 11195                    0                   NA
## 11196                    0                    0
## 11197                    0                    0
## 11198                    0                   NA
## 11199                    0                    0
## 11200                    0                   NA
## 11201                    0                    0
## 11202                    0                   NA
## 11203                    0                    0
## 11204                    0                    0
## 11205                    0                   NA
## 11206                    8                   NA
## 11207                    5                   37
## 11208                    0                    0
## 11209                    0                    0
## 11210                    0                    0
## 11211                    0                    0
## 11212                    0                   NA
## 11213                    0                    0
## 11214                    0                   NA
## 11215                    0                    0
## 11216                    0                   NA
## 11217                    0                    0
## 11218                    0                    0
## 11219                    0                    0
## 11220                    0                   NA
## 11221                    0                    0
## 11222                    0                    0
## 11223                    0                   NA
## 11224                    0                    0
## 11225                    0                   NA
## 11226                    0                    0
## 11227                    0                    0
## 11228                    0                    0
## 11229                    0                   NA
## 11230                    0                    0
## 11231                    0                   NA
## 11232                    0                    0
## 11233                    0                   NA
## 11234                    0                    0
## 11235                    0                    0
## 11236                    0                    0
## 11237                    0                   NA
## 11238                    0                    0
## 11239                    0                   NA
## 11240                    0                    0
## 11241                    0                   NA
## 11242                    0                    0
## 11243                    0                    0
## 11244                    0                   NA
## 11245                    0                    0
## 11246                    0                    0
## 11247                    1                   NA
## 11248                    0                    0
## 11249                    0                    0
## 11250                    0                   NA
## 11251                    0                    0
## 11252                    0                   NA
## 11253                    0                   NA
## 11254                    0                    0
## 11255                    0                    0
## 11256                    0                    0
## 11257                    0                    0
## 11258                    0                    0
## 11259                    0                    0
## 11260                    0                    0
## 11261                    0                    0
## 11262                    0                    0
## 11263                    0                    0
## 11264                    0                    0
## 11265                    0                    0
## 11266                    0                    0
## 11267                    0                    0
## 11268                    0                    0
## 11269                    0                    0
## 11270                    0                   NA
## 11271                    0                    0
## 11272                    0                    0
## 11273                    0                    0
## 11274                    0                    0
## 11275                    0                    0
## 11276                    0                    0
## 11277                    0                    0
## 11278                    0                    0
## 11279                    0                    0
## 11280                    0                    0
## 11281                    0                    0
## 11282                    0                    0
## 11283                    0                    0
## 11284                    0                    0
## 11285                    0                    0
## 11286                    0                    0
## 11287                    0                    0
## 11288                    0                    0
## 11289                    0                    0
## 11290                    0                    0
## 11291                    0                    0
## 11292                    0                    0
## 11293                    0                    0
## 11294                    0                   NA
## 11295                    0                    0
## 11296                    0                    0
## 11297                    0                    0
## 11298                    0                    0
## 11299                    0                    0
## 11300                    0                    0
## 11301                    0                    0
## 11302                    0                    0
## 11303                    0                    0
## 11304                    0                    0
## 11305                    0                    0
## 11306                    0                    0
## 11307                    0                    0
## 11308                    0                    0
## 11309                    0                    0
## 11310                    0                    0
## 11311                    0                    0
## 11312                    0                    0
## 11313                    0                    0
## 11314                    0                    0
## 11315                    0                    0
## 11316                    0                    0
## 11317                    0                    0
## 11318                    0                   NA
## 11319                    0                   NA
## 11320                    0                    0
## 11321                    0                    0
## 11322                    0                    0
## 11323                    0                    0
## 11324                    0                    0
## 11325                    0                    0
## 11326                    0                   NA
## 11327                    0                    0
## 11328                    0                   NA
## 11329                    0                    0
## 11330                    0                    0
## 11331                    0                    0
## 11332                    0                    0
## 11333                    0                    0
## 11334                    0                    0
## 11335                    0                    0
## 11336                    0                    0
## 11337                    0                   NA
## 11338                    0                    0
## 11339                    0                    0
## 11340                    0                    0
## 11341                    0                    0
## 11342                    0                    0
## 11343                    0                    0
## 11344                    0                    0
## 11345                    0                    0
## 11346                    0                    0
## 11347                    1                   NA
## 11348                    5                    0
## 11349                    0                    0
## 11350                    0                    0
## 11351                    0                    0
## 11352                    0                   NA
## 11353                    0                    0
## 11354                    0                   NA
## 11355                    0                    0
## 11356                    0                    0
## 11357                    0                    0
## 11358                    0                    0
## 11359                    0                   NA
## 11360                   42                   NA
## 11361                    0                   NA
## 11362                    0                    0
## 11363                    0                    0
## 11364                    0                   NA
## 11365                   11                   NA
## 11366                   12                  116
## 11367                    0                   NA
## 11368                    0                    0
## 11369                    0                    0
## 11370                    0                   NA
## 11371                    1                   NA
## 11372                    0                    0
## 11373                    0                    0
## 11374                    0                    0
## 11375                    0                   NA
## 11376                    0                    0
## 11377                    0                    0
## 11378                    0                    0
## 11379                    0                    0
## 11380                    0                   NA
## 11381                    0                    0
## 11382                    0                   NA
## 11383                    0                    0
## 11384                    0                    0
## 11385                    0                    0
## 11386                    0                    0
## 11387                    0                   NA
## 11388                    0                    0
## 11389                    0                   NA
## 11390                    0                   NA
## 11391                    0                    0
## 11392                    0                    0
## 11393                    0                    0
## 11394                    0                   NA
## 11395                    0                    0
## 11396                    0                   NA
## 11397                    0                    0
## 11398                    0                    6
## 11399                    0                   NA
## 11400                   11                    0
## 11401                    5                   NA
## 11402                    0                    0
## 11403                    0                   NA
## 11404                    0                    0
## 11405                    0                    0
## 11406                    0                    3
## 11407                    0                   NA
## 11408                    0                    0
## 11409                    0                    0
## 11410                    0                    0
## 11411                    0                   NA
## 11412                    0                    0
## 11413                    0                    0
## 11414                    0                   NA
## 11415                    0                    0
## 11416                    0                   NA
## 11417                    0                    0
## 11418                    0                    0
## 11419                    0                    0
## 11420                    0                   NA
## 11421                    0                    0
## 11422                    0                   NA
## 11423                    0                    0
## 11424                    0                   NA
## 11425                    0                    0
## 11426                    0                   NA
## 11427                    0                    0
## 11428                    0                   NA
## 11429                    0                    0
## 11430                    0                    0
## 11431                    0                    0
## 11432                    0                   NA
## 11433                    0                    0
## 11434                    0                    0
## 11435                    0                   NA
## 11436                    0                    0
## 11437                    0                   NA
## 11438                    0                    0
## 11439                    0                   NA
## 11440                    0                    0
## 11441                    0                   NA
## 11442                    0                   NA
## 11443                    1                    0
## 11444                    0                    0
## 11445                    0                   NA
## 11446                    0                   NA
## 11447                    0                    0
## 11448                    0                    0
## 11449                    0                   NA
## 11450                    0                    0
## 11451                    0                   NA
## 11452                    0                    0
## 11453                    0                    0
## 11454                    0                   NA
## 11455                   18                   66
## 11456                    6                   NA
## 11457                    0                    0
## 11458                    0                    0
## 11459                    0                    0
## 11460                    0                    0
## 11461                    0                   NA
## 11462                    0                    0
## 11463                    0                   NA
## 11464                    0                    0
## 11465                    0                   NA
## 11466                    0                    0
## 11467                    0                    0
## 11468                    0                    0
## 11469                    0                   NA
## 11470                    0                    0
## 11471                    0                   NA
## 11472                    0                    0
## 11473                    0                   NA
## 11474                    0                    0
## 11475                    0                    0
## 11476                    0                    0
## 11477                    0                    0
## 11478                    0                   NA
## 11479                    0                   NA
## 11480                    0                    0
## 11481                    0                    0
## 11482                    1                   NA
## 11483                    0                    0
## 11484                    0                    0
## 11485                    0                    0
## 11486                    0                    0
## 11487                    0                   NA
## 11488                    0                    0
## 11489                    0                   NA
## 11490                    0                   NA
## 11491                    0                    0
## 11492                    0                    0
## 11493                    0                    0
## 11494                    0                   NA
## 11495                    0                    0
## 11496                    0                   NA
## 11497                    0                    0
## 11498                    0                    0
## 11499                    0                   NA
## 11500                    0                    0
## 11501                    0                   NA
## 11502                    0                    0
## 11503                    0                    0
## 11504                    0                    0
## 11505                    0                    0
## 11506                    0                    0
## 11507                    0                    0
## 11508                    0                    0
## 11509                    0                    0
## 11510                    0                    0
## 11511                    0                    0
## 11512                    0                    0
## 11513                    0                    0
## 11514                    0                    0
## 11515                    0                    0
## 11516                    0                    0
## 11517                    0                    0
## 11518                    0                    0
## 11519                    0                    0
## 11520                    0                    0
## 11521                    0                    0
## 11522                    0                    0
## 11523                    0                    0
## 11524                    0                    0
## 11525                    0                    0
## 11526                    0                    0
## 11527                    0                    0
## 11528                    0                    0
## 11529                    0                    0
## 11530                    0                    0
## 11531                    0                    0
## 11532                    0                    0
## 11533                    0                    0
## 11534                    0                    0
## 11535                    0                    0
## 11536                    0                    0
## 11537                    0                   NA
## 11538                    0                    0
## 11539                    0                    0
## 11540                    0                    0
## 11541                    0                    0
## 11542                    0                    0
## 11543                    0                    0
## 11544                    0                    0
## 11545                    0                   NA
## 11546                    0                    0
## 11547                    0                    0
## 11548                    0                    0
## 11549                    0                    0
## 11550                    0                    0
## 11551                    0                    0
## 11552                    0                    0
## 11553                    0                    0
## 11554                    0                    0
## 11555                    0                   NA
## 11556                    0                    0
## 11557                    0                    0
## 11558                    0                    0
## 11559                    0                    0
## 11560                    0                    0
## 11561                    0                    0
## 11562                    0                    0
## 11563                    0                    0
## 11564                    0                    0
## 11565                    0                    0
## 11566                    0                    0
## 11567                    0                   NA
## 11568                    0                   NA
## 11569                    0                    0
## 11570                    0                    0
## 11571                    0                    0
## 11572                    0                    0
## 11573                    0                    0
## 11574                    0                    0
## 11575                    0                    0
## 11576                    0                   NA
## 11577                    0                    0
## 11578                    0                    0
## 11579                    0                    0
## 11580                    0                    0
## 11581                    0                    0
## 11582                    0                    0
## 11583                    0                    0
## 11584                    0                    1
## 11585                    0                    0
## 11586                    0                    0
## 11587                    0                    0
## 11588                    0                    0
## 11589                    0                   NA
## 11590                    0                    0
## 11591                    0                    0
## 11592                    0                    0
## 11593                    0                    0
## 11594                    0                    0
## 11595                    4                   NA
## 11596                    1                    0
## 11597                    0                    0
## 11598                    0                    0
## 11599                    0                    0
## 11600                    0                    0
## 11601                    0                    0
## 11602                    0                    0
## 11603                    0                    0
## 11604                    0                    0
## 11605                   32                   NA
## 11606                    0                    0
## 11607                    0                   NA
## 11608                    0                    0
## 11609                   12                   NA
## 11610                   11                    0
## 11611                    0                   NA
## 11612                    0                    0
## 11613                    0                    0
## 11614                    0                   NA
## 11615                    0                   11
## 11616                    0                    0
## 11617                    0                   NA
## 11618                    0                    0
## 11619                    0                    0
## 11620                    0                   NA
## 11621                    0                    0
## 11622                    0                    0
## 11623                    0                    0
## 11624                    0                   NA
## 11625                    0                    4
## 11626                    0                    0
## 11627                    0                    0
## 11628                    0                    0
## 11629                    0                    0
## 11630                    0                   NA
## 11631                    0                    1
## 11632                    0                    0
## 11633                    0                    0
## 11634                    0                    0
## 11635                    0                    0
## 11636                    0                    0
## 11637                    0                   NA
## 11638                    0                    0
## 11639                    0                   NA
## 11640                    6                   NA
## 11641                    0                    0
## 11642                    0                    0
## 11643                    0                    0
## 11644                    0                    0
## 11645                    0                    0
## 11646                    0                    0
## 11647                    0                    0
## 11648                    0                    0
## 11649                    0                    0
## 11650                    0                    0
## 11651                    0                    0
## 11652                    0                   NA
## 11653                    0                    0
## 11654                    0                    0
## 11655                    0                   NA
## 11656                    0                    0
## 11657                    0                    0
## 11658                    0                   NA
## 11659                    0                    0
## 11660                    0                    0
## 11661                    0                    0
## 11662                    0                   NA
## 11663                    0                    0
## 11664                    0                    0
## 11665                    0                   NA
## 11666                    0                    0
## 11667                    0                    0
## 11668                    0                    0
## 11669                    0                   NA
## 11670                    0                   NA
## 11671                    0                    0
## 11672                    0                    0
## 11673                    0                    0
## 11674                    1                    0
## 11675                    1                   NA
## 11676                    0                    0
## 11677                    0                   NA
## 11678                    0                    0
## 11679                    0                    0
## 11680                    0                    0
## 11681                    0                   NA
## 11682                    0                    0
## 11683                    0                    0
## 11684                   17                   NA
## 11685                   27                   11
## 11686                    0                    0
## 11687                    0                    0
## 11688                    0                   NA
## 11689                    0                    0
## 11690                    0                    0
## 11691                    0                    0
## 11692                    0                    0
## 11693                    0                    0
## 11694                    0                    0
## 11695                    0                    0
## 11696                    0                    0
## 11697                    0                   NA
## 11698                    0                    0
## 11699                    0                   NA
## 11700                    0                    0
## 11701                    0                    0
## 11702                    0                    0
## 11703                    0                   NA
## 11704                    0                    0
## 11705                    0                    0
## 11706                    0                   NA
## 11707                    1                    0
## 11708                    0                    0
## 11709                    0                    0
## 11710                    0                    0
## 11711                    1                    0
## 11712                    0                   NA
## 11713                    0                   NA
## 11714                    0                    0
## 11715                    0                   NA
## 11716                    0                    2
## 11717                    0                    0
## 11718                    0                   NA
## 11719                    0                    0
## 11720                    0                    0
## 11721                    0                   NA
## 11722                    0                    0
## 11723                    0                    0
## 11724                    0                    0
## 11725                    0                   NA
## 11726                    0                    0
## 11727                    0                    0
## 11728                    0                    0
## 11729                    0                    0
## 11730                    0                    0
## 11731                    0                    0
## 11732                    0                    0
## 11733                    0                    0
## 11734                    0                    0
## 11735                    0                    0
## 11736                    0                    0
## 11737                    0                    0
## 11738                    0                    0
## 11739                    0                    0
## 11740                    0                    0
## 11741                    0                    0
## 11742                    0                    0
## 11743                    0                    0
## 11744                    0                    0
## 11745                    0                    0
## 11746                    0                    0
## 11747                    0                    0
## 11748                    0                    0
## 11749                    0                    0
## 11750                    0                    0
## 11751                    0                    0
## 11752                    0                    0
## 11753                    0                    0
## 11754                    0                    0
## 11755                    0                    0
## 11756                    0                    0
## 11757                    0                    0
## 11758                    0                    0
## 11759                    0                    0
## 11760                    0                    0
## 11761                    0                    0
## 11762                    0                    0
## 11763                    0                    0
## 11764                    0                    0
## 11765                    0                    0
## 11766                    0                    0
## 11767                    0                    0
## 11768                    0                    0
## 11769                    0                    0
## 11770                    0                    0
## 11771                    0                    0
## 11772                    0                    0
## 11773                    0                    0
## 11774                    0                    0
## 11775                    0                    0
## 11776                    0                    0
## 11777                    0                    0
## 11778                    0                    0
## 11779                    0                    0
## 11780                    0                    0
## 11781                    0                    0
## 11782                    0                    0
## 11783                    0                   NA
## 11784                    0                    0
## 11785                    0                    0
## 11786                    0                    0
## 11787                    0                    0
## 11788                    0                   NA
## 11789                    0                    0
## 11790                    0                   NA
## 11791                    0                    0
## 11792                    0                   NA
## 11793                    0                    0
## 11794                    0                    0
## 11795                    0                    0
## 11796                    0                    0
## 11797                    0                    0
## 11798                    0                    0
## 11799                    0                    0
## 11800                    0                    0
## 11801                    0                    0
## 11802                    0                    0
## 11803                    0                    0
## 11804                    0                    0
## 11805                    0                    0
## 11806                    0                    0
## 11807                    0                    0
## 11808                    0                    0
## 11809                    0                    0
## 11810                    0                    0
## 11811                    0                    0
## 11812                    0                    0
## 11813                    0                    0
## 11814                    0                    0
## 11815                    0                    0
## 11816                    3                   NA
## 11817                    4                    0
## 11818                    0                    0
## 11819                    0                    0
## 11820                    0                    0
## 11821                    0                   NA
## 11822                    0                    0
## 11823                    0                    0
## 11824                    0                    0
## 11825                    0                    0
## 11826                    0                    0
## 11827                   37                   NA
## 11828                    0                   NA
## 11829                    0                    0
## 11830                    0                    0
## 11831                   15                  261
## 11832                   11                   NA
## 11833                    2                    0
## 11834                    0                   NA
## 11835                    0                    0
## 11836                    0                   NA
## 11837                    0                    0
## 11838                    0                    0
## 11839                    0                    0
## 11840                    0                    0
## 11841                    0                    0
## 11842                    0                    0
## 11843                    0                    1
## 11844                    0                   NA
## 11845                    0                    0
## 11846                    0                    0
## 11847                    0                    0
## 11848                    0                    0
## 11849                    0                    0
## 11850                    0                    0
## 11851                    0                    0
## 11852                    0                   NA
## 11853                    0                    0
## 11854                    0                    0
## 11855                    0                    0
## 11856                    0                   NA
## 11857                    0                    0
## 11858                    0                    0
## 11859                    0                   NA
## 11860                    7                   11
## 11861                    4                   NA
## 11862                    0                    0
## 11863                    0                    0
## 11864                    0                    0
## 11865                    0                    0
## 11866                    0                    0
## 11867                    0                    0
## 11868                    0                    0
## 11869                    0                   NA
## 11870                    0                    0
## 11871                    0                    0
## 11872                    0                    0
## 11873                    0                   NA
## 11874                    0                    0
## 11875                    0                    0
## 11876                    0                    0
## 11877                    0                   NA
## 11878                    0                    0
## 11879                    0                    0
## 11880                    0                   NA
## 11881                    0                    0
## 11882                    0                    0
## 11883                    0                   NA
## 11884                    0                    0
## 11885                    0                    0
## 11886                    0                    0
## 11887                    0                   NA
## 11888                    0                    0
## 11889                    0                   NA
## 11890                    0                    0
## 11891                    0                   NA
## 11892                    0                    0
## 11893                    0                    0
## 11894                    0                   NA
## 11895                    0                    0
## 11896                    0                   NA
## 11897                    1                   NA
## 11898                    0                    0
## 11899                    0                    0
## 11900                    0                   NA
## 11901                    0                    0
## 11902                    0                    0
## 11903                    0                    0
## 11904                    0                   NA
## 11905                    0                    0
## 11906                    0                   NA
## 11907                    0                    0
## 11908                   28                   NA
## 11909                   28                  116
## 11910                    0                    0
## 11911                    0                    0
## 11912                    0                    0
## 11913                    0                    0
## 11914                    0                    0
## 11915                    0                    0
## 11916                    0                    0
## 11917                    0                    0
## 11918                    0                    0
## 11919                    0                    0
## 11920                    0                   NA
## 11921                    0                    0
## 11922                    0                   NA
## 11923                    0                    0
## 11924                    0                    0
## 11925                    0                   NA
## 11926                    0                   NA
## 11927                    0                    0
## 11928                    0                    1
## 11929                    0                   NA
## 11930                    0                    0
## 11931                    0                   NA
## 11932                    0                   NA
## 11933                    0                    0
## 11934                    0                    0
## 11935                    0                    0
## 11936                    0                    0
## 11937                    1                    0
## 11938                    0                   NA
## 11939                    0                   NA
## 11940                    0                    0
## 11941                    0                   NA
## 11942                    0                    1
## 11943                    0                    0
## 11944                    0                   NA
## 11945                    0                   NA
## 11946                    0                    0
## 11947                    0                    0
## 11948                    0                   NA
## 11949                    0                    0
## 11950                    0                   NA
## 11951                    0                    0
## 11952                    0                    0
## 11953                    0                    0
## 11954                    0                   NA
## 11955                    0                    0
## 11956                    0                    0
## 11957                    0                    0
## 11958                    0                    0
## 11959                    0                    0
## 11960                    0                    0
## 11961                    0                    0
## 11962                    0                    0
## 11963                    0                    0
## 11964                    0                    0
## 11965                    0                    0
## 11966                    0                    0
## 11967                    0                    0
## 11968                    0                    0
## 11969                    0                    0
## 11970                    0                    0
## 11971                    0                    0
## 11972                    0                    0
## 11973                    0                    0
## 11974                    0                    0
## 11975                    0                    0
## 11976                    0                    0
## 11977                    0                    0
## 11978                    0                    0
## 11979                    0                    0
## 11980                    0                    0
## 11981                    0                    0
## 11982                    0                    0
## 11983                    0                    0
## 11984                    0                    0
## 11985                    0                    0
## 11986                    0                    0
## 11987                    0                    0
## 11988                    0                    0
## 11989                    0                    0
## 11990                    0                    0
## 11991                    0                    0
## 11992                    0                    0
## 11993                    0                    0
## 11994                    0                    0
## 11995                    0                    0
## 11996                    0                   NA
## 11997                    0                    0
## 11998                    0                    0
## 11999                    0                    0
## 12000                    0                    0
## 12001                    0                    0
## 12002                    0                    0
## 12003                    0                    0
## 12004                    0                    0
## 12005                    0                    0
## 12006                    0                    0
## 12007                    0                    0
## 12008                    0                    0
## 12009                    0                    0
## 12010                    0                    0
## 12011                    0                    0
## 12012                    0                    0
## 12013                    0                    0
## 12014                    0                    0
## 12015                    0                    0
## 12016                    0                    0
## 12017                    0                   NA
## 12018                    0                   NA
## 12019                    0                   NA
## 12020                    0                    0
## 12021                    0                    0
## 12022                    0                    0
## 12023                    0                    0
## 12024                    0                    0
## 12025                    0                    0
## 12026                    0                    0
## 12027                    0                   NA
## 12028                    0                    0
## 12029                    0                    0
## 12030                    0                    0
## 12031                    0                    0
## 12032                    0                    0
## 12033                    0                    0
## 12034                    0                    0
## 12035                    0                    0
## 12036                    0                    0
## 12037                    0                    0
## 12038                    0                    0
## 12039                    0                    0
## 12040                    0                    0
## 12041                    0                    0
## 12042                    0                    0
## 12043                    0                    0
## 12044                    0                    0
## 12045                    2                   NA
## 12046                    1                    0
## 12047                    0                    0
## 12048                    0                    0
## 12049                    0                    0
## 12050                    0                    0
## 12051                    0                   NA
## 12052                    0                    0
## 12053                    0                    0
## 12054                    0                    0
## 12055                    0                    0
## 12056                   31                   NA
## 12057                    0                    0
## 12058                    0                   NA
## 12059                    0                    0
## 12060                   15                   NA
## 12061                   15                  187
## 12062                    0                    0
## 12063                    0                   NA
## 12064                    0                    0
## 12065                    0                   NA
## 12066                    0                    0
## 12067                    0                   NA
## 12068                    0                    0
## 12069                    0                    0
## 12070                    0                    0
## 12071                    0                    0
## 12072                    0                    0
## 12073                    0                    0
## 12074                    0                    0
## 12075                    0                   NA
## 12076                    0                    0
## 12077                    0                    0
## 12078                    0                    0
## 12079                    0                    0
## 12080                    0                    0
## 12081                    0                   NA
## 12082                    0                    0
## 12083                    0                    0
## 12084                    0                    0
## 12085                    0                    0
## 12086                    0                    0
## 12087                    0                   NA
## 12088                    0                    0
## 12089                    3                   NA
## 12090                    0                    0
## 12091                    0                    0
## 12092                    0                    0
## 12093                    0                    0
## 12094                    0                    0
## 12095                    0                   NA
## 12096                    0                    0
## 12097                    0                    0
## 12098                    0                    0
## 12099                    0                    0
## 12100                    0                    0
## 12101                    0                    0
## 12102                    0                    0
## 12103                    0                    0
## 12104                    0                    0
## 12105                    0                   NA
## 12106                    0                    0
## 12107                    0                    0
## 12108                    0                    0
## 12109                    0                   NA
## 12110                    0                    0
## 12111                    0                   NA
## 12112                    0                    0
## 12113                    0                    0
## 12114                    0                    0
## 12115                    0                    0
## 12116                    0                   NA
## 12117                    0                    0
## 12118                    0                    0
## 12119                    0                   NA
## 12120                    0                    0
## 12121                    0                    0
## 12122                    0                   NA
## 12123                    2                    0
## 12124                    0                   NA
## 12125                    0                    0
## 12126                    0                   NA
## 12127                    0                    0
## 12128                    0                   NA
## 12129                    0                    0
## 12130                    0                    0
## 12131                    0                   NA
## 12132                    0                    0
## 12133                    0                   NA
## 12134                    0                    0
## 12135                    0                   NA
## 12136                   27                   NA
## 12137                   41                  138
## 12138                    0                    0
## 12139                    0                    0
## 12140                    0                    0
## 12141                    0                   NA
## 12142                    0                    0
## 12143                    0                    0
## 12144                    0                    0
## 12145                    0                    0
## 12146                    0                    0
## 12147                    0                    0
## 12148                    0                    0
## 12149                    0                   NA
## 12150                    0                    0
## 12151                    0                   NA
## 12152                    0                    0
## 12153                    0                    0
## 12154                    0                   NA
## 12155                    0                    0
## 12156                    0                    0
## 12157                    0                   NA
## 12158                    0                    0
## 12159                    0                    0
## 12160                    0                   NA
## 12161                    0                    0
## 12162                    0                    0
## 12163                    0                   NA
## 12164                    0                    0
## 12165                    1                    0
## 12166                    1                   NA
## 12167                    0                   NA
## 12168                    0                    0
## 12169                    0                   NA
## 12170                    1                    0
## 12171                    0                    0
## 12172                    0                    0
## 12173                    0                   NA
## 12174                    0                    0
## 12175                    1                   NA
## 12176                    0                    0
## 12177                    0                    0
## 12178                    0                   NA
## 12179                    0                    0
## 12180                    0                    0
## 12181                    0                   NA
## 12182                    0                    0
## 12183                    0                    0
## 12184                    0                    0
## 12185                    0                    0
## 12186                    0                    0
## 12187                    0                    0
## 12188                    0                    0
## 12189                    0                    0
## 12190                    0                    0
## 12191                    0                    0
## 12192                    0                    0
## 12193                    0                    0
## 12194                    0                    0
## 12195                    0                    0
## 12196                    0                   NA
## 12197                    0                    0
## 12198                    0                    0
## 12199                    0                    0
## 12200                    0                    0
## 12201                    0                    0
## 12202                    0                    0
## 12203                    0                    0
## 12204                    0                    0
## 12205                    0                    0
## 12206                    0                    0
## 12207                    0                    0
## 12208                    0                    0
## 12209                    0                    0
## 12210                    0                    0
## 12211                    0                    0
## 12212                    0                    0
## 12213                    0                    0
## 12214                    0                    0
## 12215                    0                    0
## 12216                    0                    0
## 12217                    0                   NA
## 12218                    0                    0
## 12219                    0                    0
## 12220                    0                    0
## 12221                    0                    0
## 12222                    0                    0
## 12223                    0                    0
## 12224                    0                    0
## 12225                    0                   NA
## 12226                    0                    0
## 12227                    0                    0
## 12228                    0                    0
## 12229                    0                    0
## 12230                    0                   NA
## 12231                    0                    0
## 12232                    0                    0
## 12233                    0                    0
## 12234                    0                    0
## 12235                    0                    0
## 12236                    0                    0
## 12237                    0                    0
## 12238                    0                    0
## 12239                    0                    0
## 12240                    0                    0
## 12241                    0                    0
## 12242                    0                   NA
## 12243                    0                    0
## 12244                    0                    0
## 12245                    0                    0
## 12246                    0                    0
## 12247                    0                   NA
## 12248                    0                    0
## 12249                    0                   NA
## 12250                    0                    0
## 12251                    0                   NA
## 12252                    0                    0
## 12253                    0                    0
## 12254                    0                    0
## 12255                    0                    0
## 12256                    0                    0
## 12257                    0                    0
## 12258                    0                   NA
## 12259                    0                    0
## 12260                    0                    0
## 12261                    0                    0
## 12262                    0                    0
## 12263                    0                    0
## 12264                    0                    0
## 12265                    0                    0
## 12266                    0                    0
## 12267                    0                    0
## 12268                    0                    0
## 12269                    0                    0
## 12270                    0                    0
## 12271                    0                    0
## 12272                    0                    0
## 12273                    0                    0
## 12274                    0                    0
## 12275                    0                    0
## 12276                    2                    0
## 12277                    1                   NA
## 12278                    0                    0
## 12279                    0                    0
## 12280                    0                    0
## 12281                    0                   NA
## 12282                    0                    4
## 12283                    0                    0
## 12284                    0                    0
## 12285                    0                   NA
## 12286                    0                    0
## 12287                    0                    0
## 12288                   30                   NA
## 12289                    0                    0
## 12290                    0                   NA
## 12291                    0                    0
## 12292                   15                   NA
## 12293                   17                  174
## 12294                    1                    0
## 12295                    2                   NA
## 12296                    0                   NA
## 12297                    0                    1
## 12298                    0                   NA
## 12299                    0                    3
## 12300                    0                    0
## 12301                    0                    0
## 12302                    0                    0
## 12303                    0                   NA
## 12304                    0                    0
## 12305                    0                    0
## 12306                    0                   NA
## 12307                    0                    0
## 12308                    0                   NA
## 12309                    0                    0
## 12310                    0                    0
## 12311                    0                    0
## 12312                    0                    0
## 12313                    0                    0
## 12314                    0                    0
## 12315                    0                   NA
## 12316                    0                    0
## 12317                    0                    0
## 12318                    0                   NA
## 12319                    0                    0
## 12320                    0                    0
## 12321                    0                    0
## 12322                    0                   NA
## 12323                    0                   NA
## 12324                    0                    0
## 12325                    7                   94
## 12326                    7                   NA
## 12327                    0                    0
## 12328                    0                    0
## 12329                    0                    0
## 12330                    0                    0
## 12331                    0                    0
## 12332                    0                    0
## 12333                    0                    0
## 12334                    0                   NA
## 12335                    0                    0
## 12336                    0                    0
## 12337                    0                    0
## 12338                    0                   NA
## 12339                    0                    0
## 12340                    0                    0
## 12341                    0                    0
## 12342                    0                   NA
## 12343                    0                    0
## 12344                    0                    0
## 12345                    0                   NA
## 12346                    0                    0
## 12347                    0                    0
## 12348                    0                   NA
## 12349                    0                    0
## 12350                    0                   NA
## 12351                    0                    0
## 12352                    0                    0
## 12353                    0                   NA
## 12354                    0                    0
## 12355                    0                   NA
## 12356                    0                    0
## 12357                    0                   NA
## 12358                    0                    1
## 12359                    0                   NA
## 12360                    0                    0
## 12361                    0                    0
## 12362                    0                   NA
## 12363                    3                   NA
## 12364                    3                    0
## 12365                    0                    0
## 12366                    0                   NA
## 12367                    0                   NA
## 12368                    0                    1
## 12369                    0                    0
## 12370                    0                   NA
## 12371                    0                    0
## 12372                    0                    0
## 12373                    0                   NA
## 12374                    0                   NA
## 12375                    0                    0
## 12376                   41                   NA
## 12377                   49                  109
## 12378                    0                    0
## 12379                    0                    0
## 12380                    0                    0
## 12381                    0                    0
## 12382                    0                    0
## 12383                    0                    0
## 12384                    0                    0
## 12385                    0                    0
## 12386                    0                    0
## 12387                    0                    0
## 12388                    0                   NA
## 12389                    1                    0
## 12390                    0                    0
## 12391                    0                   NA
## 12392                    0                    0
## 12393                    0                   NA
## 12394                    0                    0
## 12395                    0                   NA
## 12396                    0                    0
## 12397                    0                   NA
## 12398                    0                    0
## 12399                    0                    0
## 12400                    0                   NA
## 12401                    0                    0
## 12402                    0                    0
## 12403                    0                    0
## 12404                    0                   NA
## 12405                    2                    0
## 12406                    2                   NA
## 12407                    0                    0
## 12408                    0                   NA
## 12409                    1                   NA
## 12410                    0                    0
## 12411                    0                    0
## 12412                    0                   NA
## 12413                    1                    0
## 12414                    0                    0
## 12415                    0                   NA
## 12416                    0                    0
## 12417                    0                    0
## 12418                    0                   NA
## 12419                    0                    0
## 12420                    0                    0
## 12421                    0                    0
## 12422                    0                    0
## 12423                    0                    0
## 12424                    0                    0
## 12425                    0                    0
## 12426                    0                    0
## 12427                    0                    0
## 12428                    0                   NA
## 12429                    0                    0
## 12430                    0                    0
## 12431                    0                    0
## 12432                    0                    0
## 12433                    0                    0
## 12434                    0                    0
## 12435                    0                    0
## 12436                    0                    0
## 12437                    0                   NA
## 12438                    0                    0
## 12439                    0                    0
## 12440                    0                    0
## 12441                    0                    0
## 12442                    0                    0
## 12443                    0                    0
## 12444                    0                    0
## 12445                    0                    0
## 12446                    0                    0
## 12447                    0                    0
## 12448                    0                    0
## 12449                    0                    0
## 12450                    0                    0
## 12451                    0                    0
## 12452                    0                    0
## 12453                    0                    0
## 12454                    0                    0
## 12455                    0                    0
## 12456                    0                    0
## 12457                    0                    0
## 12458                    0                    0
## 12459                    0                    0
## 12460                    0                    0
## 12461                    0                    0
## 12462                    0                    0
## 12463                    0                    0
## 12464                    0                    0
## 12465                    0                    0
## 12466                    0                    0
## 12467                    0                    0
## 12468                    0                    0
## 12469                    0                    0
## 12470                    0                    0
## 12471                    0                    0
## 12472                    0                   NA
## 12473                    0                    0
## 12474                    0                    0
## 12475                    0                    0
## 12476                    0                    0
## 12477                    0                    0
## 12478                    0                    0
## 12479                    0                    0
## 12480                    0                   NA
## 12481                    0                    0
## 12482                    0                    0
## 12483                    0                    0
## 12484                    0                    0
## 12485                    0                    0
## 12486                    0                   NA
## 12487                    0                   NA
## 12488                    0                    0
## 12489                    0                   NA
## 12490                    0                    0
## 12491                    0                   NA
## 12492                    0                    0
## 12493                    0                   NA
## 12494                    0                    0
## 12495                    0                    0
## 12496                    0                    0
## 12497                    0                   NA
## 12498                    0                    0
## 12499                    0                    0
## 12500                    0                    0
## 12501                    0                    0
## 12502                    0                    0
## 12503                    0                    0
## 12504                    0                    0
## 12505                    0                    0
## 12506                    0                    0
## 12507                    0                    0
## 12508                    0                    0
## 12509                    0                    0
## 12510                    0                    0
## 12511                    0                   NA
## 12512                    0                    0
## 12513                    0                    0
## 12514                    0                    0
## 12515                    0                    0
## 12516                    0                    0
## 12517                    2                   NA
## 12518                    3                    0
## 12519                    0                    0
## 12520                    0                    0
## 12521                    0                    0
## 12522                    0                   NA
## 12523                    0                    0
## 12524                    0                    0
## 12525                    0                    0
## 12526                    0                    0
## 12527                    0                    0
## 12528                   28                   NA
## 12529                    0                   NA
## 12530                    0                    0
## 12531                    0                    0
## 12532                    0                   NA
## 12533                   21                  756
## 12534                   17                   NA
## 12535                    1                    0
## 12536                    0                   NA
## 12537                    0                    0
## 12538                    0                   30
## 12539                    0                   NA
## 12540                    0                    0
## 12541                    0                    0
## 12542                    0                    0
## 12543                    0                    0
## 12544                    0                    0
## 12545                    0                    0
## 12546                    0                   NA
## 12547                    0                    1
## 12548                    0                   NA
## 12549                    0                    0
## 12550                    0                    0
## 12551                    0                    0
## 12552                    0                    0
## 12553                    0                    0
## 12554                    0                    1
## 12555                    0                   NA
## 12556                    0                    0
## 12557                    0                   NA
## 12558                    0                    0
## 12559                    0                   NA
## 12560                    0                    0
## 12561                    0                   NA
## 12562                    0                    0
## 12563                    0                    0
## 12564                    0                   NA
## 12565                    2                    0
## 12566                    2                   NA
## 12567                    0                    0
## 12568                    0                    0
## 12569                    0                    0
## 12570                    0                    0
## 12571                    0                   NA
## 12572                    0                    0
## 12573                    0                    0
## 12574                    0                    2
## 12575                    0                    0
## 12576                    0                   NA
## 12577                    0                    0
## 12578                    0                    0
## 12579                    0                   NA
## 12580                    0                    0
## 12581                    0                    0
## 12582                    0                    0
## 12583                    0                    0
## 12584                    0                   NA
## 12585                    0                    0
## 12586                    0                   NA
## 12587                    0                    0
## 12588                    0                    0
## 12589                    0                   NA
## 12590                    0                    0
## 12591                    0                    0
## 12592                    0                    0
## 12593                    0                   NA
## 12594                    0                    0
## 12595                    0                    0
## 12596                    0                   NA
## 12597                    0                    0
## 12598                    0                   NA
## 12599                    0                    0
## 12600                    0                   NA
## 12601                    0                    0
## 12602                    0                   NA
## 12603                    2                   NA
## 12604                    2                    0
## 12605                    0                    0
## 12606                    0                    1
## 12607                    0                   NA
## 12608                    0                    0
## 12609                    0                   NA
## 12610                    0                    0
## 12611                    0                   NA
## 12612                    0                    0
## 12613                    0                   NA
## 12614                    0                    0
## 12615                    0                   NA
## 12616                   49                   NA
## 12617                   36                   66
## 12618                    0                    0
## 12619                    0                    0
## 12620                    0                    0
## 12621                    0                    0
## 12622                    0                    0
## 12623                    0                   NA
## 12624                    0                    0
## 12625                    0                   NA
## 12626                    0                   NA
## 12627                    0                    0
## 12628                    0                    0
## 12629                    0                    0
## 12630                    0                    0
## 12631                    1                   NA
## 12632                    0                    0
## 12633                    0                   NA
## 12634                    0                    0
## 12635                    0                    0
## 12636                    0                   NA
## 12637                    0                   NA
## 12638                    0                    0
## 12639                    0                    2
## 12640                    0                   NA
## 12641                    0                    0
## 12642                    0                   NA
## 12643                    0                   NA
## 12644                    0                    0
## 12645                    0                    0
## 12646                    0                   NA
## 12647                    0                    0
## 12648                    0                   NA
## 12649                    0                    0
## 12650                    0                   NA
## 12651                    5                   28
## 12652                    2                   NA
## 12653                    0                    0
## 12654                    0                   NA
## 12655                    0                    0
## 12656                    0                   NA
## 12657                    0                    0
## 12658                    1                   10
## 12659                    1                   NA
## 12660                    0                    0
## 12661                    0                   NA
## 12662                    0                   NA
## 12663                    0                    0
## 12664                    0                    0
## 12665                    0                   NA
## 12666                    0                    0
## 12667                    0                    0
## 12668                    0                    0
## 12669                    0                    0
## 12670                    0                    0
## 12671                    0                    0
## 12672                    0                    0
## 12673                    0                    0
## 12674                    0                    0
## 12675                    0                    0
## 12676                    0                    0
## 12677                    0                    0
## 12678                    0                    0
## 12679                    0                    0
## 12680                    0                    0
## 12681                    0                    0
## 12682                    1                    0
## 12683                    0                    0
## 12684                    0                    0
## 12685                    0                    0
## 12686                    0                    0
## 12687                    0                    0
## 12688                    0                    0
## 12689                    0                    0
## 12690                    0                    0
## 12691                    0                    0
## 12692                    0                    0
## 12693                    0                    0
## 12694                    0                    0
## 12695                    0                    0
## 12696                    0                    0
## 12697                    0                    0
## 12698                    0                    0
## 12699                    0                    0
## 12700                    0                    0
## 12701                    0                    0
## 12702                    0                    0
## 12703                    0                    0
## 12704                    0                    0
## 12705                    0                    0
## 12706                    0                    0
## 12707                    0                    0
## 12708                    0                    1
## 12709                    0                    0
## 12710                    0                    0
## 12711                    0                    0
## 12712                    0                   NA
## 12713                    0                    0
## 12714                    0                    0
## 12715                    0                    0
## 12716                    0                    0
## 12717                    0                    0
## 12718                    0                    0
## 12719                    0                    0
## 12720                    0                    0
## 12721                    0                    0
## 12722                    0                    0
## 12723                    0                    0
## 12724                    1                   NA
## 12725                    1                    0
## 12726                    0                    0
## 12727                    0                    0
## 12728                    0                    0
## 12729                    0                    0
## 12730                    0                   NA
## 12731                    0                    0
## 12732                    0                   NA
## 12733                    0                    0
## 12734                    0                    0
## 12735                    0                    0
## 12736                    0                    0
## 12737                    0                    0
## 12738                    0                    0
## 12739                    0                    0
## 12740                    0                    0
## 12741                    0                    0
## 12742                    0                    0
## 12743                    0                    0
## 12744                    0                    0
## 12745                    0                    0
## 12746                    0                    0
## 12747                    0                    0
## 12748                    0                    0
## 12749                    0                    0
## 12750                    0                    0
## 12751                    0                   NA
## 12752                    0                    0
## 12753                    0                    0
## 12754                    0                    0
## 12755                    0                    0
## 12756                    0                    0
## 12757                    0                    0
## 12758                    3                   NA
## 12759                    4                    0
## 12760                    0                    0
## 12761                    0                    0
## 12762                    0                    0
## 12763                    0                   NA
## 12764                    0                    0
## 12765                    0                   NA
## 12766                    0                    0
## 12767                    0                    0
## 12768                    0                    0
## 12769                    0                    0
## 12770                    0                   NA
## 12771                   27                   NA
## 12772                    0                   NA
## 12773                    0                    0
## 12774                    0                    0
## 12775                   49                  465
## 12776                   21                   NA
## 12777                    2                    0
## 12778                    0                   NA
## 12779                    0                   NA
## 12780                    0                    0
## 12781                    0                    0
## 12782                    0                   NA
## 12783                    0                    0
## 12784                    0                   NA
## 12785                    0                    0
## 12786                    0                    1
## 12787                    0                   NA
## 12788                    0                    0
## 12789                    0                    0
## 12790                    0                    0
## 12791                    0                    1
## 12792                    0                   NA
## 12793                    0                   NA
## 12794                    0                    0
## 12795                    0                    0
## 12796                    0                    0
## 12797                    0                    0
## 12798                    0                    0
## 12799                    0                    0
## 12800                    0                    0
## 12801                    0                   NA
## 12802                    0                   NA
## 12803                    0                    0
## 12804                    0                   NA
## 12805                    0                    0
## 12806                    0                   NA
## 12807                    0                    0
## 12808                    0                   NA
## 12809                    0                    0
## 12810                    6                  -17
## 12811                    6                   NA
## 12812                    0                    0
## 12813                    0                    0
## 12814                    0                    0
## 12815                    0                    0
## 12816                    0                    0
## 12817                    0                    0
## 12818                    0                    0
## 12819                    0                   NA
## 12820                    0                    0
## 12821                    0                   NA
## 12822                    0                    0
## 12823                    0                    0
## 12824                    0                   NA
## 12825                    0                    0
## 12826                    0                    0
## 12827                    0                    0
## 12828                    0                    0
## 12829                    0                   NA
## 12830                    0                    0
## 12831                    0                    0
## 12832                    0                   NA
## 12833                    0                    0
## 12834                    0                    0
## 12835                    0                   NA
## 12836                    0                    0
## 12837                    0                    0
## 12838                    0                   NA
## 12839                    0                    0
## 12840                    0                   NA
## 12841                    0                    0
## 12842                    0                   NA
## 12843                    0                    0
## 12844                    0                    0
## 12845                    0                    0
## 12846                    1                   NA
## 12847                    8                    0
## 12848                    0                   NA
## 12849                    0                    0
## 12850                    0                   NA
## 12851                    0                    0
## 12852                    0                   NA
## 12853                    0                    0
## 12854                    0                    0
## 12855                    0                   NA
## 12856                    0                    0
## 12857                    0                   NA
## 12858                    0                    0
## 12859                    0                   NA
## 12860                   36                   NA
## 12861                  133                   33
## 12862                    0                    0
## 12863                    0                    0
## 12864                    0                   NA
## 12865                    0                    0
## 12866                    0                    0
## 12867                    0                    0
## 12868                    0                    0
## 12869                    0                    0
## 12870                    0                   NA
## 12871                    0                    0
## 12872                    0                   NA
## 12873                    0                    0
## 12874                    0                    0
## 12875                    0                   NA
## 12876                    2                    0
## 12877                    0                    0
## 12878                    0                   NA
## 12879                    0                   NA
## 12880                    0                    0
## 12881                    0                   NA
## 12882                    0                    0
## 12883                    0                    0
## 12884                    0                   NA
## 12885                    0                   NA
## 12886                    0                    1
## 12887                    0                   NA
## 12888                    0                    0
## 12889                    0                    0
## 12890                    0                    0
## 12891                    0                   NA
## 12892                    0                   NA
## 12893                    0                    0
## 12894                    7                    0
## 12895                    0                   NA
## 12896                    0                   NA
## 12897                    0                    0
## 12898                    0                   NA
## 12899                    1                    0
## 12900                    0                    0
## 12901                    1                   NA
## 12902                    0                    0
## 12903                    0                    0
## 12904                    1                   NA
## 12905                    0                    0
## 12906                    0                    0
## 12907                    0                    0
## 12908                    0                    0
## 12909                    0                   NA
## 12910                    0                    0
## 12911                    0                    0
## 12912                    0                    0
## 12913                    0                    0
## 12914                    0                    0
## 12915                    0                    0
## 12916                    0                    0
## 12917                    0                   NA
## 12918                    0                    0
## 12919                    0                    0
## 12920                    0                    0
## 12921                    0                    0
## 12922                    0                    0
## 12923                    0                    0
## 12924                    0                    0
## 12925                    0                    0
## 12926                    1                   NA
## 12927                    0                    0
## 12928                    0                    0
## 12929                    0                    0
## 12930                    0                    0
## 12931                    0                    0
## 12932                    0                    0
## 12933                    0                    0
## 12934                    0                    0
## 12935                    0                    0
## 12936                    0                    0
## 12937                    0                    0
## 12938                    0                    0
## 12939                    0                    0
## 12940                    0                    0
## 12941                    0                    0
## 12942                    0                    0
## 12943                    0                    0
## 12944                    0                    0
## 12945                    0                    0
## 12946                    0                    0
## 12947                    0                    0
## 12948                    0                    0
## 12949                    0                    0
## 12950                    0                    0
## 12951                    0                    0
## 12952                    0                    0
## 12953                    0                    0
## 12954                    0                    0
## 12955                    0                    0
## 12956                    0                    0
## 12957                    0                   NA
## 12958                    0                    0
## 12959                    0                    0
## 12960                    0                    0
## 12961                    0                    0
## 12962                    0                    0
## 12963                    0                    0
## 12964                    0                    0
## 12965                    0                    0
## 12966                    0                    0
## 12967                    0                    0
## 12968                    0                    0
## 12969                    0                   NA
## 12970                    0                    0
## 12971                    0                    0
## 12972                    0                    0
## 12973                    0                    0
## 12974                    0                    0
## 12975                    0                   NA
## 12976                    0                   NA
## 12977                    0                    0
## 12978                    0                   NA
## 12979                    0                    0
## 12980                    0                    0
## 12981                    0                   NA
## 12982                    0                    0
## 12983                    0                    0
## 12984                    0                    0
## 12985                    0                    0
## 12986                    0                   NA
## 12987                    0                    0
## 12988                    0                    0
## 12989                    0                    0
## 12990                    0                    0
## 12991                    0                    0
## 12992                    0                    0
## 12993                    0                    0
## 12994                    0                    0
## 12995                    0                   NA
## 12996                    0                    0
## 12997                    0                    0
## 12998                    0                    0
## 12999                    0                    0
## 13000                    0                   NA
## 13001                    0                    0
## 13002                    0                    0
## 13003                    0                    0
## 13004                    0                    0
## 13005                    0                    0
## 13006                    1                    0
## 13007                    4                   NA
## 13008                    0                    0
## 13009                    0                    0
## 13010                    0                    0
## 13011                    0                   10
## 13012                    0                   NA
## 13013                    0                    0
## 13014                    0                   NA
## 13015                    0                    0
## 13016                    0                    0
## 13017                    0                    0
## 13018                   23                   NA
## 13019                    0                    0
## 13020                    0                   NA
## 13021                    0                    0
## 13022                   43                  260
## 13023                   49                   NA
## 13024                    0                    3
## 13025                    4                   NA
## 13026                    0                    0
## 13027                    0                   NA
## 13028                    4                    0
## 13029                    1                   NA
## 13030                    0                    0
## 13031                    0                    0
## 13032                    0                    0
## 13033                    0                   NA
## 13034                    0                    0
## 13035                    0                    0
## 13036                    0                    0
## 13037                    0                   NA
## 13038                    0                   NA
## 13039                    0                    0
## 13040                    0                    0
## 13041                    0                   NA
## 13042                    0                    0
## 13043                    0                    0
## 13044                    0                    0
## 13045                    0                    0
## 13046                    0                    0
## 13047                    0                    0
## 13048                    0                   NA
## 13049                    0                    0
## 13050                    0                    0
## 13051                    0                   NA
## 13052                    0                    0
## 13053                    0                   NA
## 13054                    0                    0
## 13055                    0                   NA
## 13056                    3                    0
## 13057                    1                   NA
## 13058                    0                    0
## 13059                    0                    0
## 13060                    0                    0
## 13061                    0                    0
## 13062                    0                    0
## 13063                    0                    0
## 13064                    0                    0
## 13065                    0                    0
## 13066                    0                    0
## 13067                    0                   NA
## 13068                    0                    0
## 13069                    0                   NA
## 13070                    0                    0
## 13071                    0                   NA
## 13072                    0                    0
## 13073                    0                    0
## 13074                    0                   NA
## 13075                    0                    2
## 13076                    0                    0
## 13077                    0                    1
## 13078                    0                    0
## 13079                    0                   NA
## 13080                    0                    0
## 13081                    0                    0
## 13082                    0                   NA
## 13083                    0                    0
## 13084                    0                    0
## 13085                    0                    0
## 13086                    0                   NA
## 13087                    0                   NA
## 13088                    0                    0
## 13089                    0                    0
## 13090                    0                    0
## 13091                    0                   NA
## 13092                    0                    0
## 13093                    9                   NA
## 13094                    0                   NA
## 13095                    0                    0
## 13096                    0                   NA
## 13097                    2                    0
## 13098                    0                    0
## 13099                    0                   NA
## 13100                    0                   NA
## 13101                    0                    0
## 13102                    0                   NA
## 13103                    0                    0
## 13104                    0                    0
## 13105                    0                   NA
## 13106                  133                   NA
## 13107                   97                  102
## 13108                    0                    0
## 13109                    0                   NA
## 13110                    0                    0
## 13111                    0                    0
## 13112                    0                    0
## 13113                    0                    0
## 13114                    0                   NA
## 13115                    0                    0
## 13116                    0                    0
## 13117                    0                   NA
## 13118                    0                    0
## 13119                    0                    0
## 13120                    0                    0
## 13121                    0                    0
## 13122                    2                   NA
## 13123                    0                   NA
## 13124                    0                    1
## 13125                    0                    0
## 13126                    0                   NA
## 13127                    0                    0
## 13128                    0                   NA
## 13129                    0                    0
## 13130                    0                   NA
## 13131                    0                    0
## 13132                    0                   NA
## 13133                    0                    0
## 13134                    0                   NA
## 13135                    0                    0
## 13136                    0                    0
## 13137                    0                   NA
## 13138                    0                    0
## 13139                    0                   NA
## 13140                   11                    2
## 13141                    0                   NA
## 13142                    0                   NA
## 13143                    0                    0
## 13144                    0                    0
## 13145                    1                   NA
## 13146                    0                    0
## 13147                    1                    0
## 13148                    0                   NA
## 13149                    0                    0
## 13150                    0                   NA
## 13151                    0                    0
## 13152                    0                    0
## 13153                    0                    0
## 13154                    0                    0
## 13155                    0                    0
## 13156                    0                    0
## 13157                    0                    0
## 13158                    0                    0
## 13159                    0                    0
## 13160                    0                    0
## 13161                    0                    0
## 13162                    0                    0
## 13163                    0                    0
## 13164                    0                    0
## 13165                    0                    0
## 13166                    0                    0
## 13167                    0                    0
## 13168                    0                    0
## 13169                    0                    0
## 13170                    0                   NA
## 13171                    0                    0
## 13172                    0                    0
## 13173                    0                    0
## 13174                    0                    0
## 13175                    0                    0
## 13176                    0                    0
## 13177                    0                    0
## 13178                    0                    0
## 13179                    0                    0
## 13180                    0                    0
## 13181                    0                    0
## 13182                    0                    0
## 13183                    0                    0
## 13184                    0                    0
## 13185                    0                    0
## 13186                    0                    0
## 13187                    0                    0
## 13188                    0                    0
## 13189                    1                    0
## 13190                    0                    0
## 13191                    0                    0
## 13192                    0                    0
## 13193                    0                    0
## 13194                    0                   NA
## 13195                    0                    0
## 13196                    0                    0
## 13197                    0                    0
## 13198                    0                    0
## 13199                    0                    0
## 13200                    0                    0
## 13201                    0                    0
## 13202                    0                   NA
## 13203                    0                    0
## 13204                    0                    0
## 13205                    0                    0
## 13206                    0                    0
## 13207                    0                   NA
## 13208                    0                    0
## 13209                    0                    0
## 13210                    0                    0
## 13211                    0                    0
## 13212                    0                    0
## 13213                    0                    0
## 13214                    0                    0
## 13215                    0                    0
## 13216                    0                    0
## 13217                    0                    0
## 13218                    0                    0
## 13219                    0                   NA
## 13220                    0                    0
## 13221                    1                   NA
## 13222                    0                   NA
## 13223                    0                    0
## 13224                    0                    0
## 13225                    0                   NA
## 13226                    0                    0
## 13227                    0                   NA
## 13228                    0                    0
## 13229                    0                    0
## 13230                    0                    0
## 13231                    0                   NA
## 13232                    0                    0
## 13233                    0                   NA
## 13234                    0                    0
## 13235                    0                    0
## 13236                    0                    0
## 13237                    0                    0
## 13238                    0                    0
## 13239                    0                    0
## 13240                    0                    0
## 13241                    0                    3
## 13242                    0                    0
## 13243                    0                    0
## 13244                    0                   NA
## 13245                    0                    0
## 13246                    0                   NA
## 13247                    0                    0
## 13248                    0                    0
## 13249                    0                    0
## 13250                    0                    0
## 13251                    0                    0
## 13252                    0                    0
## 13253                    6                    1
## 13254                    5                   NA
## 13255                    0                    0
## 13256                    0                    0
## 13257                    0                    0
## 13258                    0                    8
## 13259                    0                   NA
## 13260                    0                    0
## 13261                    0                    0
## 13262                    0                    0
## 13263                    0                   NA
## 13264                    0                    0
## 13265                   17                   NA
## 13266                    0                   NA
## 13267                    0                    1
## 13268                    0                    2
## 13269                   43                   NA
## 13270                   54                  337
## 13271                    1                    0
## 13272                    0                    2
## 13273                    2                   NA
## 13274                    0                   25
## 13275                    0                    0
## 13276                    0                    0
## 13277                    0                   NA
## 13278                    0                    0
## 13279                    0                    0
## 13280                    0                    0
## 13281                    0                   NA
## 13282                    1                    0
## 13283                    0                    0
## 13284                    0                   NA
## 13285                    0                    0
## 13286                    0                    0
## 13287                    0                   NA
## 13288                    0                    0
## 13289                    0                    0
## 13290                    0                    7
## 13291                    0                   NA
## 13292                    0                    1
## 13293                    0                   NA
## 13294                    0                   NA
## 13295                    0                    0
## 13296                    0                    1
## 13297                    0                   NA
## 13298                    0                   NA
## 13299                    0                    0
## 13300                    0                   NA
## 13301                    0                    1
## 13302                    0                    0
## 13303                    0                   NA
## 13304                    1                  129
## 13305                    3                   NA
## 13306                    0                    0
## 13307                    0                    0
## 13308                    0                    0
## 13309                    0                    2
## 13310                    0                    0
## 13311                    0                    0
## 13312                    0                   NA
## 13313                    0                    5
## 13314                    0                    0
## 13315                    0                    0
## 13316                    0                   NA
## 13317                    0                    0
## 13318                    0                   NA
## 13319                    0                    0
## 13320                    0                    0
## 13321                    0                    0
## 13322                    0                   NA
## 13323                    0                    2
## 13324                    0                    0
## 13325                    0                    2
## 13326                    0                    0
## 13327                    0                   NA
## 13328                    0                    0
## 13329                    0                    0
## 13330                    0                    0
## 13331                    0                    0
## 13332                    0                   NA
## 13333                    0                   NA
## 13334                    0                    0
## 13335                    0                   NA
## 13336                    0                    0
## 13337                    0                    0
## 13338                    0                    0
## 13339                    0                   NA
## 13340                   11                   NA
## 13341                   14                    0
## 13342                    0                    0
## 13343                    0                   NA
## 13344                    2                   NA
## 13345                    0                    0
## 13346                    0                   NA
## 13347                    0                    0
## 13348                    0                    0
## 13349                    0                   NA
## 13350                    0                   NA
## 13351                    0                    1
## 13352                    0                    0
## 13353                  168                    0
## 13354                   98                   NA
## 13355                    0                    0
## 13356                    0                    1
## 13357                    0                   NA
## 13358                    0                    0
## 13359                    0                    0
## 13360                    0                    0
## 13361                    0                    0
## 13362                    0                    0
## 13363                    0                   NA
## 13364                    0                    0
## 13365                    0                    0
## 13366                    0                    0
## 13367                    0                   NA
## 13368                    1                    0
## 13369                    0                   NA
## 13370                    0                    0
## 13371                    0                    0
## 13372                    0                   NA
## 13373                    0                   NA
## 13374                    0                    0
## 13375                    0                   NA
## 13376                    0                    0
## 13377                    0                   NA
## 13378                    0                    0
## 13379                    1                   NA
## 13380                    1                    0
## 13381                    0                    0
## 13382                    0                    0
## 13383                    0                    0
## 13384                    7                    0
## 13385                   23                   NA
## 13386                    0                   NA
## 13387                    0                    0
## 13388                    0                   NA
## 13389                    1                    0
## 13390                    0                    0
## 13391                    1                   NA
## 13392                    4                    0
## 13393                    0                    0
## 13394                    0                   NA
## 13395                    0                    0
## 13396                    0                    0
## 13397                    0                    0
## 13398                    1                   NA
## 13399                    0                    0
## 13400                    0                    0
## 13401                    0                    0
## 13402                    0                    0
## 13403                    0                    0
## 13404                    0                   NA
## 13405                    0                    0
## 13406                    0                    0
## 13407                    0                    0
## 13408                    0                    0
## 13409                    0                    0
## 13410                    0                    0
## 13411                    0                    0
## 13412                    0                    0
## 13413                    0                    0
## 13414                    0                   NA
## 13415                    0                    0
## 13416                    0                   26
## 13417                    0                   NA
## 13418                    0                    0
## 13419                    0                    0
## 13420                    0                    0
## 13421                    0                    0
## 13422                    0                    0
## 13423                    0                    0
## 13424                    0                    0
## 13425                    0                    0
## 13426                    0                    0
## 13427                    0                    0
## 13428                    0                    0
## 13429                    0                    0
## 13430                    0                    0
## 13431                    0                    0
## 13432                    0                    0
## 13433                    0                    0
## 13434                    0                    0
## 13435                    0                    0
## 13436                    0                    0
## 13437                    0                    0
## 13438                    0                    0
## 13439                    0                    0
## 13440                    0                    0
## 13441                    0                    0
## 13442                    0                    0
## 13443                    0                    0
## 13444                    0                    0
## 13445                    0                    0
## 13446                    0                    0
## 13447                    0                    0
## 13448                    0                    0
## 13449                    0                    0
## 13450                    0                    0
## 13451                    0                    0
## 13452                    0                    0
## 13453                    0                   NA
## 13454                    0                    0
## 13455                    0                    0
## 13456                    0                    0
## 13457                    0                    0
## 13458                    0                    0
## 13459                    0                    0
## 13460                    0                   NA
## 13461                    0                    0
## 13462                    0                    0
## 13463                    0                    0
## 13464                    0                    0
## 13465                    0                    0
## 13466                    0                   NA
## 13467                    0                   NA
## 13468                    0                   NA
## 13469                    0                    0
## 13470                    0                    0
## 13471                    0                    0
## 13472                    0                   NA
## 13473                    0                    0
## 13474                    0                    0
## 13475                    0                    0
## 13476                    0                    0
## 13477                    0                   NA
## 13478                    0                    0
## 13479                    0                    0
## 13480                    0                    0
## 13481                    0                    0
## 13482                    0                    0
## 13483                    0                    0
## 13484                    0                    0
## 13485                    0                    0
## 13486                    0                    0
## 13487                    1                   NA
## 13488                    1                    0
## 13489                    0                    0
## 13490                    0                   NA
## 13491                    0                    0
## 13492                    0                   NA
## 13493                    0                    0
## 13494                    0                    0
## 13495                    0                    0
## 13496                    0                    0
## 13497                    0                    0
## 13498                    2                   NA
## 13499                    4                    0
## 13500                    0                    0
## 13501                    0                    0
## 13502                    0                    0
## 13503                    0                   NA
## 13504                    0                   NA
## 13505                    0                   13
## 13506                    0                    0
## 13507                    0                    0
## 13508                    0                    0
## 13509                    0                    0
## 13510                   22                   NA
## 13511                    0                   NA
## 13512                    1                    0
## 13513                    1                    0
## 13514                    0                   NA
## 13515                   54                   NA
## 13516                   63                  228
## 13517                    0                   12
## 13518                    0                   NA
## 13519                    0                    0
## 13520                    0                   NA
## 13521                    3                   NA
## 13522                    5                   17
## 13523                    0                    0
## 13524                    0                    0
## 13525                    0                    1
## 13526                    0                   NA
## 13527                    0                    0
## 13528                    0                    0
## 13529                    1                   NA
## 13530                    2                    0
## 13531                    0                   NA
## 13532                    0                    2
## 13533                    0                    0
## 13534                    0                   NA
## 13535                    0                    0
## 13536                    0                    0
## 13537                    0                    0
## 13538                    0                    0
## 13539                    0                   NA
## 13540                    0                   NA
## 13541                    0                    0
## 13542                    0                    0
## 13543                    0                   NA
## 13544                    0                   NA
## 13545                    0                    0
## 13546                    0                   NA
## 13547                    0                    0
## 13548                    0                    0
## 13549                    0                   NA
## 13550                    0                   NA
## 13551                    0                   18
## 13552                    6                   41
## 13553                    6                   NA
## 13554                    0                    0
## 13555                    0                    0
## 13556                    0                    0
## 13557                    0                    1
## 13558                    0                   NA
## 13559                    0                    0
## 13560                    0                    0
## 13561                    0                    5
## 13562                    0                   NA
## 13563                    0                    0
## 13564                    0                   NA
## 13565                    0                    0
## 13566                    0                    0
## 13567                    0                   NA
## 13568                    1                    0
## 13569                    0                   NA
## 13570                    0                    0
## 13571                    0                    0
## 13572                    0                   NA
## 13573                    0                    0
## 13574                    0                    3
## 13575                    0                   NA
## 13576                    0                    0
## 13577                    0                   NA
## 13578                    3                    0
## 13579                    1                   NA
## 13580                    0                    0
## 13581                    1                    0
## 13582                    0                   NA
## 13583                    0                    0
## 13584                    0                    0
## 13585                    0                   NA
## 13586                    0                    0
## 13587                    0                   NA
## 13588                    0                    0
## 13589                    0                   NA
## 13590                    0                    0
## 13591                    0                    0
## 13592                    3                   NA
## 13593                   15                    0
## 13594                    0                   NA
## 13595                    0                    0
## 13596                    0                   NA
## 13597                    1                    7
## 13598                    0                   NA
## 13599                    1                    0
## 13600                    0                   NA
## 13601                    0                    0
## 13602                    0                   NA
## 13603                    0                    0
## 13604                    1                    0
## 13605                    0                   NA
## 13606                  167                   NA
## 13607                  196                  321
## 13608                    0                    0
## 13609                    0                    0
## 13610                    0                   NA
## 13611                    0                    0
## 13612                    0                    0
## 13613                    0                   NA
## 13614                    0                    0
## 13615                    0                   NA
## 13616                    0                    0
## 13617                    0                   NA
## 13618                    0                    0
## 13619                    0                   NA
## 13620                    0                    0
## 13621                    0                   NA
## 13622                    0                    0
## 13623                    0                    0
## 13624                    1                   NA
## 13625                    1                    0
## 13626                    0                   NA
## 13627                    0                    0
## 13628                    0                   NA
## 13629                    0                    0
## 13630                    0                   NA
## 13631                    0                    0
## 13632                    0                   NA
## 13633                    0                    3
## 13634                    0                    0
## 13635                    0                   NA
## 13636                    0                    0
## 13637                    0                   NA
## 13638                    0                   NA
## 13639                    0                    0
## 13640                    0                   NA
## 13641                    0                    0
## 13642                    0                   NA
## 13643                    0                    0
## 13644                   19                  151
## 13645                    7                   NA
## 13646                    0                   NA
## 13647                    1                    0
## 13648                    1                   NA
## 13649                    1                    1
## 13650                    0                    0
## 13651                    4                   NA
## 13652                    0                    0
## 13653                    0                    0
## 13654                    0                   NA
## 13655                    0                    0
## 13656                    0                    0
## 13657                    0                    0
## 13658                    0                   NA
## 13659                    1                    8
## 13660                    0                    0
## 13661                    0                    0
## 13662                    0                    0
## 13663                    0                    0
## 13664                    0                   NA
## 13665                    0                    0
## 13666                    0                    0
## 13667                    0                    0
## 13668                    0                    0
## 13669                    0                    0
## 13670                    0                    0
## 13671                    0                    0
## 13672                    0                    0
## 13673                    0                   NA
## 13674                    0                    0
## 13675                    0                    0
## 13676                    0                   NA
## 13677                    0                    0
## 13678                    0                    0
## 13679                    0                    0
## 13680                    0                    0
## 13681                    0                    0
## 13682                    0                    0
## 13683                    0                    0
## 13684                    0                    0
## 13685                    0                    0
## 13686                    0                    0
## 13687                    0                    0
## 13688                    0                    0
## 13689                    0                    0
## 13690                    0                    0
## 13691                    0                    0
## 13692                    0                    0
## 13693                    0                    0
## 13694                    0                    0
## 13695                    0                    0
## 13696                    0                    0
## 13697                    1                   NA
## 13698                    0                    0
## 13699                    0                    0
## 13700                    0                    0
## 13701                    0                    0
## 13702                    0                    0
## 13703                    0                    0
## 13704                    0                    0
## 13705                    0                    0
## 13706                    0                    0
## 13707                    0                    0
## 13708                    0                    0
## 13709                    0                   NA
## 13710                    0                    0
## 13711                    0                    0
## 13712                    0                    0
## 13713                    0                    0
## 13714                    0                    0
## 13715                    0                   NA
## 13716                    0                    0
## 13717                    0                    0
## 13718                    0                    0
## 13719                    0                    0
## 13720                    0                    0
## 13721                    0                    0
## 13722                    0                    0
## 13723                    0                    0
## 13724                    0                    0
## 13725                    0                    0
## 13726                    0                   NA
## 13727                    0                    0
## 13728                    0                   NA
## 13729                    0                   NA
## 13730                    0                    0
## 13731                    0                   NA
## 13732                    0                    0
## 13733                    0                   NA
## 13734                    0                    0
## 13735                    0                   NA
## 13736                    0                    0
## 13737                    0                   NA
## 13738                    0                    0
## 13739                    0                    0
## 13740                    0                    0
## 13741                    0                    0
## 13742                    0                    0
## 13743                    0                    0
## 13744                    1                    0
## 13745                    0                    0
## 13746                    0                    0
## 13747                    0                   NA
## 13748                    0                    0
## 13749                    0                   NA
## 13750                    0                    0
## 13751                    0                   NA
## 13752                    0                    0
## 13753                    0                    0
## 13754                    0                   NA
## 13755                    0                    0
## 13756                    0                    0
## 13757                    0                   NA
## 13758                    0                    0
## 13759                    0                    0
## 13760                    0                    0
## 13761                    0                    0
## 13762                    0                    0
## 13763                    2                   NA
## 13764                   11                    4
## 13765                    0                    0
## 13766                    0                    0
## 13767                    0                    0
## 13768                    0                    0
## 13769                    0                   NA
## 13770                    0                    0
## 13771                    0                    0
## 13772                    0                    0
## 13773                    0                   NA
## 13774                    0                    0
## 13775                    0                   NA
## 13776                   11                   NA
## 13777                    0                    0
## 13778                    0                   NA
## 13779                    0                    0
## 13780                    1                   NA
## 13781                   63                   NA
## 13782                   75                    0
## 13783                    1                    0
## 13784                    2                   NA
## 13785                    0                   NA
## 13786                    0                    0
## 13787                    1                    0
## 13788                    3                   NA
## 13789                    0                    0
## 13790                    0                    0
## 13791                    0                   NA
## 13792                    0                    3
## 13793                    0                    0
## 13794                    0                    0
## 13795                    0                    0
## 13796                    1                   NA
## 13797                    0                    0
## 13798                    0                   NA
## 13799                    0                    0
## 13800                    0                   NA
## 13801                    0                    0
## 13802                    0                    0
## 13803                    0                    0
## 13804                    0                    0
## 13805                    0                   NA
## 13806                    0                    0
## 13807                    0                    0
## 13808                    0                   NA
## 13809                    1                    0
## 13810                    1                   NA
## 13811                    0                    0
## 13812                    0                   NA
## 13813                    0                    0
## 13814                    0                   NA
## 13815                    0                    0
## 13816                    0                   NA
## 13817                    6                   45
## 13818                    6                   NA
## 13819                    0                    0
## 13820                    0                   NA
## 13821                    0                    0
## 13822                    0                    0
## 13823                    0                    0
## 13824                    0                   NA
## 13825                    0                    0
## 13826                    0                    0
## 13827                    0                   NA
## 13828                    0                    0
## 13829                    0                    0
## 13830                    0                    0
## 13831                    0                   NA
## 13832                    0                    0
## 13833                    0                   NA
## 13834                    1                   NA
## 13835                    0                    0
## 13836                    0                    1
## 13837                    0                    0
## 13838                    0                   NA
## 13839                    1                    0
## 13840                    0                   NA
## 13841                    0                    0
## 13842                    0                   NA
## 13843                    0                    0
## 13844                    0                   NA
## 13845                    0                    0
## 13846                    3                   NA
## 13847                    0                   NA
## 13848                    0                    0
## 13849                    0                    0
## 13850                    1                   NA
## 13851                    0                    0
## 13852                    0                   NA
## 13853                    0                    0
## 13854                    0                   NA
## 13855                    0                    0
## 13856                    0                   NA
## 13857                    0                    0
## 13858                    0                   NA
## 13859                    0                    0
## 13860                    0                   NA
## 13861                    0                    0
## 13862                    0                   NA
## 13863                    0                    0
## 13864                   15                   NA
## 13865                    0                    0
## 13866                    0                   NA
## 13867                    0                    0
## 13868                    1                   NA
## 13869                    0                    0
## 13870                    1                   NA
## 13871                    0                    0
## 13872                    0                   NA
## 13873                    0                   NA
## 13874                    0                    0
## 13875                    0                    0
## 13876                    1                   NA
## 13877                  196                   NA
## 13878                  189                    0
## 13879                    0                    0
## 13880                    0                    0
## 13881                    0                   NA
## 13882                    0                    0
## 13883                    0                   NA
## 13884                    0                    0
## 13885                    0                   NA
## 13886                    0                   NA
## 13887                    0                    0
## 13888                    0                    0
## 13889                    0                    0
## 13890                    0                   NA
## 13891                    0                    0
## 13892                    0                   NA
## 13893                    0                    0
## 13894                    0                    0
## 13895                    0                    0
## 13896                    1                   NA
## 13897                    0                    0
## 13898                    0                   NA
## 13899                    0                   NA
## 13900                    1                    0
## 13901                    0                    0
## 13902                    0                   NA
## 13903                    0                    0
## 13904                    0                   NA
## 13905                    0                    0
## 13906                    0                   NA
## 13907                    1                   NA
## 13908                    1                    0
## 13909                    0                    0
## 13910                    0                   NA
## 13911                    0                   NA
## 13912                    0                    0
## 13913                    0                   NA
## 13914                    0                    0
## 13915                    1                    0
## 13916                   12                   NA
## 13917                    0                    0
## 13918                    1                   NA
## 13919                    0                    0
## 13920                    1                   NA
## 13921                    0                    0
## 13922                    2                    0
## 13923                    0                   NA
## 13924                    0                    0
## 13925                    0                   NA
## 13926                    0                    0
## 13927                    0                    0
## 13928                    0                    0
## 13929                    1                    0
## 13930                    1                   NA
## 13931                    0                    0
## 13932                    0                    0
## 13933                    0                    0
## 13934                    0                    0
## 13935                    0                    0
## 13936                    0                    0
## 13937                    0                    0
## 13938                    0                    0
## 13939                    0                    0
## 13940                    0                    0
## 13941                    0                    0
## 13942                    0                    0
## 13943                    0                    0
## 13944                    0                    0
## 13945                    1                    0
## 13946                    1                   NA
## 13947                    0                    0
## 13948                    0                    0
## 13949                    0                    0
## 13950                    0                    0
## 13951                    0                    0
## 13952                    0                   NA
## 13953                    0                    0
## 13954                    0                    0
## 13955                    0                   NA
## 13956                    0                    0
## 13957                    0                    0
## 13958                    0                    0
## 13959                    0                    0
## 13960                    0                    0
## 13961                    0                    0
## 13962                    0                    0
## 13963                    0                    0
## 13964                    0                    0
## 13965                    0                    0
## 13966                    0                    0
## 13967                    0                    1
## 13968                    0                   NA
## 13969                    0                    0
## 13970                    0                    0
## 13971                    0                    0
## 13972                    0                    0
## 13973                    0                    0
## 13974                    0                    0
## 13975                    0                   NA
## 13976                    0                    0
## 13977                    0                    0
## 13978                    0                    0
## 13979                    0                    0
## 13980                    0                   NA
## 13981                    0                    0
## 13982                    0                    0
## 13983                    1                    0
## 13984                    0                    0
## 13985                    0                    0
## 13986                    0                   NA
## 13987                    0                    0
## 13988                    0                    0
## 13989                    0                    0
## 13990                    0                    0
## 13991                    0                    0
## 13992                    0                    0
## 13993                    0                   NA
## 13994                    1                    0
## 13995                    0                   NA
## 13996                    0                    0
## 13997                    0                    0
## 13998                    0                    0
## 13999                    0                    0
## 14000                    0                   NA
## 14001                    0                   NA
## 14002                    0                    0
## 14003                    0                   NA
## 14004                    0                   NA
## 14005                    0                    0
## 14006                    0                    0
## 14007                    0                    0
## 14008                    0                   NA
## 14009                    0                    0
## 14010                    0                   NA
## 14011                    0                    0
## 14012                    0                    0
## 14013                    0                    0
## 14014                    0                    0
## 14015                    0                    0
## 14016                    0                    0
## 14017                    0                    0
## 14018                    1                   NA
## 14019                    0                    0
## 14020                    0                    0
## 14021                    0                   NA
## 14022                    0                    0
## 14023                    0                   NA
## 14024                    0                    0
## 14025                    0                    0
## 14026                    0                   NA
## 14027                    0                    0
## 14028                    0                    0
## 14029                    0                   NA
## 14030                    0                   NA
## 14031                    0                    0
## 14032                    0                    0
## 14033                    0                    0
## 14034                    0                    0
## 14035                    0                   NA
## 14036                    0                    0
## 14037                    0                    0
## 14038                    0                   NA
## 14039                   10                   NA
## 14040                    9                    0
## 14041                    0                    0
## 14042                    0                    0
## 14043                    0                    0
## 14044                    0                    9
## 14045                    0                   NA
## 14046                    0                    0
## 14047                    0                    0
## 14048                    0                   NA
## 14049                    0                   NA
## 14050                    0                    0
## 14051                    0                    0
## 14052                    0                   NA
## 14053                    7                   NA
## 14054                    1                   NA
## 14055                    1                    0
## 14056                    3                    0
## 14057                   75                   NA
## 14058                   85                    0
## 14059                    0                   NA
## 14060                    1                    9
## 14061                    0                   NA
## 14062                    0                    0
## 14063                    4                   NA
## 14064                    3                    0
## 14065                    0                    1
## 14066                    0                    0
## 14067                    0                    0
## 14068                    0                   NA
## 14069                    0                    0
## 14070                    0                    0
## 14071                    0                   NA
## 14072                    0                    0
## 14073                    0                   NA
## 14074                    0                    0
## 14075                    0                    0
## 14076                    0                    0
## 14077                    0                    0
## 14078                    0                    0
## 14079                    0                    0
## 14080                    0                   NA
## 14081                    0                    0
## 14082                    0                    0
## 14083                    0                   NA
## 14084                    3                    0
## 14085                    0                    0
## 14086                    0                   NA
## 14087                    0                    0
## 14088                    0                   NA
## 14089                    0                    1
## 14090                    0                  177
## 14091                    1                   NA
## 14092                    0                   NA
## 14093                    0                    0
## 14094                    0                    0
## 14095                    0                    0
## 14096                    0                    1
## 14097                    0                    0
## 14098                    0                   NA
## 14099                    0                    0
## 14100                    0                    0
## 14101                    0                   NA
## 14102                    0                    0
## 14103                    0                   NA
## 14104                    0                    0
## 14105                    0                    0
## 14106                    0                   NA
## 14107                    0                    0
## 14108                    0                   NA
## 14109                    0                   -1
## 14110                    0                   NA
## 14111                    0                    0
## 14112                    1                   NA
## 14113                    0                    2
## 14114                    0                   NA
## 14115                    1                    0
## 14116                    0                   NA
## 14117                    0                    0
## 14118                    0                    0
## 14119                    1                   NA
## 14120                    0                   NA
## 14121                    0                    0
## 14122                    0                    0
## 14123                    0                   NA
## 14124                    0                   NA
## 14125                    0                    1
## 14126                    0                    0
## 14127                    0                   NA
## 14128                    0                    0
## 14129                    0                   NA
## 14130                    0                    0
## 14131                    0                   NA
## 14132                    0                    0
## 14133                    0                    0
## 14134                    0                   NA
## 14135                   13                   NA
## 14136                   31                    0
## 14137                    0                    0
## 14138                    0                   NA
## 14139                    2                   NA
## 14140                    4                   21
## 14141                    0                   NA
## 14142                    0                    0
## 14143                    0                   NA
## 14144                    0                    0
## 14145                    0                    0
## 14146                    0                   NA
## 14147                    0                   NA
## 14148                    0                    0
## 14149                  250                  394
## 14150                  189                   NA
## 14151                    0                    0
## 14152                    0                   NA
## 14153                    0                    0
## 14154                    0                    0
## 14155                    0                   NA
## 14156                    0                    0
## 14157                    0                    0
## 14158                    0                   NA
## 14159                    0                   NA
## 14160                    0                    1
## 14161                    0                   NA
## 14162                    0                    1
## 14163                    0                   NA
## 14164                    0                    0
## 14165                    0                    0
## 14166                    0                    0
## 14167                    0                   NA
## 14168                    5                    0
## 14169                    1                   NA
## 14170                    0                    0
## 14171                    1                   NA
## 14172                    1                    0
## 14173                    0                   NA
## 14174                    0                    1
## 14175                    0                   NA
## 14176                    0                    1
## 14177                    0                   NA
## 14178                    0                    0
## 14179                    2                   NA
## 14180                    2                    0
## 14181                    0                   NA
## 14182                    0                    0
## 14183                    0                   NA
## 14184                    0                    0
## 14185                    0                   NA
## 14186                    0                    0
## 14187                   37                   NA
## 14188                   78                   10
## 14189                    0                   NA
## 14190                    0                    0
## 14191                    0                   NA
## 14192                    7                    0
## 14193                    0                   NA
## 14194                    1                    0
## 14195                    2                   NA
## 14196                    1                    0
## 14197                    0                    0
## 14198                    0                   NA
## 14199                    0                    0
## 14200                    0                    0
## 14201                    0                    0
## 14202                    1                   NA
## 14203                    1                    4
## 14204                    0                    0
## 14205                    0                    0
## 14206                    0                    0
## 14207                    0                    0
## 14208                    0                    0
## 14209                    0                    0
## 14210                    0                    0
## 14211                    0                    0
## 14212                    0                    0
## 14213                    0                    0
## 14214                    0                    0
## 14215                    0                    0
## 14216                    0                    0
## 14217                    0                   NA
## 14218                    0                    0
## 14219                    0                   NA
## 14220                    0                    0
## 14221                    0                    0
## 14222                    0                    0
## 14223                    0                    0
## 14224                    0                    0
## 14225                    0                   NA
## 14226                    0                    0
## 14227                    0                    0
## 14228                    0                    0
## 14229                    0                    0
## 14230                    0                   NA
## 14231                    0                    0
## 14232                    0                    0
## 14233                    0                   NA
## 14234                    0                    0
## 14235                    0                    0
## 14236                    0                    0
## 14237                    0                    0
## 14238                    0                    0
## 14239                    0                    0
## 14240                    0                    0
## 14241                    0                    0
## 14242                    0                   NA
## 14243                    0                    0
## 14244                    0                    0
## 14245                    0                    0
## 14246                    0                    0
## 14247                    0                    0
## 14248                    0                    0
## 14249                    0                    0
## 14250                    0                    0
## 14251                    0                   NA
## 14252                    0                    0
## 14253                    0                    0
## 14254                    0                    0
## 14255                    0                   NA
## 14256                    0                    0
## 14257                    0                    0
## 14258                    0                    0
## 14259                    0                   NA
## 14260                    0                    0
## 14261                    0                    0
## 14262                    0                    0
## 14263                    0                   NA
## 14264                    0                    0
## 14265                    0                    0
## 14266                    0                    0
## 14267                    0                    0
## 14268                    0                    0
## 14269                    0                    1
## 14270                    1                   NA
## 14271                    0                    0
## 14272                    0                    0
## 14273                    0                    0
## 14274                    0                    0
## 14275                    0                   NA
## 14276                    0                    0
## 14277                    0                   NA
## 14278                    0                   NA
## 14279                    0                   NA
## 14280                    0                    0
## 14281                    0                   NA
## 14282                    0                    0
## 14283                    0                    0
## 14284                    0                   NA
## 14285                    0                    0
## 14286                    0                   NA
## 14287                    0                    0
## 14288                    0                    0
## 14289                    0                   NA
## 14290                    1                   NA
## 14291                    2                    0
## 14292                    0                    0
## 14293                    0                    0
## 14294                    0                    0
## 14295                    0                    0
## 14296                    0                    0
## 14297                    0                    0
## 14298                    0                   NA
## 14299                    0                    0
## 14300                    0                   NA
## 14301                    0                   NA
## 14302                    0                    0
## 14303                    0                    0
## 14304                    0                    0
## 14305                    0                   NA
## 14306                    0                    0
## 14307                    0                   NA
## 14308                    0                    0
## 14309                    0                   NA
## 14310                    0                    0
## 14311                    0                    0
## 14312                    0                    0
## 14313                    0                    0
## 14314                    0                   NA
## 14315                    0                    0
## 14316                    7                   NA
## 14317                    7                    0
## 14318                    0                    0
## 14319                    0                    0
## 14320                    0                    0
## 14321                    0                    0
## 14322                    0                   NA
## 14323                    0                    0
## 14324                    0                    0
## 14325                    0                    0
## 14326                    0                   NA
## 14327                    0                    0
## 14328                   15                   NA
## 14329                    1                   NA
## 14330                    0                    0
## 14331                    1                    6
## 14332                    3                   NA
## 14333                   85                   NA
## 14334                   97                    0
## 14335                    1                    2
## 14336                    1                   NA
## 14337                    0                   NA
## 14338                    0                    0
## 14339                    2                   NA
## 14340                    3                    0
## 14341                    0                    0
## 14342                    0                    0
## 14343                    0                   NA
## 14344                    0                    0
## 14345                    0                    0
## 14346                    0                    0
## 14347                    0                    0
## 14348                    0                   NA
## 14349                    0                    9
## 14350                    0                    0
## 14351                    0                   NA
## 14352                    0                    0
## 14353                    0                    0
## 14354                    0                    0
## 14355                    0                    0
## 14356                    0                   NA
## 14357                    0                   NA
## 14358                    0                    0
## 14359                    0                    0
## 14360                    0                   NA
## 14361                    4                   NA
## 14362                    3                    0
## 14363                    0                    4
## 14364                    0                   NA
## 14365                    0                    0
## 14366                    0                   NA
## 14367                    0                    8
## 14368                    0                   NA
## 14369                    5                   NA
## 14370                    6                    0
## 14371                    0                   NA
## 14372                    0                    0
## 14373                    0                    0
## 14374                    0                    0
## 14375                    0                    0
## 14376                    0                   NA
## 14377                    0                    0
## 14378                    0                    0
## 14379                    0                    0
## 14380                    0                    0
## 14381                    0                    0
## 14382                    0                   NA
## 14383                    0                    0
## 14384                    0                   NA
## 14385                    0                    0
## 14386                    0                   NA
## 14387                    0                    1
## 14388                    0                   NA
## 14389                    0                   NA
## 14390                    0                    0
## 14391                    0                   NA
## 14392                    0                    0
## 14393                    0                    0
## 14394                    0                    0
## 14395                    1                    0
## 14396                    3                   NA
## 14397                    0                    0
## 14398                    0                   NA
## 14399                    1                    0
## 14400                    0                    0
## 14401                    0                   NA
## 14402                    0                   NA
## 14403                    0                    0
## 14404                    0                   NA
## 14405                    0                    0
## 14406                    1                    0
## 14407                    0                   NA
## 14408                    0                    0
## 14409                    0                   NA
## 14410                    0                   NA
## 14411                    0                    0
## 14412                   18                   NA
## 14413                   12                    0
## 14414                    0                    0
## 14415                    0                   NA
## 14416                    0                   NA
## 14417                    2                    0
## 14418                    2                    8
## 14419                    0                   NA
## 14420                    0                   NA
## 14421                    0                    1
## 14422                    0                   NA
## 14423                    0                    0
## 14424                    0                   NA
## 14425                    1                    0
## 14426                  252                   NA
## 14427                  175                  527
## 14428                    0                    0
## 14429                    0                   NA
## 14430                    0                    0
## 14431                    0                   NA
## 14432                    0                    0
## 14433                    0                    0
## 14434                    0                   NA
## 14435                    1                   NA
## 14436                    1                    0
## 14437                    0                    0
## 14438                    0                   NA
## 14439                    0                    0
## 14440                    0                   NA
## 14441                    0                   NA
## 14442                    0                    0
## 14443                    0                    0
## 14444                    0                    0
## 14445                    2                    0
## 14446                    0                   NA
## 14447                    0                   NA
## 14448                    3                    0
## 14449                    1                   NA
## 14450                    1                    0
## 14451                    0                   NA
## 14452                    0                    1
## 14453                    0                   NA
## 14454                    0                    2
## 14455                    0                    5
## 14456                    0                   NA
## 14457                    0                    4
## 14458                    0                   NA
## 14459                    0                    0
## 14460                    0                   NA
## 14461                    0                   NA
## 14462                    0                    0
## 14463                    1                    0
## 14464                    0                   NA
## 14465                   62                  324
## 14466                   37                   NA
## 14467                    1                    0
## 14468                    0                   NA
## 14469                    2                    0
## 14470                    3                   NA
## 14471                    0                    0
## 14472                    1                   NA
## 14473                   18                    0
## 14474                    0                    0
## 14475                    0                   NA
## 14476                    0                    0
## 14477                    0                    0
## 14478                    0                   NA
## 14479                    0                    0
## 14480                    0                   NA
## 14481                    1                    0
## 14482                    0                    0
## 14483                    0                    0
## 14484                    0                    0
## 14485                    0                    0
## 14486                    0                   NA
## 14487                    0                    0
## 14488                    0                    0
## 14489                    0                    0
## 14490                    0                   NA
## 14491                    0                    0
## 14492                    0                    0
## 14493                    0                    0
## 14494                    0                    0
## 14495                    0                    0
## 14496                    0                   NA
## 14497                    0                    0
## 14498                    0                   NA
## 14499                    0                    0
## 14500                    0                   NA
## 14501                    0                   -6
## 14502                    0                    0
## 14503                    0                   NA
## 14504                    0                    0
## 14505                    0                    0
## 14506                    0                   NA
## 14507                    0                    0
## 14508                    0                   NA
## 14509                    0                    0
## 14510                    0                   NA
## 14511                    0                    0
## 14512                    0                   NA
## 14513                    0                    0
## 14514                    0                    0
## 14515                    0                   NA
## 14516                    0                    0
## 14517                    0                   NA
## 14518                    0                    0
## 14519                    0                    0
## 14520                    0                    0
## 14521                    0                    0
## 14522                    0                    0
## 14523                    0                    0
## 14524                    0                    0
## 14525                    0                    0
## 14526                    0                   NA
## 14527                    0                    0
## 14528                    0                    0
## 14529                    0                   NA
## 14530                    0                    0
## 14531                    0                    0
## 14532                    0                   NA
## 14533                    0                    0
## 14534                    0                    0
## 14535                    0                   NA
## 14536                    0                    0
## 14537                    0                   NA
## 14538                    0                    0
## 14539                    0                   NA
## 14540                    0                    0
## 14541                    0                    0
## 14542                    0                   NA
## 14543                    0                    0
## 14544                    0                    0
## 14545                    0                   NA
## 14546                    0                    0
## 14547                    0                    0
## 14548                    0                    0
## 14549                    1                   NA
## 14550                    0                    0
## 14551                    0                    0
## 14552                    0                   NA
## 14553                    0                    0
## 14554                    0                   NA
## 14555                    0                    0
## 14556                    0                    0
## 14557                    0                    0
## 14558                    0                    0
## 14559                    0                    0
## 14560                    0                   NA
## 14561                    0                    0
## 14562                    0                   NA
## 14563                    0                    0
## 14564                    0                    0
## 14565                    0                    0
## 14566                    0                    0
## 14567                    0                   NA
## 14568                    0                    0
## 14569                    0                   NA
## 14570                    0                   NA
## 14571                    0                    0
## 14572                    0                   NA
## 14573                    0                    0
## 14574                    0                   NA
## 14575                    0                    0
## 14576                    0                   NA
## 14577                    0                    0
## 14578                    0                   NA
## 14579                    0                    0
## 14580                    0                    0
## 14581                    0                   NA
## 14582                    0                    0
## 14583                    1                   NA
## 14584                    0                    0
## 14585                    0                    0
## 14586                    0                    0
## 14587                    0                   NA
## 14588                    0                    0
## 14589                    0                    0
## 14590                    0                    0
## 14591                    0                    0
## 14592                    0                    0
## 14593                    0                   NA
## 14594                    0                    0
## 14595                    0                    0
## 14596                    0                   NA
## 14597                    0                    0
## 14598                    0                    0
## 14599                    0                   NA
## 14600                    0                    0
## 14601                    0                    0
## 14602                    0                   NA
## 14603                    0                    0
## 14604                    0                    0
## 14605                    0                   NA
## 14606                    0                    0
## 14607                    0                   NA
## 14608                   13                    0
## 14609                   10                   NA
## 14610                    0                    0
## 14611                    0                   NA
## 14612                    0                    0
## 14613                    0                   NA
## 14614                    0                   NA
## 14615                    0                    0
## 14616                    0                   NA
## 14617                    0                   16
## 14618                    0                   NA
## 14619                    0                    0
## 14620                    0                    0
## 14621                    0                   NA
## 14622                    0                   NA
## 14623                    0                    0
## 14624                    0                    0
## 14625                    0                   NA
## 14626                    9                   NA
## 14627                    0                   NA
## 14628                    0                    9
## 14629                    0                    0
## 14630                    0                   NA
## 14631                  113                 1631
## 14632                   97                   NA
## 14633                    0                   NA
## 14634                    0                    0
## 14635                    0                    0
## 14636                    0                   NA
## 14637                    1                   NA
## 14638                    0                    0
## 14639                    0                   NA
## 14640                    0                    0
## 14641                    0                    0
## 14642                    0                   NA
## 14643                    0                   NA
## 14644                    0                    0
## 14645                    0                    0
## 14646                    0                    0
## 14647                    0                    0
## 14648                    1                   NA
## 14649                    0                   NA
## 14650                    0                    7
## 14651                    0                   NA
## 14652                    0                    0
## 14653                    0                    0
## 14654                    0                   NA
## 14655                    0                    0
## 14656                    0                    0
## 14657                    0                   NA
## 14658                    0                   NA
## 14659                    0                    0
## 14660                    0                   NA
## 14661                    0                    0
## 14662                    0                    0
## 14663                    0                   NA
## 14664                    3                    0
## 14665                    0                   NA
## 14666                    0                   NA
## 14667                    0                    0
## 14668                    0                    0
## 14669                    0                   NA
## 14670                    0                    0
## 14671                    0                   NA
## 14672                    3                    0
## 14673                    3                   NA
## 14674                    0                   NA
## 14675                    0                    0
## 14676                    0                    0
## 14677                    0                    0
## 14678                    0                   NA
## 14679                    0                    0
## 14680                    0                    0
## 14681                    0                    0
## 14682                    0                   NA
## 14683                    0                    6
## 14684                    0                    0
## 14685                    0                   NA
## 14686                    0                    0
## 14687                    0                    0
## 14688                    0                   NA
## 14689                    0                    0
## 14690                    0                   NA
## 14691                    0                    0
## 14692                    0                   NA
## 14693                    0                    0
## 14694                    0                   NA
## 14695                    0                    0
## 14696                    0                   NA
## 14697                    0                    3
## 14698                    0                    0
## 14699                    4                   NA
## 14700                    0                    0
## 14701                    0                    0
## 14702                    0                    0
## 14703                    1                   NA
## 14704                    0                   NA
## 14705                    0                    0
## 14706                    0                    0
## 14707                    0                   NA
## 14708                    0                    0
## 14709                    0                   NA
## 14710                    0                   NA
## 14711                    1                    0
## 14712                    0                   NA
## 14713                    0                    1
## 14714                    0                    9
## 14715                    0                   NA
## 14716                    0                    0
## 14717                   12                   NA
## 14718                    0                   NA
## 14719                    0                    0
## 14720                    3                   NA
## 14721                    2                    0
## 14722                    2                   NA
## 14723                    1                    0
## 14724                    1                    0
## 14725                    0                   NA
## 14726                    5                    7
## 14727                    0                   NA
## 14728                    0                    0
## 14729                    1                   NA
## 14730                  173                   NA
## 14731                  368                  369
## 14732                    0                    0
## 14733                    0                    0
## 14734                    0                   NA
## 14735                    0                    0
## 14736                    0                   NA
## 14737                    0                   NA
## 14738                    0                    1
## 14739                    0                    0
## 14740                    0                    0
## 14741                    0                   NA
## 14742                    0                    0
## 14743                    0                    0
## 14744                    0                   NA
## 14745                    0                    0
## 14746                    0                   NA
## 14747                    0                    0
## 14748                    7                   NA
## 14749                    8                    0
## 14750                    0                    0
## 14751                    0                   NA
## 14752                    0                    0
## 14753                    1                   NA
## 14754                    0                   NA
## 14755                    0                    0
## 14756                    0                    0
## 14757                    0                   NA
## 14758                    0                    0
## 14759                    0                   NA
## 14760                    0                   NA
## 14761                    0                    0
## 14762                    0                    0
## 14763                    0                   NA
## 14764                    0                    0
## 14765                    0                   NA
## 14766                    0                    0
## 14767                    0                   NA
## 14768                   94                    0
## 14769                   15                   NA
## 14770                    1                    0
## 14771                    0                   NA
## 14772                    4                   NA
## 14773                    1                    0
## 14774                    0                    0
## 14775                   15                    0
## 14776                   18                   NA
## 14777                    0                    0
## 14778                    0                   NA
## 14779                    0                    0
## 14780                    0                    0
## 14781                    0                   NA
## 14782                    0                    0
## 14783                    0                    0
## 14784                    2                   NA
## 14785                    0                    0
## 14786                    0                    0
## 14787                    0                    0
## 14788                    0                   NA
## 14789                    0                    0
## 14790                    0                    0
## 14791                    0                    0
## 14792                    0                   NA
## 14793                    0                    0
## 14794                    0                    0
## 14795                    0                   NA
## 14796                    0                    0
## 14797                    0                    0
## 14798                    0                    0
## 14799                    0                   NA
## 14800                    0                    0
## 14801                    0                   NA
## 14802                    0                    0
## 14803                    0                   NA
## 14804                    0                    0
## 14805                    0                   NA
## 14806                    0                    6
## 14807                    0                    0
## 14808                    0                   NA
## 14809                    0                    0
## 14810                    0                    0
## 14811                    0                   NA
## 14812                    0                   NA
## 14813                    0                    0
## 14814                    0                    0
## 14815                    0                   NA
## 14816                    0                    0
## 14817                    0                    0
## 14818                    0                   NA
## 14819                    0                    0
## 14820                    0                    0
## 14821                    0                    0
## 14822                    0                   NA
## 14823                    0                    0
## 14824                    0                    0
## 14825                    0                    0
## 14826                    0                    0
## 14827                    0                    0
## 14828                    0                    0
## 14829                    0                    0
## 14830                    0                   NA
## 14831                    0                    0
## 14832                    0                    0
## 14833                    0                   NA
## 14834                    0                    0
## 14835                    0                    0
## 14836                    0                   NA
## 14837                    0                    0
## 14838                    0                    0
## 14839                    0                   NA
## 14840                    0                    0
## 14841                    0                   NA
## 14842                    0                    0
## 14843                    0                    1
## 14844                    0                   NA
## 14845                    0                    0
## 14846                    0                   NA
## 14847                    0                    0
## 14848                    0                    0
## 14849                    0                    0
## 14850                    0                   NA
## 14851                    0                    0
## 14852                    0                    0
## 14853                    0                   NA
## 14854                    0                    0
## 14855                    0                    0
## 14856                    0                   NA
## 14857                    0                    0
## 14858                    0                   NA
## 14859                    0                    0
## 14860                    0                    0
## 14861                    0                    0
## 14862                    0                    0
## 14863                    0                    0
## 14864                    0                    0
## 14865                    0                   NA
## 14866                    0                    0
## 14867                    0                   NA
## 14868                    0                    0
## 14869                    0                    0
## 14870                    0                    0
## 14871                    0                    1
## 14872                    0                   NA
## 14873                    0                   NA
## 14874                    0                   NA
## 14875                    0                    0
## 14876                    0                   NA
## 14877                    0                    0
## 14878                    0                    0
## 14879                    0                   NA
## 14880                    0                    0
## 14881                    0                    0
## 14882                    0                    0
## 14883                    0                   NA
## 14884                    0                    0
## 14885                    0                   NA
## 14886                    0                    0
## 14887                    0                    0
## 14888                    1                   NA
## 14889                    1                    0
## 14890                    0                    0
## 14891                    0                   NA
## 14892                    0                    0
## 14893                    0                    0
## 14894                    0                   NA
## 14895                    0                    2
## 14896                    0                   NA
## 14897                    0                   NA
## 14898                    0                    0
## 14899                    0                    0
## 14900                    0                   NA
## 14901                    0                    0
## 14902                    0                   NA
## 14903                    0                    0
## 14904                    0                   NA
## 14905                    0                    0
## 14906                    0                    0
## 14907                    0                    0
## 14908                    0                   NA
## 14909                    0                    0
## 14910                    0                    0
## 14911                    0                    0
## 14912                    0                   NA
## 14913                   12                   NA
## 14914                   28                    5
## 14915                    0                   NA
## 14916                    0                    0
## 14917                    0                   NA
## 14918                    0                    0
## 14919                    0                    1
## 14920                    0                   NA
## 14921                    1                   17
## 14922                    0                   NA
## 14923                    0                    2
## 14924                    0                    0
## 14925                    0                    0
## 14926                    0                   NA
## 14927                    0                    0
## 14928                    0                   NA
## 14929                   13                   NA
## 14930                    0                   NA
## 14931                    0                    0
## 14932                    0                    0
## 14933                    1                   NA
## 14934                  129                    0
## 14935                  113                   NA
## 14936                    0                    0
## 14937                    0                   NA
## 14938                    0                    0
## 14939                    0                   NA
## 14940                    5                   26
## 14941                    2                   NA
## 14942                    0                    0
## 14943                    0                   NA
## 14944                    0                    0
## 14945                    0                   NA
## 14946                    0                   NA
## 14947                    0                    4
## 14948                    0                    0
## 14949                    0                    0
## 14950                    0                    0
## 14951                    0                   NA
## 14952                    0                    0
## 14953                    0                   NA
## 14954                    0                    0
## 14955                    0                   NA
## 14956                    0                    0
## 14957                    0                    0
## 14958                    0                    0
## 14959                    0                    0
## 14960                    0                   NA
## 14961                    0                   NA
## 14962                    0                    0
## 14963                    0                    0
## 14964                    0                   NA
## 14965                    1                    0
## 14966                    6                   NA
## 14967                    0                    0
## 14968                    0                   NA
## 14969                    0                    1
## 14970                    0                   NA
## 14971                    0                   NA
## 14972                    0                    4
## 14973                    0                  627
## 14974                    0                   NA
## 14975                    0                   NA
## 14976                    0                    0
## 14977                    0                    0
## 14978                    0                    0
## 14979                    0                   NA
## 14980                    0                    0
## 14981                    0                    0
## 14982                    0                    0
## 14983                    0                   NA
## 14984                    0                    0
## 14985                    0                   NA
## 14986                    0                    0
## 14987                    0                   NA
## 14988                    0                   NA
## 14989                    0                    0
## 14990                    0                    0
## 14991                    0                   NA
## 14992                    0                   NA
## 14993                    0                    0
## 14994                    0                    0
## 14995                    0                   NA
## 14996                    0                   NA
## 14997                    0                    0
## 14998                    2                    0
## 14999                    0                   NA
## 15000                    0                   NA
## 15001                    0                    0
## 15002                    0                   NA
## 15003                    0                    0
## 15004                    1                    0
## 15005                    6                   NA
## 15006                    0                    0
## 15007                    0                   NA
## 15008                    0                    0
## 15009                    0                   NA
## 15010                    0                    1
## 15011                    0                   NA
## 15012                    0                    0
## 15013                    0                   NA
## 15014                    0                    3
## 15015                    0                   NA
## 15016                    1                   NA
## 15017                    1                    0
## 15018                    0                    0
## 15019                    0                   NA
## 15020                    0                    0
## 15021                    0                   NA
## 15022                   36                   NA
## 15023                   57                    0
## 15024                    0                    1
## 15025                    0                   NA
## 15026                    4                   NA
## 15027                    6                   21
## 15028                    0                    0
## 15029                    1                   NA
## 15030                    0                    0
## 15031                    1                   NA
## 15032                   -5                   -8
## 15033                    0                   NA
## 15034                    0                    0
## 15035                    0                   NA
## 15036                  370                   NA
## 15037                  349                  414
## 15038                    0                    0
## 15039                    0                   NA
## 15040                    0                    0
## 15041                    0                   NA
## 15042                    0                    0
## 15043                    0                   NA
## 15044                    0                    0
## 15045                    0                   NA
## 15046                    0                    0
## 15047                    0                   NA
## 15048                    0                   NA
## 15049                    0                    0
## 15050                    0                    1
## 15051                    0                   NA
## 15052                    0                    0
## 15053                    0                   NA
## 15054                    0                   NA
## 15055                    0                    0
## 15056                    0                    0
## 15057                    8                   NA
## 15058                    4                    0
## 15059                    0                    0
## 15060                    0                   NA
## 15061                    0                   NA
## 15062                    1                   13
## 15063                    0                   NA
## 15064                    0                    1
## 15065                    0                   NA
## 15066                    0                    0
## 15067                    0                   NA
## 15068                    0                    0
## 15069                    2                   NA
## 15070                    2                    0
## 15071                    0                    1
## 15072                    0                   NA
## 15073                    0                    0
## 15074                    0                   NA
## 15075                    0                    0
## 15076                    0                   NA
## 15077                  152                   NA
## 15078                   53                   13
## 15079                    3                    0
## 15080                    2                   NA
## 15081                    0                    0
## 15082                    2                   NA
## 15083                    0                   NA
## 15084                    0                    0
## 15085                   15                   NA
## 15086                   22                    2
## 15087                    0                    0
## 15088                    0                   NA
## 15089                    2                   NA
## 15090                    0                    0
## 15091                    0                    0
## 15092                    0                    0
## 15093                    0                    0
## 15094                    0                   NA
## 15095                    0                    0
## 15096                    0                    0
## 15097                    0                   NA
## 15098                    0                    0
## 15099                    0                    0
## 15100                    0                   NA
## 15101                    0                    0
## 15102                    0                    0
## 15103                    0                   NA
## 15104                    0                    0
## 15105                    0                    0
## 15106                    0                   NA
## 15107                    0                    0
## 15108                    0                    0
## 15109                    0                    0
## 15110                    0                   NA
## 15111                    0                   NA
## 15112                    0                    1
## 15113                    0                    0
## 15114                    0                   NA
## 15115                    0                    0
## 15116                    0                   NA
## 15117                    2                    5
## 15118                    0                    0
## 15119                    0                   NA
## 15120                    0                    0
## 15121                    0                    0
## 15122                    0                   NA
## 15123                    0                    0
## 15124                    0                   NA
## 15125                    0                    0
## 15126                    0                   NA
## 15127                    0                    0
## 15128                    0                    0
## 15129                    0                   NA
## 15130                    0                    0
## 15131                    0                   NA
## 15132                    0                    0
## 15133                    0                    0
## 15134                    0                   NA
## 15135                    0                    0
## 15136                    0                    0
## 15137                    0                   NA
## 15138                    0                    0
## 15139                    0                    0
## 15140                    0                    0
## 15141                    0                    0
## 15142                    0                    0
## 15143                    0                   NA
## 15144                    0                    0
## 15145                    0                   NA
## 15146                    1                    0
## 15147                    0                    0
## 15148                    0                    0
## 15149                    0                   NA
## 15150                    0                    0
## 15151                    0                   NA
## 15152                    0                    0
## 15153                    0                   NA
## 15154                    0                    0
## 15155                    0                    0
## 15156                    0                   NA
## 15157                    0                    0
## 15158                    0                    0
## 15159                    0                   NA
## 15160                    0                    0
## 15161                    0                    0
## 15162                    0                   NA
## 15163                    0                    0
## 15164                    0                   NA
## 15165                    0                    0
## 15166                    0                    0
## 15167                    0                   NA
## 15168                    0                    0
## 15169                    0                   NA
## 15170                    0                    0
## 15171                    0                   NA
## 15172                    0                   NA
## 15173                    0                    0
## 15174                    0                    0
## 15175                    0                    0
## 15176                    0                    0
## 15177                    0                    0
## 15178                    0                    0
## 15179                    0                   NA
## 15180                    0                    2
## 15181                    0                    0
## 15182                    0                   NA
## 15183                    0                    0
## 15184                    0                    0
## 15185                    0                    0
## 15186                    0                   NA
## 15187                    0                   NA
## 15188                    1                    1
## 15189                    3                   NA
## 15190                    0                    0
## 15191                    0                   NA
## 15192                    0                    1
## 15193                    0                   NA
## 15194                    0                    0
## 15195                    0                   NA
## 15196                    0                    0
## 15197                    0                    0
## 15198                    0                   NA
## 15199                    1                    0
## 15200                    0                    0
## 15201                    0                   NA
## 15202                    0                    0
## 15203                    0                    0
## 15204                    0                    0
## 15205                    0                   NA
## 15206                    0                   NA
## 15207                    0                    0
## 15208                    0                    0
## 15209                    0                    0
## 15210                    0                   NA
## 15211                    0                   NA
## 15212                    0                    0
## 15213                    0                    0
## 15214                    0                   NA
## 15215                    0                    0
## 15216                    0                    0
## 15217                    0                   NA
## 15218                    0                    0
## 15219                    0                   NA
## 15220                    0                   NA
## 15221                    0                    1
## 15222                    0                    0
## 15223                    0                    0
## 15224                    0                   NA
## 15225                    0                    0
## 15226                    0                    0
## 15227                    0                    0
## 15228                    0                   NA
## 15229                   16                   NA
## 15230                   34                    0
## 15231                    0                    0
## 15232                    0                   NA
## 15233                    0                    0
## 15234                    0                   NA
## 15235                    0                    0
## 15236                    0                   NA
## 15237                    1                   NA
## 15238                    0                    4
## 15239                    0                    1
## 15240                    0                   NA
## 15241                    0                    0
## 15242                    0                   NA
## 15243                    0                    0
## 15244                    0                   NA
## 15245                    0                   NA
## 15246                    0                    0
## 15247                    9                   NA
## 15248                    1                    1
## 15249                    1                   NA
## 15250                    0                   NA
## 15251                    0                    0
## 15252                  129                   NA
## 15253                  135                  799
## 15254                    0                   NA
## 15255                    1                    6
## 15256                    0                   NA
## 15257                    0                    7
## 15258                    4                   NA
## 15259                    2                    0
## 15260                    0                   NA
## 15261                    0                    0
## 15262                    0                   NA
## 15263                    0                    0
## 15264                    0                    0
## 15265                    0                   NA
## 15266                    0                    0
## 15267                    0                    0
## 15268                    0                    2
## 15269                    0                   NA
## 15270                    2                    7
## 15271                    0                   NA
## 15272                    0                    0
## 15273                    0                   NA
## 15274                    0                    0
## 15275                    0                    0
## 15276                    0                   NA
## 15277                    0                    0
## 15278                    0                   NA
## 15279                    0                    0
## 15280                    0                   NA
## 15281                    0                    0
## 15282                    0                   NA
## 15283                    0                    0
## 15284                    0                   NA
## 15285                    0                   NA
## 15286                    0                    3
## 15287                    0                    0
## 15288                    0                   NA
## 15289                    0                   NA
## 15290                    0                    4
## 15291                    0                   NA
## 15292                    0                    5
## 15293                    6                  270
## 15294                    6                   NA
## 15295                    0                   NA
## 15296                    0                    0
## 15297                    0                    0
## 15298                    0                    0
## 15299                    0                    6
## 15300                    0                   NA
## 15301                    0                    0
## 15302                    0                   NA
## 15303                    1                    0
## 15304                    0                    0
## 15305                    0                   NA
## 15306                    0                   NA
## 15307                    0                    0
## 15308                    0                   NA
## 15309                    0                    0
## 15310                    0                    0
## 15311                    0                   NA
## 15312                    0                    0
## 15313                    0                   NA
## 15314                    0                   NA
## 15315                    0                    0
## 15316                    0                   NA
## 15317                    0                    1
## 15318                    2                   NA
## 15319                    0                   -5
## 15320                    0                    0
## 15321                    0                   NA
## 15322                    0                    0
## 15323                    0                   NA
## 15324                    5                    0
## 15325                   11                   NA
## 15326                    0                    2
## 15327                    0                   NA
## 15328                    0                   NA
## 15329                    0                    0
## 15330                    0                    2
## 15331                    0                   NA
## 15332                    0                   NA
## 15333                    0                    0
## 15334                    0                   NA
## 15335                    0                    0
## 15336                    0                   NA
## 15337                    1                    0
## 15338                    0                    0
## 15339                    0                   NA
## 15340                    0                   NA
## 15341                    0                    0
## 15342                    0                    0
## 15343                   21                   NA
## 15344                    0                    0
## 15345                    0                   NA
## 15346                    1                   NA
## 15347                    7                    0
## 15348                    0                   NA
## 15349                    1                    0
## 15350                    0                    1
## 15351                    0                   NA
## 15352                    0                   NA
## 15353                    1                    0
## 15354                    0                    5
## 15355                    0                   NA
## 15356                  345                  192
## 15357                  347                   NA
## 15358                    0                    0
## 15359                    0                   NA
## 15360                    0                   NA
## 15361                    0                    0
## 15362                    0                   NA
## 15363                    0                    0
## 15364                    0                   NA
## 15365                    0                    0
## 15366                    0                   NA
## 15367                    0                    0
## 15368                    0                   NA
## 15369                    0                    0
## 15370                    0                    0
## 15371                    0                   NA
## 15372                    0                   NA
## 15373                    0                    1
## 15374                    0                    0
## 15375                    0                   NA
## 15376                    0                    0
## 15377                    4                   NA
## 15378                   19                    0
## 15379                    2                   NA
## 15380                    0                    0
## 15381                    1                   NA
## 15382                    1                    0
## 15383                    0                   NA
## 15384                    1                    0
## 15385                    0                    7
## 15386                    0                   NA
## 15387                    0                    0
## 15388                    0                   NA
## 15389                    0                    0
## 15390                    2                   NA
## 15391                    0                   NA
## 15392                    0                    0
## 15393                    0                    0
## 15394                    0                   NA
## 15395                    0                    0
## 15396                    0                   NA
## 15397                  191                  498
## 15398                   21                   NA
## 15399                    1                    0
## 15400                    4                   NA
## 15401                    1                   NA
## 15402                   13                    0
## 15403                    0                   NA
## 15404                    1                    0
## 15405                   22                   NA
## 15406                   16                   32
## 15407                    0                    0
## 15408                    0                   NA
## 15409                    0                   NA
## 15410                    0                    0
## 15411                    0                    0
## 15412                    0                    0
## 15413                    1                   NA
## 15414                    3                    0
## 15415                    0                    0
## 15416                    0                   NA
## 15417                    0                    0
## 15418                    0                    0
## 15419                    0                   NA
## 15420                    1                    0
## 15421                    0                    0
## 15422                    0                    0
## 15423                    0                    0
## 15424                    0                   NA
## 15425                    0                    0
## 15426                    0                   NA
## 15427                    0                    0
## 15428                    0                    0
## 15429                    0                    0
## 15430                    0                   NA
## 15431                    0                   NA
## 15432                    0                    0
## 15433                    0                   NA
## 15434                    0                    0
## 15435                    0                    0
## 15436                    2                    0
## 15437                    2                   NA
## 15438                    0                   NA
## 15439                    0                    0
## 15440                    0                    0
## 15441                    0                    0
## 15442                    0                   NA
## 15443                    0                   NA
## 15444                    0                    0
## 15445                    0                    0
## 15446                    0                   NA
## 15447                    0                    0
## 15448                    0                   NA
## 15449                    0                    0
## 15450                    0                   NA
## 15451                    0                    0
## 15452                    0                   NA
## 15453                    0                    0
## 15454                    0                    0
## 15455                    0                   NA
## 15456                    0                    0
## 15457                    0                    0
## 15458                    0                   NA
## 15459                    0                    0
## 15460                    0                    0
## 15461                    0                    0
## 15462                    0                    0
## 15463                    0                    0
## 15464                    0                   NA
## 15465                    0                    0
## 15466                    1                   NA
## 15467                    0                    0
## 15468                    0                    0
## 15469                    0                    0
## 15470                    0                   NA
## 15471                    0                    0
## 15472                    0                   NA
## 15473                    0                    1
## 15474                    0                    0
## 15475                    0                   NA
## 15476                    0                    0
## 15477                    0                   NA
## 15478                    0                    0
## 15479                    0                    0
## 15480                    0                   NA
## 15481                    0                    0
## 15482                    0                    0
## 15483                    0                   NA
## 15484                    0                   NA
## 15485                    0                    0
## 15486                    0                    0
## 15487                    0                   NA
## 15488                    0                    0
## 15489                    0                   NA
## 15490                    0                    0
## 15491                    0                    0
## 15492                    0                   NA
## 15493                    0                   NA
## 15494                    0                    0
## 15495                    0                    0
## 15496                    0                    0
## 15497                    0                    0
## 15498                    0                    0
## 15499                    0                    0
## 15500                    0                    0
## 15501                    0                   NA
## 15502                    0                    0
## 15503                    0                    0
## 15504                    0                   NA
## 15505                    0                    0
## 15506                    0                    0
## 15507                    0                   NA
## 15508                    2                    0
## 15509                    1                   NA
## 15510                    4                   NA
## 15511                    0                    0
## 15512                    0                   NA
## 15513                    0                   NA
## 15514                    0                    0
## 15515                    0                    0
## 15516                    0                   NA
## 15517                    1                    0
## 15518                    0                   NA
## 15519                    0                    0
## 15520                    0                    0
## 15521                    0                   NA
## 15522                    0                    0
## 15523                    0                   NA
## 15524                    0                    0
## 15525                    0                    0
## 15526                    0                    0
## 15527                    0                   NA
## 15528                    0                    0
## 15529                    0                   NA
## 15530                    0                    0
## 15531                    0                    0
## 15532                    0                   NA
## 15533                    0                    0
## 15534                    0                   NA
## 15535                    0                   NA
## 15536                    0                    0
## 15537                    0                    0
## 15538                    0                    0
## 15539                    0                   NA
## 15540                    0                    0
## 15541                    0                   NA
## 15542                    0                    0
## 15543                    0                   NA
## 15544                    0                    0
## 15545                    0                    0
## 15546                    0                   NA
## 15547                    0                    0
## 15548                    0                    0
## 15549                    0                    0
## 15550                    0                   NA
## 15551                   23                   NA
## 15552                   57                   88
## 15553                    0                   NA
## 15554                    0                    0
## 15555                    0                   NA
## 15556                    0                    0
## 15557                    0                    0
## 15558                    0                   NA
## 15559                    0                   NA
## 15560                    0                    7
## 15561                    0                   NA
## 15562                    1                    0
## 15563                    0                    0
## 15564                    0                   NA
## 15565                    0                   NA
## 15566                    0                    0
## 15567                    0                   NA
## 15568                    0                    0
## 15569                   16                   NA
## 15570                    0                   NA
## 15571                    0                    0
## 15572                    0                   NA
## 15573                   14                    3
## 15574                  135                   NA
## 15575                  147                    0
## 15576                    1                   11
## 15577                    2                   NA
## 15578                    0                    0
## 15579                    0                   NA
## 15580                    0                   NA
## 15581                    0                    0
## 15582                    0                    0
## 15583                    0                   NA
## 15584                    0                    0
## 15585                    0                   NA
## 15586                    0                   NA
## 15587                    0                    6
## 15588                    0                    0
## 15589                    0                    0
## 15590                    0                   NA
## 15591                    0                    0
## 15592                    0                   11
## 15593                    2                   NA
## 15594                    0                    0
## 15595                    0                   NA
## 15596                    0                    0
## 15597                    0                   NA
## 15598                    0                    0
## 15599                    0                    0
## 15600                    0                   NA
## 15601                    0                   NA
## 15602                    0                    3
## 15603                    0                   NA
## 15604                    2                   11
## 15605                    0                    0
## 15606                    0                   NA
## 15607                    7                    0
## 15608                    2                   NA
## 15609                    0                   NA
## 15610                    0                    0
## 15611                    0                    0
## 15612                    0                   NA
## 15613                    0                   NA
## 15614                    0                    0
## 15615                    3                  133
## 15616                    5                   NA
## 15617                    0                    0
## 15618                    0                   NA
## 15619                    0                    0
## 15620                    0                    0
## 15621                    0                   NA
## 15622                    0                    1
## 15623                    0                    0
## 15624                    0                    0
## 15625                    0                   NA
## 15626                    0                    3
## 15627                    0                   NA
## 15628                    0                    0
## 15629                    0                   NA
## 15630                    0                   NA
## 15631                    0                    0
## 15632                    0                    0
## 15633                    0                   NA
## 15634                    0                   NA
## 15635                    1                    0
## 15636                    0                    0
## 15637                    0                   NA
## 15638                    0                    0
## 15639                    0                   NA
## 15640                    1                    8
## 15641                    0                   NA
## 15642                    0                    0
## 15643                    0                   NA
## 15644                    0                   NA
## 15645                    0                    2
## 15646                    4                   30
## 15647                   12                   NA
## 15648                    0                   NA
## 15649                    0                    0
## 15650                    0                   NA
## 15651                    0                    0
## 15652                    0                   NA
## 15653                    0                    0
## 15654                    0                   NA
## 15655                    0                    0
## 15656                    0                    0
## 15657                    0                   NA
## 15658                    0                    0
## 15659                    3                   NA
## 15660                    0                   NA
## 15661                    0                    0
## 15662                    0                    0
## 15663                    0                   NA
## 15664                   27                   NA
## 15665                    0                    0
## 15666                    0                   NA
## 15667                    0                    0
## 15668                    0                   NA
## 15669                    4                   38
## 15670                    0                    0
## 15671                    1                   NA
## 15672                    0                   NA
## 15673                    0                    0
## 15674                    0                    5
## 15675                    0                   NA
## 15676                    0                    0
## 15677                    0                   NA
## 15678                  347                   NA
## 15679                  475                 1084
## 15680                    0                    0
## 15681                    0                   NA
## 15682                    0                    0
## 15683                    0                   NA
## 15684                    0                   NA
## 15685                    0                    0
## 15686                    0                    0
## 15687                    0                   NA
## 15688                    0                   NA
## 15689                    1                    0
## 15690                    0                    0
## 15691                    0                   NA
## 15692                    0                    0
## 15693                    0                   NA
## 15694                    1                    0
## 15695                    0                   NA
## 15696                    0                    0
## 15697                    0                   NA
## 15698                    0                    0
## 15699                    0                   NA
## 15700                   19                   NA
## 15701                   15                    0
## 15702                    3                    0
## 15703                    0                   NA
## 15704                    0                    0
## 15705                    1                   NA
## 15706                    1                    0
## 15707                    1                   NA
## 15708                    0                   NA
## 15709                    0                    3
## 15710                    0                   NA
## 15711                    0                    0
## 15712                    2                   NA
## 15713                    4                    0
## 15714                    0                   NA
## 15715                    0                    0
## 15716                    0                   NA
## 15717                    1                    0
## 15718                    0                    0
## 15719                    1                   NA
## 15720                   90                   53
## 15721                  182                   NA
## 15722                    1                   NA
## 15723                    3                    0
## 15724                    1                   11
## 15725                    5                   NA
## 15726                    0                    0
## 15727                    0                   NA
## 15728                   16                   NA
## 15729                   34                   13
## 15730                    0                    0
## 15731                    0                   NA
## 15732                    0                   NA
## 15733                    0                    0
## 15734                    0                    0
## 15735                    0                   NA
## 15736                    0                    0
## 15737                    1                   NA
## 15738                    2                   20
## 15739                    0                    0
## 15740                    0                    0
## 15741                    0                   NA
## 15742                    0                    0
## 15743                    1                   NA
## 15744                    0                    0
## 15745                    0                    0
## 15746                    0                    0
## 15747                    0                   NA
## 15748                    0                    0
## 15749                    0                    0
## 15750                    0                   NA
## 15751                    0                    0
## 15752                    0                    0
## 15753                    0                    0
## 15754                    0                   NA
## 15755                    0                   NA
## 15756                    0                    0
## 15757                    0                    0
## 15758                    0                   NA
## 15759                    0                    0
## 15760                    0                   NA
## 15761                    2                   NA
## 15762                    0                    0
## 15763                    0                    0
## 15764                    0                   NA
## 15765                    0                    0
## 15766                    0                    0
## 15767                    0                   NA
## 15768                    0                    0
## 15769                    0                   NA
## 15770                    0                    0
## 15771                    0                   NA
## 15772                    0                    0
## 15773                    0                   NA
## 15774                    0                   NA
## 15775                    0                    0
## 15776                    0                    0
## 15777                    0                   NA
## 15778                    0                    0
## 15779                    0                   NA
## 15780                    0                    0
## 15781                    0                    0
## 15782                    0                    0
## 15783                    0                   NA
## 15784                    0                    0
## 15785                    0                    0
## 15786                    0                    0
## 15787                    0                    0
## 15788                    0                   NA
## 15789                    0                    0
## 15790                    0                    0
## 15791                    0                   NA
## 15792                    0                    0
## 15793                    0                    0
## 15794                    0                   NA
## 15795                    0                    0
## 15796                    0                    0
## 15797                    0                    0
## 15798                    0                   NA
## 15799                    0                    0
## 15800                    0                   NA
## 15801                    0                    0
## 15802                    0                    0
## 15803                    0                   NA
## 15804                    0                    0
## 15805                    0                   NA
## 15806                    0                    0
## 15807                    0                    0
## 15808                    0                   NA
## 15809                    0                   NA
## 15810                    0                    0
## 15811                    0                    0
## 15812                    0                    0
## 15813                    0                   NA
## 15814                    0                   NA
## 15815                    0                    0
## 15816                    0                    0
## 15817                    0                   NA
## 15818                    0                   NA
## 15819                    1                    0
## 15820                    0                    0
## 15821                    0                    0
## 15822                    0                    0
## 15823                    0                   NA
## 15824                    0                    0
## 15825                    0                    0
## 15826                    0                   NA
## 15827                    1                    0
## 15828                    0                    0
## 15829                    0                   NA
## 15830                    0                    0
## 15831                    0                    0
## 15832                    0                    0
## 15833                    0                   NA
## 15834                    3                   NA
## 15835                    3                    0
## 15836                    1                   NA
## 15837                    0                    0
## 15838                    0                   NA
## 15839                    0                    0
## 15840                    0                   NA
## 15841                    1                    0
## 15842                    1                   NA
## 15843                    0                    0
## 15844                    1                   NA
## 15845                    0                    0
## 15846                    0                   NA
## 15847                    1                    0
## 15848                    1                   NA
## 15849                    1                    0
## 15850                    0                    0
## 15851                    0                   NA
## 15852                    0                    0
## 15853                    0                   NA
## 15854                    0                    0
## 15855                    0                    0
## 15856                    0                   NA
## 15857                    0                    0
## 15858                    0                    0
## 15859                    0                   NA
## 15860                    0                   NA
## 15861                    1                    0
## 15862                    0                   NA
## 15863                    1                    0
## 15864                    0                    0
## 15865                    0                   NA
## 15866                    0                    0
## 15867                    0                   NA
## 15868                    0                    0
## 15869                    0                   NA
## 15870                    0                   NA
## 15871                    0                    0
## 15872                    0                    0
## 15873                    0                    0
## 15874                    0                   NA
## 15875                    0                    0
## 15876                    0                    0
## 15877                    0                    0
## 15878                    0                   NA
## 15879                   42                   NA
## 15880                   78                   16
## 15881                    0                    0
## 15882                    0                   NA
## 15883                    0                   NA
## 15884                    0                    0
## 15885                    0                    0
## 15886                    0                   NA
## 15887                    0                   NA
## 15888                    0                   12
## 15889                    0                   NA
## 15890                    0                    0
## 15891                    0                    0
## 15892                    0                   NA
## 15893                    0                    0
## 15894                    0                   NA
## 15895                    0                   NA
## 15896                    0                    0
## 15897                    8                   NA
## 15898                    0                   NA
## 15899                    1                    1
## 15900                    0                   NA
## 15901                    6                    0
## 15902                  149                  321
## 15903                  147                   NA
## 15904                    1                   NA
## 15905                    1                    0
## 15906                    0                   NA
## 15907                    0                    0
## 15908                    0                    6
## 15909                    1                   NA
## 15910                    0                    0
## 15911                    0                   NA
## 15912                    0                   NA
## 15913                    0                    0
## 15914                    0                    3
## 15915                    0                   NA
## 15916                    0                    0
## 15917                    0                   NA
## 15918                    0                    0
## 15919                    1                   NA
## 15920                    1                    1
## 15921                    0                   15
## 15922                    0                   NA
## 15923                    0                    0
## 15924                    0                   NA
## 15925                    0                    0
## 15926                    0                   NA
## 15927                    0                    0
## 15928                    0                    0
## 15929                    0                   NA
## 15930                    0                    0
## 15931                    0                   NA
## 15932                    1                    0
## 15933                    0                   NA
## 15934                    0                    0
## 15935                    0                   NA
## 15936                   -2                    3
## 15937                    3                   NA
## 15938                    0                    0
## 15939                    0                   NA
## 15940                    0                   NA
## 15941                    0                    0
## 15942                    0                    0
## 15943                    0                   NA
## 15944                    5                   NA
## 15945                    7                    0
## 15946                    0                   NA
## 15947                    0                    2
## 15948                    0                    0
## 15949                    0                    0
## 15950                    0                   NA
## 15951                    0                    0
## 15952                    0                    0
## 15953                    1                   NA
## 15954                    2                    0
## 15955                    0                   NA
## 15956                    0                    5
## 15957                    0                   NA
## 15958                    0                    0
## 15959                    0                   NA
## 15960                    0                    0
## 15961                    0                    0
## 15962                    0                   NA
## 15963                    1                   NA
## 15964                    0                    0
## 15965                    0                    0
## 15966                    0                   NA
## 15967                    0                    0
## 15968                    0                   NA
## 15969                    1                   NA
## 15970                    2                    0
## 15971                    0                   NA
## 15972                    0                    0
## 15973                    0                    0
## 15974                    0                   NA
## 15975                    7                    0
## 15976                   22                   NA
## 15977                    0                   NA
## 15978                    0                    0
## 15979                    1                    0
## 15980                    0                   NA
## 15981                    0                   NA
## 15982                    1                    1
## 15983                    0                    0
## 15984                    0                   NA
## 15985                    0                   NA
## 15986                    0                    0
## 15987                    0                   NA
## 15988                    2                    0
## 15989                    0                    0
## 15990                    0                   NA
## 15991                    0                   NA
## 15992                    0                    0
## 15993                   69                   NA
## 15994                   95                    0
## 15995                    0                   NA
## 15996                    0                    0
## 15997                    0                   NA
## 15998                   16                    8
## 15999                    1                    0
## 16000                    0                   NA
## 16001                    0                    0
## 16002                    0                   NA
## 16003                    0                   NA
## 16004                    0                    0
## 16005                    0                   NA
## 16006                    1                    0
## 16007                  473                   NA
## 16008                  427                  415
## 16009                    0                    0
## 16010                    0                   NA
## 16011                    0                   NA
## 16012                    0                    0
## 16013                    0                    0
## 16014                    0                   NA
## 16015                    0                   NA
## 16016                    0                    0
## 16017                    1                   NA
## 16018                    2                    0
## 16019                    0                   NA
## 16020                    0                    0
## 16021                    0                   NA
## 16022                    0                    0
## 16023                    1                   NA
## 16024                    0                    0
## 16025                    0                    0
## 16026                    0                   NA
## 16027                    0                    0
## 16028                    0                   NA
## 16029                   15                   NA
## 16030                   18                    0
## 16031                    0                   NA
## 16032                    1                    0
## 16033                    0                   NA
## 16034                    0                  -12
## 16035                    1                   NA
## 16036                    1                    0
## 16037                    0                    6
## 16038                    0                   NA
## 16039                    0                   NA
## 16040                    1                    1
## 16041                    0                    0
## 16042                    3                   NA
## 16043                    0                    0
## 16044                    0                   NA
## 16045                    0                   NA
## 16046                    0                    0
## 16047                    0                    0
## 16048                    0                   NA
## 16049                  107                   NA
## 16050                  207                   26
## 16051                    2                   NA
## 16052                    1                    0
## 16053                    2                   NA
## 16054                   13                    0
## 16055                    0                    0
## 16056                    2                   NA
## 16057                   43                    0
## 16058                   34                   NA
## 16059                    0                    0
## 16060                    0                   NA
## 16061                    1                   NA
## 16062                    0                    0
## 16063                    0                   NA
## 16064                    0                   NA
## 16065                    0                    0
## 16066                    0                   NA
## 16067                    0                    0
## 16068                    2                    0
## 16069                    1                   NA
## 16070                    0                    0
## 16071                    0                    0
## 16072                    0                   NA
## 16073                    0                    0
## 16074                    0                    0
## 16075                    0                   NA
## 16076                    0                    0
## 16077                    0                    0
## 16078                    0                   NA
## 16079                    0                    0
## 16080                    0                   NA
## 16081                    0                    0
## 16082                    0                    0
## 16083                    0                   NA
## 16084                    0                    0
## 16085                    0                    0
## 16086                    0                   NA
## 16087                    0                    0
## 16088                    0                   NA
## 16089                    0                   NA
## 16090                    0                    0
## 16091                    0                    0
## 16092                    0                   NA
## 16093                    0                   NA
## 16094                    2                    7
## 16095                    0                    0
## 16096                    0                   NA
## 16097                    0                    0
## 16098                    0                    0
## 16099                    0                   NA
## 16100                    0                   NA
## 16101                    0                    0
## 16102                    0                   NA
## 16103                    1                    0
## 16104                    0                    0
## 16105                    0                   NA
## 16106                    0                   NA
## 16107                    0                    0
## 16108                    0                    0
## 16109                    0                   NA
## 16110                    0                    0
## 16111                    0                    0
## 16112                    0                   NA
## 16113                    0                    0
## 16114                    0                    0
## 16115                    0                   NA
## 16116                    0                    0
## 16117                    0                    0
## 16118                    0                    0
## 16119                    0                    0
## 16120                    0                    0
## 16121                    0                   NA
## 16122                    0                   NA
## 16123                    0                    0
## 16124                    0                   NA
## 16125                    1                    0
## 16126                    0                    0
## 16127                    0                    0
## 16128                    0                   NA
## 16129                    0                    0
## 16130                    0                   NA
## 16131                    0                    0
## 16132                    0                   NA
## 16133                    0                    0
## 16134                    0                    0
## 16135                    0                   NA
## 16136                    0                    0
## 16137                    0                   NA
## 16138                    0                    0
## 16139                    0                    0
## 16140                    0                    0
## 16141                    0                   NA
## 16142                    0                   NA
## 16143                    0                    0
## 16144                    0                    0
## 16145                    0                    0
## 16146                    0                   NA
## 16147                    0                    0
## 16148                    0                   NA
## 16149                    0                   NA
## 16150                    0                    1
## 16151                    0                   NA
## 16152                    0                    0
## 16153                    0                    0
## 16154                    0                    0
## 16155                    0                    0
## 16156                    0                   NA
## 16157                    0                    0
## 16158                    0                    0
## 16159                    0                    0
## 16160                    1                   NA
## 16161                    0                   NA
## 16162                    0                    0
## 16163                    0                   NA
## 16164                    0                    0
## 16165                    0                   NA
## 16166                    0                    0
## 16167                    0                   NA
## 16168                    0                    0
## 16169                    0                   NA
## 16170                    5                    0
## 16171                    2                   NA
## 16172                    1                   NA
## 16173                    0                   NA
## 16174                    0                   NA
## 16175                    0                    6
## 16176                    0                    0
## 16177                    0                   NA
## 16178                    0                   NA
## 16179                    0                    0
## 16180                    0                    0
## 16181                    0                   NA
## 16182                    0                   NA
## 16183                    0                    0
## 16184                    0                   NA
## 16185                    0                    0
## 16186                    0                   NA
## 16187                    2                    0
## 16188                    0                    0
## 16189                    0                   NA
## 16190                    0                   NA
## 16191                    0                    0
## 16192                    0                   NA
## 16193                    0                    0
## 16194                    0                    0
## 16195                    0                   NA
## 16196                    0                    0
## 16197                    0                   NA
## 16198                    0                    0
## 16199                    0                   NA
## 16200                    0                    0
## 16201                    0                   NA
## 16202                    1                    0
## 16203                    0                   NA
## 16204                    0                    0
## 16205                    0                   NA
## 16206                    0                    0
## 16207                    0                   NA
## 16208                    0                    0
## 16209                    0                   NA
## 16210                    3                    0
## 16211                    2                   NA
## 16212                    0                    0
## 16213                    0                    0
## 16214                    0                   NA
## 16215                    0                    0
## 16216                    0                    0
## 16217                    0                    0
## 16218                    0                   NA
## 16219                    0                   NA
## 16220                   97                   26
## 16221                    0                   NA
## 16222                    0                    0
## 16223                    0                    0
## 16224                    0                   NA
## 16225                    0                   NA
## 16226                    0                    0
## 16227                    0                    0
## 16228                    0                   NA
## 16229                    0                   NA
## 16230                    0                    0
## 16231                    0                   NA
## 16232                    0                    0
## 16233                    0                    1
## 16234                    0                   NA
## 16235                    0                   NA
## 16236                    0                    0
## 16237                    4                   NA
## 16238                    1                   NA
## 16239                    1                    5
## 16240                   14                   NA
## 16241                    7                    4
## 16242                  149                   NA
## 16243                  149                 1035
## 16244                    0                   NA
## 16245                    4                    6
## 16246                    0                    3
## 16247                    0                   NA
## 16248                    4                   41
## 16249                    4                   NA
## 16250                    0                   NA
## 16251                    0                    0
## 16252                    3                    0
## 16253                    0                   NA
## 16254                    0                   NA
## 16255                    0                    0
## 16256                    0                    0
## 16257                    0                   NA
## 16258                    0                    0
## 16259                    0                    0
## 16260                    0                   NA
## 16261                    0                   NA
## 16262                    1                   12
## 16263                    0                    0
## 16264                    0                   NA
## 16265                    0                    0
## 16266                    0                   NA
## 16267                    0                    0
## 16268                    0                    0
## 16269                    0                   NA
## 16270                    0                    0
## 16271                    0                   NA
## 16272                    2                   NA
## 16273                    0                    0
## 16274                    0                   17
## 16275                    0                   NA
## 16276                    1                    0
## 16277                    1                   NA
## 16278                    0                   NA
## 16279                    0                    6
## 16280                    0                   NA
## 16281                    0                    2
## 16282                    0                   NA
## 16283                    0                   10
## 16284                    3                    0
## 16285                    9                   NA
## 16286                    0                   NA
## 16287                    0                    0
## 16288                    0                    0
## 16289                    0                    0
## 16290                    0                   NA
## 16291                    0                    0
## 16292                    0                    0
## 16293                    1                    0
## 16294                    3                   NA
## 16295                    2                    0
## 16296                    0                   NA
## 16297                    0                   NA
## 16298                    0                    0
## 16299                    0                    0
## 16300                    0                   NA
## 16301                    0                    0
## 16302                    0                   NA
## 16303                    0                    0
## 16304                    0                   NA
## 16305                    0                    0
## 16306                    0                   NA
## 16307                    0                   NA
## 16308                    0                    0
## 16309                    0                    0
## 16310                    2                   NA
## 16311                    0                    0
## 16312                    0                   NA
## 16313                    0                   NA
## 16314                    0                    0
## 16315                   16                  -30
## 16316                   28                   NA
## 16317                    0                   NA
## 16318                    0                    0
## 16319                    1                   NA
## 16320                    0                    0
## 16321                    0                    0
## 16322                    0                   NA
## 16323                    0                    0
## 16324                    0                   NA
## 16325                    0                    1
## 16326                    0                   NA
## 16327                    2                   NA
## 16328                    3                    0
## 16329                    0                   NA
## 16330                    0                    0
## 16331                    0                   NA
## 16332                    0                   NA
## 16333                    0                    0
## 16334                  207                    0
## 16335                  128                   NA
## 16336                    0                    0
## 16337                    0                   NA
## 16338                   23                   67
## 16339                   30                   NA
## 16340                    0                   NA
## 16341                    0                   NA
## 16342                    0                   11
## 16343                    0                   NA
## 16344                    0                   NA
## 16345                    2                    0
## 16346                   -1                    0
## 16347                    1                   NA
## 16348                    0                    0
## 16349                    1                   NA
## 16350                  429                   NA
## 16351                  627                    0
## 16352                    0                   NA
## 16353                    0                    0
## 16354                    0                   NA
## 16355                    0                   NA
## 16356                    0                    0
## 16357                    0                    0
## 16358                    0                   NA
## 16359                    0                    0
## 16360                    0                   NA
## 16361                    2                   NA
## 16362                    0                    0
## 16363                    0                   NA
## 16364                    0                    0
## 16365                    0                    0
## 16366                    0                   NA
## 16367                    0                   NA
## 16368                    0                    0
## 16369                    0                   NA
## 16370                    0                    0
## 16371                    0                   NA
## 16372                    0                    0
## 16373                   18                   NA
## 16374                   30                    0
## 16375                    3                   NA
## 16376                    0                    0
## 16377                    0                   NA
## 16378                    0                    0
## 16379                    1                   NA
## 16380                    3                    2
## 16381                    0                   NA
## 16382                    0                    0
## 16383                    0                   NA
## 16384                    0                    0
## 16385                    0                   NA
## 16386                    3                    0
## 16387                    0                   NA
## 16388                    1                    0
## 16389                    0                    0
## 16390                    0                   NA
## 16391                    0                   NA
## 16392                    0                    0
## 16393                  213                  481
## 16394                  169                   NA
## 16395                    0                   NA
## 16396                    5                    0
## 16397                   12                   NA
## 16398                   13                    0
## 16399                    0                   NA
## 16400                    1                    0
## 16401                   43                   NA
## 16402                   36                    0
## 16403                    0                    0
## 16404                    0                   NA
## 16405                    0                   NA
## 16406                    0                    0
## 16407                    0                   NA
## 16408                    0                   NA
## 16409                    0                   NA
## 16410                    0                    0
## 16411                    0                   NA
## 16412                    0                    0
## 16413                    3                   NA
## 16414                    4                    0
## 16415                    0                    0
## 16416                    0                    0
## 16417                    0                   NA
## 16418                    0                    0
## 16419                    0                   NA
## 16420                    1                    5
## 16421                    0                    0
## 16422                    0                    0
## 16423                    0                   NA
## 16424                    0                    0
## 16425                    0                   NA
## 16426                    0                    0
## 16427                    0                   NA
## 16428                    0                    0
## 16429                    0                   NA
## 16430                    0                    0
## 16431                    0                    0
## 16432                    0                   NA
## 16433                    0                    0
## 16434                    0                   NA
## 16435                    0                   NA
## 16436                    1                    0
## 16437                    0                    0
## 16438                    0                   NA
## 16439                    2                    2
## 16440                    1                   NA
## 16441                    0                    0
## 16442                    0                   NA
## 16443                    0                    0
## 16444                    0                    0
## 16445                    0                   NA
## 16446                    0                    0
## 16447                    0                   NA
## 16448                    1                   NA
## 16449                    0                    0
## 16450                    0                    0
## 16451                    0                   NA
## 16452                    1                    0
## 16453                    0                   NA
## 16454                    0                    0
## 16455                    0                   NA
## 16456                    0                    0
## 16457                    0                    0
## 16458                    0                   NA
## 16459                    0                    0
## 16460                    0                   NA
## 16461                    0                    0
## 16462                    0                    0
## 16463                    0                    0
## 16464                    0                   NA
## 16465                    0                    0
## 16466                    0                    0
## 16467                    0                    0
## 16468                    0                   NA
## 16469                    1                    0
## 16470                    0                   NA
## 16471                    0                    2
## 16472                    1                   NA
## 16473                    0                    0
## 16474                    0                    0
## 16475                    0                   NA
## 16476                    0                    0
## 16477                    0                   NA
## 16478                    0                   NA
## 16479                    0                    0
## 16480                    0                    0
## 16481                    0                   NA
## 16482                    0                    0
## 16483                    0                    3
## 16484                    0                   NA
## 16485                    0                    0
## 16486                    0                   NA
## 16487                    0                    0
## 16488                    0                    0
## 16489                    0                   NA
## 16490                    0                    0
## 16491                    0                   NA
## 16492                    0                    0
## 16493                    0                    0
## 16494                    0                   NA
## 16495                    0                    0
## 16496                    0                   NA
## 16497                    0                    0
## 16498                    0                   NA
## 16499                    0                    0
## 16500                    1                   NA
## 16501                    0                    0
## 16502                    0                    0
## 16503                    0                    0
## 16504                    0                   NA
## 16505                    0                   NA
## 16506                    0                    0
## 16507                    0                    0
## 16508                    0                   NA
## 16509                    0                   NA
## 16510                    1                    0
## 16511                    0                    0
## 16512                    0                   NA
## 16513                    0                    0
## 16514                    0                   NA
## 16515                    0                    0
## 16516                    0                   NA
## 16517                    0                    0
## 16518                    0                   NA
## 16519                    4                    0
## 16520                    5                   NA
## 16521                    2                   NA
## 16522                    1                   NA
## 16523                    0                   NA
## 16524                    0                    0
## 16525                    0                   NA
## 16526                    0                    0
## 16527                    1                   NA
## 16528                    1                    2
## 16529                    0                    0
## 16530                    0                   NA
## 16531                    0                    0
## 16532                    2                   NA
## 16533                    0                    0
## 16534                    2                    3
## 16535                    4                   NA
## 16536                    0                    0
## 16537                    0                   NA
## 16538                    0                   NA
## 16539                    0                    0
## 16540                    0                   NA
## 16541                    0                    0
## 16542                    0                    0
## 16543                    0                   NA
## 16544                    0                    0
## 16545                    0                   NA
## 16546                    0                    0
## 16547                    0                   NA
## 16548                    0                    0
## 16549                    0                   NA
## 16550                    2                   NA
## 16551                    0                    0
## 16552                    0                    0
## 16553                    0                   NA
## 16554                    0                    0
## 16555                    0                   NA
## 16556                    1                    0
## 16557                    1                   NA
## 16558                    1                   NA
## 16559                    2                    0
## 16560                    0                    0
## 16561                    0                    0
## 16562                    0                   NA
## 16563                    0                    0
## 16564                    0                    0
## 16565                    0                   NA
## 16566                    0                   NA
## 16567                    0                    1
## 16568                  110                   NA
## 16569                   90                   29
## 16570                    0                   NA
## 16571                    0                    0
## 16572                    0                   NA
## 16573                    0                    0
## 16574                    0                   NA
## 16575                    0                    0
## 16576                    0                   NA
## 16577                    0                   NA
## 16578                    0                   25
## 16579                    1                    0
## 16580                    0                   NA
## 16581                    0                    0
## 16582                    0                   NA
## 16583                    0                    1
## 16584                    0                   NA
## 16585                    0                    0
## 16586                    0                   NA
## 16587                    6                   NA
## 16588                    0                   NA
## 16589                   -1                    3
## 16590                    6                    0
## 16591                    6                   NA
## 16592                  123                  890
## 16593                  149                   NA
## 16594                    0                    2
## 16595                    2                   NA
## 16596                    1                   NA
## 16597                    1                   22
## 16598                    2                   41
## 16599                    2                   NA
## 16600                    0                    0
## 16601                    0                   NA
## 16602                   -3                    0
## 16603                    0                   NA
## 16604                    0                   NA
## 16605                    0                    9
## 16606                    0                   NA
## 16607                    0                    0
## 16608                    0                    0
## 16609                    0                   NA
## 16610                    0                    0
## 16611                    0                   NA
## 16612                    1                   27
## 16613                    0                    0
## 16614                    0                   NA
## 16615                    0                   NA
## 16616                    0                    0
## 16617                    0                    0
## 16618                    0                    0
## 16619                    0                   NA
## 16620                    0                    0
## 16621                    0                   NA
## 16622                    1                   NA
## 16623                    2                   -8
## 16624                    0                    0
## 16625                    0                   NA
## 16626                    0                   NA
## 16627                    1                    5
## 16628                    0                   NA
## 16629                    0                   17
## 16630                    0                   NA
## 16631                    0                    8
## 16632                    0                   NA
## 16633                    2                   16
## 16634                    3                   NA
## 16635                    8                    0
## 16636                    0                   -2
## 16637                    0                   NA
## 16638                    0                    0
## 16639                    0                    0
## 16640                    0                    0
## 16641                    0                   NA
## 16642                    0                    0
## 16643                    5                    0
## 16644                    5                   NA
## 16645                    0                   NA
## 16646                    0                    7
## 16647                    0                    0
## 16648                    0                   NA
## 16649                    0                   NA
## 16650                    0                    1
## 16651                    0                    0
## 16652                    1                   NA
## 16653                    0                   NA
## 16654                    0                    2
## 16655                    0                   NA
## 16656                    0                    0
## 16657                    0                   NA
## 16658                    0                    0
## 16659                    2                    0
## 16660                    0                   NA
## 16661                    1                   NA
## 16662                    0                    5
## 16663                    0                   NA
## 16664                    0                   10
## 16665                   30                  262
## 16666                   31                   NA
##  [ reached 'max' / getOption("max.print") -- omitted 38652 rows ]

Tab list of countries affected by covid and carrying out covid testing

q2 <- "
      SELECT c.date as Date
        , d.convert_name as Country
        , a.value as Number_of_Test
        , sum(b.cases) as Covid_Case
        , sum(b.deaths) as Cases_of_Covid_Death
        , sum(b.recovered) as Covid_Recovery_Cases
      FROM country_testing_policy a
      JOIN (SELECT time_id
            , country_id
            , cases
            , deaths
            , recovered
      FROM data
      GROUP BY time_id
            , country_id
            , cases
            , deaths
            , recovered
        order by country_id asc) b ON b.time_id=a.time_id AND b.country_id=a.country_id
      JOIN time c ON c.time_id = a.time_id
      JOIN country d ON d.country_id = a.country_id
      GROUP BY c.date
        , d.convert_name
        , a.value
      HAVING sum(b.cases) > 0
      "
g2 <- dbGetQuery(con, q2)
g2
##            date                country number_of_test covid_case
## 1    2020-04-27                Bolivia              0        148
## 2    2020-04-11                 France              1       7456
## 3    2020-04-29               Slovakia              1         10
## 4    2020-03-30                 Serbia              1        126
## 5    2020-04-22           Sierra Leone              2         18
## 6    2020-03-23                  Japan              1         70
## 7    2020-01-17                  China              1          4
## 8    2020-04-10                Romania              3        706
## 9    2020-04-13               Tanzania              0         17
## 10   2020-04-13            Switzerland              1        673
## 11   2020-04-12              Palestine              1          5
## 12   2020-03-31                 Guyana              1          4
## 13   2020-04-10                Bermuda              1          9
## 14   2020-03-24            Afghanistan              1         40
## 15   2020-03-25               Paraguay              2         20
## 16   2020-04-19                Estonia              2         69
## 17   2020-04-28                   Iran              0       2103
## 18   2020-04-20               Malaysia              3        120
## 19   2020-03-29             Madagascar              1         17
## 20   2020-04-14            Puerto Rico              1          6
## 21   2020-04-16             San Marino              2         74
## 22   2020-04-16                Ireland              1       1792
## 23   2020-03-23               Eswatini              1          3
## 24   2020-04-19                 Kuwait              2        258
## 25   2020-04-23                  Niger              1         16
## 26   2020-05-10               Slovenia              2          6
## 27   2020-04-28               Portugal              3        593
## 28   2020-04-10            South Korea              3         54
## 29   2020-04-12              Nicaragua              1          1
## 30   2020-04-12                 Guyana              1          5
## 31   2020-04-22             Uzbekistan              1         73
## 32   2020-03-17                 France              1       2229
## 33   2020-04-14               Mongolia              1         13
## 34   2020-03-20                 Israel              1        346
## 35   2020-04-23             Mozambique              1          7
## 36   2020-04-18            New Zealand              2         21
## 37   2020-04-19               Honduras              1         30
## 38   2020-04-25               Tanzania              0         15
## 39   2020-04-19               Slovenia              2         26
## 40   2020-04-10               DR Congo              1         67
## 41   2020-03-28                Hungary              1         86
## 42   2020-03-13                  Gabon              2          1
## 43   2020-04-18                Lebanon              1          9
## 44   2020-04-24           Sierra Leone              2         21
## 45   2020-04-25                Andorra              3         14
## 46   2020-04-28                 Zambia              1          8
## 47   2020-04-11                Ireland              1       1535
## 48   2020-03-25                   Oman              2         33
## 49   2020-03-18          United States              3       4539
## 50   2020-04-20                  Japan              3        390
## 51   2020-04-27             Cabo Verde              2         19
## 52   2020-03-31                  Syria              0          1
## 53   2020-03-31            Puerto Rico              1         47
## 54   2020-03-15               Eswatini              1          1
## 55   2020-03-13                Denmark              1        346
## 56   2020-04-25              Australia              1         20
## 57   2020-03-22            Switzerland              1       2136
## 58   2020-04-20          United States              3      51942
## 59   2020-03-31              Sri Lanka              1         21
## 60   2020-02-29                Croatia              1          3
## 61   2020-04-29                 Sweden              1       1376
## 62   2020-03-18         United Kingdom              1       1083
## 63   2020-03-23                Ireland              2        340
## 64   2020-03-25                  Ghana              1         66
## 65   2020-04-28         Congo Republic              1         14
## 66   2020-03-20               Slovenia              2         88
## 67   2020-04-27                Denmark              2        253
## 68   2020-04-10                  Sudan              2          2
## 69   2020-04-17             Costa Rica              2         23
## 70   2020-03-21 Bosnia and Herzegovina              2          4
## 71   2020-03-10               Thailand              1          3
## 72   2020-03-14                Moldova              1          8
## 73   2020-04-21                Nigeria              1         38
## 74   2020-04-13                Bermuda              1          7
## 75   2020-04-20             San Marino              2          7
## 76   2020-03-22                Bahrain              2         50
## 77   2020-04-20                Bolivia              0         88
## 78   2020-03-25               Cameroon              0         25
## 79   2020-04-17                   Peru              2       2014
## 80   2020-03-30            Netherlands              1       1988
## 81   2020-03-13                   Iran              0       2364
## 82   2020-03-21            South Korea              3        294
## 83   2020-04-13                  Japan              1       1129
## 84   2020-02-17                  Japan              1         14
## 85   2020-04-21            Philippines              2        340
## 86   2020-03-14            New Zealand              1          2
## 87   2020-03-22                 Rwanda              3          2
## 88   2020-01-30              Australia              1          2
## 89   2020-03-29            New Zealand              1        123
## 90   2020-04-13                Ecuador              3        272
## 91   2020-04-21                  Egypt              1        346
## 92   2020-05-10                Denmark              2        211
## 93   2020-03-29                Germany              1       8365
## 94   2020-04-12                  Sudan              2          4
## 95   2020-04-29                  Sudan              2        100
## 96   2020-03-12         Czech Republic              1         34
## 97   2020-04-11                Vietnam              3          2
## 98   2020-03-23                 Panama              2        100
## 99   2020-04-12                  Egypt              1        271
## 100  2020-03-20         United Kingdom              1       1941
## 101  2020-03-28                Ukraine              1        108
## 102  2020-01-30              Singapore              2          6
## 103  2020-04-29                  Italy              2       4177
## 104  2020-03-14                 Sweden              1        302
## 105  2020-03-27              Singapore              2         75
## 106  2020-04-22               Mongolia              1          2
## 107  2020-03-20              Argentina              1         62
## 108  2020-04-25                 Cyprus              3         15
## 109  2020-04-10                  Benin              1         13
## 110  2020-02-25                  China              2        515
## 111  2020-03-11                 Mexico              0          1
## 112  2020-04-15                Ireland              1       1900
## 113  2020-03-18               Djibouti              3          1
## 114  2020-03-21                   Cuba              2         10
## 115  2020-04-13                 Brazil              1       2680
## 116  2020-03-14    Trinidad and Tobago              1          3
## 117  2020-04-20                Iceland              3         13
## 118  2020-02-21                  China              2        891
## 119  2020-04-22                Ecuador              3        722
## 120  2020-03-27               Slovenia              2        119
## 121  2020-04-23                 Zambia              1         11
## 122  2020-04-14                   Chad              1          8
## 123  2020-04-15               Honduras              1         24
## 124  2020-04-11                Romania              3        788
## 125  2020-04-14                 Panama              2        144
## 126  2020-04-25            Netherlands              1       1461
## 127  2020-03-13              Australia              1         30
## 128  2020-04-24                Germany              1       4207
## 129  2020-03-23          Cote d'Ivoire              2         19
## 130  2020-03-26                 Mexico              0        180
## 131  2020-02-28                Croatia              1          3
## 132  2020-03-31             Bangladesh              2          2
## 133  2020-03-16                Croatia              1         19
## 134  2020-04-15 Bosnia and Herzegovina              2         72
## 135  2020-03-27                Bolivia              0         40
## 136  2020-04-20                Finland              1        187
## 137  2020-03-22               Bulgaria              1         60
## 138  2020-04-21          United States              3      53562
## 139  2020-05-10                Algeria              0        354
## 140  2020-04-17               Honduras              1         32
## 141  2020-03-15             Costa Rica              2          2
## 142  2020-04-14                   Oman              3        300
## 143  2020-03-18                 Serbia              1         33
## 144  2020-04-29                Moldova              1        290
## 145  2020-04-27               Slovenia              2         25
## 146  2020-03-31                Moldova              1         90
## 147  2020-02-17            South Korea              3          2
## 148  2020-04-23           Sierra Leone              2         14
## 149  2020-05-10                  Ghana              3        251
## 150  2020-04-23                 Turkey              2       6199
## 151  2020-03-15                 Brazil              1         34
## 152  2020-01-31                 Russia              1          2
## 153  2020-04-22                   Peru              2       2925
## 154  2020-04-19            South Korea              3         16
## 155  2020-02-14              Australia              1          1
## 156  2020-04-26             Kazakhstan              1        286
## 157  2020-03-16              Guatemala              1          1
## 158  2020-03-20          Cote d'Ivoire              2          3
## 159  2020-03-16                Finland              1         90
## 160  2020-04-21                Myanmar              2         10
## 161  2020-04-11                  Chile              2        955
## 162  2020-04-12                 Israel              1        737
## 163  2020-04-25                   Guam              2          1
## 164  2020-04-10             Mozambique              1          3
## 165  2020-03-18                   Iran              0       2370
## 166  2020-04-26                Nigeria              1        178
## 167  2020-03-31    Trinidad and Tobago              2         12
## 168  2020-04-16                 Panama              2        354
## 169  2020-03-21                  India              1        126
## 170  2020-03-25                Uruguay              1         55
## 171  2020-04-19               Djibouti              3        114
## 172  2020-04-18                   Iraq              2         79
## 173  2020-05-10                 Russia              3      21829
## 174  2020-03-18           Burkina Faso              1          5
## 175  2020-04-24               Tanzania              0         15
## 176  2020-03-30           Burkina Faso              1         24
## 177  2020-03-12            Switzerland              1        152
## 178  2020-03-23                   Cuba              2         15
## 179  2020-04-30              Venezuela              1          4
## 180  2020-04-18                 Jordan              2         11
## 181  2020-04-17                  Chile              2        979
## 182  2020-04-27                 Rwanda              3         24
## 183  2020-03-10            Afghanistan              1          1
## 184  2020-04-14              Sri Lanka              2         24
## 185  2020-04-21                Morocco              2        354
## 186  2020-04-12             Kazakhstan              1        126
## 187  2020-04-28               Pakistan              2       1664
## 188  2020-04-12               Zimbabwe              0          3
## 189  2020-03-10               Portugal              1         20
## 190  2020-03-12                 Panama              2         10
## 191  2020-05-10             Bangladesh              1       1523
## 192  2020-04-16                Algeria              0        198
## 193  2020-04-30                 Panama              2        332
## 194  2020-04-26                  Kenya              1         19
## 195  2020-03-17                   Cuba              2          1
## 196  2020-04-10               Cameroon              2         90
## 197  2020-04-28               Thailand              1         23
## 198  2020-04-18                Bolivia              0         56
## 199  2020-04-22                 Uganda              1          4
## 200  2020-04-22               Pakistan              2       1612
## 201  2020-04-26            Netherlands              1       1310
## 202  2020-04-13                Bahrain              2        321
## 203  2020-04-10                Andorra              1         37
## 204  2020-04-24                  Italy              2       5667
## 205  2020-04-16          United States              3      61446
## 206  2020-02-26                 Kuwait              0         21
## 207  2020-03-10               Slovenia              2         15
## 208  2020-03-25              Mauritius              1         12
## 209  2020-04-25                Tunisia              1         21
## 210  2020-04-20                  Gabon              2         11
## 211  2020-03-11                Hungary              1          7
## 212  2020-03-21                Germany              1       6414
## 213  2020-03-31   United Arab Emirates              1        196
## 214  2020-03-19          Cote d'Ivoire              2          4
## 215  2020-04-25                   Peru              2       4417
## 216  2020-04-13              Nicaragua              1          2
## 217  2020-01-31              Singapore              2          6
## 218  2020-03-22                 Cyprus              0         28
## 219  2020-03-16                Austria              1        363
## 220  2020-04-23               Thailand              1         41
## 221  2020-03-17                 Brazil              1        155
## 222  2020-04-11               Bulgaria              1         37
## 223  2020-03-27            Netherlands              1       2191
## 224  2020-03-14                Andorra              1          1
## 225  2020-04-12               Slovakia              1         27
## 226  2020-03-27               Zimbabwe              0          2
## 227  2020-04-25                Uruguay              1         39
## 228  2020-04-29              Venezuela              1          2
## 229  2020-04-25               Barbados              2          2
## 230  2020-03-22                Vietnam              2         26
## 231  2020-04-23                Algeria              0        196
## 232  2020-04-17     Dominican Republic              2        512
## 233  2020-04-26                 Mexico              1       1805
## 234  2020-04-13             Luxembourg              1         22
## 235  2020-04-27                   Iraq              2         84
## 236  2020-03-21            El Salvador              1          4
## 237  2020-03-21                 Rwanda              3          6
## 238  2020-03-27                 France              1       7731
## 239  2020-03-18                Nigeria              1          6
## 240  2020-03-26                Andorra              1         60
## 241  2020-04-23            New Zealand              2          5
## 242  2020-04-14             Luxembourg              1         26
## 243  2020-04-28            Switzerland              1        203
## 244  2020-04-25                 Canada              3       1778
## 245  2020-04-26          Cote d'Ivoire              2        107
## 246  2020-03-22             Kazakhstan              1         10
## 247  2020-02-19                  China              2       1750
## 248  2020-04-21                Tunisia              1          5
## 249  2020-03-28                  Libya              1          2
## 250  2020-04-17                Romania              3        851
## 251  2020-03-22                   Oman              2          7
## 252  2020-04-16               Mongolia              1          1
## 253  2020-03-14              Venezuela              1          2
## 254  2020-03-30             Azerbaijan              2         91
## 255  2020-03-14                   Iraq              2         20
## 256  2020-04-11                  Sudan              2          3
## 257  2020-04-22                  Spain              1       6523
## 258  2020-03-17            South Korea              3        168
## 259  2020-04-27                 Malawi              1          3
## 260  2020-04-12                Morocco              2        213
## 261  2020-04-23               Pakistan              2        785
## 262  2020-04-10               Malaysia              3        227
## 263  2020-04-23             Bangladesh              2        804
## 264  2020-03-23           Burkina Faso              1         24
## 265  2020-04-14                   Cuba              2         97
## 266  2020-04-16             Uzbekistan              1        184
## 267  2020-04-14           Sierra Leone              2          2
## 268  2020-04-13                  Egypt              1        251
## 269  2020-03-22                 Turkey              2        843
## 270  2020-04-23                 Guyana              1          3
## 271  2020-03-12                Vietnam              2          2
## 272  2020-04-18                Andorra              3         22
## 273  2020-03-22    Trinidad and Tobago              1         41
## 274  2020-03-31            Switzerland              1       1821
## 275  2020-04-20              Mauritius              1          3
## 276  2020-04-21                 France              1       4784
## 277  2020-03-25                 Panama              2        196
## 278  2020-02-28                 Israel              1          2
## 279  2020-04-28                 Brazil              1      10402
## 280  2020-04-11             Azerbaijan              2        132
## 281  2020-04-13              Palestine              1          2
## 282  2020-03-24             San Marino              1         36
## 283  2020-03-28 Bosnia and Herzegovina              2         69
## 284  2020-03-18                  Sudan              2          1
## 285  2020-03-30             San Marino              1         11
## 286  2020-04-29               Botswana              1          1
## 287  2020-03-26                 Rwanda              3         10
## 288  2020-04-18             Kazakhstan              1        190
## 289  2020-03-16                  Chile              0         95
## 290  2020-03-26        Kyrgyz Republic              1          2
## 291  2020-04-10              Singapore              2        484
## 292  2020-03-29                Ecuador              0        309
## 293  2020-03-17                 Cyprus              0         23
## 294  2020-02-18               Thailand              0          1
## 295  2020-03-27            Afghanistan              1         16
## 296  2020-04-22                Austria              2        102
## 297  2020-03-20                   Chad              1          1
## 298  2020-03-18      Brunei Darussalam              2         14
## 299  2020-04-25                Moldova              1        378
## 300  2020-04-29                Jamaica              1         49
## 301  2020-04-12                 Serbia              1        525
## 302  2020-03-22                  Egypt              1         62
## 303  2020-03-12               Slovenia              2         58
## 304  2020-03-29              Nicaragua              1          2
## 305  2020-03-19                  Gabon              2          2
## 306  2020-05-10                Bolivia              0        290
## 307  2020-03-30             Bangladesh              2          2
## 308  2020-03-21            Switzerland              1       2233
## 309  2020-03-27                Iceland              3        153
## 310  2020-03-15           South Africa              1         13
## 311  2020-03-17            Philippines              2         47
## 312  2020-04-17                Croatia              2         73
## 313  2020-03-22                Ecuador              0        389
## 314  2020-03-27   United Arab Emirates              1         72
## 315  2020-04-11               Slovenia              2         64
## 316  2020-03-27              Greenland              3          1
## 317  2020-03-21                Bolivia              0          8
## 318  2020-03-20               Zimbabwe              0          1
## 319  2020-01-24                Vietnam              0          2
## 320  2020-04-20         Czech Republic              2        287
## 321  2020-03-16                Uruguay              1         23
## 322  2020-04-24             Azerbaijan              2         74
## 323  2020-04-24                Vietnam              3          4
## 324  2020-03-30               Portugal              2       1238
## 325  2020-03-22            Netherlands              1       1210
## 326  2020-03-26                  Aruba              1          2
## 327  2020-03-24                   Oman              2         29
## 328  2020-03-20               Bulgaria              1         46
## 329  2020-04-10               Djibouti              3         20
## 330  2020-03-30                Belgium              1       1746
## 331  2020-03-31               Botswana              1          1
## 332  2020-04-24           South Africa              2        585
## 333  2020-03-13               Slovakia              1         27
## 334  2020-04-16                  Egypt              1        323
## 335  2020-04-13                Jamaica              1          7
## 336  2020-04-18                 Russia              3       8855
## 337  2020-03-29    Trinidad and Tobago              2         12
## 338  2020-03-19                   Iraq              2         38
## 339  2020-03-26                Ukraine              1         80
## 340  2020-03-24              Argentina              1        121
## 341  2020-03-20                Denmark              1        140
## 342  2020-04-22           South Africa              2        335
## 343  2020-03-21              Guatemala              1          9
## 344  2020-04-30                Andorra              3          2
## 345  2020-04-10              Guatemala              2         70
## 346  2020-02-29         United Kingdom              1          5
## 347  2020-04-13                Vietnam              3          5
## 348  2020-04-10                Vietnam              3          4
## 349  2020-04-29                 Cyprus              3         21
## 350  2020-04-23                 Kuwait              2        319
## 351  2020-03-26                 Jordan              2         66
## 352  2020-04-30                   Iran              0       2056
## 353  2020-04-17            Philippines              2        425
## 354  2020-03-15                  Spain              1       3551
## 355  2020-03-14                Ireland              2         60
## 356  2020-03-23                 Turkey              2        582
## 357  2020-04-11             Bangladesh              2        152
## 358  2020-04-21              Venezuela              1         29
## 359  2020-04-24                 Angola              2          1
## 360  2020-02-11              Singapore              2          4
## 361  2020-04-25                 Panama              2        372
## 362  2020-04-29           Saudi Arabia              2       2591
## 363  2020-03-10                 Brazil              1          6
## 364  2020-04-16                Ecuador              3        622
## 365  2020-04-17                Nigeria              1         86
## 366  2020-03-30               Tanzania              0          6
## 367  2020-04-21                Germany              1       3011
## 368  2020-04-21            Afghanistan              1        101
## 369  2020-04-18                Somalia              1         55
## 370  2020-03-18              Venezuela              1          3
## 371  2020-03-24                 Belize              0          1
## 372  2020-04-28                 Poland              1        601
## 373  2020-04-27               Pakistan              2       1302
## 374  2020-04-13                 Cyprus              3         46
## 375  2020-04-30            Switzerland              1        322
## 376  2020-03-11                 Greece              0         16
## 377  2020-04-15                 Sweden              1        979
## 378  2020-04-23                   Guam              2          1
## 379  2020-04-25                 Uganda              1          1
## 380  2020-04-26                  Gabon              2          4
## 381  2020-03-11            Philippines              2         16
## 382  2020-04-23                   Iran              0       2224
## 383  2020-04-27                 Greece              2         17
## 384  2020-03-22                Belgium              1       1056
## 385  2020-04-28                  Spain              1       2833
## 386  2020-03-23            Afghanistan              1         10
## 387  2020-04-24                 Panama              2        346
## 388  2020-04-16                   Chad              1          8
## 389  2020-04-10              Mauritius              1         45
## 390  2020-04-23                 Uganda              1         14
## 391  2020-04-18                Albania              1         30
## 392  2020-03-23                 Norway              1        442
## 393  2020-03-15              Singapore              2         28
## 394  2020-03-16            Afghanistan              1         11
## 395  2020-04-26            South Korea              3         20
## 396  2020-04-22                Bolivia              0         22
## 397  2020-03-23               Pakistan              1        235
## 398  2020-04-29                 Greece              2         10
## 399  2020-04-17            Switzerland              1        661
## 400  2020-03-13           Saudi Arabia              2         58
## 401  2020-03-27                  Chile              2        468
## 402  2020-02-29             Luxembourg              0          1
## 403  2020-02-15              Singapore              2         14
## 404  2020-04-14                  India              3       2245
## 405  2020-04-13              Venezuela              1         14
## 406  2020-04-12               Eswatini              3          4
## 407  2020-03-22                Austria              1       1143
## 408  2020-03-11                Austria              1        115
## 409  2020-03-15         United Kingdom              1        433
## 410  2020-03-24                Morocco              2         46
## 411  2020-04-21                 Canada              3       2046
## 412  2020-04-10            South Sudan              2          1
## 413  2020-03-23                 Angola              1          1
## 414  2020-04-28             Bangladesh              2       1046
## 415  2020-03-25                 Turkey              2        904
## 416  2020-03-30               Honduras              2         58
## 417  2020-03-24           Saudi Arabia              2        256
## 418  2020-03-23                Ukraine              1          6
## 419  2020-04-15                  Libya              1         22
## 420  2020-03-23               Djibouti              3          2
## 421  2020-04-27                Estonia              2         12
## 422  2020-03-12                Morocco              2          4
## 423  2020-03-27          Cote d'Ivoire              2         21
## 424  2020-04-30                 Gambia              1          2
## 425  2020-03-20             Kazakhstan              1         17
## 426  2020-03-28                  Egypt              1         79
## 427  2020-04-28              Sri Lanka              2         96
## 428  2020-03-28                Romania              3        423
## 429  2020-04-24             Kazakhstan              1        336
## 430  2020-04-30                Algeria              0        357
## 431  2020-04-10                  China              3         55
## 432  2020-05-10                Bahrain              2        497
## 433  2020-04-29                  Japan              3        435
## 434  2020-03-16             Bangladesh              2          3
## 435  2020-04-12            Puerto Rico              1         63
## 436  2020-04-28                Estonia              2         17
## 437  2020-05-12                Austria              2        166
## 438  2020-04-10                 Cyprus              1         69
## 439  2020-04-18                Tunisia              1         42
## 440  2020-04-16             Kazakhstan              1        171
## 441  2020-02-25                Croatia              1          1
## 442  2020-04-26                 Turkey              2       5218
## 443  2020-03-23                  Syria              0          1
## 444  2020-03-29                  Kenya              1         11
## 445  2020-05-10                Ireland              1        455
## 446  2020-03-18                Hungary              1          8
## 447  2020-03-25                 Israel              1       1619
## 448  2020-04-21                  Chile              2        744
## 449  2020-03-25            South Korea              3        200
## 450  2020-03-25                Belgium              1       1863
## 451  2020-04-28                Ireland              1        615
## 452  2020-04-17                 Uganda              1          1
## 453  2020-04-15           South Africa              2        234
## 454  2020-03-21                  Egypt              1         55
## 455  2020-04-26            New Zealand              2          3
## 456  2020-03-13                Iceland              3         63
## 457  2020-04-14            Afghanistan              1        107
## 458  2020-03-16                 Greece              0        103
## 459  2020-04-29                Iceland              3          5
## 460  2020-03-11              Indonesia              1         20
## 461  2020-03-26                 Israel              1        763
## 462  2020-03-14                 Mexico              0         25
## 463  2020-03-15   United Arab Emirates              1         13
## 464  2020-04-27                  Italy              2       4063
## 465  2020-04-27             Mozambique              1          6
## 466  2020-03-24                  Qatar              1         32
## 467  2020-04-14          United States              3      52058
## 468  2020-04-26                   Oman              2        208
## 469  2020-03-25 Bosnia and Herzegovina              2         43
## 470  2020-01-28                Germany              1          4
## 471  2020-03-21          United States              3      11713
## 472  2020-03-26                  Kenya              1          3
## 473  2020-02-29              Singapore              2         11
## 474  2020-03-11                  Chile              0         14
## 475  2020-03-22                Morocco              2         29
## 476  2020-03-17                Andorra              1         46
## 477  2020-04-23                 France              1       4138
## 478  2020-04-17                Ireland              1       1433
## 479  2020-04-27          Cote d'Ivoire              2         53
## 480  2020-04-25                Lebanon              1         16
## 481  2020-04-29 Bosnia and Herzegovina              2        116
## 482  2020-03-16                  India              1          9
## 483  2020-03-10                Bahrain              2         45
## 484  2020-04-24         Czech Republic              2        138
## 485  2020-04-21                Romania              3        496
## 486  2020-04-22              Venezuela              1         32
## 487  2020-03-22                  Japan              1        133
## 488  2020-04-26            El Salvador              1         61
## 489  2020-03-21                Ecuador              0        366
## 490  2020-04-24                 Russia              3      10623
## 491  2020-03-27                   Chad              1          2
## 492  2020-03-27                Namibia              1          4
## 493  2020-04-26                 Rwanda              3         15
## 494  2020-03-18               Thailand              1         35
## 495  2020-02-24            South Korea              3        392
## 496  2020-03-11               Slovenia              2         41
## 497  2020-01-22               Thailand              0          2
## 498  2020-03-13            Philippines              2         15
## 499  2020-04-27                 Zambia              1          4
## 500  2020-03-17                   Iraq              2         30
## 501  2020-03-23                Vietnam              2         36
## 502  2020-03-29                 Gambia              1          1
## 503  2020-04-12             Luxembourg              1         58
## 504  2020-03-30                  Ghana              3         11
## 505  2020-03-17      Brunei Darussalam              2          6
## 506  2020-04-17               Slovenia              2         56
## 507  2020-03-13                  Qatar              1         58
## 508  2020-03-19   United Arab Emirates              1         27
## 509  2020-03-31                 Rwanda              3          5
## 510  2020-04-19                Ecuador              3       1018
## 511  2020-03-29            South Korea              3        210
## 512  2020-04-17              Palestine              1         16
## 513  2020-03-16                 Norway              1        282
## 514  2020-03-17               Barbados              2          2
## 515  2020-03-20                 Canada              3        156
## 516  2020-04-13                 Russia              3       4744
## 517  2020-03-27                Finland              1        161
## 518  2020-04-10                   Guam              2          3
## 519  2020-04-29                  Egypt              1        486
## 520  2020-03-20          United States              3      10161
## 521  2020-03-26                 Greece              0        149
## 522  2020-04-27                 Panama              2        483
## 523  2020-03-12           Saudi Arabia              2         49
## 524  2020-03-16         United Kingdom              1        654
## 525  2020-04-14                 Canada              3       1298
## 526  2020-04-23                  Kenya              1         39
## 527  2020-03-30                  Libya              1          7
## 528  2020-03-30             Madagascar              1         13
## 529  2020-03-27              Guatemala              2          4
## 530  2020-03-23               Colombia              2         71
## 531  2020-04-24                Bolivia              0        135
## 532  2020-04-24                 Cyprus              3         14
## 533  2020-04-29            Philippines              2        435
## 534  2020-03-10               Pakistan              1         13
## 535  2020-03-21                Lebanon              1         38
## 536  2020-03-21                 Sweden              1        324
## 537  2020-03-16                  China              2         25
## 538  2020-03-15                  Japan              1        109
## 539  2020-04-20               Slovakia              1         84
## 540  2020-04-23         Czech Republic              2        150
## 541  2020-03-15                Morocco              2         22
## 542  2020-03-29               Thailand              1        252
## 543  2020-03-18 Bosnia and Herzegovina              2         12
## 544  2020-03-25     Dominican Republic              2        147
## 545  2020-03-28                Bolivia              0         26
## 546  2020-03-31              Palestine              1         12
## 547  2020-03-22                Iceland              3        159
## 548  2020-04-23                Tunisia              1          9
## 549  2020-03-17                  Chile              0        127
## 550  2020-03-31               Paraguay              2          2
## 551  2020-03-19                 Russia              1         85
## 552  2020-04-25                 Israel              1        416
## 553  2020-04-27                   Chad              1          6
## 554  2020-04-24                  Benin              2          4
## 555  2020-03-31                 Serbia              1        115
## 556  2020-03-19               Honduras              2          6
## 557  2020-04-10          United States              3      67402
## 558  2020-05-11                Myanmar              2          2
## 559  2020-04-24                Lebanon              1         14
## 560  2020-02-21                  Italy              1         17
## 561  2020-03-23               DR Congo              1          9
## 562  2020-03-22              Australia              1        224
## 563  2020-03-22               DR Congo              1         16
## 564  2020-03-30        Kyrgyz Republic              1         10
## 565  2020-04-12                 Cyprus              3         38
## 566  2020-03-12                  Spain              1       1153
## 567  2020-03-29             Cabo Verde              2          1
## 568  2020-02-10                  Spain              1          1
## 569  2020-03-28                  Qatar              1         41
## 570  2020-02-29                 Norway              1         11
## 571  2020-03-27               Dominica              2          4
## 572  2020-04-20           Saudi Arabia              2       2210
## 573  2020-04-14                Liberia              1          9
## 574  2020-03-29                 Cyprus              1         52
## 575  2020-03-25   United Arab Emirates              1        135
## 576  2020-03-26                 Norway              1        635
## 577  2020-03-12                 Greece              0          9
## 578  2020-04-29               Ethiopia              1          6
## 579  2020-03-25                   Peru              1         85
## 580  2020-02-29                  Qatar              1          1
## 581  2020-04-11                  Egypt              1        240
## 582  2020-04-11                 Zambia              1          1
## 583  2020-03-18                Algeria              0         16
## 584  2020-03-20                Morocco              2         23
## 585  2020-04-25                   Iraq              2         86
## 586  2020-04-20              Singapore              2       2022
## 587  2020-04-11               DR Congo              1         16
## 588  2020-03-23          United States              3      18548
## 589  2020-04-20                 Sweden              1        955
## 590  2020-04-22                Jamaica              1         20
## 591  2020-03-15              Guatemala              1          1
## 592  2020-03-20                 Sweden              1        322
## 593  2020-03-26                   Mali              1          4
## 594  2020-04-11                 Serbia              1        513
## 595  2020-03-26              Sri Lanka              1          4
## 596  2020-04-18                Ecuador              3        797
## 597  2020-04-24                  Chile              2       1010
## 598  2020-05-11             Kazakhstan              3        207
## 599  2020-03-22                   Iran              0       1994
## 600  2020-03-15               Malaysia              1        231
## 601  2020-04-22                  Egypt              1        326
## 602  2020-03-21                Croatia              1        100
## 603  2020-04-22                  Libya              1          8
## 604  2020-03-25                 Sweden              1        496
## 605  2020-04-15                  Niger              1         36
## 606  2020-04-20               Mongolia              1          2
## 607  2020-03-19               Bulgaria              1         13
## 608  2020-03-22               Slovenia              2         73
## 609  2020-03-20              Indonesia              1        113
## 610  2020-03-10                 Poland              0         12
## 611  2020-04-19                   Mali              1         34
## 612  2020-04-21             Cabo Verde              2          7
## 613  2020-04-28                   Guam              2          2
## 614  2020-03-26                 Poland              1        320
## 615  2020-03-11             Costa Rica              2          8
## 616  2020-04-22                Bahrain              2        120
## 617  2020-03-27                Austria              2       1889
## 618  2020-04-12            South Sudan              2          1
## 619  2020-02-28                Germany              1         28
## 620  2020-04-11                Hungary              1        240
## 621  2020-03-23         Czech Republic              1        286
## 622  2020-03-30                 Canada              3        869
## 623  2020-03-19                 Panama              2         46
## 624  2020-02-28                  Japan              1         38
## 625  2020-03-27         Czech Republic              2        762
## 626  2020-03-14              Indonesia              1         62
## 627  2020-04-24            El Salvador              1         37
## 628  2020-04-14                 Cyprus              3         62
## 629  2020-04-19                  Syria              2          1
## 630  2020-04-23                Bahrain              2        224
## 631  2020-04-15                 Russia              3       6162
## 632  2020-04-18                Finland              1        312
## 633  2020-03-12                  India              1         34
## 634  2020-03-10                Denmark              0        247
## 635  2020-03-18                   Cuba              2          5
## 636  2020-04-21   United Arab Emirates              3        974
## 637  2020-04-24               Colombia              2        525
## 638  2020-03-15                Albania              1          9
## 639  2020-04-20            Puerto Rico              1         95
## 640  2020-03-13                  India              1         11
## 641  2020-03-21                  Ghana              1          8
## 642  2020-04-18               Cameroon              2        182
## 643  2020-03-19             Uzbekistan              1         15
## 644  2020-02-29                 Brazil              1          1
## 645  2020-04-16                 Norway              1        267
## 646  2020-04-21           Sierra Leone              2         15
## 647  2020-02-27                Romania              0          1
## 648  2020-03-17                 Sweden              1        176
## 649  2020-04-24               Thailand              1         68
## 650  2020-03-29                Hungary              1        130
## 651  2020-03-23                 Mexico              0        116
## 652  2020-04-14                   Iraq              2         48
## 653  2020-04-11                  India              3       1883
## 654  2020-04-24            South Korea              3         16
## 655  2020-04-13                 Norway              1        173
## 656  2020-03-20                Bolivia              0          6
## 657  2020-03-10           Saudi Arabia              2          9
## 658  2020-04-24                  Libya              1          2
## 659  2020-04-22                 Guyana              1          2
## 660  2020-02-25            Afghanistan              1          1
## 661  2020-04-17             Mozambique              1          5
## 662  2020-04-10              Argentina              1        279
## 663  2020-03-22                   Guam              0          1
## 664  2020-04-25                  China              3         15
## 665  2020-03-14                   Cuba              2          1
## 666  2020-04-28             Kazakhstan              1        335
## 667  2020-03-11                Finland              1         19
## 668  2020-03-29                  Egypt              1         74
## 669  2020-04-25                  Spain              1       5421
## 670  2020-04-17                Jamaica              1         18
## 671  2020-04-13                Lebanon              1         13
## 672  2020-04-14             Costa Rica              2         23
## 673  2020-03-31                  Gabon              2          9
## 674  2020-04-13                  Italy              2       7245
## 675  2020-03-14                Bahrain              2         63
## 676  2020-03-14                 Greece              0         95
## 677  2020-04-16           Sierra Leone              2          4
## 678  2020-03-12                Germany              1        441
## 679  2020-03-27                Germany              1      12713
## 680  2020-03-31                 Uganda              1         11
## 681  2020-03-29                   Cuba              2         59
## 682  2020-04-16                   Iraq              2         34
## 683  2020-04-20            El Salvador              1         28
## 684  2020-04-11                 Canada              3       1385
## 685  2020-04-25                Bahrain              2        371
## 686  2020-04-29                  China              3          2
## 687  2020-03-27                Belgium              1       2412
## 688  2020-03-10              Australia              1         20
## 689  2020-03-10               Colombia              2          4
## 690  2020-04-20                  Sudan              2         41
## 691  2020-03-15                Finland              1         46
## 692  2020-04-13             Azerbaijan              2         90
## 693  2020-03-28      Brunei Darussalam              2          6
## 694  2020-05-10            South Sudan              2         23
## 695  2020-04-14                  Chile              2        704
## 696  2020-04-17                Germany              1       7079
## 697  2020-04-21              Guatemala              2         10
## 698  2020-03-19               Mongolia              1          1
## 699  2020-03-26             Uzbekistan              1         25
## 700  2020-03-17                 Rwanda              2          2
## 701  2020-03-16                Hungary              1         15
## 702  2020-04-24                 Israel              1        545
## 703  2020-04-30          United States              3      57067
## 704  2020-03-20                  Ghana              1          9
## 705  2020-03-17               Ethiopia              1          1
## 706  2020-04-15               Thailand              1         60
## 707  2020-02-27         United Kingdom              1          2
## 708  2020-04-24                Algeria              0        217
## 709  2020-04-21              Sri Lanka              2         15
## 710  2020-04-10                Albania              1         16
## 711  2020-04-18                Jamaica              1         40
## 712  2020-03-10                Hungary              1          1
## 713  2020-03-30                   Oman              2         27
## 714  2020-04-21                  Sudan              2         26
## 715  2020-03-18        Kyrgyz Republic              1          3
## 716  2020-03-20                Andorra              1         44
## 717  2020-04-16               Colombia              2        254
## 718  2020-03-12               Slovakia              1          9
## 719  2020-03-26             Luxembourg              1        354
## 720  2020-03-23                 France              1       5397
## 721  2020-04-20            Switzerland              1        540
## 722  2020-04-25             Cabo Verde              2          8
## 723  2020-03-21              Venezuela              1         31
## 724  2020-03-26            El Salvador              1          8
## 725  2020-04-21             Kazakhstan              1        357
## 726  2020-01-26                  Japan              1          3
## 727  2020-04-16               Botswana              1          2
## 728  2020-03-13                 Brazil              1        124
## 729  2020-03-23                   Oman              2         14
## 730  2020-03-13             Kazakhstan              1          4
## 731  2020-03-13                 Poland              0         37
## 732  2020-03-23             Mozambique              1          1
## 733  2020-03-14                Namibia              1          2
## 734  2020-04-28            South Korea              3         23
## 735  2020-04-29               Paraguay              2          9
## 736  2020-04-19                Myanmar              2         26
## 737  2020-04-10                 Serbia              1        439
## 738  2020-04-10               Paraguay              2         10
## 739  2020-04-19             Cabo Verde              2          5
## 740  2020-03-12                   Cuba              2          6
## 741  2020-03-27               Cameroon              0         32
## 742  2020-03-13                Morocco              2          2
## 743  2020-04-21                Ecuador              3        930
## 744  2020-03-12                 Brazil              1         32
## 745  2020-04-15                   Iraq              2         37
## 746  2020-03-15                 Guyana              1          3
## 747  2020-04-23            El Salvador              1         25
## 748  2020-03-16            South Korea              3        148
## 749  2020-03-13                 Russia              1         22
## 750  2020-03-25          United States              3      20725
## 751  2020-03-13                 Turkey              2          5
## 752  2020-04-16                 Kuwait              2        169
## 753  2020-05-11            South Korea              3         62
## 754  2020-03-15                Jamaica              1          2
## 755  2020-03-22                 Israel              1        342
## 756  2020-05-11               Honduras              1        270
## 757  2020-03-22               Paraguay              2          8
## 758  2020-01-29   United Arab Emirates              0          4
## 759  2020-02-27                Finland              1          1
## 760  2020-04-30                Ecuador              3        676
## 761  2020-03-25             Costa Rica              2         43
## 762  2020-04-22            Netherlands              1       1437
## 763  2020-03-15             Mauritania              0          1
## 764  2020-03-23                  India              1        222
## 765  2020-03-26             Costa Rica              2         54
## 766  2020-04-11           Sierra Leone              2          1
## 767  2020-03-26              Mauritius              1         39
## 768  2020-03-24                Hungary              1         40
## 769  2020-04-24              Australia              1         13
## 770  2020-04-25                Somalia              1         62
## 771  2020-04-12                 Panama              2        520
## 772  2020-04-28               Slovakia              1          5
## 773  2020-03-17                Morocco              2         18
## 774  2020-02-29            South Korea              3       1722
## 775  2020-04-10               Portugal              3       2331
## 776  2020-03-11           Burkina Faso              1          3
## 777  2020-04-30                   Oman              2        217
## 778  2020-04-30             Kazakhstan              1        406
## 779  2020-03-24            South Korea              3        152
## 780  2020-04-23                Bermuda              1          1
## 781  2020-03-30             Kazakhstan              1         73
## 782  2020-03-19                  Italy              2       9529
## 783  2020-04-20                  India              3       2477
## 784  2020-04-17                  Aruba              1          2
## 785  2020-04-19                  India              3       3227
## 786  2020-03-14                 Brazil              1         21
## 787  2020-04-15                 Canada              3       1383
## 788  2020-03-15                 Rwanda              2          1
## 789  2020-05-10                Somalia              1        126
## 790  2020-04-25           Saudi Arabia              2       2369
## 791  2020-04-19      Brunei Darussalam              2          2
## 792  2020-03-28              Argentina              1        202
## 793  2020-04-17                Myanmar              2         14
## 794  2020-03-31                   Guam              0          4
## 795  2020-03-29 Bosnia and Herzegovina              2         93
## 796  2020-04-26                 Russia              3      12327
## 797  2020-04-11                   Iraq              2         86
## 798  2020-03-22                Algeria              0         99
## 799  2020-04-18                 Kuwait              2        227
## 800  2020-02-14                  Egypt              1          1
## 801  2020-02-29                Finland              1          2
## 802  2020-04-24                Tunisia              1         21
## 803  2020-05-11                 Gambia              1          2
## 804  2020-03-29                  India              1        143
## 805  2020-04-27            Netherlands              1       1055
## 806  2020-03-25             San Marino              1         21
## 807  2020-03-17                Croatia              1         16
## 808  2020-02-14          United States              0          1
## 809  2020-03-18              Singapore              2         70
## 810  2020-04-16                  Aruba              1          1
## 811  2020-02-28               Malaysia              1          1
## 812  2020-03-18                 Israel              1        221
## 813  2020-04-18                 Rwanda              3          6
## 814  2020-04-14                 Israel              1        901
## 815  2020-04-17                 Norway              1        155
## 816  2020-03-26                  Japan              1        155
## 817  2020-04-25                  Japan              3       1054
## 818  2020-04-30         United Kingdom              1      10108
## 819  2020-04-16                Jamaica              1         38
## 820  2020-04-12                  Niger              1         91
## 821  2020-03-25             Cabo Verde              2          1
## 822  2020-04-23              Nicaragua              1          1
## 823  2020-04-14               Malaysia              3        304
## 824  2020-04-10                Croatia              2        152
## 825  2020-03-15                 Sweden              1        210
## 826  2020-02-26                Austria              1          2
## 827  2020-04-30                 Zambia              1         11
## 828  2020-04-14              Australia              1         44
## 829  2020-03-10              Palestine              1          8
## 830  2020-04-14                  Ghana              3         70
## 831  2020-03-19                   Guam              0          3
## 832  2020-04-27           Sierra Leone              2         11
## 833  2020-02-28            South Korea              3        998
## 834  2020-03-14                   Iran              0       2654
## 835  2020-04-11   United Arab Emirates              1        746
## 836  2020-04-25               Djibouti              3         22
## 837  2020-03-26              Argentina              1        230
## 838  2020-04-17                Bolivia              0         48
## 839  2020-04-25             Bangladesh              2        812
## 840  2020-02-27               Malaysia              1          1
## 841  2020-04-29            Afghanistan              1        235
## 842  2020-04-13                   Cuba              2        106
## 843  2020-04-20             Costa Rica              2          7
## 844  2020-03-27                  China              2         94
## 845  2020-03-31                 Jordan              2         15
## 846  2020-03-18               Paraguay              1          4
## 847  2020-04-12               Djibouti              3         64
## 848  2020-04-12                Myanmar              2          6
## 849  2020-04-19                  Libya              1          2
## 850  2020-04-10              Sri Lanka              2          1
## 851  2020-04-25            Switzerland              1        398
## 852  2020-03-16      Brunei Darussalam              2         14
## 853  2020-04-20            Netherlands              1       1816
## 854  2020-03-22               Slovakia              1         48
## 855  2020-03-20               DR Congo              1          4
## 856  2020-03-17               Portugal              1        203
## 857  2020-04-23              Mauritius              1          3
## 858  2020-04-28             San Marino              2         15
## 859  2020-04-21                 Panama              2        382
## 860  2020-04-10                Algeria              0        189
## 861  2020-04-19           South Africa              2        375
## 862  2020-04-19             Bangladesh              2        618
## 863  2020-03-15            Netherlands              1        331
## 864  2020-04-11               Thailand              1         90
## 865  2020-04-22     Dominican Republic              2        336
## 866  2020-04-16               Paraguay              2         26
## 867  2020-04-12               Thailand              1         66
## 868  2020-04-14                Lebanon              1         11
## 869  2020-03-23 Bosnia and Herzegovina              2         43
## 870  2020-04-19                 Guyana              1          2
## 871  2020-04-24                  Egypt              1        370
## 872  2020-04-26                Somalia              1        108
## 873  2020-03-16                Albania              1         13
## 874  2020-02-26                Croatia              1          3
## 875  2020-04-16                 Serbia              1        853
## 876  2020-03-15                 Poland              0         52
## 877  2020-02-26                   Oman              2          4
## 878  2020-04-11           Saudi Arabia              2        746
## 879  2020-04-18              Venezuela              1         46
## 880  2020-03-27                  Benin              1          1
## 881  2020-04-22               Djibouti              3        128
## 882  2020-04-16                Tunisia              1         75
## 883  2020-03-13              Singapore              2         31
## 884  2020-03-13              Palestine              1          1
## 885  2020-03-28            Netherlands              1       2331
## 886  2020-04-20                  Kenya              1         19
## 887  2020-03-29                 Jordan              2         36
## 888  2020-03-24        Kyrgyz Republic              1         28
## 889  2020-04-26               Eswatini              3          3
## 890  2020-03-31                Bolivia              0         21
## 891  2020-04-25                Jamaica              1         53
## 892  2020-01-31          United States              0          3
## 893  2020-03-13                   Iraq              2         34
## 894  2020-03-24                Vietnam              2         22
## 895  2020-03-20                  Aruba              1          2
## 896  2020-04-23                Jamaica              1         43
## 897  2020-05-11            New Zealand              2          3
## 898  2020-04-24                 Malawi              1         10
## 899  2020-04-14                 Turkey              2       8155
## 900  2020-04-19                 Cyprus              3         32
## 901  2020-03-21                  Niger              1          1
## 902  2020-04-23                 Cyprus              3         11
## 903  2020-03-11              Sri Lanka              1          1
## 904  2020-04-20                Tunisia              1         18
## 905  2020-03-31                Jamaica              1          4
## 906  2020-05-10                  Italy              2       1885
## 907  2020-03-28                 Jordan              2         51
## 908  2020-03-20                  Egypt              1         43
## 909  2020-03-31                   Iran              0       6296
## 910  2020-03-23                Bolivia              0         10
## 911  2020-04-28                 Angola              2          1
## 912  2020-03-18                  China              2         23
## 913  2020-03-25      Brunei Darussalam              2         18
## 914  2020-04-12              Venezuela              1          6
## 915  2020-03-19                Nigeria              1          5
## 916  2020-03-31               Malaysia              1        296
## 917  2020-03-15                 Israel              1        120
## 918  2020-04-29                 Kuwait              2        452
## 919  2020-03-12                  Egypt              1          8
## 920  2020-04-27                 Canada              3       1543
## 921  2020-04-17         Congo Republic              1         26
## 922  2020-03-31              Argentina              1        380
## 923  2020-04-25               Pakistan              2       1390
## 924  2020-04-15                 Israel              1        915
## 925  2020-04-25                Morocco              2        329
## 926  2020-04-20             Mozambique              1          4
## 927  2020-04-15             Costa Rica              2         14
## 928  2020-04-25                 Guyana              1          3
## 929  2020-03-17                Albania              1         13
## 930  2020-04-16            South Korea              3         44
## 931  2020-03-30                  Kenya              1         12
## 932  2020-03-25                Ukraine              1         59
## 933  2020-03-26            Netherlands              1       1871
## 934  2020-03-21                   Iraq              2         22
## 935  2020-03-18              Sri Lanka              1         20
## 936  2020-03-14                Croatia              1         12
## 937  2020-04-11           South Africa              2         94
## 938  2020-04-30                Morocco              2        171
## 939  2020-03-19                   Iran              0       2238
## 940  2020-03-16                Ireland              2         80
## 941  2020-03-23                   Peru              1         77
## 942  2020-04-10                Tunisia              1         48
## 943  2020-03-12               Pakistan              1         12
## 944  2020-04-16               Pakistan              2        623
## 945  2020-03-22                Jamaica              1          3
## 946  2020-04-14             San Marino              2         15
## 947  2020-03-20                Estonia              1         25
## 948  2020-04-28                  Italy              2       3830
## 949  2020-03-20                Finland              1         81
## 950  2020-03-31                  Benin              1          3
## 951  2020-03-30          United States              3      39856
## 952  2020-03-28                Lebanon              1         44
## 953  2020-04-25            South Korea              3         20
## 954  2020-02-28                Estonia              0          1
## 955  2020-04-24         United Kingdom              1       9969
## 956  2020-04-21                Austria              2        151
## 957  2020-03-14     Dominican Republic              0         12
## 958  2020-04-17          Cote d'Ivoire              2         68
## 959  2020-03-24                  Italy              2      10038
## 960  2020-03-31            El Salvador              1          4
## 961  2020-03-31             Seychelles              2          4
## 962  2020-04-18                 Zambia              1          9
## 963  2020-04-21                 Russia              3       9910
## 964  2020-01-22                  China              1        140
## 965  2020-03-15               Slovenia              2         78
## 966  2020-04-22                Croatia              2         69
## 967  2020-05-10              Sri Lanka              2         28
## 968  2020-03-17                  Spain              1       4309
## 969  2020-03-14                  Gabon              2          1
## 970  2020-03-13            Netherlands              1        412
## 971  2020-03-22                Romania              0        125
## 972  2020-04-28                Moldova              1        230
## 973  2020-04-29                   Mali              1         74
## 974  2020-04-14               Thailand              1         68
## 975  2020-04-30            South Korea              3         13
## 976  2020-03-12              Singapore              2         12
## 977  2020-03-13                Germany              1       2399
## 978  2020-03-22                 Zambia              1          1
## 979  2020-03-27             Madagascar              1          7
## 980  2020-03-26                  Spain              1      17225
## 981  2020-04-20         United Kingdom              1      10526
## 982  2020-03-21             San Marino              1         25
## 983  2020-04-26            South Sudan              2          1
## 984  2020-04-12                  Kenya              1          8
## 985  2020-01-26              Singapore              2          2
## 986  2020-03-31      Brunei Darussalam              2          3
## 987  2020-03-21                Morocco              2         42
## 988  2020-04-29            El Salvador              1         54
## 989  2020-03-18               Slovenia              2         22
## 990  2020-02-28                Iceland              0          1
## 991  2020-03-21            New Zealand              1         27
## 992  2020-03-18            Switzerland              1        778
## 993  2020-04-30               DR Congo              1         90
## 994  2020-03-10                Vietnam              2          5
## 995  2020-04-18                Nigeria              1        100
## 996  2020-04-29                   Guam              2          1
## 997  2020-03-23                Bermuda              1          4
## 998  2020-03-28             Luxembourg              1        378
## 999  2020-02-15               Malaysia              1          5
## 1000 2020-03-22                 Panama              2        158
## 1001 2020-04-23                   Cuba              2         98
## 1002 2020-03-28             Seychelles              2          1
## 1003 2020-03-25                Moldova              1         40
## 1004 2020-04-28                Albania              2         24
## 1005 2020-03-14               Bulgaria              1         26
## 1006 2020-03-31               Colombia              2        204
## 1007 2020-04-13            Puerto Rico              1        109
## 1008 2020-04-11                 Gambia              1          5
## 1009 2020-04-25                 Poland              1        762
## 1010 2020-03-30            Switzerland              1       2215
## 1011 2020-03-30                Ukraine              1        180
## 1012 2020-03-29             Mozambique              1          1
## 1013 2020-03-22               Cameroon              0         13
## 1014 2020-04-11                Bolivia              0         15
## 1015 2020-03-18           South Africa              1         77
## 1016 2020-03-31               Barbados              2          2
## 1017 2020-04-27                Moldova              1        177
## 1018 2020-03-16             Kazakhstan              1          4
## 1019 2020-03-31                Ukraine              1        159
## 1020 2020-03-29             San Marino              1          1
## 1021 2020-04-19                   Oman              3        197
## 1022 2020-04-16               Zimbabwe              0          6
## 1023 2020-04-11              Venezuela              1          8
## 1024 2020-04-16                Andorra              1         14
## 1025 2020-04-30                Nigeria              1        400
## 1026 2020-04-17                Bermuda              1          2
## 1027 2020-03-18               Barbados              2          1
## 1028 2020-04-18             Azerbaijan              2         90
## 1029 2020-03-14              Guatemala              1          1
## 1030 2020-04-11             San Marino              2         23
## 1031 2020-04-15                   Peru              2       3956
## 1032 2020-04-21                 Brazil              1       4263
## 1033 2020-04-17   United Arab Emirates              3        937
## 1034 2020-03-20             Luxembourg              1        284
## 1035 2020-04-16              Singapore              2       1175
## 1036 2020-03-31            New Zealand              1        153
## 1037 2020-03-29                Croatia              1        127
## 1038 2020-04-23                  Spain              1       7551
## 1039 2020-03-18                  Benin              1          1
## 1040 2020-01-23               Thailand              0          1
## 1041 2020-03-11                Jamaica              1          1
## 1042 2020-03-19                   Oman              2         24
## 1043 2020-04-22                  Chile              2        789
## 1044 2020-04-18               Slovenia              2         49
## 1045 2020-04-14             Madagascar              1          2
## 1046 2020-04-22                 Turkey              2       7694
## 1047 2020-04-19                Belgium              1       2030
## 1048 2020-04-11 Bosnia and Herzegovina              2         71
## 1049 2020-04-12           South Africa              2        170
## 1050 2020-01-25          United States              0          1
## 1051 2020-04-30                  Yemen              0          5
## 1052 2020-03-26            New Zealand              1        151
## 1053 2020-04-16                 Greece              2         37
## 1054 2020-04-13        Kyrgyz Republic              1         84
## 1055 2020-04-24                 Norway              1        157
## 1056 2020-03-13                 France              0       1975
## 1057 2020-03-26               DR Congo              1          3
## 1058 2020-03-31               Honduras              2          4
## 1059 2020-05-11                 Poland              1        675
## 1060 2020-02-27            South Korea              3        954
## 1061 2020-04-22                  Kenya              1          7
## 1062 2020-03-14                Tunisia              1          5
## 1063 2020-04-19              Palestine              1         12
## 1064 2020-04-23           South Africa              2        488
## 1065 2020-04-18                  China              3         31
## 1066 2020-04-15                 Serbia              1        819
## 1067 2020-03-13                 Norway              1        426
## 1068 2020-04-17              Guatemala              2         36
## 1069 2020-04-29                Germany              1       2931
## 1070 2020-03-31                Romania              3        328
## 1071 2020-04-21               Colombia              2        357
## 1072 2020-04-11                  Italy              2       8645
## 1073 2020-03-26                Austria              2       1927
## 1074 2020-04-24                 Serbia              1        369
## 1075 2020-02-22                  China              2        826
## 1076 2020-03-19                   Peru              1        117
## 1077 2020-04-22               Cameroon              2        146
## 1078 2020-03-26                   Iran              0       4595
## 1079 2020-03-24               Suriname              1          3
## 1080 2020-04-20              Sri Lanka              2         74
## 1081 2020-03-28              Australia              1        212
## 1082 2020-03-24                 Cyprus              1         29
## 1083 2020-03-28                Finland              1        193
## 1084 2020-03-23                 Russia              1        203
## 1085 2020-02-29                Bahrain              1         10
## 1086 2020-04-16              Palestine              1          7
## 1087 2020-05-11                Bahrain              2        462
## 1088 2020-03-25                Myanmar              2          1
## 1089 2020-04-21             Luxembourg              1         68
## 1090 2020-04-26            Switzerland              1        383
## 1091 2020-03-23                Estonia              1         46
## 1092 2020-04-23                Germany              1       4833
## 1093 2020-04-11                Ecuador              3       2292
## 1094 2020-03-12               Colombia              2          6
## 1095 2020-03-28           Burkina Faso              1         27
## 1096 2020-03-14            Afghanistan              1          4
## 1097 2020-03-12           South Africa              1         10
## 1098 2020-03-24                   Iraq              2         83
## 1099 2020-03-24                Bolivia              0          3
## 1100 2020-03-29                 France              1       7210
## 1101 2020-04-19           Sierra Leone              2          9
## 1102 2020-04-20                Moldova              1        197
## 1103 2020-03-17               Thailand              1         93
## 1104 2020-03-21               Slovakia              1         55
## 1105 2020-03-23               Honduras              2          5
## 1106 2020-04-15                Austria              2        301
## 1107 2020-04-21                 Uganda              1          6
## 1108 2020-04-23               Mongolia              1          1
## 1109 2020-04-20 Bosnia and Herzegovina              2         39
## 1110 2020-03-26             Azerbaijan              2         35
## 1111 2020-03-15                Ireland              2         38
## 1112 2020-03-25              Venezuela              1         14
## 1113 2020-04-15              Indonesia              1        579
## 1114 2020-03-31                Germany              1       9538
## 1115 2020-04-24   United Arab Emirates              3       1043
## 1116 2020-04-27                Liberia              1          4
## 1117 2020-02-29                 Sweden              1         10
## 1118 2020-03-16                  Benin              1          1
## 1119 2020-04-15            Switzerland              1        654
## 1120 2020-03-21            Afghanistan              1          2
## 1121 2020-04-12                Somalia              1          4
## 1122 2020-03-31                Belgium              1       2614
## 1123 2020-04-17                Denmark              1        392
## 1124 2020-04-18                Hungary              1        142
## 1125 2020-03-18                 Panama              2         34
## 1126 2020-04-26                Tunisia              1         27
## 1127 2020-03-31               Ethiopia              1         10
## 1128 2020-04-26              Indonesia              1        671
## 1129 2020-03-16               Colombia              2         31
## 1130 2020-03-29                  Japan              1        367
## 1131 2020-03-31            South Korea              3        250
## 1132 2020-03-29                Finland              1        266
## 1133 2020-04-11                 Brazil              1       2870
## 1134 2020-04-15     Dominican Republic              2        447
## 1135 2020-04-19             Costa Rica              2         11
## 1136 2020-03-18                Bahrain              2         44
## 1137 2020-04-15                 Mexico              1        833
## 1138 2020-04-15         United Kingdom              1       9855
## 1139 2020-03-24              Venezuela              1         55
## 1140 2020-03-14               Suriname              0          1
## 1141 2020-04-19                Jamaica              1         20
## 1142 2020-04-11          Cote d'Ivoire              2        125
## 1143 2020-03-25               Malaysia              1        278
## 1144 2020-03-14            Netherlands              1        345
## 1145 2020-04-13                 Greece              2         64
## 1146 2020-03-21               Cameroon              0         20
## 1147 2020-03-22                  Chile              0        198
## 1148 2020-03-15                Ecuador              0          5
## 1149 2020-04-19                  Gabon              2          2
## 1150 2020-04-30              Indonesia              1        607
## 1151 2020-03-19                 Jordan              2         34
## 1152 2020-04-28                Belgium              1       1395
## 1153 2020-04-11               Slovakia              1         27
## 1154 2020-03-18                 Greece              0         66
## 1155 2020-04-12    Trinidad and Tobago              2          4
## 1156 2020-04-22                  Sudan              2         48
## 1157 2020-04-16            Netherlands              1       1795
## 1158 2020-04-30                Germany              1       2948
## 1159 2020-04-21               Cameroon              2          1
## 1160 2020-03-30                  Japan              1        173
## 1161 2020-04-23                  Qatar              1       1231
## 1162 2020-04-15                 Jordan              2         10
## 1163 2020-04-27                   Peru              2       3368
## 1164 2020-03-18                Liberia              1          2
## 1165 2020-03-30                Andorra              1         62
## 1166 2020-04-27            Switzerland              1        270
## 1167 2020-03-18               Tanzania              0          2
## 1168 2020-03-14 Bosnia and Herzegovina              2          5
## 1169 2020-03-10                 Israel              1         14
## 1170 2020-03-21                Moldova              1         31
## 1171 2020-03-30     Dominican Republic              2        182
## 1172 2020-04-27              Mauritius              1          3
## 1173 2020-03-21              Palestine              1          2
## 1174 2020-01-31         United Kingdom              1          4
## 1175 2020-04-24              Mauritius              1          2
## 1176 2020-03-19                Tunisia              1         15
## 1177 2020-04-22               Tanzania              0        114
## 1178 2020-03-27               Barbados              2         12
## 1179 2020-03-16                   Iran              0       2262
## 1180 2020-04-23                  Egypt              1        232
## 1181 2020-04-21            El Salvador              1         24
## 1182 2020-04-24             San Marino              2         25
## 1183 2020-04-20               Portugal              3       1178
## 1184 2020-03-31                  India              1        326
## 1185 2020-04-14                Myanmar              2         22
## 1186 2020-04-18                 Guyana              1          6
## 1187 2020-03-18                  Spain              1       5856
## 1188 2020-03-24                 Jordan              1         40
## 1189 2020-03-21                  Italy              2      12543
## 1190 2020-03-11                Denmark              1        331
## 1191 2020-04-14              Palestine              1         11
## 1192 2020-03-28                  Spain              1      15760
## 1193 2020-03-15               Suriname              1          1
## 1194 2020-03-19             San Marino              1          5
## 1195 2020-03-25                  Egypt              1         93
## 1196 2020-04-16                  Qatar              1        675
## 1197 2020-04-14            Switzerland              1        527
## 1198 2020-03-12                 France              0        497
## 1199 2020-04-10                  Libya              1          3
## 1200 2020-03-28        Kyrgyz Republic              1         14
## 1201 2020-03-23            Switzerland              1       2215
## 1202 2020-03-18                Ecuador              0        106
## 1203 2020-03-17            Switzerland              1        500
## 1204 2020-04-29                 Panama              2        536
## 1205 2020-04-23             Cabo Verde              2         15
## 1206 2020-03-17         United Kingdom              1        559
## 1207 2020-04-24                Bahrain              2        511
## 1208 2020-03-28                Bermuda              1          2
## 1209 2020-02-29                Austria              1          8
## 1210 2020-04-28             Costa Rica              2         10
## 1211 2020-03-29         Congo Republic              1         30
## 1212 2020-03-10                   Peru              1          6
## 1213 2020-04-20                   Iraq              2         92
## 1214 2020-03-30                 Mexico              0        246
## 1215 2020-03-20                 Angola              1          1
## 1216 2020-04-28            New Zealand              2          4
## 1217 2020-01-31                  Italy              1          5
## 1218 2020-03-12             Azerbaijan              2          2
## 1219 2020-03-18             Azerbaijan              2          9
## 1220 2020-04-11                 Malawi              1          4
## 1221 2020-02-24                 Kuwait              0          4
## 1222 2020-03-10     Dominican Republic              0          3
## 1223 2020-03-13                Algeria              0          7
## 1224 2020-03-13                Romania              0         59
## 1225 2020-03-29                Bahrain              2         30
## 1226 2020-03-14              Sri Lanka              1          7
## 1227 2020-03-14                 Russia              1         29
## 1228 2020-04-11                   Oman              3         89
## 1229 2020-04-21               Slovakia              1         38
## 1230 2020-04-14                Algeria              0        156
## 1231 2020-03-27             Bangladesh              2         13
## 1232 2020-02-10   United Arab Emirates              0          1
## 1233 2020-04-19              Sri Lanka              2         27
## 1234 2020-03-24                   Iran              0       3173
## 1235 2020-04-28               Eswatini              3         12
## 1236 2020-05-11                Austria              2         21
## 1237 2020-03-16                   Oman              2          2
## 1238 2020-04-14               Barbados              2          1
## 1239 2020-03-26           Burkina Faso              1         21
## 1240 2020-02-29            Netherlands              1          6
## 1241 2020-04-11                Bahrain              2        226
## 1242 2020-04-15                   Cuba              2         88
## 1243 2020-03-27                  Aruba              1          9
## 1244 2020-04-15              Sri Lanka              2         20
## 1245 2020-04-17                  Sudan              2          1
## 1246 2020-04-28                 Canada              3       1605
## 1247 2020-05-10               Ethiopia              1         45
## 1248 2020-03-11                Tunisia              1          5
## 1249 2020-04-14                  Egypt              1        285
## 1250 2020-04-25              Nicaragua              1          2
## 1251 2020-04-20                Ireland              1        894
## 1252 2020-04-29                  Ghana              3        121
## 1253 2020-03-16                Estonia              1         90
## 1254 2020-03-22               Suriname              1          5
## 1255 2020-02-26                 Brazil              1          2
## 1256 2020-04-11          United States              3      65542
## 1257 2020-03-29                Nigeria              1         38
## 1258 2020-03-30                   Guam              0          1
## 1259 2020-03-15                 France              0        868
## 1260 2020-03-23                Algeria              0         91
## 1261 2020-04-10                 Russia              3       3245
## 1262 2020-04-30           South Africa              2        651
## 1263 2020-04-13            South Korea              3         50
## 1264 2020-04-18           Burkina Faso              1         22
## 1265 2020-04-13                 Turkey              2       8882
## 1266 2020-03-24                Nigeria              1         14
## 1267 2020-04-18               Tanzania              0         53
## 1268 2020-03-21               Portugal              1        495
## 1269 2020-03-26                  Gabon              2          1
## 1270 2020-03-17                 Greece              0         77
## 1271 2020-03-31                Bahrain              2         67
## 1272 2020-04-19                 Gambia              1          1
## 1273 2020-04-16                 Mexico              1        898
## 1274 2020-04-30                 Brazil              1      13778
## 1275 2020-03-22               Tanzania              0          9
## 1276 2020-04-15           Burkina Faso              1         27
## 1277 2020-04-22              Palestine              1          6
## 1278 2020-03-15          United States              3        875
## 1279 2020-03-15                Moldova              1         23
## 1280 2020-04-13                   Iraq              2         60
## 1281 2020-03-18                Vietnam              2         16
## 1282 2020-03-25               Suriname              1          3
## 1283 2020-04-26               Paraguay              2          5
## 1284 2020-03-21               Thailand              1        243
## 1285 2020-04-11                  Kenya              1          7
## 1286 2020-04-26                 Panama              2        441
## 1287 2020-03-22         Czech Republic              1        216
## 1288 2020-04-26               Bulgaria              1        112
## 1289 2020-03-27             Kazakhstan              1         71
## 1290 2020-04-30                Myanmar              2          1
## 1291 2020-04-13                   Peru              2       2936
## 1292 2020-04-20                  China              3         14
## 1293 2020-04-12                Belgium              1       2652
## 1294 2020-03-10                 Canada              2         15
## 1295 2020-04-30                 Norway              1         90
## 1296 2020-04-15                Hungary              1        134
## 1297 2020-03-25                   Chad              1          1
## 1298 2020-04-10                  Italy              2       8155
## 1299 2020-04-28                  Gabon              2         62
## 1300 2020-04-10                 Jordan              2         14
## 1301 2020-03-11           South Africa              1          6
## 1302 2020-02-26                 Greece              0          1
## 1303 2020-03-18                Austria              1        630
## 1304 2020-04-15             Uzbekistan              1        304
## 1305 2020-03-19                Uruguay              1         44
## 1306 2020-04-30               Bulgaria              1        107
## 1307 2020-03-29              Palestine              1         17
## 1308 2020-03-20               Barbados              2          1
## 1309 2020-04-13               Thailand              1         56
## 1310 2020-04-24                Morocco              2        381
## 1311 2020-04-30                 Malawi              1          1
## 1312 2020-04-19               Colombia              2        535
## 1313 2020-04-27             Costa Rica              2          4
## 1314 2020-03-24             Kazakhstan              1         12
## 1315 2020-03-17                   Peru              1         46
## 1316 2020-04-15                 Zambia              1          3
## 1317 2020-04-17                 Malawi              1          1
## 1318 2020-04-13               Barbados              2          4
## 1319 2020-03-10                  Spain              1       1394
## 1320 2020-02-29                 Greece              0          1
## 1321 2020-04-25               Slovenia              2         22
## 1322 2020-03-23                 Sweden              1        272
## 1323 2020-03-17              Sri Lanka              1         26
## 1324 2020-03-24     Dominican Republic              2        110
## 1325 2020-04-21                Iceland              3          7
## 1326 2020-04-18                 Cyprus              3         11
## 1327 2020-03-11                 France              0        869
## 1328 2020-02-20                  Japan              1         28
## 1329 2020-04-23                Morocco              2        290
## 1330 2020-03-15             Bangladesh              2          2
## 1331 2020-03-12               Honduras              2          2
## 1332 2020-04-11      Brunei Darussalam              2          1
## 1333 2020-02-13                Vietnam              2          2
## 1334 2020-04-26                Uruguay              1         43
## 1335 2020-03-18                 Cyprus              0          3
## 1336 2020-04-18             Costa Rica              2         13
## 1337 2020-03-28                   Mali              1          7
## 1338 2020-02-27              Singapore              2          2
## 1339 2020-04-12                 Belize              1          4
## 1340 2020-03-27                Romania              3        386
## 1341 2020-03-26                  Italy              2      11413
## 1342 2020-04-17                Finland              1        252
## 1343 2020-03-28              Venezuela              1         24
## 1344 2020-03-25                 Cyprus              1         16
## 1345 2020-02-17               Thailand              0          1
## 1346 2020-03-17               Pakistan              1        219
## 1347 2020-04-16                Myanmar              2         11
## 1348 2020-04-11                Andorra              1         18
## 1349 2020-03-27             Uzbekistan              1         31
## 1350 2020-03-20             Seychelles              2          1
## 1351 2020-03-17               Malaysia              1        232
## 1352 2020-04-25               Thailand              1         15
## 1353 2020-03-24             Bangladesh              2         12
## 1354 2020-04-25            Afghanistan              1        182
## 1355 2020-03-13                Ireland              2         74
## 1356 2020-04-15                 Guyana              1          9
## 1357 2020-03-24                Myanmar              2          2
## 1358 2020-04-10            El Salvador              1         28
## 1359 2020-04-23                  Ghana              3        112
## 1360 2020-04-13                Bolivia              0         60
## 1361 2020-04-27   United Arab Emirates              3       1026
## 1362 2020-03-20               Honduras              2         24
## 1363 2020-04-27                  Chile              2        955
## 1364 2020-03-18    Trinidad and Tobago              1          4
## 1365 2020-03-25                Morocco              2         91
## 1366 2020-04-22                 Sweden              1       1227
## 1367 2020-03-12      Brunei Darussalam              2         10
## 1368 2020-04-12            Philippines              2        572
## 1369 2020-03-20                 Kuwait              2         17
## 1370 2020-04-28                  Chile              2       1034
## 1371 2020-03-10          United States              2        392
## 1372 2020-04-18             Madagascar              1          9
## 1373 2020-04-19                Lebanon              1          5
## 1374 2020-03-14                Romania              0         59
## 1375 2020-04-26                Estonia              2         38
## 1376 2020-03-23              Argentina              1         76
## 1377 2020-03-24               Slovenia              2         66
## 1378 2020-03-24                 Kuwait              2          3
## 1379 2020-03-31                 Russia              1        803
## 1380 2020-03-14               Slovenia              2         85
## 1381 2020-04-21               Malaysia              3         93
## 1382 2020-03-22                Albania              1         19
## 1383 2020-03-16                Ecuador              0         18
## 1384 2020-03-26             Bangladesh              2          5
## 1385 2020-03-23                  Qatar              1         20
## 1386 2020-03-22           South Africa              1         69
## 1387 2020-03-11                Moldova              1          2
## 1388 2020-03-21             Azerbaijan              2          9
## 1389 2020-03-27              Palestine              1         29
## 1390 2020-03-19                Bahrain              2         41
## 1391 2020-01-31              Australia              1          1
## 1392 2020-04-23               Eswatini              3          7
## 1393 2020-03-24                Albania              1         30
## 1394 2020-03-11            Switzerland              1        277
## 1395 2020-03-25                 Jordan              2         33
## 1396 2020-03-29                Lebanon              1         47
## 1397 2020-05-11                  Qatar              1       2292
## 1398 2020-04-14             Cabo Verde              2          1
## 1399 2020-04-22          Cote d'Ivoire              2         73
## 1400 2020-03-22              Mauritius              1         16
## 1401 2020-03-27                 Kuwait              2         30
## 1402 2020-03-22                Uruguay              1         48
## 1403 2020-02-27            Switzerland              2          7
## 1404 2020-03-22                  Gabon              2          1
## 1405 2020-04-11               Portugal              3       2031
## 1406 2020-04-16                Austria              2        276
## 1407 2020-04-28                Bolivia              0        103
## 1408 2020-03-25                 France              1       5375
## 1409 2020-03-30               Botswana              1          3
## 1410 2020-04-28                Austria              2        150
## 1411 2020-03-20                 Greece              0        123
## 1412 2020-04-29          Cote d'Ivoire              2         74
## 1413 2020-03-11                Ireland              2         23
## 1414 2020-03-29                Ireland              1        494
## 1415 2020-03-18                  Chile              0         82
## 1416 2020-01-28              Singapore              2          3
## 1417 2020-03-19                  Kenya              1          7
## 1418 2020-04-18                Iceland              3         21
## 1419 2020-03-24                Ireland              2        423
## 1420 2020-04-13             Madagascar              1          4
## 1421 2020-04-24                Myanmar              2         10
## 1422 2020-04-19                 Rwanda              3          4
## 1423 2020-03-19               Slovenia              2         22
## 1424 2020-03-11                Morocco              2          2
## 1425 2020-02-18                  Japan              1          8
## 1426 2020-04-16         United Kingdom              1       9220
## 1427 2020-03-16           Saudi Arabia              2         47
## 1428 2020-04-20                 Turkey              2       8651
## 1429 2020-03-22               Colombia              2         87
## 1430 2020-05-11                 Russia              3      22668
## 1431 2020-03-31                Nigeria              1         38
## 1432 2020-03-27                Somalia              1          2
## 1433 2020-04-11              Argentina              1         81
## 1434 2020-02-22          United States              0         19
## 1435 2020-04-18                Belgium              1       2427
## 1436 2020-04-29                Morocco              2        201
## 1437 2020-04-13                 Sweden              1        797
## 1438 2020-03-25              Sri Lanka              1          5
## 1439 2020-03-10                  Chile              0          8
## 1440 2020-03-30               Malaysia              1        306
## 1441 2020-04-21              Palestine              1          7
## 1442 2020-03-12         United Kingdom              1         83
## 1443 2020-02-25                Algeria              0          1
## 1444 2020-03-23                Ecuador              0        449
## 1445 2020-04-22             Costa Rica              2         19
## 1446 2020-03-31              Singapore              2         47
## 1447 2020-04-25                  Qatar              1       1594
## 1448 2020-04-16                   Peru              2       2188
## 1449 2020-04-16             Mozambique              1          3
## 1450 2020-04-29           South Africa              2        557
## 1451 2020-03-27                 Rwanda              3         13
## 1452 2020-03-27              Sri Lanka              1          4
## 1453 2020-04-21            Netherlands              1       1479
## 1454 2020-04-26                Romania              3        619
## 1455 2020-02-27                   Iraq              2          2
## 1456 2020-01-24               Thailand              0          2
## 1457 2020-04-12               Colombia              2        303
## 1458 2020-03-14                   Oman              2          2
## 1459 2020-03-31               DR Congo              1         34
## 1460 2020-04-19           Saudi Arabia              2       2220
## 1461 2020-04-17            South Korea              3         44
## 1462 2020-04-12                Albania              1         30
## 1463 2020-03-13    Trinidad and Tobago              1          1
## 1464 2020-04-22               Ethiopia              1          5
## 1465 2020-04-26                  Italy              2       4681
## 1466 2020-03-19                 Serbia              1         42
## 1467 2020-04-26             Azerbaijan              2         53
## 1468 2020-03-14               Paraguay              1          1
## 1469 2020-04-14                Uruguay              1         16
## 1470 2020-04-12                 Poland              1        719
## 1471 2020-03-24               Djibouti              3          2
## 1472 2020-04-14                  Qatar              1        449
## 1473 2020-04-15          United States              3      56051
## 1474 2020-03-31                 Mexico              0        222
## 1475 2020-03-13             San Marino              1         12
## 1476 2020-04-15            El Salvador              1         20
## 1477 2020-04-21                Lebanon              1          4
## 1478 2020-04-28                  Sudan              2         81
## 1479 2020-03-22          United States              3      15061
## 1480 2020-04-27                 Norway              1        110
## 1481 2020-02-10                  China              1       2974
## 1482 2020-03-26                Bahrain              2         68
## 1483 2020-04-23                Croatia              2         73
## 1484 2020-02-16              Singapore              2          8
## 1485 2020-04-21                Ireland              1        789
## 1486 2020-04-22              Australia              1         22
## 1487 2020-04-16                Vietnam              3          1
## 1488 2020-03-31                Tunisia              1        116
## 1489 2020-04-17                  China              3        352
## 1490 2020-04-14                 Russia              3       5332
## 1491 2020-04-18            Philippines              2        427
## 1492 2020-04-17                Ecuador              3        592
## 1493 2020-03-28               Tanzania              0          1
## 1494 2020-04-24             Madagascar              1          1
## 1495 2020-03-17                Liberia              1          1
## 1496 2020-03-27                Jamaica              1          1
## 1497 2020-03-20                   Iraq              2         29
## 1498 2020-04-11            New Zealand              2         49
## 1499 2020-03-20                Vietnam              2         17
## 1500 2020-04-13                  Libya              1          1
## 1501 2020-03-31                  Libya              1          2
## 1502 2020-03-25               Bulgaria              1         43
## 1503 2020-03-12                Albania              1         12
## 1504 2020-04-26                 Greece              2         27
## 1505 2020-04-16               Slovakia              1        142
## 1506 2020-05-11                 Malawi              1          1
## 1507 2020-04-23               Honduras              1         18
## 1508 2020-03-24                 Mexico              0         89
## 1509 2020-04-30            El Salvador              1         50
## 1510 2020-04-16              Indonesia              1        677
## 1511 2020-02-25                   Iraq              2          1
## 1512 2020-03-19                Lebanon              1         37
## 1513 2020-04-10                 Panama              2        448
## 1514 2020-03-27             Azerbaijan              2         72
## 1515 2020-04-25                 France              1       3429
## 1516 2020-03-13 Bosnia and Herzegovina              2          2
## 1517 2020-04-22                 Mexico              1       1772
## 1518 2020-03-22                Germany              1       5936
## 1519 2020-04-23            Afghanistan              1        187
## 1520 2020-03-24               Malaysia              1        318
## 1521 2020-03-24          United States              3      21499
## 1522 2020-03-28                Ecuador              0        452
## 1523 2020-03-27               Thailand              1        182
## 1524 2020-03-12             San Marino              1         11
## 1525 2020-03-23                  Niger              1          1
## 1526 2020-04-12        Kyrgyz Republic              1         76
## 1527 2020-04-29                   Cuba              2         78
## 1528 2020-03-11                 Sweden              1        223
## 1529 2020-04-27                  Spain              1       3491
## 1530 2020-04-19              Nicaragua              1          1
## 1531 2020-02-29                 Kuwait              0          2
## 1532 2020-04-29                 Uganda              1          2
## 1533 2020-04-15            Puerto Rico              1         20
## 1534 2020-04-15                  Sudan              2          3
## 1535 2020-04-14               Colombia              2        203
## 1536 2020-04-16                Bolivia              0         88
## 1537 2020-04-25                 Greece              2         43
## 1538 2020-03-17                  India              1         55
## 1539 2020-04-17               Ethiopia              1         11
## 1540 2020-04-14                 Brazil              1       3093
## 1541 2020-01-20                  China              1         19
## 1542 2020-03-27               Pakistan              1        262
## 1543 2020-03-27            New Zealand              1        161
## 1544 2020-03-16                 Sweden              1        189
## 1545 2020-04-22                 Kuwait              2        253
## 1546 2020-04-14               Paraguay              2         24
## 1547 2020-04-28                   Mali              1         35
## 1548 2020-04-21                Somalia              1        122
## 1549 2020-04-14                Moldova              1        272
## 1550 2020-03-15                 Canada              2         68
## 1551 2020-04-23                Bolivia              0        157
## 1552 2020-03-22                 Angola              1          2
## 1553 2020-02-14                  China              1       4156
## 1554 2020-03-24                 Canada              3        216
## 1555 2020-03-14              Australia              1         41
## 1556 2020-03-26                  Egypt              1        115
## 1557 2020-03-25                 Poland              1        302
## 1558 2020-04-14                   Mali              1         28
## 1559 2020-04-13     Dominican Republic              2        408
## 1560 2020-03-19              Australia              1        111
## 1561 2020-03-19           Saudi Arabia              2        141
## 1562 2020-03-24                   Peru              1         53
## 1563 2020-04-25              Sri Lanka              2         92
## 1564 2020-03-20                  China              2         99
## 1565 2020-04-14                 Mexico              1        738
## 1566 2020-03-29               Slovenia              2        105
## 1567 2020-03-25                 Serbia              1        108
## 1568 2020-03-19            Philippines              2         30
## 1569 2020-02-26                   Iran              0         78
## 1570 2020-03-30               Slovenia              2         65
## 1571 2020-04-16               Ethiopia              1         10
## 1572 2020-03-20                Algeria              0         21
## 1573 2020-04-12                 Zambia              1          3
## 1574 2020-03-25                 Gambia              1          1
## 1575 2020-04-29                  Gabon              2         65
## 1576 2020-04-30                 France              1       2278
## 1577 2020-02-28            Netherlands              1          1
## 1578 2020-04-17               Bulgaria              1         99
## 1579 2020-05-10                 Malawi              1         13
## 1580 2020-03-16               Portugal              1        162
## 1581 2020-03-16                 Kuwait              2         19
## 1582 2020-04-16                 Jordan              2          5
## 1583 2020-03-24                  India              1         90
## 1584 2020-04-20                 Norway              1        162
## 1585 2020-02-28          United States              1          1
## 1586 2020-04-28               Botswana              1          1
## 1587 2020-04-12                Romania              3        833
## 1588 2020-03-21     Dominican Republic              0         53
## 1589 2020-04-14               Tanzania              0         18
## 1590 2020-03-17                Ecuador              0         42
## 1591 2020-03-13                  Spain              1       4486
## 1592 2020-04-18                  Italy              2       6984
## 1593 2020-04-12 Bosnia and Herzegovina              2        110
## 1594 2020-03-23                 Gambia              1          1
## 1595 2020-03-31             Mauritania              0          1
## 1596 2020-04-30                 Kuwait              2        584
## 1597 2020-03-27                Lebanon              1         58
## 1598 2020-04-29             Cabo Verde              2          4
## 1599 2020-04-30                Lebanon              1          8
## 1600 2020-03-12                 Israel              1         33
## 1601 2020-04-21                Denmark              2        311
## 1602 2020-03-20            Philippines              2         41
## 1603 2020-04-13           South Africa              2        244
## 1604 2020-03-29                Bermuda              1          5
## 1605 2020-03-18                  Egypt              1         40
## 1606 2020-04-19                Croatia              2         57
## 1607 2020-02-29                Iceland              0          1
## 1608 2020-02-18                  China              2       1890
## 1609 2020-03-16               Slovakia              1         26
## 1610 2020-03-10                 Serbia              1          4
## 1611 2020-04-19               Mongolia              1          1
## 1612 2020-03-27              Australia              1        367
## 1613 2020-04-29                Nigeria              1        391
## 1614 2020-04-23             Costa Rica              2         17
## 1615 2020-03-20   United Arab Emirates              1         27
## 1616 2020-01-24                  China              1        259
## 1617 2020-03-14                 Israel              1         49
## 1618 2020-03-28                 Poland              1        417
## 1619 2020-03-13                Lebanon              1         21
## 1620 2020-03-14                 Cyprus              0         20
## 1621 2020-04-12                Ukraine              1        574
## 1622 2020-03-21               Ethiopia              1          2
## 1623 2020-04-24              Singapore              2       1934
## 1624 2020-04-18             Bangladesh              2        572
## 1625 2020-04-12                 Greece              2        103
## 1626 2020-04-21                  India              3       2876
## 1627 2020-03-24                Finland              1        166
## 1628 2020-04-21               Pakistan              2       1309
## 1629 2020-03-25        Kyrgyz Republic              1         28
## 1630 2020-04-27             Kazakhstan              1        183
## 1631 2020-04-13                 Israel              1        843
## 1632 2020-03-28                 Panama              2        224
## 1633 2020-03-18                Moldova              1          1
## 1634 2020-03-30                Albania              1         26
## 1635 2020-03-30                 Russia              1        572
## 1636 2020-03-17                 Panama              2         40
## 1637 2020-01-28                 France              0          1
## 1638 2020-04-12                 Canada              3       1168
## 1639 2020-03-12                Estonia              1          3
## 1640 2020-04-21                  Niger              1         16
## 1641 2020-04-26              Nicaragua              1          2
## 1642 2020-03-26               Tanzania              0          1
## 1643 2020-02-26              Singapore              2          3
## 1644 2020-03-28                  Ghana              3          9
## 1645 2020-04-27                Morocco              2        223
## 1646 2020-03-22                  Ghana              1          9
## 1647 2020-04-22            Philippines              2        251
## 1648 2020-04-17                 Rwanda              3          7
## 1649 2020-03-15                Germany              1       1943
## 1650 2020-03-22                 Serbia              1         65
## 1651 2020-03-26             San Marino              1         21
## 1652 2020-04-19                  Ghana              3        401
## 1653 2020-04-23            Switzerland              1        433
## 1654 2020-03-31                Croatia              1        154
## 1655 2020-03-25              Palestine              1          1
## 1656 2020-04-21               Paraguay              2          2
## 1657 2020-03-19                Namibia              1          1
## 1658 2020-04-25               Slovakia              1         48
## 1659 2020-04-20                Ukraine              1        522
## 1660 2020-04-22                Iceland              3         12
## 1661 2020-03-30                   Peru              1        279
## 1662 2020-04-29               Colombia              2        610
## 1663 2020-04-10                Bahrain              2        102
## 1664 2020-04-26                 Serbia              1        559
## 1665 2020-03-13              Sri Lanka              1          5
## 1666 2020-04-19                Denmark              1        311
## 1667 2020-04-18               Paraguay              2         31
## 1668 2020-03-25                 Canada              3        313
## 1669 2020-03-17                Ukraine              1          9
## 1670 2020-04-25                Belgium              1       1835
## 1671 2020-04-10                   Peru              2       1555
## 1672 2020-02-27            Netherlands              1          1
## 1673 2020-03-26                 Belize              1          1
## 1674 2020-03-28              Singapore              2        208
## 1675 2020-04-12                  Ghana              3        188
## 1676 2020-04-24                  Japan              3        929
## 1677 2020-03-16                 Poland              0         79
## 1678 2020-03-19                Finland              1        114
## 1679 2020-03-20                  Benin              1          1
## 1680 2020-04-18                   Chad              1         12
## 1681 2020-04-29                   Oman              2        225
## 1682 2020-03-31              Indonesia              1        243
## 1683 2020-04-21             Azerbaijan              2         82
## 1684 2020-04-23                Ukraine              1       1156
## 1685 2020-04-25                 Rwanda              3         29
## 1686 2020-03-18                Finland              1         62
## 1687 2020-03-13                Albania              1         22
## 1688 2020-02-27                Bahrain              1         10
## 1689 2020-04-27            New Zealand              2          4
## 1690 2020-04-28              Indonesia              1        629
## 1691 2020-03-20                 Panama              2         56
## 1692 2020-04-24                Belgium              1       2464
## 1693 2020-03-25            Switzerland              1       1794
## 1694 2020-04-20                Myanmar              2         12
## 1695 2020-04-16              Australia              1         42
## 1696 2020-03-28     Dominican Republic              2        231
## 1697 2020-03-20             Mauritania              0          1
## 1698 2020-02-28               Thailand              0          1
## 1699 2020-03-26               Slovakia              1         22
## 1700 2020-04-20               Paraguay              2          6
## 1701 2020-02-25               Thailand              0          4
## 1702 2020-03-25                Hungary              1         78
## 1703 2020-03-27               Honduras              2         31
## 1704 2020-04-28                Ukraine              1        401
## 1705 2020-03-23               Bulgaria              1         36
## 1706 2020-04-18                Moldova              1        224
## 1707 2020-03-15             Kazakhstan              1          9
## 1708 2020-04-26                  Syria              2          1
## 1709 2020-04-21                 Sweden              1        937
## 1710 2020-03-28                   Oman              2         43
## 1711 2020-03-12               Bulgaria              1          3
## 1712 2020-03-24               Thailand              1        212
## 1713 2020-04-30                Uruguay              1         18
## 1714 2020-04-22           Burkina Faso              1         28
## 1715 2020-03-23               Cameroon              0         16
## 1716 2020-04-15               Zimbabwe              0          6
## 1717 2020-03-13   United Arab Emirates              1         11
## 1718 2020-04-15            South Korea              3         54
## 1719 2020-03-11                Ecuador              0          4
## 1720 2020-04-29                 Jordan              2          2
## 1721 2020-03-17                 Canada              2        120
## 1722 2020-02-29                   Oman              2          2
## 1723 2020-03-15                 Panama              2         14
## 1724 2020-03-11                Belgium              1        146
## 1725 2020-02-27                   Iran              0        150
## 1726 2020-03-26               Paraguay              2          8
## 1727 2020-04-13            New Zealand              2         34
## 1728 2020-03-27                  Spain              1      17114
## 1729 2020-03-16                Romania              0         53
## 1730 2020-04-25                 Serbia              1        503
## 1731 2020-04-29         Czech Republic              2        130
## 1732 2020-04-21               Portugal              3       1173
## 1733 2020-03-10           Burkina Faso              1          1
## 1734 2020-04-23               Colombia              2        412
## 1735 2020-05-12                  Spain              1       1076
## 1736 2020-02-23                  Italy              1        155
## 1737 2020-03-19            El Salvador              1          2
## 1738 2020-04-28               Colombia              2        570
## 1739 2020-03-21    Trinidad and Tobago              1         40
## 1740 2020-04-30               Slovakia              1         12
## 1741 2020-04-12           Saudi Arabia              2        811
## 1742 2020-03-17                 Mexico              0         40
## 1743 2020-03-17                Vietnam              2          9
## 1744 2020-04-14           Saudi Arabia              2        907
## 1745 2020-04-19                Tunisia              1         17
## 1746 2020-04-18               Slovakia              1        112
## 1747 2020-03-28                 Serbia              1        275
## 1748 2020-04-23                Ireland              1       1567
## 1749 2020-03-22                Nigeria              1         18
## 1750 2020-04-19         Czech Republic              2        245
## 1751 2020-03-26                  Ghana              1         54
## 1752 2020-04-20                Albania              1         36
## 1753 2020-02-28                   Oman              2          2
## 1754 2020-01-27                Germany              1          1
## 1755 2020-03-24               Pakistan              1        194
## 1756 2020-03-17                Iceland              3         61
## 1757 2020-03-15                 Kuwait              2         12
## 1758 2020-04-24               Slovakia              1        116
## 1759 2020-03-25                Romania              3        298
## 1760 2020-04-10                Finland              1        282
## 1761 2020-04-16           Saudi Arabia              2       1011
## 1762 2020-04-24                Croatia              2         59
## 1763 2020-03-31               Thailand              1        390
## 1764 2020-04-28                Croatia              2         17
## 1765 2020-04-11                 Greece              2        126
## 1766 2020-03-14                  Sudan              2          1
## 1767 2020-03-24                  Kenya              1         10
## 1768 2020-04-25               Cameroon              2         90
## 1769 2020-04-29                 Canada              3       1526
## 1770 2020-03-20                Bermuda              1          2
## 1771 2020-04-30                Ireland              1        735
## 1772 2020-04-21            New Zealand              2          7
## 1773 2020-04-18               Pakistan              2       1166
## 1774 2020-04-10                 Zambia              1          1
## 1775 2020-03-19                 Turkey              2        187
## 1776 2020-03-22              Palestine              1          8
## 1777 2020-03-21   United Arab Emirates              1         13
## 1778 2020-03-12                Denmark              1        425
## 1779 2020-03-11                 Norway              1        283
## 1780 2020-03-25                 Mexico              0        108
## 1781 2020-03-10   United Arab Emirates              1         43
## 1782 2020-05-10                  China              3         15
## 1783 2020-04-10                 Sweden              1       1266
## 1784 2020-03-17                 Jordan              2         18
## 1785 2020-04-28                Iceland              3          3
## 1786 2020-03-26              Singapore              2         62
## 1787 2020-04-13               Eswatini              3          1
## 1788 2020-03-25                 Kuwait              2          6
## 1789 2020-01-26                 Canada              1          1
## 1790 2020-04-22                  Gabon              2         46
## 1791 2020-04-29                Ukraine              1        857
## 1792 2020-04-19             Kazakhstan              1        124
## 1793 2020-04-19            Puerto Rico              1         50
## 1794 2020-04-22                Denmark              2        397
## 1795 2020-03-26               Pakistan              1        238
## 1796 2020-05-10                 Kuwait              2       1480
## 1797 2020-04-18                  Niger              1         30
## 1798 2020-03-21               Barbados              2          5
## 1799 2020-03-24            El Salvador              1          4
## 1800 2020-03-29                Morocco              2         90
## 1801 2020-04-16              Venezuela              1         11
## 1802 2020-04-16             Bangladesh              2        560
## 1803 2020-03-10         United Kingdom              1        109
## 1804 2020-03-21                  Gabon              2          1
## 1805 2020-04-17               Botswana              1          2
## 1806 2020-03-23      Brunei Darussalam              2          8
## 1807 2020-04-23           Burkina Faso              1         16
## 1808 2020-04-20                 Canada              3       1436
## 1809 2020-04-26                  Sudan              2         63
## 1810 2020-03-27                  Syria              0          4
## 1811 2020-03-28                Belgium              1       3369
## 1812 2020-04-15           Sierra Leone              2          2
## 1813 2020-04-21                Liberia              1         10
## 1814 2020-04-17                 Israel              1        481
## 1815 2020-03-27              Venezuela              1          1
## 1816 2020-03-23                Finland              1        179
## 1817 2020-04-10                   Iraq              2         77
## 1818 2020-04-26     Dominican Republic              2        386
## 1819 2020-04-12             Azerbaijan              2        107
## 1820 2020-03-27               Colombia              2         69
## 1821 2020-04-21                  Syria              2          3
## 1822 2020-04-18                Estonia              2         78
## 1823 2020-03-27                Andorra              1         79
## 1824 2020-02-16   United Arab Emirates              0          1
## 1825 2020-03-22             Azerbaijan              2         21
## 1826 2020-03-12 Bosnia and Herzegovina              2          5
## 1827 2020-03-26                Croatia              1         89
## 1828 2020-03-22                 Uganda              1          1
## 1829 2020-04-24         Congo Republic              1         14
## 1830 2020-04-23                 Malawi              1         15
## 1831 2020-03-28                   Iran              0       6002
## 1832 2020-03-17                  China              2         43
## 1833 2020-03-23                  China              2        138
## 1834 2020-03-22               Ethiopia              1          2
## 1835 2020-03-25                  Libya              1          1
## 1836 2020-04-12                Jamaica              1          8
## 1837 2020-03-26 Bosnia and Herzegovina              2         34
## 1838 2020-04-24                Moldova              1        332
## 1839 2020-03-26                 Russia              1        345
## 1840 2020-03-12                Romania              0         24
## 1841 2020-04-12                   Cuba              2        105
## 1842 2020-04-25                 Sweden              1       1422
## 1843 2020-04-11            South Korea              3         30
## 1844 2020-04-13              Argentina              1        132
## 1845 2020-03-13                Moldova              1          5
## 1846 2020-04-30                Bermuda              1          1
## 1847 2020-03-31                Estonia              1         66
## 1848 2020-04-20                Croatia              2         49
## 1849 2020-03-23                Austria              2       1499
## 1850 2020-04-27               Thailand              1          9
## 1851 2020-04-30                Austria              2        100
## 1852 2020-04-13                Myanmar              2         31
## 1853 2020-03-10                  Italy              2       2774
## 1854 2020-04-12              Guatemala              2         34
## 1855 2020-03-23             Madagascar              3          9
## 1856 2020-04-15             Kazakhstan              1        151
## 1857 2020-04-19               Bulgaria              1         48
## 1858 2020-02-29                 Israel              1          7
## 1859 2020-04-28 Bosnia and Herzegovina              2         68
## 1860 2020-03-23                Andorra              1         45
## 1861 2020-02-14              Singapore              2         17
## 1862 2020-04-19                 Jordan              2         10
## 1863 2020-03-12                 Sweden              1        235
## 1864 2020-03-24                 Gambia              1          2
## 1865 2020-04-19          Cote d'Ivoire              2        105
## 1866 2020-04-19                 Norway              1        235
## 1867 2020-03-19                  Egypt              1         90
## 1868 2020-04-13                 Malawi              1          4
## 1869 2020-04-25         Czech Republic              2        164
## 1870 2020-04-16               Honduras              1         14
## 1871 2020-03-11                Estonia              0          7
## 1872 2020-04-29                Estonia              2         19
## 1873 2020-03-18                  Qatar              1         16
## 1874 2020-04-10                 Rwanda              3         11
## 1875 2020-03-24          Cote d'Ivoire              2         48
## 1876 2020-03-28                Jamaica              1          4
## 1877 2020-04-11                  Japan              1       1155
## 1878 2020-04-21                Andorra              3          4
## 1879 2020-04-26               Pakistan              2       1370
## 1880 2020-01-23                  China              1         97
## 1881 2020-03-30               Pakistan              1        339
## 1882 2020-03-17           Burkina Faso              1         17
## 1883 2020-03-29               Colombia              2        163
## 1884 2020-04-13                Tunisia              1         41
## 1885 2020-01-23                Vietnam              0          2
## 1886 2020-04-10                Estonia              2         73
## 1887 2020-03-24                   Guam              0          2
## 1888 2020-04-27                  Sudan              2         62
## 1889 2020-04-30            Afghanistan              1        354
## 1890 2020-03-10                 Panama              2          2
## 1891 2020-03-31          Cote d'Ivoire              2         14
## 1892 2020-03-19           South Africa              1         65
## 1893 2020-03-11               Bulgaria              1          3
## 1894 2020-02-10         United Kingdom              1          5
## 1895 2020-03-29                Estonia              1         99
## 1896 2020-04-11         Czech Republic              2        262
## 1897 2020-04-10                  Kenya              1         10
## 1898 2020-03-24              Indonesia              1        172
## 1899 2020-03-28                  Kenya              1          7
## 1900 2020-04-14                  Japan              1        665
## 1901 2020-03-15               Pakistan              1         92
## 1902 2020-03-29                Belgium              1       2546
## 1903 2020-03-22               Pakistan              1        250
## 1904 2020-03-27                Hungary              1         78
## 1905 2020-04-13                 Rwanda              3          7
## 1906 2020-04-24                   Iran              0       2198
## 1907 2020-02-10               Malaysia              1          4
## 1908 2020-04-26              Guatemala              2         70
## 1909 2020-04-13                 France              1       5278
## 1910 2020-04-14              Singapore              2        720
## 1911 2020-04-12                   Peru              2       1622
## 1912 2020-03-15                 Cyprus              0          7
## 1913 2020-03-26                   Oman              2         25
## 1914 2020-05-11                Algeria              0        333
## 1915 2020-04-26                 Brazil              1       9290
## 1916 2020-02-28         United Kingdom              1          8
## 1917 2020-03-23               Ethiopia              1          2
## 1918 2020-04-12               Honduras              1          2
## 1919 2020-04-25                 Brazil              1       8784
## 1920 2020-03-25                 Russia              1        220
## 1921 2020-03-21                Romania              0         90
## 1922 2020-03-20                  Spain              1       7016
## 1923 2020-04-11                Austria              2        563
## 1924 2020-03-30           South Africa              2        139
## 1925 2020-04-14            New Zealand              2         25
## 1926 2020-02-15                 Canada              1          1
## 1927 2020-03-20                  Qatar              1         18
## 1928 2020-03-24                  Chile              0        290
## 1929 2020-01-15                  Japan              1          1
## 1930 2020-03-19               Tanzania              0          5
## 1931 2020-04-27 Bosnia and Herzegovina              2         80
## 1932 2020-03-25               Slovenia              2         86
## 1933 2020-04-22                  China              3         15
## 1934 2020-03-12                 Poland              0         27
## 1935 2020-04-29              Sri Lanka              2         61
## 1936 2020-03-24                   Chad              1          2
## 1937 2020-04-30                 Rwanda              3         31
## 1938 2020-03-18                  Japan              1         16
## 1939 2020-04-26                   Iraq              2        112
## 1940 2020-04-30                  Italy              2       3958
## 1941 2020-04-29             Azerbaijan              2         88
## 1942 2020-04-26              Venezuela              1          7
## 1943 2020-04-21         Congo Republic              1          5
## 1944 2020-04-19             Azerbaijan              2         58
## 1945 2020-03-15                 Norway              1        417
## 1946 2020-04-16            Afghanistan              1        126
## 1947 2020-04-28                 Turkey              2       4523
## 1948 2020-03-31                 Norway              1        320
## 1949 2020-04-23                 Sweden              1       1433
## 1950 2020-04-22                Moldova              1        230
## 1951 2020-03-27               Tanzania              0          1
## 1952 2020-03-10                  Japan              1         96
## 1953 2020-04-11            Netherlands              1       2651
## 1954 2020-02-11               Thailand              0          1
## 1955 2020-03-12            Philippines              2         19
## 1956 2020-03-16    Trinidad and Tobago              1          4
## 1957 2020-04-25          United States              3      54273
## 1958 2020-03-24                 Rwanda              3         21
## 1959 2020-03-26     Dominican Republic              2        176
## 1960 2020-04-21             Bangladesh              2        926
## 1961 2020-02-23                  China              2        647
## 1962 2020-04-26                 Uganda              1          4
## 1963 2020-03-27           South Africa              1        461
## 1964 2020-03-25             Kazakhstan              1         26
## 1965 2020-04-18 Bosnia and Herzegovina              2        112
## 1966 2020-03-21                Tunisia              1         21
## 1967 2020-03-20                 France              1       3602
## 1968 2020-04-23                Somalia              1         42
## 1969 2020-04-28             Luxembourg              1         18
## 1970 2020-04-18                   Mali              1         64
## 1971 2020-03-28                 Mexico              0        263
## 1972 2020-04-22           Saudi Arabia              2       2288
## 1973 2020-03-21        Kyrgyz Republic              1          8
## 1974 2020-03-19               Colombia              2         46
## 1975 2020-03-20             San Marino              1         42
## 1976 2020-04-11                Morocco              2        171
## 1977 2020-04-25                  Libya              1          1
## 1978 2020-04-27              Venezuela              1          6
## 1979 2020-02-12              Singapore              2          5
## 1980 2020-04-18                 Angola              2          5
## 1981 2020-04-26                Jamaica              1         62
## 1982 2020-03-15               Thailand              1         32
## 1983 2020-04-18                  India              3       2361
## 1984 2020-04-23            South Korea              3         22
## 1985 2020-04-23              Venezuela              1         26
## 1986 2020-03-21             Costa Rica              2         54
## 1987 2020-04-21          Cote d'Ivoire              2        101
## 1988 2020-03-17               Colombia              2         23
## 1989 2020-05-11                 Guyana              1         12
## 1990 2020-03-31                Albania              1         31
## 1991 2020-03-24                  Spain              1      12440
## 1992 2020-03-17             Luxembourg              1         67
## 1993 2020-03-23                Uruguay              1         27
## 1994 2020-04-15                Romania              3        583
## 1995 2020-04-28     Dominican Republic              2        123
## 1996 2020-04-15                  China              3         49
## 1997 2020-04-18                Liberia              1          3
## 1998 2020-03-19              Guatemala              1          5
## 1999 2020-04-28                 Cyprus              3         20
## 2000 2020-03-11              Singapore              2         24
## 2001 2020-03-31               Slovakia              1         27
## 2002 2020-03-25                  Kenya              1         12
## 2003 2020-04-26                 Sweden              1       1073
## 2004 2020-04-23           Saudi Arabia              2       2299
## 2005 2020-04-26               Colombia              2        498
## 2006 2020-03-19                  Sudan              2          1
## 2007 2020-04-17                  Egypt              1        339
## 2008 2020-03-19                Ukraine              1          7
## 2009 2020-03-26                   Peru              1        242
## 2010 2020-03-29               Bulgaria              1         53
## 2011 2020-03-18              Palestine              1          4
## 2012 2020-03-26              Guatemala              2          4
## 2013 2020-03-21              Australia              1        165
## 2014 2020-03-27           Burkina Faso              1         60
## 2015 2020-03-26                Germany              1      11569
## 2016 2020-03-22                Liberia              1          1
## 2017 2020-02-25                 Kuwait              0         12
## 2018 2020-03-28                Somalia              1          1
## 2019 2020-04-25             Uzbekistan              1        116
## 2020 2020-03-15                  China              2         22
## 2021 2020-03-20                Jamaica              1          2
## 2022 2020-03-12                Lebanon              1         20
## 2023 2020-04-19              Mauritius              1          4
## 2024 2020-03-26                Estonia              1        169
## 2025 2020-04-21                 Norway              1         80
## 2026 2020-04-13         Congo Republic              1         10
## 2027 2020-03-24      Brunei Darussalam              2         16
## 2028 2020-03-18                Albania              1          8
## 2029 2020-04-17                Ukraine              1        802
## 2030 2020-04-24                  Niger              1         19
## 2031 2020-03-11                Iceland              2         21
## 2032 2020-04-28                Ecuador              3       1539
## 2033 2020-04-27                 Sweden              1        749
## 2034 2020-03-20               Pakistan              1        405
## 2035 2020-03-29               Cameroon              0         59
## 2036 2020-03-18   United Arab Emirates              1         30
## 2037 2020-04-29                Tunisia              1         13
## 2038 2020-04-12         United Kingdom              1      14007
## 2039 2020-03-13         United Kingdom              1        476
## 2040 2020-05-11             Bangladesh              1       1921
## 2041 2020-04-24               Djibouti              3         25
## 2042 2020-03-22            South Korea              3        260
## 2043 2020-04-23                Austria              1        168
## 2044 2020-04-13               Mongolia              1          1
## 2045 2020-02-13              Singapore              2         11
## 2046 2020-04-13                Ukraine              1        591
## 2047 2020-03-17             Kazakhstan              1         25
## 2048 2020-04-14                 France              1       7632
## 2049 2020-04-30                 Serbia              1        512
## 2050 2020-04-17               Paraguay              2         25
## 2051 2020-04-27                Germany              1       2006
## 2052 2020-03-25                 Greece              0        126
## 2053 2020-03-19     Dominican Republic              0         23
## 2054 2020-04-12             Mozambique              1          1
## 2055 2020-03-29               Honduras              2         30
## 2056 2020-04-10                   Oman              3         65
## 2057 2020-04-15               Bulgaria              1         62
## 2058 2020-04-14                 Norway              1         93
## 2059 2020-04-22                 Rwanda              3          6
## 2060 2020-04-12                 Malawi              1          4
## 2061 2020-03-16                Denmark              1         98
## 2062 2020-04-30          Cote d'Ivoire              2         92
## 2063 2020-02-21                Lebanon              1          1
## 2064 2020-04-19                Austria              2        137
## 2065 2020-04-24               Barbados              2          1
## 2066 2020-03-19              Argentina              1         36
## 2067 2020-03-10                Albania              1         12
## 2068 2020-03-31                Hungary              1         90
## 2069 2020-04-19               DR Congo              1         40
## 2070 2020-03-23             Uzbekistan              1         16
## 2071 2020-03-22               Eswatini              1          3
## 2072 2020-03-31                 Cyprus              1         48
## 2073 2020-04-27                Belgium              1        758
## 2074 2020-03-22                  Qatar              1         24
## 2075 2020-04-14                  Niger              1         60
## 2076 2020-03-15                  Egypt              1          1
## 2077 2020-03-15                  Italy              2       7087
## 2078 2020-03-20      Brunei Darussalam              2          8
## 2079 2020-04-19                 Israel              1        509
## 2080 2020-04-24                Liberia              1         16
## 2081 2020-04-29               Honduras              1         81
## 2082 2020-04-29               Portugal              3        363
## 2083 2020-01-30                  China              1       1740
## 2084 2020-04-28               Honduras              1         73
## 2085 2020-04-20               Cameroon              2        146
## 2086 2020-04-18          United States              3      59154
## 2087 2020-03-15                 Serbia              1          7
## 2088 2020-04-18              Singapore              2       1565
## 2089 2020-03-28             San Marino              1          6
## 2090 2020-04-30                Hungary              1         96
## 2091 2020-03-24                  Benin              1          4
## 2092 2020-03-10                  Egypt              1         10
## 2093 2020-03-30                  Qatar              1        103
## 2094 2020-04-12             Cabo Verde              2          1
## 2095 2020-03-28                Albania              1         23
## 2096 2020-01-28                  Japan              1          4
## 2097 2020-03-26                Lebanon              1         64
## 2098 2020-04-27               Ethiopia              1          2
## 2099 2020-04-10          Cote d'Ivoire              2         60
## 2100 2020-03-16                 Cyprus              0         16
## 2101 2020-04-30                 Russia              3      12940
## 2102 2020-03-30                  Aruba              1         22
## 2103 2020-03-26                Denmark              1        286
## 2104 2020-03-17             Bangladesh              2          4
## 2105 2020-04-27               Cameroon              2        187
## 2106 2020-03-16                 Panama              2         12
## 2107 2020-04-19                 Mexico              1       1386
## 2108 2020-04-19                Albania              1         23
## 2109 2020-04-12            El Salvador              1          7
## 2110 2020-03-10            South Korea              3        166
## 2111 2020-04-21                 Cyprus              3         17
## 2112 2020-03-22                Denmark              1        140
## 2113 2020-02-27                Denmark              0          2
## 2114 2020-04-24                 Poland              1        723
## 2115 2020-03-30                 Rwanda              3         10
## 2116 2020-03-15                Croatia              1         17
## 2117 2020-04-11             Uzbekistan              1        185
## 2118 2020-03-21            Philippines              2         77
## 2119 2020-04-26                 Malawi              1          1
## 2120 2020-04-23          United States              3      51791
## 2121 2020-04-29                Myanmar              2          4
## 2122 2020-03-16              Australia              1         49
## 2123 2020-03-21                 Israel              1        218
## 2124 2020-03-29      Brunei Darussalam              2         11
## 2125 2020-04-10            Puerto Rico              1         63
## 2126 2020-03-21                Nigeria              1         14
## 2127 2020-03-13               Thailand              1          5
## 2128 2020-02-29             Azerbaijan              1          1
## 2129 2020-04-28           South Africa              2        450
## 2130 2020-04-17               Slovakia              1        186
## 2131 2020-03-29                Vietnam              2         31
## 2132 2020-03-25                  China              2         78
## 2133 2020-04-13                Liberia              1         11
## 2134 2020-04-27                Jamaica              1         59
## 2135 2020-03-13                 Greece              0        125
## 2136 2020-03-28         Czech Republic              2        569
## 2137 2020-03-11                Albania              1          6
## 2138 2020-01-24                 France              0          2
## 2139 2020-03-19          United States              3       8227
## 2140 2020-03-27                  India              1        235
## 2141 2020-04-16                Somalia              1         20
## 2142 2020-03-27        Kyrgyz Republic              1         14
## 2143 2020-04-19            Netherlands              1       2206
## 2144 2020-04-29            New Zealand              2          4
## 2145 2020-04-14                   Peru              2        519
## 2146 2020-04-19                Germany              1       4300
## 2147 2020-04-13                Denmark              1        322
## 2148 2020-04-29                 Serbia              1        449
## 2149 2020-04-29                Bahrain              2        198
## 2150 2020-04-24                   Peru              2       2398
## 2151 2020-04-27             Madagascar              1          4
## 2152 2020-03-25                  Sudan              2          1
## 2153 2020-03-18               Ethiopia              1          1
## 2154 2020-04-12                   Iraq              2         73
## 2155 2020-03-10               Mongolia              1          2
## 2156 2020-04-11                 Mexico              1        778
## 2157 2020-03-29               Ethiopia              1          5
## 2158 2020-04-24               Portugal              3        815
## 2159 2020-01-31                Germany              1          2
## 2160 2020-04-29                Croatia              2         23
## 2161 2020-04-22             Bangladesh              2        824
## 2162 2020-03-12                Algeria              0          4
## 2163 2020-03-10                Croatia              1          2
## 2164 2020-03-22                  Kenya              1          8
## 2165 2020-03-14               DR Congo              1          1
## 2166 2020-04-13                Hungary              1         96
## 2167 2020-04-19             Uzbekistan              1        120
## 2168 2020-03-19              Indonesia              1         84
## 2169 2020-05-10                 Israel              1         41
## 2170 2020-04-28                Bermuda              1          1
## 2171 2020-04-13                Finland              1        159
## 2172 2020-04-27            South Sudan              2          1
## 2173 2020-03-30                  China              2         98
## 2174 2020-04-13                Morocco              2        218
## 2175 2020-04-27               Eswatini              3         25
## 2176 2020-02-10              Singapore              2          8
## 2177 2020-03-21                 Serbia              1         45
## 2178 2020-03-11               DR Congo              1          2
## 2179 2020-03-26                 Panama              2        260
## 2180 2020-03-29              Argentina              1        110
## 2181 2020-04-27                Hungary              1        166
## 2182 2020-04-16                  Chile              2        890
## 2183 2020-05-10                 Greece              2         25
## 2184 2020-04-14                 Guyana              1          4
## 2185 2020-04-23   United Arab Emirates              3       1001
## 2186 2020-04-27                  Gabon              2         35
## 2187 2020-04-24                 Greece              2         82
## 2188 2020-04-20                Somalia              1        102
## 2189 2020-04-27              Nicaragua              1          1
## 2190 2020-04-12              Argentina              1        329
## 2191 2020-04-26                Bolivia              0        143
## 2192 2020-03-18                Germany              1       4214
## 2193 2020-03-31                Finland              1        161
## 2194 2020-03-10               Slovakia              1          4
## 2195 2020-04-30                  Gabon              2         38
## 2196 2020-04-11                Ukraine              1        619
## 2197 2020-04-20                Hungary              1        136
## 2198 2020-04-21                   Peru              2       2209
## 2199 2020-03-17                 Kuwait              2         18
## 2200 2020-03-18              Mauritius              1          3
## 2201 2020-03-24         Czech Republic              1        229
## 2202 2020-04-10                Uruguay              1         28
## 2203 2020-04-30               Tanzania              0        174
## 2204 2020-04-22             Luxembourg              1         96
## 2205 2020-03-15              Australia              1         52
## 2206 2020-03-10                Estonia              0          2
## 2207 2020-04-29           Burkina Faso              1          6
## 2208 2020-03-26                Namibia              1          2
## 2209 2020-02-25            Switzerland              2          1
## 2210 2020-04-10                Moldova              1        264
## 2211 2020-04-12          United States              3      56950
## 2212 2020-04-22            El Salvador              1         19
## 2213 2020-03-20                 Turkey              2        335
## 2214 2020-04-11    Trinidad and Tobago              2          3
## 2215 2020-03-21                 Uganda              1          1
## 2216 2020-04-22         Congo Republic              1         26
## 2217 2020-03-16               Bulgaria              1         11
## 2218 2020-03-13                  Italy              2       5198
## 2219 2020-04-14                 Zambia              1          2
## 2220 2020-04-30                  Sudan              2        124
## 2221 2020-03-19                 France              1       3232
## 2222 2020-03-28             Uzbekistan              1         37
## 2223 2020-04-24          Cote d'Ivoire              2        125
## 2224 2020-04-22               Thailand              1         34
## 2225 2020-03-22             Costa Rica              2         21
## 2226 2020-03-28                 Rwanda              3         10
## 2227 2020-03-25                   Iraq              2         80
## 2228 2020-04-13    Trinidad and Tobago              2          1
## 2229 2020-03-15         Congo Republic              0          1
## 2230 2020-04-22                 France              1        461
## 2231 2020-03-31                 Panama              2        278
## 2232 2020-02-24                Bahrain              1          2
## 2233 2020-03-24             Azerbaijan              2         22
## 2234 2020-03-19                 Greece              0         31
## 2235 2020-04-14                 Malawi              1          3
## 2236 2020-03-28            New Zealand              1        161
## 2237 2020-04-22             Kazakhstan              1        216
## 2238 2020-03-18                Ireland              2        138
## 2239 2020-03-24                 Sweden              1        350
## 2240 2020-04-18           South Africa              2        429
## 2241 2020-03-28             Kazakhstan              1        151
## 2242 2020-03-12               Malaysia              1         20
## 2243 2020-04-15                Algeria              0        177
## 2244 2020-04-23                Finland              1        270
## 2245 2020-03-15                Estonia              1         92
## 2246 2020-03-10             San Marino              1         27
## 2247 2020-04-11               Colombia              2        486
## 2248 2020-03-15              Sri Lanka              1         13
## 2249 2020-04-25                  Kenya              1         23
## 2250 2020-03-13                 Mexico              0         19
## 2251 2020-03-15                Romania              0         32
## 2252 2020-04-22                Myanmar              2          4
## 2253 2020-04-15               Colombia              2        253
## 2254 2020-04-10           Saudi Arabia              2        719
## 2255 2020-03-19                  China              2         44
## 2256 2020-05-10             Kazakhstan              3        317
## 2257 2020-03-12                   Iraq              2          9
## 2258 2020-02-21                 Canada              1          1
## 2259 2020-04-18                  Sudan              2         33
## 2260 2020-04-13                  Chile              2        598
## 2261 2020-04-30               Honduras              1         66
## 2262 2020-01-29               Malaysia              1          6
## 2263 2020-03-14               Slovakia              1         21
## 2264 2020-03-27                 Brazil              1        914
## 2265 2020-03-28         United Kingdom              1       5431
## 2266 2020-04-18           Sierra Leone              2         15
## 2267 2020-03-27                   Guam              0         12
## 2268 2020-04-19                 Brazil              1       4913
## 2269 2020-03-27                Bermuda              1          9
## 2270 2020-04-29               Malaysia              3        125
## 2271 2020-03-30               Barbados              2          7
## 2272 2020-03-11               Slovakia              1          5
## 2273 2020-03-31               Zimbabwe              0          1
## 2274 2020-03-14               Thailand              1         19
## 2275 2020-04-22                 Canada              3       1590
## 2276 2020-03-19                Croatia              1         36
## 2277 2020-04-25                Myanmar              2         14
## 2278 2020-03-14                  Spain              1       2842
## 2279 2020-03-16               Malaysia              1        328
## 2280 2020-03-28                Croatia              1        162
## 2281 2020-04-20             Kazakhstan              1        257
## 2282 2020-04-30             Costa Rica              2         14
## 2283 2020-03-11                   Iran              0       1839
## 2284 2020-04-30               Djibouti              3         17
## 2285 2020-03-15              Venezuela              1         18
## 2286 2020-03-10                Lebanon              1         18
## 2287 2020-04-30             Bangladesh              2       1205
## 2288 2020-04-22                Somalia              1         49
## 2289 2020-03-21                Namibia              1          1
## 2290 2020-03-30             Luxembourg              1        157
## 2291 2020-03-20            Switzerland              1       2097
## 2292 2020-02-14               Malaysia              1          1
## 2293 2020-04-15               Mongolia              1         14
## 2294 2020-04-19            Switzerland              1        661
## 2295 2020-03-16         Congo Republic              0          1
## 2296 2020-03-22                Estonia              1         43
## 2297 2020-03-27                Algeria              0        107
## 2298 2020-04-17                 Mexico              1       1028
## 2299 2020-04-25             Luxembourg              1         46
## 2300 2020-03-25                Lebanon              1         52
## 2301 2020-03-24                Lebanon              1         70
## 2302 2020-04-25               Malaysia              3        139
## 2303 2020-04-15                Uruguay              1         12
## 2304 2020-04-22                 Poland              1        576
## 2305 2020-03-21                 Russia              1        107
## 2306 2020-04-28                 Sweden              1        981
## 2307 2020-04-30              Singapore              2       1218
## 2308 2020-03-12                Belgium              1        174
## 2309 2020-03-29              Guatemala              2          2
## 2310 2020-03-20            New Zealand              1         22
## 2311 2020-04-30            Philippines              2        530
## 2312 2020-04-17                 Guyana              1         10
## 2313 2020-03-17     Dominican Republic              0         10
## 2314 2020-04-12            Afghanistan              1         86
## 2315 2020-03-29             Costa Rica              2         51
## 2316 2020-04-19             San Marino              2         26
## 2317 2020-04-19                Iceland              3         17
## 2318 2020-04-14               Pakistan              2        888
## 2319 2020-03-28                 Uganda              1          7
## 2320 2020-04-12                Liberia              1         13
## 2321 2020-04-19     Dominican Republic              2        554
## 2322 2020-04-30               Pakistan              2       2171
## 2323 2020-04-27                 Jordan              2          5
## 2324 2020-04-13                Nigeria              1         25
## 2325 2020-03-21             Madagascar              0          3
## 2326 2020-03-30                Estonia              1         75
## 2327 2020-03-16                 Guyana              1          3
## 2328 2020-04-13            El Salvador              1         19
## 2329 2020-02-28                   Iran              0        249
## 2330 2020-03-20             Azerbaijan              2         10
## 2331 2020-04-23               Slovenia              2         26
## 2332 2020-04-26                 Cyprus              3         13
## 2333 2020-03-10                 Norway              1        218
## 2334 2020-04-11            Puerto Rico              1         42
## 2335 2020-03-25         Czech Republic              1        418
## 2336 2020-04-12                   Iran              0       3494
## 2337 2020-03-12                 Kuwait              2         11
## 2338 2020-04-26                Ireland              1       1078
## 2339 2020-04-28                Lebanon              1         10
## 2340 2020-03-16              Singapore              2         29
## 2341 2020-04-23                Estonia              2         40
## 2342 2020-04-30                 Cyprus              3         13
## 2343 2020-03-22                Andorra              1         38
## 2344 2020-03-30                 Cyprus              1         51
## 2345 2020-04-14                Iceland              3         19
## 2346 2020-03-29                Denmark              1        349
## 2347 2020-04-22                Ireland              1       1019
## 2348 2020-03-23           South Africa              1        162
## 2349 2020-03-23                 Rwanda              3         19
## 2350 2020-04-15              Argentina              1        326
## 2351 2020-04-20               Tanzania              0        106
## 2352 2020-04-12               Bulgaria              1         40
## 2353 2020-03-19                Iceland              3         83
## 2354 2020-03-27                 Serbia              1        154
## 2355 2020-03-23                Germany              1       7494
## 2356 2020-04-25              Singapore              2       1515
## 2357 2020-03-16                 Russia              1         31
## 2358 2020-04-15             San Marino              2         17
## 2359 2020-04-27                 Uganda              1          4
## 2360 2020-03-29                Algeria              0        102
## 2361 2020-04-20                  Spain              1       3754
## 2362 2020-03-16               Thailand              1         65
## 2363 2020-04-16            Puerto Rico              1         51
## 2364 2020-04-16               Djibouti              3        228
## 2365 2020-03-23                   Iraq              2         52
## 2366 2020-04-14                  Syria              2          4
## 2367 2020-04-29                   Peru              2       5232
## 2368 2020-03-16            Philippines              2         31
## 2369 2020-03-23             Costa Rica              2         41
## 2370 2020-03-16                Belgium              1        386
## 2371 2020-04-29                 Russia              3      12252
## 2372 2020-02-10            South Korea              3          4
## 2373 2020-03-30                 Israel              1       1076
## 2374 2020-03-29                 Panama              2        230
## 2375 2020-04-19         United Kingdom              1      11375
## 2376 2020-04-10                 Norway              1        253
## 2377 2020-03-16                Vietnam              2          9
## 2378 2020-04-27                Somalia              1         90
## 2379 2020-04-24                Denmark              2        298
## 2380 2020-04-21    Trinidad and Tobago              2          1
## 2381 2020-03-30                  Syria              0          5
## 2382 2020-05-10               Slovakia              1          2
## 2383 2020-04-13               Bulgaria              1         24
## 2384 2020-04-18     Dominican Republic              2        580
## 2385 2020-03-25                Tunisia              1         84
## 2386 2020-02-26                Lebanon              1          1
## 2387 2020-03-30                Bahrain              2         43
## 2388 2020-03-21         United Kingdom              1       1741
## 2389 2020-03-11         United Kingdom              1        126
## 2390 2020-03-31              Australia              1        464
## 2391 2020-02-28                Bahrain              1          3
## 2392 2020-03-30                 France              1       6975
## 2393 2020-04-20            South Korea              3         26
## 2394 2020-04-16                  Ghana              3         10
## 2395 2020-04-15                 Cyprus              3         53
## 2396 2020-04-25                Albania              2         49
## 2397 2020-04-30             Azerbaijan              2         87
## 2398 2020-03-30                Denmark              1        376
## 2399 2020-04-22               Colombia              2        379
## 2400 2020-04-17               Portugal              3        931
## 2401 2020-03-28                 Cyprus              1         33
## 2402 2020-03-28              Greenland              3          3
## 2403 2020-04-30                Ukraine              1        996
## 2404 2020-04-17                Tunisia              1         84
## 2405 2020-03-24           Burkina Faso              1         26
## 2406 2020-04-18              Australia              1         36
## 2407 2020-04-28                   Peru              2       3673
## 2408 2020-03-29              Mauritius              1         13
## 2409 2020-04-20           Burkina Faso              1         16
## 2410 2020-02-25          United States              0         18
## 2411 2020-03-15                 Greece              0        141
## 2412 2020-02-26                  Italy              2        224
## 2413 2020-02-28                  China              2        329
## 2414 2020-03-11                  Qatar              1        244
## 2415 2020-03-31                 Greece              0        158
## 2416 2020-04-13              Indonesia              1        715
## 2417 2020-03-11                 Cyprus              0          3
## 2418 2020-04-13         United Kingdom              1       9630
## 2419 2020-03-22                Ukraine              1         41
## 2420 2020-03-13                Finland              1        192
## 2421 2020-04-27         United Kingdom              1       8772
## 2422 2020-03-21             Seychelles              2          1
## 2423 2020-03-29        Kyrgyz Republic              1         52
## 2424 2020-04-11                  Spain              1       9304
## 2425 2020-03-17            New Zealand              1          4
## 2426 2020-04-26                Moldova              1        298
## 2427 2020-04-15                Bolivia              0         86
## 2428 2020-04-21                Belgium              1       2245
## 2429 2020-03-11               Pakistan              1          1
## 2430 2020-04-15            New Zealand              2         26
## 2431 2020-03-24             Mozambique              1          2
## 2432 2020-04-28               Djibouti              3         49
## 2433 2020-04-18                Croatia              2         41
## 2434 2020-04-25            Puerto Rico              1         24
## 2435 2020-03-27                Moldova              1         50
## 2436 2020-01-24                  Japan              1          1
## 2437 2020-04-19                Bermuda              1          3
## 2438 2020-03-17               Tanzania              0          1
## 2439 2020-04-12                 Kuwait              2        241
## 2440 2020-04-21                 Jordan              2         11
## 2441 2020-04-14            South Korea              3         54
## 2442 2020-03-23                 Brazil              1        796
## 2443 2020-04-26                Austria              2        143
## 2444 2020-04-17                  Japan              3       1746
## 2445 2020-02-26                  Spain              1         13
## 2446 2020-03-31               Cameroon              0         97
## 2447 2020-04-26                Bahrain              2        130
## 2448 2020-03-26              Australia              1        376
## 2449 2020-03-22                 Sweden              1        294
## 2450 2020-03-14               Honduras              2          1
## 2451 2020-04-14               Honduras              1         20
## 2452 2020-04-20              Indonesia              1        512
## 2453 2020-03-28                  Sudan              2          2
## 2454 2020-05-11            South Sudan              2         49
## 2455 2020-04-14                Finland              1        187
## 2456 2020-04-22                   Iraq              2         57
## 2457 2020-03-30                Nigeria              1         20
## 2458 2020-02-28                 France              0         40
## 2459 2020-03-30                  Niger              1          9
## 2460 2020-03-17               Slovakia              1         32
## 2461 2020-03-22               Barbados              2         16
## 2462 2020-04-24                 Turkey              2       6238
## 2463 2020-04-12                Moldova              1        224
## 2464 2020-03-17               Bulgaria              1         26
## 2465 2020-04-21             San Marino              2         15
## 2466 2020-03-23                  Gabon              2          3
## 2467 2020-04-18                  Aruba              1          1
## 2468 2020-03-15                  Chile              0         31
## 2469 2020-03-22         Congo Republic              1          1
## 2470 2020-03-25              Indonesia              1        211
## 2471 2020-03-30               DR Congo              1         39
## 2472 2020-04-26               Thailand              1         83
## 2473 2020-04-13               Slovakia              1         41
## 2474 2020-03-24                 Israel              1        538
## 2475 2020-04-11                Finland              1        300
## 2476 2020-04-26               Barbados              2          3
## 2477 2020-04-26               Slovakia              1         19
## 2478 2020-04-28              Guatemala              2         30
## 2479 2020-03-19             Kazakhstan              1         13
## 2480 2020-02-29                Germany              1         41
## 2481 2020-01-28                 Canada              1          1
## 2482 2020-04-26                Burundi              1          3
## 2483 2020-04-23                Lebanon              1         11
## 2484 2020-03-28                Estonia              1        107
## 2485 2020-04-17                  Gabon              2         36
## 2486 2020-04-19               Paraguay              2          4
## 2487 2020-04-11               Cameroon              2         73
## 2488 2020-04-10                 Poland              1        750
## 2489 2020-03-16             Uzbekistan              1         11
## 2490 2020-03-26               Portugal              2       1182
## 2491 2020-03-20               Thailand              1         85
## 2492 2020-03-16                Lebanon              1          6
## 2493 2020-01-29                Germany              1          3
## 2494 2020-02-15               Thailand              0          1
## 2495 2020-04-13                Iceland              3         22
## 2496 2020-05-12                 Greece              2         28
## 2497 2020-04-18             Cabo Verde              2          3
## 2498 2020-03-29            El Salvador              1         11
## 2499 2020-04-25                Romania              3        539
## 2500 2020-04-17               Colombia              2        334
## 2501 2020-04-15             Azerbaijan              2        105
## 2502 2020-03-19               Cameroon              0          3
## 2503 2020-03-24               Cameroon              0         39
## 2504 2020-03-31             Kazakhstan              1         82
## 2505 2020-03-23                Denmark              1        124
## 2506 2020-04-29                Uruguay              1         10
## 2507 2020-04-24               Pakistan              2       2189
## 2508 2020-04-23              Sri Lanka              2         58
## 2509 2020-04-23                Albania              2         54
## 2510 2020-01-31               Thailand              0          5
## 2511 2020-03-24                Ukraine              1         50
## 2512 2020-03-18             Costa Rica              2         18
## 2513 2020-03-19               DR Congo              1         21
## 2514 2020-04-12                  Libya              1          2
## 2515 2020-03-24               Barbados              2          1
## 2516 2020-03-15                Iceland              3         36
## 2517 2020-03-21                Austria              1        879
## 2518 2020-04-21             Uzbekistan              1        143
## 2519 2020-03-10              Indonesia              1          8
## 2520 2020-04-12                 Mexico              1        817
## 2521 2020-03-10               Malaysia              1         30
## 2522 2020-04-12                  China              3         93
## 2523 2020-04-27                Tunisia              1         28
## 2524 2020-03-20              Mauritius              1         12
## 2525 2020-03-28                 Israel              1        953
## 2526 2020-03-29                  Syria              0          4
## 2527 2020-03-28             Azerbaijan              2         60
## 2528 2020-04-11            Switzerland              1       1289
## 2529 2020-04-19 Bosnia and Herzegovina              2         61
## 2530 2020-04-28               Paraguay              2         13
## 2531 2020-03-27         United Kingdom              1       5014
## 2532 2020-04-19                Liberia              1         20
## 2533 2020-04-11                 Panama              2        444
## 2534 2020-01-28              Sri Lanka              0          1
## 2535 2020-03-22           Saudi Arabia              2        237
## 2536 2020-04-20              Venezuela              1         29
## 2537 2020-03-31                Uruguay              1         47
## 2538 2020-04-29             Mauritania              0          1
## 2539 2020-03-17                Germany              1       3159
## 2540 2020-03-25            Afghanistan              1         12
## 2541 2020-03-17                Finland              1         49
## 2542 2020-03-27                 Canada              3        633
## 2543 2020-04-20                  Syria              2          1
## 2544 2020-03-24                Estonia              1         43
## 2545 2020-04-27                Bahrain              2        134
## 2546 2020-03-28           South Africa              2        260
## 2547 2020-04-23                 Mexico              1       2132
## 2548 2020-03-29             Kazakhstan              1         92
## 2549 2020-04-20                 Uganda              1          1
## 2550 2020-03-31            Netherlands              1       1729
## 2551 2020-04-17                Morocco              2        540
## 2552 2020-02-26                 Israel              1          1
## 2553 2020-03-11                 Turkey              2          1
## 2554 2020-04-12                  Spain              1       7703
## 2555 2020-04-25            New Zealand              2         12
## 2556 2020-03-26             Madagascar              1          4
## 2557 2020-02-13               Malaysia              1          1
## 2558 2020-03-21           Saudi Arabia              2         84
## 2559 2020-03-21              Argentina              1         60
## 2560 2020-03-28              Sri Lanka              1          7
## 2561 2020-03-20                 Mexico              0         85
## 2562 2020-03-11   United Arab Emirates              1         15
## 2563 2020-04-16                Moldova              1        220
## 2564 2020-04-15             Madagascar              1          4
## 2565 2020-04-19                 Canada              3       1469
## 2566 2020-02-27                 Kuwait              0         32
## 2567 2020-03-30                Romania              3        602
## 2568 2020-04-27                 Brazil              1       7725
## 2569 2020-03-19    Trinidad and Tobago              1          4
## 2570 2020-03-28               Malaysia              1        289
## 2571 2020-04-16             Azerbaijan              2         86
## 2572 2020-03-29         United Kingdom              1       4979
## 2573 2020-04-27                  Syria              2          1
## 2574 2020-04-22             Cabo Verde              2          5
## 2575 2020-04-25                Algeria              0        249
## 2576 2020-03-31                   Chad              1          4
## 2577 2020-04-20                  Chile              2        777
## 2578 2020-04-23                  Libya              1          9
## 2579 2020-04-21               Djibouti              3         99
## 2580 2020-05-11          Cote d'Ivoire              2         63
## 2581 2020-03-26                Somalia              1          1
## 2582 2020-04-27               Slovakia              1          8
## 2583 2020-03-29           Saudi Arabia              2        195
## 2584 2020-04-13               Colombia              2        143
## 2585 2020-04-23                Andorra              3          6
## 2586 2020-03-29               Mongolia              1          1
## 2587 2020-03-29             Luxembourg              1        345
## 2588 2020-03-31                 Canada              3       1169
## 2589 2020-03-16                   Iraq              2         47
## 2590 2020-02-25            South Korea              3        274
## 2591 2020-03-26               Colombia              2        113
## 2592 2020-03-22                Tunisia              1         21
## 2593 2020-03-13               Pakistan              1          4
## 2594 2020-03-10                Morocco              2          1
## 2595 2020-03-13                   Peru              1         18
## 2596 2020-04-25             Mozambique              1         24
## 2597 2020-03-22                   Peru              1        100
## 2598 2020-03-18                Morocco              2         18
## 2599 2020-04-30                Tunisia              1         19
## 2600 2020-03-23              Palestine              1         14
## 2601 2020-04-17                   Iraq              2         67
## 2602 2020-03-10                 Cyprus              0          3
## 2603 2020-04-13               Ethiopia              1          5
## 2604 2020-03-13                  China              2         22
## 2605 2020-02-27                Estonia              0          1
## 2606 2020-03-15                  India              1         18
## 2607 2020-03-30                 Turkey              2       3425
## 2608 2020-03-25            New Zealand              1         97
## 2609 2020-04-25                Croatia              2         35
## 2610 2020-04-20                Lebanon              1          5
## 2611 2020-03-17                Hungary              1         22
## 2612 2020-01-31            South Korea              1         10
## 2613 2020-03-21           Burkina Faso              1         31
## 2614 2020-04-29                  Spain              1       2991
## 2615 2020-01-27   United Arab Emirates              0          1
## 2616 2020-04-27                   Mali              1         38
## 2617 2020-04-23                  Aruba              1          3
## 2618 2020-04-13             Uzbekistan              1        202
## 2619 2020-03-18             Bangladesh              2          7
## 2620 2020-03-27               Slovakia              1         53
## 2621 2020-03-31                 Poland              1        449
## 2622 2020-03-28              Palestine              1         14
## 2623 2020-04-27             Uzbekistan              1         57
## 2624 2020-04-16                  China              3         50
## 2625 2020-03-24                 Turkey              2        636
## 2626 2020-04-30                   Chad              1         21
## 2627 2020-03-31           Saudi Arabia              2        334
## 2628 2020-04-17                 Canada              3       1717
## 2629 2020-04-25                  Chile              2       1046
## 2630 2020-03-21             Uzbekistan              1         20
## 2631 2020-04-23                Romania              3        854
## 2632 2020-04-29                 Rwanda              3         18
## 2633 2020-04-28                Hungary              1        132
## 2634 2020-04-20                Estonia              2         23
## 2635 2020-03-27               Malaysia              1        365
## 2636 2020-04-30                Iceland              3          2
## 2637 2020-03-27               Ethiopia              1          4
## 2638 2020-04-29                  Yemen              0          5
## 2639 2020-04-27                Romania              3        704
## 2640 2020-03-14                  Ghana              0          3
## 2641 2020-04-27                Andorra              3         12
## 2642 2020-03-15             Seychelles              2          2
## 2643 2020-03-16          United States              3       2215
## 2644 2020-03-25                  Spain              1      18183
## 2645 2020-04-26             Costa Rica              2          8
## 2646 2020-04-18                Ukraine              1       1088
## 2647 2020-03-29                Austria              2       1111
## 2648 2020-03-16                 Serbia              1         16
## 2649 2020-04-19                Hungary              1        164
## 2650 2020-03-25              Argentina              1         86
## 2651 2020-03-21               Slovenia              2         64
## 2652 2020-02-23              Singapore              2          7
## 2653 2020-04-21               Mongolia              1          3
## 2654 2020-04-10                Belgium              1       3908
## 2655 2020-01-30                  Japan              1          8
## 2656 2020-04-10               Zimbabwe              0          2
## 2657 2020-03-22         United Kingdom              1       1700
## 2658 2020-04-26              Singapore              2       1549
## 2659 2020-03-29                   Mali              1          5
## 2660 2020-04-24                  Qatar              1       1384
## 2661 2020-04-12             Costa Rica              2         37
## 2662 2020-03-23                Iceland              3        115
## 2663 2020-04-18               Eswatini              3          9
## 2664 2020-04-11             Madagascar              1         18
## 2665 2020-03-11                 Canada              2         16
## 2666 2020-03-15               Cameroon              0          1
## 2667 2020-03-26                Uruguay              1         49
## 2668 2020-03-20                 Poland              0        138
## 2669 2020-04-17                 Serbia              1        817
## 2670 2020-02-26                  China              2        410
## 2671 2020-02-15                  Japan              1         22
## 2672 2020-03-18                Lebanon              1         13
## 2673 2020-04-28                Denmark              2        276
## 2674 2020-03-15            New Zealand              1          4
## 2675 2020-04-23       Papua New Guinea              2          1
## 2676 2020-03-28            Puerto Rico              1         64
## 2677 2020-04-28               DR Congo              1         24
## 2678 2020-03-26                Iceland              3        154
## 2679 2020-03-19               Barbados              2          3
## 2680 2020-04-29             Uzbekistan              1         98
## 2681 2020-04-25             San Marino              2         12
## 2682 2020-02-25                Bahrain              1         23
## 2683 2020-03-23              Indonesia              1        129
## 2684 2020-03-28          United States              3      38495
## 2685 2020-03-17                 Serbia              1         12
## 2686 2020-03-30                   Iran              0       6087
## 2687 2020-04-24                Andorra              3          9
## 2688 2020-04-27                Ukraine              1        784
## 2689 2020-04-22               Honduras              1         32
## 2690 2020-04-20             Uzbekistan              1        132
## 2691 2020-04-15               Djibouti              3        137
## 2692 2020-03-20               Slovakia              1         30
## 2693 2020-03-11                Vietnam              2         11
## 2694 2020-03-12                  Italy              2       4964
## 2695 2020-03-26               Thailand              1        222
## 2696 2020-04-23                 Serbia              1        356
## 2697 2020-04-28                Romania              3        580
## 2698 2020-03-30                 Belize              1          1
## 2699 2020-04-15            Philippines              2        521
## 2700 2020-03-19             Costa Rica              2         38
## 2701 2020-03-28                Bahrain              2         18
## 2702 2020-04-17                  Libya              1          1
## 2703 2020-04-30                 Sweden              1       1471
## 2704 2020-03-31                  Egypt              1         87
## 2705 2020-03-26                Finland              1        166
## 2706 2020-02-25                Austria              1          2
## 2707 2020-01-31               Malaysia              1          1
## 2708 2020-04-11              Guatemala              2         22
## 2709 2020-05-10                  Sudan              2        254
## 2710 2020-03-28             Mauritania              0          2
## 2711 2020-04-18                   Iran              0       2873
## 2712 2020-04-28               Bulgaria              1         99
## 2713 2020-02-28                Lebanon              1          1
## 2714 2020-04-29                Belgium              1       1093
## 2715 2020-03-28                 Kuwait              2         27
## 2716 2020-04-16                 Turkey              2       9082
## 2717 2020-04-18               Djibouti              3        141
## 2718 2020-03-17                 Israel              1         42
## 2719 2020-04-19                  Japan              3       1067
## 2720 2020-04-29               Thailand              1          9
## 2721 2020-03-25                Jamaica              1          7
## 2722 2020-04-18                   Peru              2       1929
## 2723 2020-03-14               Portugal              1         91
## 2724 2020-03-30             Costa Rica              2         35
## 2725 2020-03-30              Sri Lanka              1         10
## 2726 2020-01-26                  China              1        665
## 2727 2020-04-21         United Kingdom              1       8977
## 2728 2020-03-25                Croatia              1        136
## 2729 2020-04-29                  India              3       3635
## 2730 2020-04-20                  Italy              2       5303
## 2731 2020-04-14          Cote d'Ivoire              2         64
## 2732 2020-04-19                   Peru              2       2139
## 2733 2020-03-13                Croatia              1         22
## 2734 2020-03-17               Slovenia              2         56
## 2735 2020-03-31         United Kingdom              1       5628
## 2736 2020-02-27                 Greece              0          3
## 2737 2020-01-27          United States              0          3
## 2738 2020-03-25            El Salvador              1          8
## 2739 2020-03-28              Guatemala              2         13
## 2740 2020-04-14                   Guam              2          1
## 2741 2020-03-19                 Guyana              1          1
## 2742 2020-04-19             Madagascar              1          1
## 2743 2020-04-14                Albania              1         29
## 2744 2020-03-16               Slovenia              2         72
## 2745 2020-04-30                  Ghana              3        403
## 2746 2020-04-15                Albania              1         27
## 2747 2020-04-18               Zimbabwe              0          1
## 2748 2020-03-18               Slovakia              1         46
## 2749 2020-03-29          United States              3      39119
## 2750 2020-03-19             Mauritania              0          1
## 2751 2020-03-22               Honduras              2          4
## 2752 2020-04-15              Palestine              1         26
## 2753 2020-01-26              Australia              1          3
## 2754 2020-04-16                 Canada              3       1318
## 2755 2020-04-17              Singapore              2       1351
## 2756 2020-03-29                 Zambia              1         13
## 2757 2020-03-26         United Kingdom              1       3581
## 2758 2020-03-17               Cameroon              0          6
## 2759 2020-02-27              Australia              1          1
## 2760 2020-03-14            Philippines              2         59
## 2761 2020-03-16                Ukraine              1          4
## 2762 2020-03-27              Mauritius              1         46
## 2763 2020-04-17       Papua New Guinea              2          5
## 2764 2020-04-22                Ukraine              1        934
## 2765 2020-03-20                  India              1         76
## 2766 2020-03-25                  Aruba              1          5
## 2767 2020-03-30                Vietnam              2         30
## 2768 2020-03-15                   Peru              1         10
## 2769 2020-04-26                Myanmar              2          2
## 2770 2020-02-24                 Israel              1          1
## 2771 2020-04-20                Germany              1       3656
## 2772 2020-04-19                  Qatar              1        785
## 2773 2020-03-21               Bulgaria              1         58
## 2774 2020-03-27                 Greece              0        145
## 2775 2020-03-22             Mozambique              1          1
## 2776 2020-01-18                  China              1         17
## 2777 2020-04-29                  Qatar              1       1320
## 2778 2020-03-26              Indonesia              1        207
## 2779 2020-04-29               Slovenia              2         11
## 2780 2020-04-16                 Brazil              1       5163
## 2781 2020-04-27           Burkina Faso              1          6
## 2782 2020-03-16                 Mexico              0         41
## 2783 2020-03-16                 Canada              2         60
## 2784 2020-03-29            Switzerland              1       1801
## 2785 2020-04-21                 Mexico              1       1240
## 2786 2020-02-26            South Korea              3        538
## 2787 2020-02-12                  Japan              1          2
## 2788 2020-04-11           Burkina Faso              1         46
## 2789 2020-04-23               Bulgaria              1        122
## 2790 2020-03-19        Kyrgyz Republic              1          3
## 2791 2020-04-23              Palestine              1          7
## 2792 2020-03-20                Tunisia              1         25
## 2793 2020-03-11                Romania              0         28
## 2794 2020-03-27             San Marino              1         25
## 2795 2020-04-22                   Chad              1          1
## 2796 2020-04-21                Uruguay              1         15
## 2797 2020-04-13                 Mexico              1        795
## 2798 2020-03-20                  Gabon              2          2
## 2799 2020-04-20                  Qatar              1       1007
## 2800 2020-02-25                   Iran              0         52
## 2801 2020-05-12             Madagascar              1         15
## 2802 2020-03-20              Australia              1        144
## 2803 2020-03-29                 Norway              1        533
## 2804 2020-04-14            El Salvador              1         36
## 2805 2020-04-24            Switzerland              1        409
## 2806 2020-04-15                  India              3       1910
## 2807 2020-03-21                 Greece              0         66
## 2808 2020-03-16                 Rwanda              2          8
## 2809 2020-04-27                  Ghana              3        271
## 2810 2020-03-10                Belgium              1        122
## 2811 2020-04-25            Philippines              2        313
## 2812 2020-04-13   United Arab Emirates              3        785
## 2813 2020-04-15                 Greece              2         47
## 2814 2020-03-14                Morocco              2         11
## 2815 2020-03-30            Philippines              2        471
## 2816 2020-04-18                 Serbia              1        676
## 2817 2020-02-26                Finland              1          1
## 2818 2020-03-20           South Africa              1         86
## 2819 2020-03-29                Andorra              1         67
## 2820 2020-03-20       Papua New Guinea              0          1
## 2821 2020-04-11                   Cuba              2        105
## 2822 2020-04-13                  Niger              1         38
## 2823 2020-04-19                   Cuba              2        112
## 2824 2020-03-29                Jamaica              1          8
## 2825 2020-03-11            Afghanistan              1          5
## 2826 2020-04-23                Iceland              3         11
## 2827 2020-04-14                  Kenya              1         19
## 2828 2020-02-21                  Japan              1         20
## 2829 2020-03-13              Argentina              1         24
## 2830 2020-04-25                Denmark              2        372
## 2831 2020-03-25           Saudi Arabia              2        338
## 2832 2020-04-20               Ethiopia              1          6
## 2833 2020-04-19   United Arab Emirates              3        956
## 2834 2020-04-15                Bahrain              2        310
## 2835 2020-04-30                Croatia              2         29
## 2836 2020-04-18         Congo Republic              1         26
## 2837 2020-03-20               Paraguay              2          4
## 2838 2020-01-27               Thailand              0          3
## 2839 2020-03-20                 Serbia              1         64
## 2840 2020-04-24            Philippines              2        482
## 2841 2020-04-25                   Chad              1          6
## 2842 2020-03-26             Mauritania              0          1
## 2843 2020-04-11                  Ghana              3         30
## 2844 2020-03-28               Eswatini              1          3
## 2845 2020-01-21                  China              1        151
## 2846 2020-04-17          United States              3      64391
## 2847 2020-04-23              Singapore              2       2053
## 2848 2020-04-10               Pakistan              2        595
## 2849 2020-02-28                 Norway              1          8
## 2850 2020-03-13                Jamaica              1         10
## 2851 2020-02-27                 France              0         23
## 2852 2020-03-19                Romania              0         60
## 2853 2020-03-14               Malaysia              1         80
## 2854 2020-04-10           Sierra Leone              2          1
## 2855 2020-04-24             Luxembourg              1         41
## 2856 2020-03-28              Nicaragua              1          2
## 2857 2020-04-17           Burkina Faso              1         12
## 2858 2020-02-24            Afghanistan              1          1
## 2859 2020-03-25                Denmark              1        264
## 2860 2020-03-31                  Kenya              1         17
## 2861 2020-03-27             Cabo Verde              2          2
## 2862 2020-04-21                Algeria              0        182
## 2863 2020-04-24              Palestine              1          5
## 2864 2020-03-30                Jamaica              1          6
## 2865 2020-04-24                Albania              2         44
## 2866 2020-04-23                Nigeria              1        199
## 2867 2020-03-28               Zimbabwe              0          4
## 2868 2020-03-28               Ethiopia              1          4
## 2869 2020-04-24                Iceland              3          4
## 2870 2020-03-19                  Spain              1       8100
## 2871 2020-04-26           South Africa              2        326
## 2872 2020-03-24                 Panama              2         32
## 2873 2020-04-25               Colombia              2        581
## 2874 2020-03-22                  Niger              1          1
## 2875 2020-02-24                   Iran              0         33
## 2876 2020-03-24                Algeria              0         63
## 2877 2020-04-14               Cameroon              2         28
## 2878 2020-03-19               Ethiopia              1          1
## 2879 2020-04-20                   Mali              1         30
## 2880 2020-03-24                   Cuba              2         13
## 2881 2020-03-12                   Peru              1         10
## 2882 2020-03-20                 Jordan              2         20
## 2883 2020-04-26                  Chile              2       1025
## 2884 2020-05-10                  Spain              1       4188
## 2885 2020-03-31                   Peru              1        213
## 2886 2020-04-24                Nigeria              1        222
## 2887 2020-05-11                Bolivia              0        394
## 2888 2020-04-28                 Kuwait              2        365
## 2889 2020-03-11                 Brazil              1         16
## 2890 2020-04-22             Azerbaijan              2         82
## 2891 2020-04-26              Sri Lanka              2        105
## 2892 2020-04-15            Netherlands              1       1602
## 2893 2020-04-17            El Salvador              1         18
## 2894 2020-04-15                 Turkey              2       8343
## 2895 2020-02-29                  China              2        428
## 2896 2020-01-19                  China              1        136
## 2897 2020-04-22                Uruguay              1         14
## 2898 2020-03-19                  Japan              1         79
## 2899 2020-03-14                  Egypt              1         42
## 2900 2020-03-19                Denmark              1        185
## 2901 2020-03-12             Costa Rica              2         18
## 2902 2020-04-27               Djibouti              3         27
## 2903 2020-03-21               Malaysia              1        283
## 2904 2020-04-21             Costa Rica              2          9
## 2905 2020-04-20      Brunei Darussalam              2          1
## 2906 2020-04-11            Afghanistan              1         71
## 2907 2020-03-14                Germany              1       1603
## 2908 2020-03-27                Nigeria              1         19
## 2909 2020-03-25             Luxembourg              1        458
## 2910 2020-03-21                 Brazil              1        511
## 2911 2020-03-24              Guatemala              1          2
## 2912 2020-02-13         United Kingdom              1          1
## 2913 2020-04-20                Liberia              1         18
## 2914 2020-04-17                Algeria              0        258
## 2915 2020-04-24             Uzbekistan              1        108
## 2916 2020-03-27                 Russia              1        378
## 2917 2020-03-14             Costa Rica              2          6
## 2918 2020-03-21                 Jordan              2         13
## 2919 2020-03-21              Mauritius              1         11
## 2920 2020-04-26                 Canada              3       1464
## 2921 2020-03-26                Romania              3        267
## 2922 2020-04-28               Ethiopia              1          3
## 2923 2020-04-12               Malaysia              3        337
## 2924 2020-03-29                Romania              3        523
## 2925 2020-02-23              Australia              1          1
## 2926 2020-04-17                 Panama              2        530
## 2927 2020-03-29                  China              2        113
## 2928 2020-03-20             Madagascar              0          3
## 2929 2020-04-21                  Kenya              1         26
## 2930 2020-04-19             Luxembourg              1         70
## 2931 2020-03-24                  Niger              1          1
## 2932 2020-04-12                Algeria              0        153
## 2933 2020-03-29                Namibia              1          3
## 2934 2020-03-18              Argentina              1         25
## 2935 2020-04-28                 Panama              2        242
## 2936 2020-04-28             Uzbekistan              1         52
## 2937 2020-04-21         Czech Republic              2        260
## 2938 2020-04-26             Luxembourg              1         28
## 2939 2020-04-14               Slovenia              2         15
## 2940 2020-03-30                 Kuwait              2         31
## 2941 2020-03-15                Uruguay              1          8
## 2942 2020-04-29                Albania              2         30
## 2943 2020-03-17                Somalia              0          1
## 2944 2020-03-19               Djibouti              3          1
## 2945 2020-04-30               Cameroon              2         26
## 2946 2020-03-15              Argentina              1         22
## 2947 2020-03-17           Saudi Arabia              2         68
## 2948 2020-03-10            Switzerland              1        159
## 2949 2020-04-25                Finland              1        191
## 2950 2020-04-11                 Rwanda              3          7
## 2951 2020-04-28                  Ghana              3        121
## 2952 2020-02-25                Germany              1          1
## 2953 2020-04-13               Paraguay              2         26
## 2954 2020-03-30                   Iraq              2        124
## 2955 2020-04-18            Afghanistan              1         78
## 2956 2020-04-19              Singapore              2       1538
## 2957 2020-03-25                  India              1        191
## 2958 2020-02-20            South Korea              3        107
## 2959 2020-03-26                Algeria              0        103
## 2960 2020-04-29                Austria              2        103
## 2961 2020-03-16                  Kenya              1          2
## 2962 2020-04-24                 Jordan              2         13
## 2963 2020-03-15         Czech Republic              1        128
## 2964 2020-02-25               Pakistan              1          2
## 2965 2020-04-25                  Egypt              1        660
## 2966 2020-03-22                Finland              1        174
## 2967 2020-04-26               DR Congo              1         52
## 2968 2020-04-20                   Cuba              2        101
## 2969 2020-04-13             Costa Rica              2         35
## 2970 2020-04-17                Hungary              1        222
## 2971 2020-02-28                 Mexico              0          1
## 2972 2020-03-12                Ireland              2          8
## 2973 2020-04-11            El Salvador              1          2
## 2974 2020-03-20                 Norway              1        297
## 2975 2020-04-11             Kazakhstan              1         91
## 2976 2020-03-23                Nigeria              1         18
## 2977 2020-04-28                  China              3         26
## 2978 2020-03-29               Barbados              2          9
## 2979 2020-03-21                Finland              1        123
## 2980 2020-04-18                   Cuba              2        124
## 2981 2020-03-27                Ukraine              1        157
## 2982 2020-04-18               Bulgaria              1         78
## 2983 2020-03-26                Hungary              1         70
## 2984 2020-02-26                   Iraq              2          8
## 2985 2020-04-30     Dominican Republic              2        556
## 2986 2020-05-11                 Greece              2         16
## 2987 2020-03-17                 Turkey              2         58
## 2988 2020-04-15               Paraguay              2          4
## 2989 2020-03-17                 Russia              1         54
## 2990 2020-04-21               Thailand              1         46
## 2991 2020-03-17              Singapore              2         40
## 2992 2020-03-24               Slovakia              1         24
## 2993 2020-03-21                Denmark              1        175
## 2994 2020-03-30                 Greece              0        151
## 2995 2020-03-26                   Guam              0          5
## 2996 2020-04-23         Congo Republic              1         21
## 2997 2020-04-30                 Turkey              2       5551
## 2998 2020-04-18               Ethiopia              1         13
## 2999 2020-03-27 Bosnia and Herzegovina              2         46
## 3000 2020-03-20                Germany              1      10468
## 3001 2020-04-11            South Sudan              2          1
## 3002 2020-04-25               DR Congo              1         44
## 3003 2020-03-26            Afghanistan              1         43
## 3004 2020-04-25     Dominican Republic              2        383
## 3005 2020-04-28                 Russia              3      12609
## 3006 2020-04-16                   Cuba              2         96
## 3007 2020-03-11                Germany              1        608
## 3008 2020-03-16                Iceland              3         49
## 3009 2020-04-16                 Israel              1        712
## 3010 2020-04-10                  Chile              2        955
## 3011 2020-04-26                Albania              2         48
## 3012 2020-04-24                  China              3          8
## 3013 2020-04-16              Guatemala              2         32
## 3014 2020-02-28                 Greece              0          3
## 3015 2020-03-30                   Cuba              2         51
## 3016 2020-04-13                 Zambia              1          5
## 3017 2020-04-28                 Jordan              2          2
## 3018 2020-03-31               Slovenia              2         79
## 3019 2020-03-10             Azerbaijan              2          2
## 3020 2020-03-25         United Kingdom              1       2879
## 3021 2020-03-17              Australia              1         77
## 3022 2020-03-19                Albania              1          9
## 3023 2020-04-22               Slovakia              1         71
## 3024 2020-04-24                  India              3       3137
## 3025 2020-03-31           Sierra Leone              2          1
## 3026 2020-04-15                Andorra              1         27
## 3027 2020-04-20     Dominican Republic              2        629
## 3028 2020-04-13                 Canada              3       1064
## 3029 2020-03-19                Moldova              1         25
## 3030 2020-04-24                   Guam              2          3
## 3031 2020-04-25                   Oman              2        189
## 3032 2020-03-27               Paraguay              2         22
## 3033 2020-04-16                Albania              1         43
## 3034 2020-03-26                Albania              1         51
## 3035 2020-04-21               Bulgaria              1         60
## 3036 2020-03-30            New Zealand              1        151
## 3037 2020-04-10                 Belize              1          2
## 3038 2020-03-21                  Spain              1      10410
## 3039 2020-03-25           South Africa              1        310
## 3040 2020-03-10                Moldova              0          2
## 3041 2020-03-25                Albania              1         46
## 3042 2020-03-30                Algeria              0        130
## 3043 2020-05-10                Myanmar              2          3
## 3044 2020-04-10                   Cuba              2        107
## 3045 2020-03-26           South Africa              1        370
## 3046 2020-04-14              Venezuela              1          8
## 3047 2020-03-22              Guatemala              1          6
## 3048 2020-01-29                 France              0          2
## 3049 2020-03-23                 Canada              3        128
## 3050 2020-03-10                Tunisia              1          4
## 3051 2020-03-28           Saudi Arabia              2        191
## 3052 2020-04-11                Belgium              1       3670
## 3053 2020-03-11              Australia              1         12
## 3054 2020-03-11                  Italy              2       3290
## 3055 2020-03-25                  Japan              1        179
## 3056 2020-04-12                  Syria              2          6
## 3057 2020-04-21                   Iraq              2         63
## 3058 2020-03-26          Cote d'Ivoire              2         23
## 3059 2020-04-10              Australia              1        100
## 3060 2020-04-23              Australia              1          7
## 3061 2020-02-22                  Italy              1         56
## 3062 2020-04-18            Netherlands              1       2375
## 3063 2020-04-23                 Canada              3       1766
## 3064 2020-03-29               Paraguay              2          6
## 3065 2020-04-10                  Spain              2       9588
## 3066 2020-04-13                Croatia              2        116
## 3067 2020-05-10                   Peru              2       5460
## 3068 2020-04-17              Indonesia              1        787
## 3069 2020-03-28                Iceland              3        161
## 3070 2020-03-13               Ethiopia              1          1
## 3071 2020-01-30                 France              0          1
## 3072 2020-03-14             Seychelles              2          2
## 3073 2020-03-29                 Sweden              1        654
## 3074 2020-02-22                 Israel              1          1
## 3075 2020-04-18                Romania              3        711
## 3076 2020-03-16               Honduras              2          6
## 3077 2020-04-15                Nigeria              1         64
## 3078 2020-04-18                Ireland              1       1487
## 3079 2020-03-25          Cote d'Ivoire              2         55
## 3080 2020-03-19            New Zealand              1         16
## 3081 2020-03-12                  China              2         24
## 3082 2020-02-26                 Norway              1          1
## 3083 2020-04-25          Cote d'Ivoire              2         73
## 3084 2020-01-31                  Japan              1          7
## 3085 2020-04-25                Liberia              1         19
## 3086 2020-04-21                   Cuba              2        102
## 3087 2020-04-10                Nigeria              1         29
## 3088 2020-04-14         Czech Republic              2        120
## 3089 2020-03-27                 Cyprus              1         30
## 3090 2020-04-14                Morocco              2        227
## 3091 2020-03-20              Sri Lanka              1         24
## 3092 2020-04-28                   Oman              2        133
## 3093 2020-04-26             San Marino              2         25
## 3094 2020-04-22                 Norway              1        200
## 3095 2020-04-20               Slovenia              2         18
## 3096 2020-04-15             Bangladesh              2        428
## 3097 2020-03-28                  Japan              1        360
## 3098 2020-03-18               Portugal              1        117
## 3099 2020-03-27               Djibouti              3          1
## 3100 2020-03-14                 Panama              2         18
## 3101 2020-04-25                 Norway              1         99
## 3102 2020-04-10                Myanmar              2          9
## 3103 2020-03-29                  Chile              2        529
## 3104 2020-03-19      Brunei Darussalam              2         19
## 3105 2020-04-19               Zimbabwe              0          1
## 3106 2020-03-14             Mauritania              0          1
## 3107 2020-03-31                Andorra              1         42
## 3108 2020-04-16               Portugal              3       1393
## 3109 2020-03-30         United Kingdom              1       5052
## 3110 2020-03-17          Cote d'Ivoire              2          5
## 3111 2020-03-31                   Cuba              2         47
## 3112 2020-04-10             Kazakhstan              1         74
## 3113 2020-03-23             Kazakhstan              1          6
## 3114 2020-04-17                 Poland              1        797
## 3115 2020-04-11                  Qatar              1        352
## 3116 2020-04-13                Algeria              0        158
## 3117 2020-03-18                 France              1       2488
## 3118 2020-04-23                  Gabon              2         11
## 3119 2020-04-23 Bosnia and Herzegovina              2         72
## 3120 2020-03-14               Ethiopia              1          1
## 3121 2020-04-23             Luxembourg              1         47
## 3122 2020-04-26                   Cuba              2         84
## 3123 2020-04-19                  China              3         18
## 3124 2020-03-31                  Qatar              1        147
## 3125 2020-04-18             Mozambique              1          4
## 3126 2020-04-17             Kazakhstan              1        283
## 3127 2020-03-17         Czech Republic              1        144
## 3128 2020-04-25                   Iran              0       2302
## 3129 2020-04-26                  Ghana              3        271
## 3130 2020-05-10               Honduras              1        201
## 3131 2020-04-14                Nigeria              1         50
## 3132 2020-03-30      Brunei Darussalam              2          7
## 3133 2020-03-29              Greenland              3          1
## 3134 2020-03-25             Mozambique              1          2
## 3135 2020-04-28                Algeria              0        267
## 3136 2020-03-27                Ireland              1        557
## 3137 2020-04-13             Mozambique              1          1
## 3138 2020-04-30                  China              3          4
## 3139 2020-03-23                Lebanon              1         37
## 3140 2020-03-20              Palestine              1          6
## 3141 2020-04-20                 Guyana              1          2
## 3142 2020-03-10              Argentina              1          5
## 3143 2020-04-21            South Korea              3         18
## 3144 2020-03-12                 Cyprus              0          4
## 3145 2020-03-11                 Kuwait              2          7
## 3146 2020-04-11                 Guyana              1         11
## 3147 2020-04-18                  Gabon              2         13
## 3148 2020-03-26                  Chile              2        384
## 3149 2020-04-21                 Zambia              1          9
## 3150 2020-03-22              Indonesia              1        205
## 3151 2020-03-29                 Poland              1        473
## 3152 2020-04-17               Zimbabwe              0          2
## 3153 2020-03-28               Djibouti              3          3
## 3154 2020-03-14                Denmark              1        154
## 3155 2020-04-12             Madagascar              1          4
## 3156 2020-03-14                Finland              1         98
## 3157 2020-04-11            Philippines              2        233
## 3158 2020-04-29                Ireland              1        605
## 3159 2020-04-22                  Japan              3        755
## 3160 2020-04-16                Hungary              1        146
## 3161 2020-03-11               Colombia              2          6
## 3162 2020-03-28              Indonesia              1        262
## 3163 2020-04-25         Congo Republic              1         14
## 3164 2020-04-20                 Gambia              1          1
## 3165 2020-04-29                Bolivia              0         96
## 3166 2020-04-26                  Japan              3        500
## 3167 2020-03-27                 Panama              2        202
## 3168 2020-04-26                Croatia              2         21
## 3169 2020-04-20               Bulgaria              1         72
## 3170 2020-02-29              Australia              1          2
## 3171 2020-03-30                Germany              1       9541
## 3172 2020-04-10             Costa Rica              2         56
## 3173 2020-03-17                 Poland              0        113
## 3174 2020-03-17                  Ghana              1          5
## 3175 2020-03-10                Iceland              2         21
## 3176 2020-03-23                   Guam              0         12
## 3177 2020-04-10                Ukraine              1        535
## 3178 2020-03-18                Tunisia              1          9
## 3179 2020-02-29   United Arab Emirates              0          2
## 3180 2020-03-19                 Canada              3        121
## 3181 2020-04-24                   Chad              1         13
## 3182 2020-04-17 Bosnia and Herzegovina              2         99
## 3183 2020-03-17 Bosnia and Herzegovina              2          4
## 3184 2020-04-27               Portugal              3        326
## 3185 2020-03-21                Jamaica              1          3
## 3186 2020-03-23                  Benin              1          3
## 3187 2020-04-11                 Russia              3       3453
## 3188 2020-03-16              Indonesia              1         38
## 3189 2020-01-27              Sri Lanka              0          1
## 3190 2020-04-10           South Africa              2        158
## 3191 2020-04-23          Cote d'Ivoire              2         88
## 3192 2020-04-13            Afghanistan              1        110
## 3193 2020-04-28               Slovenia              2          6
## 3194 2020-03-31             Madagascar              1         21
## 3195 2020-03-27             Mauritania              0          1
## 3196 2020-02-25                   Oman              2          2
## 3197 2020-02-22                  Japan              1         29
## 3198 2020-02-29                  Italy              2        478
## 3199 2020-04-10                   Chad              1          1
## 3200 2020-04-24           Saudi Arabia              2       2330
## 3201 2020-03-10                  Qatar              1          9
## 3202 2020-04-30               Ethiopia              1          5
## 3203 2020-04-17                   Iran              0       3105
## 3204 2020-04-27                Nigeria              1        155
## 3205 2020-03-11            Netherlands              1        182
## 3206 2020-04-30             San Marino              2         16
## 3207 2020-03-15                Namibia              1          2
## 3208 2020-04-21                  Gabon              2         47
## 3209 2020-04-29         United Kingdom              1       8072
## 3210 2020-04-17             San Marino              2         43
## 3211 2020-04-23                 Rwanda              3          4
## 3212 2020-03-14                Ecuador              0         17
## 3213 2020-01-21          United States              0          1
## 3214 2020-03-17                Moldova              1         13
## 3215 2020-04-20                Algeria              0        183
## 3216 2020-04-25                Iceland              3          1
## 3217 2020-04-11                 Sweden              1       1010
## 3218 2020-04-16                Lebanon              1         22
## 3219 2020-03-20                 Russia              1        106
## 3220 2020-04-15               Portugal              3       1157
## 3221 2020-04-19                 Panama              2        126
## 3222 2020-03-31                 Brazil              1       1461
## 3223 2020-04-27                  Japan              3        915
## 3224 2020-04-28               Malaysia              3         71
## 3225 2020-04-21                Hungary              1        228
## 3226 2020-04-26               Djibouti              3         24
## 3227 2020-02-20                  China              2        394
## 3228 2020-03-25                Andorra              1         55
## 3229 2020-03-21                   Iran              0       2203
## 3230 2020-02-17                 France              0          1
## 3231 2020-03-15                 Russia              1         18
## 3232 2020-04-30              Sri Lanka              2         44
## 3233 2020-03-13                  Kenya              0          1
## 3234 2020-03-22 Bosnia and Herzegovina              2         81
## 3235 2020-02-16               Malaysia              1          1
## 3236 2020-04-10                Morocco              2        173
## 3237 2020-03-11               Portugal              1         20
## 3238 2020-04-24               Eswatini              3          6
## 3239 2020-04-23         United Kingdom              1       9034
## 3240 2020-03-29                Uruguay              1         27
## 3241 2020-04-29            Switzerland              1        243
## 3242 2020-03-20                   Iran              0       2283
## 3243 2020-04-14                Austria              2        291
## 3244 2020-03-29                   Iran              0       5977
## 3245 2020-02-11         United Kingdom              1          4
## 3246 2020-04-22              Indonesia              1        658
## 3247 2020-04-14                Tunisia              1         40
## 3248 2020-03-12               Thailand              1         22
## 3249 2020-04-26                  Spain              1       3370
## 3250 2020-03-16             San Marino              1         14
## 3251 2020-04-17                 Greece              2         32
## 3252 2020-04-26   United Arab Emirates              3       1068
## 3253 2020-04-22                Romania              3        774
## 3254 2020-03-30              Argentina              1        150
## 3255 2020-04-11                Burundi              1          2
## 3256 2020-04-28             Madagascar              1          4
## 3257 2020-02-19                   Iran              0          2
## 3258 2020-03-28                Tunisia              1        105
## 3259 2020-04-25                Austria              2        160
## 3260 2020-04-12              Indonesia              1        729
## 3261 2020-03-14                 Rwanda              2          1
## 3262 2020-04-14                 Greece              2         56
## 3263 2020-04-19                 Poland              1        908
## 3264 2020-01-13               Thailand              0          1
## 3265 2020-03-18                 Turkey              2        102
## 3266 2020-03-30   United Arab Emirates              1         41
## 3267 2020-02-26                  Japan              1         39
## 3268 2020-04-20               Eswatini              3          5
## 3269 2020-04-10                 Turkey              2       8803
## 3270 2020-03-29               Pakistan              1        331
## 3271 2020-03-24              Australia              1        114
## 3272 2020-03-20                Albania              1         17
## 3273 2020-03-19                 Rwanda              2          4
## 3274 2020-02-29                 Mexico              0          5
## 3275 2020-02-25                  Japan              1         11
## 3276 2020-03-14             San Marino              1          6
## 3277 2020-03-23                Hungary              1         72
## 3278 2020-03-29                 Rwanda              3         16
## 3279 2020-03-23                  Italy              2      10349
## 3280 2020-03-19                 Brazil              1        386
## 3281 2020-05-10              Indonesia              1        920
## 3282 2020-04-24                   Mali              1         32
## 3283 2020-05-11                 Kuwait              2       1663
## 3284 2020-04-11                Denmark              1        361
## 3285 2020-02-18              Singapore              2          6
## 3286 2020-04-15                  Spain              1       9527
## 3287 2020-04-21                  Libya              1          2
## 3288 2020-04-15                Croatia              2         91
## 3289 2020-03-30              Mauritius              1         29
## 3290 2020-03-13                 Guyana              1          1
## 3291 2020-03-16           South Africa              1         38
## 3292 2020-04-23                 Israel              1        955
## 3293 2020-04-16                 Rwanda              3          4
## 3294 2020-04-19              Australia              1         53
## 3295 2020-02-12                Germany              1          2
## 3296 2020-04-21                Jamaica              1         27
## 3297 2020-04-15               Cameroon              2         35
## 3298 2020-03-14                Estonia              1         88
## 3299 2020-03-25           Burkina Faso              1         56
## 3300 2020-04-23                   Peru              2       3077
## 3301 2020-03-24                 Uganda              1          8
## 3302 2020-04-13                 Jordan              2         10
## 3303 2020-02-22            South Korea              3        419
## 3304 2020-04-21                 Greece              2        166
## 3305 2020-03-31                 Zambia              1          6
## 3306 2020-03-16               Pakistan              1        101
## 3307 2020-02-22              Australia              1          4
## 3308 2020-03-30                Ireland              1        495
## 3309 2020-04-22            Switzerland              1        360
## 3310 2020-04-14                  China              3         94
## 3311 2020-03-26                Ireland              1        490
## 3312 2020-04-22                Morocco              2        400
## 3313 2020-04-16                  Kenya              1         18
## 3314 2020-04-16             Costa Rica              2         24
## 3315 2020-04-10               Bulgaria              1         48
## 3316 2020-03-28                  Italy              2      11933
## 3317 2020-04-27    Trinidad and Tobago              2          2
## 3318 2020-04-24            Netherlands              1       1693
## 3319 2020-04-29                Algeria              0        331
## 3320 2020-04-26                  Egypt              1        442
## 3321 2020-04-23               Botswana              1          2
## 3322 2020-04-22             Mozambique              1          2
## 3323 2020-04-15            Afghanistan              1        119
## 3324 2020-04-30               Thailand              1         23
## 3325 2020-03-21                 Norway              1        394
## 3326 2020-04-12                 Gambia              1          5
## 3327 2020-03-15                Austria              1        356
## 3328 2020-04-10              Indonesia              1        556
## 3329 2020-03-26              Palestine              1         27
## 3330 2020-04-14              Indonesia              1        598
## 3331 2020-01-26            South Korea              1          2
## 3332 2020-04-14   United Arab Emirates              3        810
## 3333 2020-03-28               Thailand              1        109
## 3334 2020-03-23               Malaysia              1        335
## 3335 2020-03-14                Iceland              3         22
## 3336 2020-03-31               Pakistan              1        279
## 3337 2020-03-23     Dominican Republic              2        133
## 3338 2020-04-17                Uruguay              1         15
## 3339 2020-04-17                  Syria              2          5
## 3340 2020-03-24                  Egypt              1         69
## 3341 2020-04-29             San Marino              2         25
## 3342 2020-04-16                  Syria              2          4
## 3343 2020-04-15                Germany              1       5880
## 3344 2020-03-16 Bosnia and Herzegovina              2         16
## 3345 2020-03-28                  Chile              2        603
## 3346 2020-03-19                Germany              1       4035
## 3347 2020-04-29              Palestine              1          1
## 3348 2020-04-19               Ethiopia              1         12
## 3349 2020-03-29             Azerbaijan              2         44
## 3350 2020-04-20               Colombia              2        356
## 3351 2020-03-21                 Poland              0        181
## 3352 2020-03-27                 Angola              1          1
## 3353 2020-04-23                Hungary              1        232
## 3354 2020-04-16                  Japan              3       1008
## 3355 2020-04-11                Moldova              1        271
## 3356 2020-03-20               Malaysia              1        240
## 3357 2020-03-16                  Italy              2       6056
## 3358 2020-04-18                 Greece              2         11
## 3359 2020-03-12            South Korea              3        228
## 3360 2020-04-24               Honduras              1         72
## 3361 2020-04-12                   Oman              3        115
## 3362 2020-03-22               Dominica              2          1
## 3363 2020-04-25           South Africa              2        408
## 3364 2020-03-15            South Korea              3        152
## 3365 2020-04-22                  Ghana              3        112
## 3366 2020-04-10                 Greece              2        127
## 3367 2020-04-11                Lebanon              1         37
## 3368 2020-02-27                  China              2        439
## 3369 2020-02-28                  Spain              1         35
## 3370 2020-04-10             Mauritania              0          1
## 3371 2020-04-13                 Belize              1          5
## 3372 2020-04-18             San Marino              2         29
## 3373 2020-05-11                Ireland              1        375
## 3374 2020-04-29              Guatemala              2         54
## 3375 2020-03-20            Netherlands              1        943
## 3376 2020-04-22                 Panama              2        326
## 3377 2020-03-25                   Guam              0          3
## 3378 2020-03-24                 Norway              1        481
## 3379 2020-04-24               Malaysia              3        159
## 3380 2020-03-13         Czech Republic              1         69
## 3381 2020-04-17                  Spain              1       9709
## 3382 2020-03-27               Bulgaria              1         51
## 3383 2020-03-26              Greenland              3          1
## 3384 2020-04-30            Puerto Rico              1         33
## 3385 2020-04-26             Uzbekistan              1         36
## 3386 2020-03-18                   Iraq              2         40
## 3387 2020-04-12                  Chile              2        712
## 3388 2020-03-24   United Arab Emirates              1         95
## 3389 2020-04-24             Bangladesh              2        917
## 3390 2020-03-25              Australia              1        600
## 3391 2020-04-20                   Peru              2       1905
## 3392 2020-04-27     Dominican Republic              2        367
## 3393 2020-04-28                Andorra              3          3
## 3394 2020-04-18                Myanmar              2         19
## 3395 2020-03-27                  Gabon              2          1
## 3396 2020-04-18                Algeria              0        266
## 3397 2020-03-12                   Iran              0       2033
## 3398 2020-04-23               Ethiopia              1          2
## 3399 2020-04-11                   Guam              2          2
## 3400 2020-03-29                 Kuwait              2         30
## 3401 2020-03-18                Romania              0        109
## 3402 2020-04-22                 Zambia              1          4
## 3403 2020-04-15                   Mali              1         25
## 3404 2020-03-17                  Japan              1         49
## 3405 2020-03-21               Paraguay              2         10
## 3406 2020-03-17                Denmark              1        120
## 3407 2020-02-26                Bahrain              1         31
## 3408 2020-04-12                Austria              2        386
## 3409 2020-05-10          Cote d'Ivoire              2         98
## 3410 2020-04-13                 Serbia              1        674
## 3411 2020-04-15                Jamaica              1         84
## 3412 2020-03-11                  Egypt              1          5
## 3413 2020-04-16                  Gabon              2         12
## 3414 2020-04-22                Bermuda              1         12
## 3415 2020-04-28                Finland              1        164
## 3416 2020-04-29               DR Congo              1         40
## 3417 2020-03-26                Tunisia              1         83
## 3418 2020-04-13              Australia              1         33
## 3419 2020-04-27                Iceland              3          2
## 3420 2020-04-17                Iceland              3         27
## 3421 2020-03-25                Germany              1       6679
## 3422 2020-04-13                Somalia              1         39
## 3423 2020-03-23                  Spain              1      11014
## 3424 2020-01-23              Singapore              2          1
## 3425 2020-03-12                Jamaica              1          3
## 3426 2020-02-23                  Japan              1         52
## 3427 2020-04-26            Philippines              2        387
## 3428 2020-03-17                Uruguay              1         42
## 3429 2020-04-10            Netherlands              1       2548
## 3430 2020-04-11               Honduras              1         20
## 3431 2020-03-20              Singapore              2         72
## 3432 2020-04-24                 Mexico              1       2328
## 3433 2020-04-18          Cote d'Ivoire              2        167
## 3434 2020-03-29                  Sudan              2          3
## 3435 2020-04-22                 Jordan              2          7
## 3436 2020-04-16          Cote d'Ivoire              2         44
## 3437 2020-04-13                   Oman              3        181
## 3438 2020-03-29              Indonesia              1        239
## 3439 2020-03-20            South Korea              3        174
## 3440 2020-03-26                 France              1       6853
## 3441 2020-04-18             Luxembourg              1         93
## 3442 2020-03-19                  Ghana              1          5
## 3443 2020-04-30            New Zealand              2          6
## 3444 2020-04-17                Bahrain              2         67
## 3445 2020-04-21              Singapore              2       2537
## 3446 2020-04-20                Austria              2         94
## 3447 2020-04-18                  Syria              2          5
## 3448 2020-03-29               Slovakia              1         22
## 3449 2020-04-15         Congo Republic              1         61
## 3450 2020-03-28               Paraguay              2          8
## 3451 2020-04-20                   Oman              3        230
## 3452 2020-04-14                   Iran              0       3191
## 3453 2020-03-28            Philippines              2        368
## 3454 2020-03-28             Costa Rica              2         64
## 3455 2020-04-14                 Kuwait              2        121
## 3456 2020-03-15                 Mexico              0         27
## 3457 2020-04-28            Puerto Rico              1         18
## 3458 2020-04-13              Singapore              2        619
## 3459 2020-03-24                Romania              0        361
## 3460 2020-04-19            New Zealand              2         13
## 3461 2020-03-30               Djibouti              3          4
## 3462 2020-03-27                   Iraq              2        112
## 3463 2020-04-21                Albania              2         47
## 3464 2020-04-16               Tanzania              0         41
## 3465 2020-03-18                  Italy              2       7733
## 3466 2020-04-20                 Russia              3      10328
## 3467 2020-04-19                 Russia              3      10845
## 3468 2020-03-17              Guatemala              1          9
## 3469 2020-02-21              Singapore              2          2
## 3470 2020-01-17               Thailand              0          1
## 3471 2020-03-21       Papua New Guinea              0          1
## 3472 2020-03-22                 Poland              1        209
## 3473 2020-04-14                Ireland              1       1824
## 3474 2020-03-15                 Turkey              2          1
## 3475 2020-04-27              Palestine              1        153
## 3476 2020-04-24                   Iraq              2        106
## 3477 2020-04-18                  Japan              3       1137
## 3478 2020-03-27                 Uganda              1          9
## 3479 2020-02-17              Singapore              2          5
## 3480 2020-04-14           Burkina Faso              1         49
## 3481 2020-04-26                 Israel              1        385
## 3482 2020-04-16               Eswatini              3          2
## 3483 2020-04-28                   Iraq              2        108
## 3484 2020-04-11         United Kingdom              1      10428
## 3485 2020-04-22               Paraguay              2         10
## 3486 2020-04-22                Finland              1        261
## 3487 2020-03-23                Morocco              2         47
## 3488 2020-01-24          United States              0          1
## 3489 2020-03-23    Trinidad and Tobago              2          2
## 3490 2020-04-12                Iceland              3         26
## 3491 2020-04-12            New Zealand              2         32
## 3492 2020-03-13      Brunei Darussalam              2         40
## 3493 2020-03-16            Switzerland              1        841
## 3494 2020-04-30              Australia              1          8
## 3495 2020-03-29              Singapore              2        113
## 3496 2020-04-15             Seychelles              2          1
## 3497 2020-02-21                   Iran              0         16
## 3498 2020-03-19               Thailand              1         60
## 3499 2020-03-31               Bulgaria              1         53
## 3500 2020-04-19                  Chile              2        836
## 3501 2020-03-27            Philippines              2        167
## 3502 2020-03-15                Bahrain              2          5
## 3503 2020-03-27                  Japan              1        177
## 3504 2020-04-27         Czech Republic              2         93
## 3505 2020-04-12              Singapore              2        623
## 3506 2020-04-15               Ethiopia              1         11
## 3507 2020-04-27                   Cuba              2         52
## 3508 2020-04-30             Uzbekistan              1        100
## 3509 2020-03-29                   Peru              1        217
## 3510 2020-02-17   United Arab Emirates              0          1
## 3511 2020-04-10                 Kuwait              2        138
## 3512 2020-04-10             Uzbekistan              1         69
## 3513 2020-03-25                 Norway              1        416
## 3514 2020-03-28               Honduras              2         55
## 3515 2020-03-27                Ecuador              0        384
## 3516 2020-05-10            New Zealand              2          5
## 3517 2020-03-20                Croatia              1         46
## 3518 2020-04-24                Somalia              1         42
## 3519 2020-04-22                Hungary              1        140
## 3520 2020-03-16                Algeria              0         17
## 3521 2020-03-20 Bosnia and Herzegovina              2         34
## 3522 2020-03-11                  China              2         29
## 3523 2020-04-10               Dominica              2          2
## 3524 2020-03-28                Andorra              1         84
## 3525 2020-03-14                  Kenya              0          1
## 3526 2020-04-25               Bulgaria              1        104
## 3527 2020-04-19                   Iran              0       2717
## 3528 2020-03-16                 Jordan              2         23
## 3529 2020-04-14             Azerbaijan              2         99
## 3530 2020-02-24                  China              2        218
## 3531 2020-04-10     Dominican Republic              2        509
## 3532 2020-04-26         Czech Republic              2        131
## 3533 2020-03-11                   Peru              1          2
## 3534 2020-03-13                Uruguay              0          4
## 3535 2020-04-24                Hungary              1        258
## 3536 2020-04-27              Guatemala              2         57
## 3537 2020-04-20                Ecuador              3       1106
## 3538 2020-04-26            Puerto Rico              1         31
## 3539 2020-03-10                 France              0        861
## 3540 2020-03-30               Thailand              1        279
## 3541 2020-03-15      Brunei Darussalam              2         13
## 3542 2020-04-27            South Korea              3         24
## 3543 2020-03-23            South Korea              3         64
## 3544 2020-04-26                  India              3       3597
## 3545 2020-04-11              Indonesia              1        549
## 3546 2020-05-10                 Jordan              2         32
## 3547 2020-03-25                   Mali              1          2
## 3548 2020-03-12                Bahrain              2         52
## 3549 2020-04-11              Singapore              2        191
## 3550 2020-04-13                   Chad              1          9
## 3551 2020-03-31                   Iraq              2        147
## 3552 2020-04-17                 Brazil              1       5362
## 3553 2020-03-24               Colombia              2        172
## 3554 2020-03-29                   Iraq              2         89
## 3555 2020-04-12               Barbados              2          4
## 3556 2020-04-14              Argentina              1        138
## 3557 2020-03-31             Azerbaijan              2         89
## 3558 2020-04-11                  Syria              2          6
## 3559 2020-03-14                 Poland              0         54
## 3560 2020-04-19                 Zambia              1          9
## 3561 2020-02-16                  China              2       2007
## 3562 2020-04-16               Bulgaria              1         87
## 3563 2020-04-26                 Angola              2          1
## 3564 2020-04-29              Singapore              2       1218
## 3565 2020-03-29            Philippines              2        615
## 3566 2020-03-30                Lebanon              1         34
## 3567 2020-03-15                  Ghana              0          3
## 3568 2020-03-22                   Cuba              2         18
## 3569 2020-04-24          United States              3      62834
## 3570 2020-03-28              Mauritius              1         21
## 3571 2020-04-25               Ethiopia              1          6
## 3572 2020-03-13               Portugal              1         72
## 3573 2020-03-20                  Japan              1        116
## 3574 2020-04-28                 Malawi              1          2
## 3575 2020-04-12                Bermuda              1          2
## 3576 2020-03-23                 Zambia              1          1
## 3577 2020-04-27                  Kenya              1         20
## 3578 2020-02-27                  Spain              1         10
## 3579 2020-04-13 Bosnia and Herzegovina              2         87
## 3580 2020-04-29                 Guyana              1          5
## 3581 2020-03-23               Tanzania              0          6
## 3582 2020-04-16            Philippines              2        437
## 3583 2020-04-14               Zimbabwe              0          3
## 3584 2020-04-13                  Kenya              1         17
## 3585 2020-03-31            Afghanistan              1         31
## 3586 2020-03-29                  Niger              1          8
## 3587 2020-02-26                Germany              1         12
## 3588 2020-04-30                   Iraq              2        238
## 3589 2020-02-29                Denmark              0          3
## 3590 2020-03-27                Albania              1         40
## 3591 2020-03-27                  Italy              2      12062
## 3592 2020-03-29                 Guyana              1          3
## 3593 2020-04-18                Burundi              1          1
## 3594 2020-03-28                 France              1       8420
## 3595 2020-04-14                  Italy              2       6125
## 3596 2020-03-11                Lebanon              1         20
## 3597 2020-03-30                 Uganda              1          3
## 3598 2020-03-31                 Israel              1        889
## 3599 2020-04-29                Liberia              1          8
## 3600 2020-03-12                Finland              1         19
## 3601 2020-04-10                  Niger              1         96
## 3602 2020-03-17               DR Congo              1          2
## 3603 2020-04-28   United Arab Emirates              3       1031
## 3604 2020-03-18               Malaysia              1        237
## 3605 2020-03-11                 Poland              0         14
## 3606 2020-04-15              Australia              1         50
## 3607 2020-02-15                  China              1       2538
## 3608 2020-04-27                 Angola              2          2
## 3609 2020-04-16                 Sweden              1       1095
## 3610 2020-03-16              Argentina              1         22
## 3611 2020-03-11            South Korea              3        484
## 3612 2020-04-22         Czech Republic              2        226
## 3613 2020-04-23             Uzbekistan              1         66
## 3614 2020-03-12                  Qatar              1        238
## 3615 2020-04-25   United Arab Emirates              3       1057
## 3616 2020-03-30                  Italy              2       9267
## 3617 2020-04-26                Algeria              0        255
## 3618 2020-04-14     Dominican Republic              2        319
## 3619 2020-04-11                  Benin              1          5
## 3620 2020-03-30            South Korea              3        156
## 3621 2020-04-23     Dominican Republic              2        499
## 3622 2020-04-18                 Mexico              1       1200
## 3623 2020-04-21           Burkina Faso              1         24
## 3624 2020-02-24                  Japan              1         24
## 3625 2020-03-26           Saudi Arabia              2        245
## 3626 2020-04-23                Belgium              1       1683
## 3627 2020-03-18                Iceland              3         78
## 3628 2020-03-23              Sri Lanka              1         24
## 3629 2020-04-12           Sierra Leone              2          4
## 3630 2020-04-12                Germany              1       5767
## 3631 2020-04-14           South Africa              2        242
## 3632 2020-04-27                  Egypt              1        248
## 3633 2020-03-13             Luxembourg              1         34
## 3634 2020-04-20   United Arab Emirates              3        963
## 3635 2020-03-10             Costa Rica              1          4
## 3636 2020-03-30                Bolivia              0         31
## 3637 2020-04-19               Botswana              1          5
## 3638 2020-04-10               Barbados              2          4
## 3639 2020-03-30                 Zambia              1          7
## 3640 2020-03-30              Australia              1        284
## 3641 2020-03-23        Kyrgyz Republic              1          2
## 3642 2020-04-29             Kazakhstan              1        314
## 3643 2020-04-15                 France              1       8713
## 3644 2020-04-12   United Arab Emirates              1        763
## 3645 2020-03-16             Costa Rica              2         16
## 3646 2020-03-23           Saudi Arabia              2        170
## 3647 2020-03-21                  Qatar              1         21
## 3648 2020-04-14                 Uganda              1          1
## 3649 2020-04-22                Germany              1       4594
## 3650 2020-03-21                Algeria              0         61
## 3651 2020-03-27                Denmark              1        322
## 3652 2020-03-13             Azerbaijan              2          4
## 3653 2020-04-24                Austria              2        130
## 3654 2020-04-22                Lebanon              1          5
## 3655 2020-04-23              Guatemala              2         94
## 3656 2020-03-29               Djibouti              3          6
## 3657 2020-02-29                 France              0         62
## 3658 2020-04-22              Sri Lanka              2         26
## 3659 2020-03-15          Cote d'Ivoire              0          3
## 3660 2020-03-26               Dominica              2          9
## 3661 2020-03-24               Paraguay              2         10
## 3662 2020-04-12                   Guam              2          3
## 3663 2020-04-30               Barbados              2          1
## 3664 2020-02-17                  China              2       2052
## 3665 2020-03-14                Belgium              1        468
## 3666 2020-04-12               Slovenia              2         45
## 3667 2020-04-25                 Russia              3      11815
## 3668 2020-04-30                Jamaica              1         41
## 3669 2020-04-13               Malaysia              3        287
## 3670 2020-03-10                Romania              0         12
## 3671 2020-04-25                 Kuwait              2        493
## 3672 2020-04-17                 Russia              3       7518
## 3673 2020-03-28          Cote d'Ivoire              2          5
## 3674 2020-04-22                 Malawi              1          6
## 3675 2020-04-29               Bulgaria              1         84
## 3676 2020-03-10         Czech Republic              1         18
## 3677 2020-04-27              Sri Lanka              2        126
## 3678 2020-03-24                  Gabon              2          1
## 3679 2020-04-11              Nicaragua              1          2
## 3680 2020-03-21                Liberia              1          1
## 3681 2020-04-18            Switzerland              1        672
## 3682 2020-03-25               Slovakia              1         25
## 3683 2020-03-21                 Canada              3        125
## 3684 2020-03-18          Cote d'Ivoire              2          1
## 3685 2020-03-29                  Italy              2      11191
## 3686 2020-03-25              Guatemala              1          4
## 3687 2020-04-26              Palestine              1          2
## 3688 2020-04-26               Ethiopia              1          6
## 3689 2020-04-18               DR Congo              1         40
## 3690 2020-03-14              Palestine              1          9
## 3691 2020-04-22                   Iran              0       2491
## 3692 2020-03-20                Nigeria              1          4
## 3693 2020-03-16                   Peru              1         71
## 3694 2020-04-15              Guatemala              2         26
## 3695 2020-04-19               Thailand              1         65
## 3696 2020-03-30           Saudi Arabia              2        180
## 3697 2020-03-28    Trinidad and Tobago              2          9
## 3698 2020-03-24                 Poland              1        267
## 3699 2020-03-16               Tanzania              0          1
## 3700 2020-03-29               Portugal              2       1694
## 3701 2020-04-23                 Norway              1        147
## 3702 2020-03-13                 Israel              1         40
## 3703 2020-04-15             Mozambique              1          2
## 3704 2020-03-16                Moldova              1          3
## 3705 2020-03-25               Honduras              2         12
## 3706 2020-03-22           Burkina Faso              1         35
## 3707 2020-03-23                 Guyana              1          1
## 3708 2020-04-15                 Poland              1        648
## 3709 2020-04-17              Venezuela              1          7
## 3710 2020-03-31                Ireland              1        620
## 3711 2020-04-23                Myanmar              2         22
## 3712 2020-03-11             San Marino              1         24
## 3713 2020-03-28            South Korea              3        292
## 3714 2020-03-24                 Greece              0        119
## 3715 2020-04-14             Kazakhstan              1        359
## 3716 2020-03-17                Belgium              1        572
## 3717 2020-03-24                Andorra              1         51
## 3718 2020-03-17                Estonia              1         54
## 3719 2020-04-21                  Spain              1       6919
## 3720 2020-03-29                 Israel              1       1212
## 3721 2020-03-28                 Zambia              1          8
## 3722 2020-04-24                  Ghana              3        125
## 3723 2020-04-22              Singapore              2       2127
## 3724 2020-04-25              Venezuela              1         25
## 3725 2020-03-27             Costa Rica              2         62
## 3726 2020-02-21              Australia              1          2
## 3727 2020-04-16                  Spain              1      11124
## 3728 2020-03-11                 Israel              1         35
## 3729 2020-03-31               Portugal              2       1481
## 3730 2020-03-22          Cote d'Ivoire              2          3
## 3731 2020-03-26             Kazakhstan              1         39
## 3732 2020-04-29                Somalia              1        102
## 3733 2020-04-21               Ethiopia              1          6
## 3734 2020-04-18                  Qatar              1        905
## 3735 2020-01-25              Australia              1          1
## 3736 2020-03-26                 Sweden              1        552
## 3737 2020-04-15                  Italy              2       5639
## 3738 2020-03-29                Moldova              1         64
## 3739 2020-03-31                Denmark              1        465
## 3740 2020-04-13                Moldova              1        152
## 3741 2020-03-27                   Oman              2         32
## 3742 2020-04-19                Ireland              1       1271
## 3743 2020-04-23                  China              3         12
## 3744 2020-04-26                  Qatar              1       1762
## 3745 2020-03-19            Switzerland              1       1407
## 3746 2020-03-23               Portugal              1        780
## 3747 2020-04-13               Slovenia              2         24
## 3748 2020-04-30                 Greece              2         57
## 3749 2020-03-26               Mongolia              1          1
## 3750 2020-01-25               Thailand              0          3
## 3751 2020-04-15                  Egypt              1        315
## 3752 2020-03-18                 Kuwait              2         19
## 3753 2020-04-11                Germany              1       6870
## 3754 2020-04-19                  Kenya              1         24
## 3755 2020-03-23                Albania              1         28
## 3756 2020-04-27                 Russia              3      12559
## 3757 2020-04-12               Ethiopia              1          6
## 3758 2020-03-26                   Iraq              2         66
## 3759 2020-04-12                Denmark              1        355
## 3760 2020-04-20                Belgium              1       1930
## 3761 2020-04-21                Bahrain              2        100
## 3762 2020-03-29                Myanmar              2          5
## 3763 2020-04-26               Portugal              3        884
## 3764 2020-03-21                 Angola              1          1
## 3765 2020-04-25            South Sudan              2          1
## 3766 2020-04-25                  Niger              1         13
## 3767 2020-04-27                Finland              1        220
## 3768 2020-04-14         United Kingdom              1       9594
## 3769 2020-03-29                   Oman              2         36
## 3770 2020-03-31                 France              1      11954
## 3771 2020-04-29               Djibouti              3         42
## 3772 2020-03-24                  Ghana              1         29
## 3773 2020-04-20               Djibouti              3        114
## 3774 2020-03-31            Philippines              2       1204
## 3775 2020-03-16             Azerbaijan              2          5
## 3776 2020-04-18                 Sweden              1       1282
## 3777 2020-04-15               Pakistan              2        808
## 3778 2020-03-18            South Korea              3        186
## 3779 2020-03-13                 Panama              2         29
## 3780 2020-04-21               DR Congo              1         36
## 3781 2020-04-17                 Sweden              1       1289
## 3782 2020-03-13                 Sweden              1        373
## 3783 2020-04-23                  Japan              3       1132
## 3784 2020-04-23               Malaysia              3        121
## 3785 2020-04-21                Moldova              1        142
## 3786 2020-04-26                 Kuwait              2        461
## 3787 2020-02-25                 Canada              1          2
## 3788 2020-01-27              Singapore              2          1
## 3789 2020-04-20                  Benin              2         19
## 3790 2020-03-24            Philippines              2        172
## 3791 2020-04-16                  Libya              1         14
## 3792 2020-03-20                  Italy              2      11308
## 3793 2020-04-19                Somalia              1         48
## 3794 2020-02-29                  Spain              1         32
## 3795 2020-03-23                Tunisia              1         29
## 3796 2020-03-16             Seychelles              2          2
## 3797 2020-02-15                  Egypt              1          1
## 3798 2020-03-23             Bangladesh              2          9
## 3799 2020-04-30                Romania              3        624
## 3800 2020-04-12                Burundi              1          2
## 3801 2020-03-13           South Africa              1         11
## 3802 2020-04-10            Philippines              2        325
## 3803 2020-03-27           Saudi Arabia              2        204
## 3804 2020-03-23         Congo Republic              1          1
## 3805 2020-04-28                 Norway              1         89
## 3806 2020-03-18                 Rwanda              2          3
## 3807 2020-04-24              Indonesia              1        793
## 3808 2020-04-26                Iceland              3          3
## 3809 2020-03-17             Costa Rica              2         12
## 3810 2020-04-28             Azerbaijan              2         72
## 3811 2020-03-25                Algeria              0         72
## 3812 2020-04-30                   Mali              1         66
## 3813 2020-02-21                 Israel              1          1
## 3814 2020-03-19               Portugal              1        531
## 3815 2020-03-22                 France              1       3583
## 3816 2020-04-24                Estonia              2         46
## 3817 2020-03-30                   Mali              1         16
## 3818 2020-03-10                Nigeria              1          1
## 3819 2020-03-13                  Ghana              0          2
## 3820 2020-03-16              Venezuela              1         12
## 3821 2020-03-24           South Africa              1        280
## 3822 2020-04-28              Venezuela              1          4
## 3823 2020-03-21               Pakistan              1         63
## 3824 2020-04-24               Cameroon              2        334
## 3825 2020-04-11                Jamaica              1          4
## 3826 2020-01-27            South Korea              1          2
## 3827 2020-03-13                Ukraine              1          4
## 3828 2020-02-27          United States              0          7
## 3829 2020-04-22                 Russia              3      10878
## 3830 2020-04-26             Cabo Verde              2         18
## 3831 2020-02-29                   Iraq              2          7
## 3832 2020-04-21     Dominican Republic              2        364
## 3833 2020-04-12                  Qatar              1        467
## 3834 2020-04-12                Bolivia              0         49
## 3835 2020-03-19               Pakistan              1        162
## 3836 2020-02-13          United States              0          2
## 3837 2020-03-27                   Cuba              2         23
## 3838 2020-04-17                Liberia              1         31
## 3839 2020-02-22                   Iran              0         23
## 3840 2020-03-31                 Sweden              1        735
## 3841 2020-03-25                Vietnam              2         12
## 3842 2020-03-15                  Kenya              0          2
## 3843 2020-03-11         Czech Republic              1         73
## 3844 2020-03-26                Vietnam              2         28
## 3845 2020-04-16                Finland              1        208
## 3846 2020-04-22               DR Congo              1         18
## 3847 2020-03-24            New Zealand              1         93
## 3848 2020-03-19                 Sweden              1        294
## 3849 2020-03-26                Bolivia              0         18
## 3850 2020-03-31               Dominica              2          1
## 3851 2020-03-13               Bulgaria              1         32
## 3852 2020-03-23                Namibia              1          1
## 3853 2020-04-16              Sri Lanka              2          4
## 3854 2020-03-19               Malaysia              1        227
## 3855 2020-03-28            Switzerland              1       2538
## 3856 2020-04-18               Malaysia              3        123
## 3857 2020-04-29                  Niger              1         12
## 3858 2020-03-21               Colombia              2         98
## 3859 2020-03-19                Vietnam              2         18
## 3860 2020-04-29                Ecuador              3       1435
## 3861 2020-04-13                 Poland              1        578
## 3862 2020-03-18                Croatia              1         29
## 3863 2020-03-10            Netherlands              1        117
## 3864 2020-04-11               Barbados              2          2
## 3865 2020-04-14            Netherlands              1       1832
## 3866 2020-03-19         Czech Republic              1        318
## 3867 2020-03-22             Bangladesh              2          9
## 3868 2020-03-15             Uzbekistan              1          1
## 3869 2020-04-14                Romania              3        579
## 3870 2020-04-23               DR Congo              1         36
## 3871 2020-04-20                Bahrain              2        126
## 3872 2020-02-20              Singapore              2          3
## 3873 2020-03-20                Iceland              3        159
## 3874 2020-03-23                  Kenya              1          9
## 3875 2020-02-10                Vietnam              2          1
## 3876 2020-04-21                Finland              1        231
## 3877 2020-04-30                Denmark              2        307
## 3878 2020-01-29                  Japan              1          3
## 3879 2020-03-25                Finland              1        180
## 3880 2020-03-27                Morocco              2        120
## 3881 2020-03-18                 Gambia              1          1
## 3882 2020-04-17                Moldova              1        215
## 3883 2020-04-21                 Kuwait              2        165
## 3884 2020-04-13                  Spain              1       6298
## 3885 2020-02-26               Thailand              0          6
## 3886 2020-04-27                Austria              2        104
## 3887 2020-03-22                 Norway              1        451
## 3888 2020-03-23                 Poland              1        213
## 3889 2020-02-27                Lebanon              1          1
## 3890 2020-04-27                Uruguay              1         24
## 3891 2020-04-21               Eswatini              3          9
## 3892 2020-04-30            South Sudan              2          1
## 3893 2020-04-14             Bangladesh              2        391
## 3894 2020-04-20          Cote d'Ivoire              2         46
## 3895 2020-03-23            New Zealand              1         36
## 3896 2020-04-12               DR Congo              1         22
## 3897 2020-04-12     Dominican Republic              2        347
## 3898 2020-04-23            Philippines              2        382
## 3899 2020-03-17                  Benin              1          1
## 3900 2020-05-10                  Yemen              0         17
## 3901 2020-03-11 Bosnia and Herzegovina              2          2
## 3902 2020-03-18                Jamaica              1          4
## 3903 2020-03-16                 Israel              1         77
## 3904 2020-03-22                  Italy              2      12117
## 3905 2020-04-27                 Kuwait              2        396
## 3906 2020-03-26               Zimbabwe              0          1
## 3907 2020-02-15                 France              0          1
## 3908 2020-03-24                  Japan              1        104
## 3909 2020-04-21                  Benin              2         17
## 3910 2020-04-29                Denmark              2        310
## 3911 2020-03-16                 Turkey              2         28
## 3912 2020-04-15               Malaysia              3        255
## 3913 2020-03-30                Namibia              1          3
## 3914 2020-04-21 Bosnia and Herzegovina              2         64
## 3915 2020-03-14                Jamaica              1          2
## 3916 2020-03-16              Sri Lanka              1         18
## 3917 2020-03-17               Mongolia              1          4
## 3918 2020-04-14                 Rwanda              3          8
## 3919 2020-04-10    Trinidad and Tobago              2          2
## 3920 2020-04-30                 Uganda              1          4
## 3921 2020-04-19                Bolivia              0         54
## 3922 2020-03-17                   Iran              0       2231
## 3923 2020-04-25                Burundi              1          1
## 3924 2020-04-19                 Angola              2          5
## 3925 2020-03-15           Burkina Faso              1          2
## 3926 2020-04-10             San Marino              2         36
## 3927 2020-04-20             Bangladesh              2        804
## 3928 2020-04-18                  Spain              1       4723
## 3929 2020-04-30                  Egypt              1        495
## 3930 2020-03-12                 Guyana              1          1
## 3931 2020-04-14                  Spain              1       5558
## 3932 2020-04-26                   Mali              1         64
## 3933 2020-03-24               DR Congo              1          9
## 3934 2020-04-27               DR Congo              1         34
## 3935 2020-04-29                  Chile              2       1072
## 3936 2020-03-14              Singapore              2         25
## 3937 2020-04-15                 Kuwait              2        105
## 3938 2020-03-22                 Jordan              2         42
## 3939 2020-04-18              Guatemala              2         42
## 3940 2020-03-15            Switzerland              1       1079
## 3941 2020-03-21             Luxembourg              1        325
## 3942 2020-03-19                Andorra              1         53
## 3943 2020-04-11        Kyrgyz Republic              1         82
## 3944 2020-04-30                Somalia              1         73
## 3945 2020-03-23               Slovenia              2         59
## 3946 2020-03-22             San Marino              1         31
## 3947 2020-05-10               Thailand              2          9
## 3948 2020-03-27              Argentina              1        174
## 3949 2020-04-29              Indonesia              1        675
## 3950 2020-03-10                 Kuwait              0          6
## 3951 2020-04-17             Azerbaijan              2         87
## 3952 2020-03-28                Vietnam              2         19
## 3953 2020-04-10                  Aruba              1          5
## 3954 2020-04-29                   Iran              0       2185
## 3955 2020-03-17                  Italy              2       7526
## 3956 2020-04-22               Slovenia              2         14
## 3957 2020-03-29     Dominican Republic              2        278
## 3958 2020-03-19                 Kuwait              2         18
## 3959 2020-03-19                Ireland              2        339
## 3960 2020-03-26                 Canada              3       1426
## 3961 2020-02-29                Romania              0          2
## 3962 2020-04-12                   Mali              1         36
## 3963 2020-04-26                 Jordan              2          6
## 3964 2020-04-25                 Zambia              1          8
## 3965 2020-03-21             Bangladesh              2         12
## 3966 2020-03-31                Myanmar              2          7
## 3967 2020-01-30            Philippines              0          2
## 3968 2020-04-15                 Norway              1        195
## 3969 2020-04-18                Bahrain              2         77
## 3970 2020-04-24                 Uganda              1         14
## 3971 2020-04-12              Australia              1         51
## 3972 2020-01-24            South Korea              1          2
## 3973 2020-04-21                 Malawi              1          1
## 3974 2020-04-22 Bosnia and Herzegovina              2         66
## 3975 2020-05-10                Austria              2         80
## 3976 2020-04-27                  India              3       2957
## 3977 2020-03-21              Singapore              2         87
## 3978 2020-04-23            Netherlands              1       1595
## 3979 2020-04-23                   Iraq              2         46
## 3980 2020-03-30              Venezuela              1         16
## 3981 2020-04-11               Paraguay              2          8
## 3982 2020-03-14                   Peru              1         26
## 3983 2020-05-11               Slovenia              2          6
## 3984 2020-03-24         United Kingdom              1       2394
## 3985 2020-04-28                  Niger              1         13
## 3986 2020-04-22                  Syria              2          3
## 3987 2020-04-27                   Oman              2        144
## 3988 2020-03-27                  Kenya              1          6
## 3989 2020-02-27                Croatia              1          1
## 3990 2020-04-17           Saudi Arabia              2       1280
## 3991 2020-03-23               Dominica              2          2
## 3992 2020-03-16                Jamaica              1          2
## 3993 2020-03-26                Morocco              2        105
## 3994 2020-03-22                 Brazil              1        749
## 3995 2020-05-10                 Guyana              1         13
## 3996 2020-04-12                 Russia              3       3853
## 3997 2020-01-24              Singapore              2          5
## 3998 2020-03-18                 Brazil              1        108
## 3999 2020-04-10             Luxembourg              1        189
## 4000 2020-03-25                Bolivia              0          7
## 4001 2020-03-22      Brunei Darussalam              2         10
## 4002 2020-02-28                Nigeria              1          2
## 4003 2020-04-19               Portugal              3       1184
## 4004 2020-04-11                Algeria              0        159
## 4005 2020-03-24                  China              2         69
## 4006 2020-04-17               Djibouti              3        297
## 4007 2020-04-16                 Guyana              1          7
## 4008 2020-03-11               Thailand              1         15
## 4009 2020-04-18                 Brazil              1       6233
## 4010 2020-02-24                   Oman              2          2
## 4011 2020-01-26               Thailand              0          1
## 4012 2020-03-30            El Salvador              1         17
## 4013 2020-03-21                 Cyprus              0         26
## 4014 2020-03-25               Djibouti              3          8
## 4015 2020-03-23                Moldova              1         29
## 4016 2020-04-28                  Kenya              1         19
## 4017 2020-03-17              Venezuela              1         34
## 4018 2020-03-26               Slovenia              2         82
## 4019 2020-04-13                Albania              1         34
## 4020 2020-03-13               Paraguay              1          2
## 4021 2020-03-25                Austria              2       1101
## 4022 2020-03-30                Tunisia              1         51
## 4023 2020-03-13               Slovenia              2         91
## 4024 2020-03-16               Paraguay              1          3
## 4025 2020-03-23                  Egypt              1         48
## 4026 2020-03-11               Honduras              2          2
## 4027 2020-03-20               Cameroon              0         11
## 4028 2020-03-13               DR Congo              1          1
## 4029 2020-03-25    Trinidad and Tobago              2          9
## 4030 2020-03-16                 France              0       3058
## 4031 2020-03-31             Luxembourg              1        228
## 4032 2020-03-24             Luxembourg              1        301
## 4033 2020-03-22                   Chad              1          1
## 4034 2020-04-11                 Kuwait              2        244
## 4035 2020-02-23                   Iran              0         25
## 4036 2020-04-17                 Jordan              2          6
## 4037 2020-03-31                Austria              2       1367
## 4038 2020-03-29                 Uganda              1         19
## 4039 2020-04-24                 Canada              3       1920
## 4040 2020-04-22            New Zealand              2         11
## 4041 2020-03-28                 Russia              1        424
## 4042 2020-03-12                Croatia              1          3
## 4043 2020-03-12                 Turkey              2          1
## 4044 2020-04-23                Ecuador              3        785
## 4045 2020-03-13                   Cuba              2          1
## 4046 2020-04-16                  Italy              2       6453
## 4047 2020-04-13               Djibouti              3        111
## 4048 2020-03-13            South Korea              3        220
## 4049 2020-04-11             Cabo Verde              2          1
## 4050 2020-03-24              Mauritius              1         14
## 4051 2020-03-24               Bulgaria              1         33
## 4052 2020-04-11                   Mali              1         28
## 4053 2020-04-24                Jamaica              1         31
## 4054 2020-04-19              Guatemala              2         44
## 4055 2020-04-22            South Korea              3         22
## 4056 2020-04-11                 Turkey              2       9885
## 4057 2020-03-22                  Syria              0          1
## 4058 2020-04-22                 Greece              2        163
## 4059 2020-04-24                Ukraine              1        954
## 4060 2020-04-22          United States              3      65490
## 4061 2020-03-24                Tunisia              1         39
## 4062 2020-04-26               Mongolia              1          3
## 4063 2020-03-29                 Mexico              0        276
## 4064 2020-04-12                  Japan              1       2144
## 4065 2020-03-26                 Brazil              1        663
## 4066 2020-03-17            Afghanistan              1          6
## 4067 2020-03-30                  Chile              2        540
## 4068 2020-04-19                 France              1       7471
## 4069 2020-04-10               Ethiopia              1         10
## 4070 2020-04-22                Estonia              2         24
## 4071 2020-03-25                Bahrain              2         78
## 4072 2020-03-19                Algeria              0         25
## 4073 2020-03-11               Paraguay              1          8
## 4074 2020-03-18               Colombia              2         36
## 4075 2020-03-11           Saudi Arabia              2          6
## 4076 2020-02-27                  Italy              2        280
## 4077 2020-04-15                  Chile              2        748
## 4078 2020-03-29               Malaysia              1        309
## 4079 2020-03-19            Netherlands              1        755
## 4080 2020-03-23                 Cyprus              1         32
## 4081 2020-04-12                 Norway              1        192
## 4082 2020-03-26               Eswatini              1          2
## 4083 2020-04-23             Azerbaijan              2         68
## 4084 2020-04-25                Estonia              2         43
## 4085 2020-04-20             Azerbaijan              2         63
## 4086 2020-04-30                  Benin              2          5
## 4087 2020-03-23                Romania              0        209
## 4088 2020-03-31                  Niger              1         10
## 4089 2020-04-10                  Qatar              1        302
## 4090 2020-03-20                Austria              1        925
## 4091 2020-04-14                Vietnam              3          4
## 4092 2020-03-17                  Egypt              1         62
## 4093 2020-04-10      Brunei Darussalam              2          1
## 4094 2020-04-11                Tunisia              1         42
## 4095 2020-04-24                 Sweden              1       1563
## 4096 2020-04-20             Luxembourg              1         21
## 4097 2020-04-22                 Israel              1        785
## 4098 2020-04-10                  India              3       1551
## 4099 2020-03-19                Austria              1        681
## 4100 2020-03-15                Algeria              0         22
## 4101 2020-03-14                 Kuwait              2         44
## 4102 2020-03-12              Australia              1         14
## 4103 2020-04-17                Albania              1         45
## 4104 2020-03-18               Honduras              2          2
## 4105 2020-01-25                 France              0          4
## 4106 2020-04-20                Jamaica              1         73
## 4107 2020-04-18              Palestine              1         19
## 4108 2020-04-15                   Guam              2          1
## 4109 2020-04-14                Andorra              1         21
## 4110 2020-03-27             Mozambique              1          2
## 4111 2020-03-24    Trinidad and Tobago              2          7
## 4112 2020-03-12                 Serbia              1         20
## 4113 2020-03-21      Brunei Darussalam              2         10
## 4114 2020-04-15                 Rwanda              3          9
## 4115 2020-05-10                   Chad              1         62
## 4116 2020-05-12               Thailand              2          2
## 4117 2020-04-28           Saudi Arabia              2       2555
## 4118 2020-03-26                Belgium              1       2497
## 4119 2020-02-19                  Japan              1         17
## 4120 2020-04-15                   Oman              3        194
## 4121 2020-04-25                Bolivia              0        163
## 4122 2020-04-17                Austria              2        197
## 4123 2020-03-14         United Kingdom              1        459
## 4124 2020-04-19                 Turkey              2       7760
## 4125 2020-03-14      Brunei Darussalam              2         15
## 4126 2020-04-18                 Turkey              2       8136
## 4127 2020-04-23              Indonesia              1        640
## 4128 2020-04-25              Palestine              1          6
## 4129 2020-04-22   United Arab Emirates              3        973
## 4130 2020-03-18                 Sweden              1        135
## 4131 2020-03-28                   Iraq              2        124
## 4132 2020-04-23                   Mali              1         51
## 4133 2020-04-11                  Niger              1         81
## 4134 2020-03-26               Djibouti              3          9
## 4135 2020-04-27                Croatia              2         23
## 4136 2020-04-16                Belgium              1       2856
## 4137 2020-04-12                Ireland              1       1566
## 4138 2020-03-18             Uzbekistan              1         13
## 4139 2020-04-13                Andorra              1         24
## 4140 2020-03-20                   Cuba              2         10
## 4141 2020-03-30              Singapore              2         76
## 4142 2020-03-24            Switzerland              1       2126
## 4143 2020-04-28                Liberia              1         26
## 4144 2020-04-12              Sri Lanka              2         14
## 4145 2020-03-22            Philippines              2        223
## 4146 2020-04-14                  Sudan              2         13
## 4147 2020-01-29                  China              1       1466
## 4148 2020-03-26   United Arab Emirates              1         85
## 4149 2020-04-30             Cabo Verde              2          7
## 4150 2020-03-15            Philippines              2         76
## 4151 2020-04-29            Netherlands              1        557
## 4152 2020-04-14               Ethiopia              1         11
## 4153 2020-04-30                 Guyana              1          7
## 4154 2020-03-28                Ireland              1        596
## 4155 2020-04-14                Belgium              1       1062
## 4156 2020-03-27                  Ghana              3         69
## 4157 2020-04-12         Czech Republic              2        330
## 4158 2020-04-23                   Oman              3        208
## 4159 2020-03-19             Seychelles              2          4
## 4160 2020-03-15                  Qatar              1         81
## 4161 2020-04-23               Tanzania              0         31
## 4162 2020-03-29                  Qatar              1         72
## 4163 2020-03-15                Hungary              1          8
## 4164 2020-03-15                Lebanon              1         44
## 4165 2020-03-25             Madagascar              1          4
## 4166 2020-03-14                Vietnam              2         15
## 4167 2020-04-10         Czech Republic              2        420
## 4168 2020-03-28   United Arab Emirates              1        135
## 4169 2020-03-23              Australia              1        611
## 4170 2020-03-17             Uzbekistan              1          6
## 4171 2020-03-24                Moldova              1         31
## 4172 2020-04-29                Romania              3        639
## 4173 2020-03-24               Ethiopia              1          1
## 4174 2020-03-27                Vietnam              2         20
## 4175 2020-03-29            Puerto Rico              1         36
## 4176 2020-04-29            Puerto Rico              1         11
## 4177 2020-04-13             Kazakhstan              1        221
## 4178 2020-03-13                  Egypt              1         33
## 4179 2020-03-26             Mozambique              1          6
## 4180 2020-04-10                  Yemen              0          2
## 4181 2020-03-29                 Russia              1        498
## 4182 2020-03-13                Austria              1        317
## 4183 2020-04-26                 Guyana              1          2
## 4184 2020-04-11               Ethiopia              1         13
## 4185 2020-04-12                 Turkey              2       9927
## 4186 2020-04-12                 Sweden              1        798
## 4187 2020-02-25                  Spain              1          5
## 4188 2020-03-31                Burundi              1          2
## 4189 2020-02-21            South Korea              3        175
## 4190 2020-04-28                   Cuba              2         68
## 4191 2020-05-11                   Oman              2        349
## 4192 2020-04-15                Belgium              1       4016
## 4193 2020-04-14               DR Congo              1          7
## 4194 2020-03-11             Azerbaijan              2          2
## 4195 2020-03-23             Azerbaijan              2         19
## 4196 2020-03-23               Slovakia              1          8
## 4197 2020-04-27                   Iran              0       2144
## 4198 2020-03-30              Indonesia              1        259
## 4199 2020-04-20            Philippines              2        372
## 4200 2020-04-29                  Kenya              1         21
## 4201 2020-04-19                Algeria              0        212
## 4202 2020-04-16               DR Congo              1         26
## 4203 2020-02-28                Romania              0          2
## 4204 2020-04-29                 Poland              1        738
## 4205 2020-04-17               Mongolia              1          1
## 4206 2020-04-19           Burkina Faso              1         19
## 4207 2020-04-12                Tunisia              1         36
## 4208 2020-02-20                   Iran              0          5
## 4209 2020-03-30                  Egypt              1         87
## 4210 2020-04-30                   Peru              2       5786
## 4211 2020-03-20                  Niger              1          1
## 4212 2020-01-30               Malaysia              1          1
## 4213 2020-03-10                Austria              1         80
## 4214 2020-03-30         Czech Republic              2        350
## 4215 2020-04-17             Uzbekistan              1        134
## 4216 2020-03-20                Romania              0         48
## 4217 2020-03-26                 Turkey              2       1757
## 4218 2020-04-16         Czech Republic              2        379
## 4219 2020-03-13               Malaysia              1         57
## 4220 2020-04-13                Estonia              2         28
## 4221 2020-04-24             Costa Rica              2          7
## 4222 2020-03-14           Saudi Arabia              2         41
## 4223 2020-03-17                Lebanon              1         31
## 4224 2020-05-11                 Jordan              2         40
## 4225 2020-04-17               Thailand              1         56
## 4226 2020-04-27                 Poland              1        629
## 4227 2020-04-30                 Mexico              1       2472
## 4228 2020-03-13                 Serbia              1         22
## 4229 2020-04-12                 Uganda              1          1
## 4230 2020-02-26            Switzerland              2          1
## 4231 2020-03-31           South Africa              2         73
## 4232 2020-03-25               Dominica              2          6
## 4233 2020-03-16                Andorra              1          4
## 4234 2020-04-12             Bangladesh              2        197
## 4235 2020-03-28               Portugal              2       1626
## 4236 2020-03-22                Bolivia              0          6
## 4237 2020-04-27                Albania              2         24
## 4238 2020-02-28                 Sweden              1          5
## 4239 2020-04-20                 Greece              2         38
## 4240 2020-04-23               Portugal              3        974
## 4241 2020-04-10               Honduras              1         78
## 4242 2020-03-21              Nicaragua              1          2
## 4243 2020-04-11               Zimbabwe              0          1
## 4244 2020-03-22               Portugal              1        580
## 4245 2020-04-17                  Niger              1         68
## 4246 2020-03-23              Guatemala              1          3
## 4247 2020-04-30         Czech Republic              2        178
## 4248 2020-04-20                 Brazil              1       4144
## 4249 2020-04-10                  Japan              1       1273
## 4250 2020-04-20                 Mexico              1       1275
## 4251 2020-03-30                 Norway              1        418
## 4252 2020-04-15               DR Congo              1         32
## 4253 2020-04-12                 Jordan              2         17
## 4254 2020-02-26                 France              0          6
## 4255 2020-04-11              Palestine              1          4
## 4256 2020-03-30                Austria              2       1352
## 4257 2020-03-13             Costa Rica              2          2
## 4258 2020-04-17                   Mali              1         23
## 4259 2020-04-12                Hungary              1        200
## 4260 2020-04-26                Lebanon              1         11
## 4261 2020-03-21                Albania              1          6
## 4262 2020-03-24                  Aruba              1          8
## 4263 2020-04-24                   Cuba              2         96
## 4264 2020-03-29                Tunisia              1         34
## 4265 2020-04-25               Paraguay              2          8
## 4266 2020-03-12             Luxembourg              1         12
## 4267 2020-04-20            Afghanistan              1        118
## 4268 2020-02-29          United States              1         14
## 4269 2020-03-20                 Brazil              1        365
## 4270 2020-04-26                Hungary              1        114
## 4271 2020-04-16                 Russia              3       6836
## 4272 2020-04-30                Moldova              1        259
## 4273 2020-04-13                Austria              2        226
## 4274 2020-04-29                 Brazil              1      11835
## 4275 2020-05-10                  Benin              2         77
## 4276 2020-03-24                  Sudan              2          1
## 4277 2020-03-10           South Africa              1          8
## 4278 2020-04-21                  Qatar              1       1085
## 4279 2020-04-16                Iceland              3         19
## 4280 2020-04-19            Philippines              2        381
## 4281 2020-04-13               Zimbabwe              0          3
## 4282 2020-02-11                Vietnam              2          2
## 4283 2020-04-25                  India              3       3182
## 4284 2020-04-15                Moldova              1        337
## 4285 2020-03-29                 Greece              0        190
## 4286 2020-03-12   United Arab Emirates              1         11
## 4287 2020-04-14              Guatemala              2         22
## 4288 2020-04-10                Austria              2        590
## 4289 2020-02-28                   Iraq              2          1
## 4290 2020-03-21                  Chile              0        195
## 4291 2020-03-29              Sri Lanka              1         13
## 4292 2020-03-22                 Russia              1        114
## 4293 2020-03-24            Netherlands              1       1356
## 4294 2020-04-25               Honduras              1        108
## 4295 2020-04-28            El Salvador              1         47
## 4296 2020-04-24               Bulgaria              1        210
## 4297 2020-02-27               Pakistan              1          2
## 4298 2020-04-29                 Zambia              1          8
## 4299 2020-04-10                 Mexico              1        663
## 4300 2020-03-14            South Korea              3        214
## 4301 2020-04-25               Eswatini              3         28
## 4302 2020-03-16         Czech Republic              1        129
## 4303 2020-03-26             Cabo Verde              2          1
## 4304 2020-04-30           Burkina Faso              1          7
## 4305 2020-02-27                 Israel              1          1
## 4306 2020-03-28                 Brazil              1        989
## 4307 2020-03-31               Djibouti              3         19
## 4308 2020-02-28            New Zealand              1          2
## 4309 2020-01-30                  India              1          2
## 4310 2020-04-11                 Belize              1          4
## 4311 2020-04-20                  Egypt              1        301
## 4312 2020-04-23                 Greece              2         62
## 4313 2020-04-18                Austria              2        231
## 4314 2020-03-22                Moldova              1         28
## 4315 2020-04-30                  India              3       3519
## 4316 2020-04-14                Ecuador              3        137
## 4317 2020-04-16           Burkina Faso              1         18
## 4318 2020-04-23                 Jordan              2          5
## 4319 2020-04-25             Costa Rica              2          6
## 4320 2020-02-13                  China              1      15141
## 4321 2020-04-17                Somalia              1         36
## 4322 2020-04-19               Tanzania              0         24
## 4323 2020-04-22              Mauritius              1          1
## 4324 2020-05-11                  Italy              2       1546
## 4325 2020-04-30                  Chile              2       1658
## 4326 2020-03-19                  Qatar              1         18
## 4327 2020-03-23               Barbados              2          6
## 4328 2020-03-31                  Japan              1        174
## 4329 2020-03-29         Czech Republic              2        570
## 4330 2020-03-20             Cabo Verde              2          1
## 4331 2020-03-15                Vietnam              2          3
## 4332 2020-04-10                Somalia              1         13
## 4333 2020-02-25                  Italy              1        190
## 4334 2020-04-18               Colombia              2        206
## 4335 2020-03-27             Luxembourg              1        272
## 4336 2020-04-20                Morocco              2        361
## 4337 2020-04-27                   Guam              2          1
## 4338 2020-04-28          United States              3      47066
## 4339 2020-03-22             Luxembourg              1        314
## 4340 2020-03-27                 Norway              1        626
## 4341 2020-03-27                Estonia              1        171
## 4342 2020-05-10                  Qatar              1       2319
## 4343 2020-04-15                Vietnam              3          2
## 4344 2020-02-13                  Japan              1          4
## 4345 2020-03-25                   Iran              0       3968
## 4346 2020-03-14                Albania              1         15
## 4347 2020-04-15                Ukraine              1        662
## 4348 2020-04-13                Uruguay              1         15
## 4349 2020-05-11               Thailand              2         17
## 4350 2020-04-20                 France              1       3165
## 4351 2020-03-27               DR Congo              1          9
## 4352 2020-03-24             Uzbekistan              1          7
## 4353 2020-03-25             Azerbaijan              2         21
## 4354 2020-04-13                 Uganda              1          1
## 4355 2020-04-26                Andorra              3          2
## 4356 2020-04-11               Malaysia              3        302
## 4357 2020-03-19              Nicaragua              1          2
## 4358 2020-03-17            Netherlands              1        570
## 4359 2020-04-18                   Guam              2          1
## 4360 2020-03-19                 Mexico              0         71
## 4361 2020-04-18                 Malawi              1          1
## 4362 2020-03-24                Germany              1       8368
## 4363 2020-04-11                Iceland              3         41
## 4364 2020-04-14                 Belize              1          4
## 4365 2020-02-29                Lebanon              1          2
## 4366 2020-04-13              Mauritius              1          5
## 4367 2020-04-30                 Canada              3       1572
## 4368 2020-04-28              Palestine              1          1
## 4369 2020-04-11                Croatia              2        127
## 4370 2020-04-12          Cote d'Ivoire              2         94
## 4371 2020-03-17             Seychelles              2          2
## 4372 2020-03-21            Netherlands              1       1171
## 4373 2020-03-10              Singapore              2         20
## 4374 2020-04-16     Dominican Republic              2        469
## 4375 2020-04-18               Honduras              1         30
## 4376 2020-04-16    Trinidad and Tobago              2          1
## 4377 2020-04-16                Romania              3        828
## 4378 2020-03-20              Greenland              3          2
## 4379 2020-03-30             Uzbekistan              1         17
## 4380 2020-03-17                Nigeria              1          1
## 4381 2020-04-13               Honduras              1          8
## 4382 2020-04-24 Bosnia and Herzegovina              2         54
## 4383 2020-04-19              Indonesia              1        652
## 4384 2020-04-11                Uruguay              1         20
## 4385 2020-03-10                Finland              1         20
## 4386 2020-04-30                   Cuba              2         64
## 4387 2020-03-18               Cameroon              0          6
## 4388 2020-03-12                Moldova              1          1
## 4389 2020-04-18      Brunei Darussalam              2          1
## 4390 2020-03-10 Bosnia and Herzegovina              2          2
## 4391 2020-03-17          United States              3       2668
## 4392 2020-03-21                 Panama              2        126
## 4393 2020-03-23                Belgium              1        828
## 4394 2020-04-13                  Ghana              3        158
## 4395 2020-03-23                 Uganda              1          8
## 4396 2020-03-26                  Niger              1          3
## 4397 2020-03-21                 Mexico              0         87
## 4398 2020-03-12                Hungary              1          1
## 4399 2020-03-19            South Korea              3        304
## 4400 2020-04-16                   Iran              0       3118
## 4401 2020-02-12               Thailand              0          1
## 4402 2020-03-15                   Oman              2          3
## 4403 2020-04-22                Nigeria              1        325
## 4404 2020-03-26                  India              1        157
## 4405 2020-03-21           South Africa              1         93
## 4406 2020-03-28               Slovenia              2        107
## 4407 2020-03-21               DR Congo              1          5
## 4408 2020-04-15               Tanzania              0         42
## 4409 2020-04-11                  Gabon              2          4
## 4410 2020-04-15               Slovenia              2         36
## 4411 2020-03-27                   Iran              0       5315
## 4412 2020-02-24         United Kingdom              1          8
## 4413 2020-04-17            Netherlands              1       2296
## 4414 2020-03-27                Tunisia              1         30
## 4415 2020-04-13          Cote d'Ivoire              2         93
## 4416 2020-04-20         Congo Republic              1         34
## 4417 2020-03-15                   Iraq              2          6
## 4418 2020-03-18                Ukraine              1          9
## 4419 2020-04-23                 Brazil              1       6957
## 4420 2020-03-17               Paraguay              1          2
## 4421 2020-03-28                  India              1        249
## 4422 2020-04-25              Guatemala              2         89
## 4423 2020-02-18            South Korea              3          2
## 4424 2020-03-26              Venezuela              1         31
## 4425 2020-03-14         Czech Republic              1         82
## 4426 2020-04-19                  Italy              2       6538
## 4427 2020-04-25                  Gabon              2          9
## 4428 2020-04-19            El Salvador              1         24
## 4429 2020-04-19                  Egypt              1        300
## 4430 2020-04-28                Uruguay              1         19
## 4431 2020-04-21                  Italy              2       4985
## 4432 2020-03-25                 Brazil              1        617
## 4433 2020-04-21              Indonesia              1        560
## 4434 2020-04-21                 Rwanda              3          3
## 4435 2020-04-13                  China              3        112
## 4436 2020-04-19                Morocco              2        291
## 4437 2020-03-31             Costa Rica              2         33
## 4438 2020-03-13                Belgium              1        495
## 4439 2020-03-16                Germany              1       2520
## 4440 2020-04-30               Malaysia              3        151
## 4441 2020-04-17                  Qatar              1        952
## 4442 2020-04-22                  Italy              2       6099
## 4443 2020-04-17                Lebanon              1         10
## 4444 2020-04-18              Indonesia              1        732
## 4445 2020-04-28            South Sudan              2         28
## 4446 2020-02-11   United Arab Emirates              0          1
## 4447 2020-04-24               Ethiopia              1          1
## 4448 2020-04-16                Morocco              2        395
## 4449 2020-04-28            Afghanistan              1        297
## 4450 2020-04-17                  India              3       1929
## 4451 2020-04-23               Barbados              2          2
## 4452 2020-04-24                   Oman              2        176
## 4453 2020-03-18                 Jordan              2         37
## 4454 2020-03-30                Iceland              3        123
## 4455 2020-03-19                 Israel              1        129
## 4456 2020-03-13                Tunisia              1         15
## 4457 2020-04-12            South Korea              3         94
## 4458 2020-03-25                Iceland              3        149
## 4459 2020-04-14               Slovakia              1         93
## 4460 2020-03-20               Colombia              2         52
## 4461 2020-03-30                  India              1        319
## 4462 2020-03-22              Sri Lanka              1         17
## 4463 2020-03-18                 Russia              1         54
## 4464 2020-04-11                 Cyprus              3         52
## 4465 2020-04-10                Lebanon              1         34
## 4466 2020-04-29               Tanzania              0        187
## 4467 2020-04-20               Honduras              1         10
## 4468 2020-04-27                Ireland              1       1087
## 4469 2020-04-19                Nigeria              1        134
## 4470 2020-04-28                 Mexico              1       2075
## 4471 2020-01-26          United States              0          3
## 4472 2020-03-24                Belgium              1       1855
## 4473 2020-04-22                 Angola              2          1
## 4474 2020-04-28               Barbados              2          1
## 4475 2020-03-14            Switzerland              1        487
## 4476 2020-04-17              Australia              1         39
## 4477 2020-04-21               Slovenia              2         14
## 4478 2020-03-31                  Spain              1      16112
## 4479 2020-03-27                  Qatar              1         25
## 4480 2020-04-26                Germany              1       2994
## 4481 2020-03-13            Switzerland              1        699
## 4482 2020-03-11                 Panama              2         13
## 4483 2020-04-22                  Qatar              1       1126
## 4484 2020-03-20                Ecuador              0        199
## 4485 2020-04-28         Czech Republic              2        104
## 4486 2020-03-16                Somalia              0          1
## 4487 2020-04-19                Romania              3        679
## 4488 2020-03-21              Sri Lanka              1         17
## 4489 2020-02-26                Romania              0          1
## 4490 2020-04-16            Switzerland              1        979
## 4491 2020-03-14                Algeria              0         12
## 4492 2020-04-12                   Chad              1          7
## 4493 2020-04-18            Puerto Rico              1         25
## 4494 2020-04-27            Puerto Rico              1         64
## 4495 2020-04-19          United States              3      58980
## 4496 2020-04-11     Dominican Republic              2        410
## 4497 2020-04-11              Australia              1         86
## 4498 2020-03-29   United Arab Emirates              1        165
## 4499 2020-03-23         United Kingdom              1       1632
## 4500 2020-03-24                Bahrain              2         20
## 4501 2020-04-10   United Arab Emirates              1        701
## 4502 2020-04-21            Puerto Rico              1         39
## 4503 2020-04-27               Bulgaria              1        116
## 4504 2020-04-15                 Panama              2        204
## 4505 2020-04-30             Luxembourg              1         43
## 4506 2020-04-18         United Kingdom              1      11124
## 4507 2020-05-10                   Oman              2        287
## 4508 2020-03-29          Cote d'Ivoire              2        103
## 4509 2020-03-18                Estonia              1         53
## 4510 2020-04-19                Finland              1        294
## 4511 2020-04-19                Andorra              3         17
## 4512 2020-04-30           Saudi Arabia              2       2676
## 4513 2020-03-13                 Kuwait              2          8
## 4514 2020-04-18               Thailand              1         33
## 4515 2020-03-24             Madagascar              1         19
## 4516 2020-03-15 Bosnia and Herzegovina              2          6
## 4517 2020-04-11                Liberia              1         17
## 4518 2020-04-16             Cabo Verde              2         44
## 4519 2020-04-18                 Poland              1        824
## 4520 2020-04-28                Morocco              2        187
## 4521 2020-03-19              Palestine              1          6
## 4522 2020-04-11             Mozambique              1          3
## 4523 2020-03-14                Lebanon              1         16
## 4524 2020-04-12                 Rwanda              3          8
## 4525 2020-04-25                 Turkey              2       5983
## 4526 2020-04-11                Somalia              1          9
## 4527 2020-03-31        Kyrgyz Republic              1         13
## 4528 2020-03-22                Ireland              2        223
## 4529 2020-04-13           Saudi Arabia              2        901
## 4530 2020-03-26                  China              2        102
## 4531 2020-04-23                  Italy              2       6016
## 4532 2020-03-29                Albania              1         26
## 4533 2020-03-28                   Peru              1         91
## 4534 2020-04-20                 Kuwait              2        243
## 4535 2020-04-24                 Rwanda              3         23
## 4536 2020-04-27                Bermuda              1         10
## 4537 2020-04-25                   Mali              1         61
## 4538 2020-03-30    Trinidad and Tobago              2          8
## 4539 2020-04-24                Finland              1        266
## 4540 2020-04-17                   Oman              3        159
## 4541 2020-03-14                  China              2         19
## 4542 2020-03-30                  Spain              1      13659
## 4543 2020-03-29              Australia              1        431
## 4544 2020-04-12             Uzbekistan              1        270
## 4545 2020-04-26                 Poland              1        725
## 4546 2020-03-12                Iceland              2         33
## 4547 2020-03-19               Slovakia              1         28
## 4548 2020-04-16                  India              3       2050
## 4549 2020-04-24              Guatemala              2         88
## 4550 2020-03-30             Seychelles              2          1
## 4551 2020-04-11                 Norway              1        179
## 4552 2020-04-28                Bahrain              2        164
## 4553 2020-04-15                Somalia              1         55
## 4554 2020-04-25               Portugal              3       1513
## 4555 2020-03-13                  Chile              0         30
## 4556 2020-04-24                 France              1       3263
## 4557 2020-03-31                Bermuda              1          5
## 4558 2020-04-26             Bangladesh              2        727
## 4559 2020-03-24                   Laos              1          2
## 4560 2020-03-13                 Canada              2         35
## 4561 2020-04-16               Thailand              1         58
## 4562 2020-04-25             Madagascar              1          2
## 4563 2020-04-10            New Zealand              2         67
## 4564 2020-04-22                 Serbia              1        514
## 4565 2020-04-22         United Kingdom              1       8752
## 4566 2020-03-28                 Turkey              2       3773
## 4567 2020-03-18                Denmark              1        172
## 4568 2020-03-27                Croatia              1        168
## 4569 2020-04-25         United Kingdom              1      10299
## 4570 2020-03-24             Costa Rica              2         43
## 4571 2020-03-15                Belgium              1        376
## 4572 2020-03-10                   Iraq              2         11
## 4573 2020-03-15               Slovakia              1         24
## 4574 2020-03-13              Indonesia              1         35
## 4575 2020-04-10                  Egypt              1        234
## 4576 2020-04-21                  China              3         32
## 4577 2020-03-27    Trinidad and Tobago              2          6
## 4578 2020-03-26                 Serbia              1         54
## 4579 2020-04-11                   Iran              0       3809
## 4580 2020-04-28                Myanmar              2          4
## 4581 2020-03-16           Burkina Faso              1         12
## 4582 2020-04-25                  Sudan              2         51
## 4583 2020-04-21                 Poland              1        569
## 4584 2020-04-24                 Kuwait              2        366
## 4585 2020-03-19             Bangladesh              2          5
## 4586 2020-04-28                 Rwanda              3         21
## 4587 2020-03-25                Estonia              1         52
## 4588 2020-05-10             Costa Rica              1         19
## 4589 2020-03-31                  Ghana              3          9
## 4590 2020-04-25              Indonesia              1        832
## 4591 2020-03-20              Guatemala              1          4
## 4592 2020-04-22             San Marino              2         26
## 4593 2020-04-16               Barbados              2          4
## 4594 2020-03-24                Ecuador              0        293
## 4595 2020-03-20                Ireland              2        317
## 4596 2020-04-27                 France              1       4203
## 4597 2020-04-26              Mauritius              1          1
## 4598 2020-04-11                  China              3         79
## 4599 2020-03-20                   Guam              0          9
## 4600 2020-04-26                 France              1       2092
## 4601 2020-03-23            Netherlands              1       1118
## 4602 2020-04-21              Australia              1         13
## 4603 2020-03-30               Slovakia              1         63
## 4604 2020-03-31               Tanzania              0          5
## 4605 2020-02-27             San Marino              1          1
## 4606 2020-04-16                Bahrain              2        174
## 4607 2020-03-16               Cameroon              0          3
## 4608 2020-04-11                 Jordan              2          9
## 4609 2020-03-26                  Qatar              1         23
## 4610 2020-03-13                Vietnam              2         13
## 4611 2020-04-30         Congo Republic              1         26
## 4612 2020-04-28                  Qatar              1       1634
## 4613 2020-04-26             Mozambique              1         11
## 4614 2020-03-23                 Kuwait              2         13
## 4615 2020-01-20            South Korea              0          1
## 4616 2020-03-21                Vietnam              2          4
## 4617 2020-04-30                Finland              1        255
## 4618 2020-04-17                   Cuba              2        109
## 4619 2020-04-30                  Japan              3        429
## 4620 2020-04-22       Papua New Guinea              2          1
## 4621 2020-04-18              Mauritius              1          1
## 4622 2020-04-22                   Mali              1         47
## 4623 2020-03-26         Czech Republic              1        531
## 4624 2020-03-29                 Canada              3        711
## 4625 2020-04-26 Bosnia and Herzegovina              2         95
## 4626 2020-04-23               Djibouti              3         41
## 4627 2020-04-24               DR Congo              1         34
## 4628 2020-04-27                 Serbia              1        496
## 4629 2020-03-10                Ecuador              0          1
## 4630 2020-03-16   United Arab Emirates              1          1
## 4631 2020-04-18                   Oman              3        161
## 4632 2020-03-23             San Marino              1         12
## 4633 2020-04-15               Slovakia              1         94
## 4634 2020-04-27              Australia              1         10
## 4635 2020-03-30                Morocco              2        198
## 4636 2020-04-10                Bolivia              0          8
## 4637 2020-04-11                   Peru              2       1592
## 4638 2020-04-29             Bangladesh              2       1190
## 4639 2020-04-12                Nigeria              1         18
## 4640 2020-03-19 Bosnia and Herzegovina              2         40
## 4641 2020-04-29                 Mexico              1       2270
## 4642 2020-04-17           Sierra Leone              2         13
## 4643 2020-03-27                 Poland              1        338
## 4644 2020-04-24     Dominican Republic              2        449
## 4645 2020-04-30   United Arab Emirates              3       1101
## 4646 2020-04-10 Bosnia and Herzegovina              2        102
## 4647 2020-02-26                 Sweden              1          1
## 4648 2020-04-10               Colombia              2        419
## 4649 2020-04-10               Thailand              1        100
## 4650 2020-04-28              Australia              1         12
## 4651 2020-01-25               Malaysia              1          6
## 4652 2020-04-10                Hungary              1        420
## 4653 2020-03-21             Kazakhstan              1          8
## 4654 2020-04-25                  Ghana              3        125
## 4655 2020-04-15                 Uganda              1          1
## 4656 2020-04-11              Sri Lanka              2         15
## 4657 2020-03-27                Bahrain              2         47
## 4658 2020-01-31                 France              0          1
## 4659 2020-03-29             Uzbekistan              1         69
## 4660 2020-04-13         Czech Republic              2        157
## 4661 2020-04-14                Bahrain              2        392
## 4662 2020-03-13                Hungary              1          9
## 4663 2020-03-19                Belgium              1        843
## 4664 2020-04-12           Burkina Faso              1         49
## 4665 2020-04-28                 Serbia              1        455
## 4666 2020-03-20        Kyrgyz Republic              1          6
## 4667 2020-04-22                  Niger              1          5
## 4668 2020-04-27              Indonesia              1        489
## 4669 2020-04-21                Ukraine              1        830
## 4670 2020-03-26      Brunei Darussalam              2          8
## 4671 2020-04-24              Venezuela              1         17
## 4672 2020-03-16                  Japan              1         34
## 4673 2020-04-16                Uruguay              1         19
## 4674 2020-04-17              Sri Lanka              2          7
## 4675 2020-04-10             Bangladesh              2        206
## 4676 2020-04-10                Iceland              3         59
## 4677 2020-01-29                Finland              0          1
## 4678 2020-03-24                 France              1       6286
## 4679 2020-03-29                 Serbia              1        284
## 4680 2020-03-25                   Cuba              2         17
## 4681 2020-03-18            Netherlands              1        638
## 4682 2020-03-14                  Qatar              1         75
## 4683 2020-03-22                Croatia              1        128
## 4684 2020-04-22              Nicaragua              1          1
## 4685 2020-04-18                Denmark              1        363
## 4686 2020-02-23   United Arab Emirates              0          2
## 4687 2020-04-18                  Chile              2        923
## 4688 2020-02-22                Lebanon              1          1
## 4689 2020-05-10               Djibouti              3         75
## 4690 2020-01-29              Singapore              2          2
## 4691 2020-04-19                Ukraine              1        686
## 4692 2020-04-19               Slovakia              1        112
## 4693 2020-03-22   United Arab Emirates              1         13
## 4694 2020-02-29                Ireland              2          1
## 4695 2020-03-29           South Africa              2        110
## 4696 2020-04-19                   Iraq              2         26
## 4697 2020-04-17                 Turkey              2       9154
## 4698 2020-03-28               Mongolia              1          1
## 4699 2020-03-31                  Italy              2       8103
## 4700 2020-04-16                 Poland              1        716
## 4701 2020-03-28                 Canada              3        657
## 4702 2020-03-13                  Aruba              1          2
## 4703 2020-04-21               Honduras              1         34
## 4704 2020-03-27                Uruguay              1         57
## 4705 2020-04-29                   Chad              1          6
## 4706 2020-03-28                 Sweden              1        618
## 4707 2020-04-18                Morocco              2        402
## 4708 2020-04-14                 Poland              1        528
## 4709 2020-02-12         United Kingdom              1          1
## 4710 2020-03-24                Croatia              1        138
## 4711 2020-04-27                 Israel              1        212
## 4712 2020-03-19              Sri Lanka              1          9
## 4713 2020-03-30            Afghanistan              1         58
## 4714 2020-03-31                 Kuwait              2         34
## 4715 2020-01-30                Finland              0          1
## 4716 2020-04-13                  India              3       2044
## 4717 2020-04-11                  Aruba              1          4
## 4718 2020-05-11              Sri Lanka              2         22
## 4719 2020-04-24             Mozambique              1         24
## 4720 2020-03-20         Czech Republic              1        311
## 4721 2020-03-26                   Cuba              2         19
## 4722 2020-03-11          Cote d'Ivoire              0          1
## 4723 2020-04-15             Luxembourg              1         81
## 4724 2020-04-14                Jamaica              1          1
## 4725 2020-04-28             Cabo Verde              2          8
## 4726 2020-03-17              Argentina              1         21
## 4727 2020-03-20                Ukraine              1         20
## 4728 2020-04-14                Bolivia              0         48
## 4729 2020-05-10                Albania              2         18
## 4730 2020-02-16            South Korea              3          2
## 4731 2020-04-13                 Panama              2        332
## 4732 2020-03-25             Bangladesh              2          6
## 4733 2020-03-23                 Greece              0        165
## 4734 2020-03-23                   Iran              0       2439
## 4735 2020-04-15           Saudi Arabia              2        928
## 4736 2020-03-11             Luxembourg              2          4
## 4737 2020-04-27                 Mexico              1       1687
## 4738 2020-03-22                 Mexico              0        113
## 4739 2020-03-15                 Jordan              2          7
## 4740 2020-04-28                Somalia              1         92
## 4741 2020-03-26                 Cyprus              1         22
## 4742 2020-01-31                Vietnam              1          3
## 4743 2020-04-12                 France              1      29957
## 4744 2020-03-22              Singapore              2         70
## 4745 2020-03-25                  Chile              0        396
## 4746 2020-04-16              Argentina              1        128
## 4747 2020-03-20               Portugal              1        378
## 4748 2020-02-22              Singapore              2          1
## 4749 2020-04-12            Netherlands              1       2490
## 4750 2020-03-27          United States              3      34971
## 4751 2020-03-17             San Marino              1          4
## 4752 2020-03-10      Brunei Darussalam              2          1
## 4753 2020-04-16                 Zambia              1          3
## 4754 2020-04-25           Burkina Faso              1         10
## 4755 2020-04-29                Hungary              1        156
## 4756 2020-04-26          United States              3      76217
## 4757 2020-04-22                Andorra              3          6
## 4758 2020-03-27               Eswatini              1          5
## 4759 2020-04-20                 Israel              1        448
## 4760 2020-03-19                Jamaica              1          4
## 4761 2020-03-10                Germany              1        518
## 4762 2020-04-27            Afghanistan              1        240
## 4763 2020-04-29               Cameroon              2        312
## 4764 2020-03-31             Uzbekistan              1         27
## 4765 2020-03-25            Netherlands              1       1663
## 4766 2020-04-18                 Israel              1        507
## 4767 2020-03-16                Morocco              2         11
## 4768 2020-04-23                 Poland              1        655
## 4769 2020-03-18             San Marino              1         12
## 4770 2020-03-19                 Poland              0        153
## 4771 2020-03-12              Palestine              1          1
## 4772 2020-03-31 Bosnia and Herzegovina              2         82
## 4773 2020-04-15                Lebanon              1         26
## 4774 2020-04-21                   Mali              1         34
## 4775 2020-03-29                 Turkey              2       3519
## 4776 2020-04-11               Djibouti              3         47
## 4777 2020-03-30                Hungary              1         78
## 4778 2020-04-29             Luxembourg              1         40
## 4779 2020-03-29                Iceland              3        130
## 4780 2020-04-21                   Iran              0       2591
## 4781 2020-03-31                 Turkey              2       4314
## 4782 2020-01-28               Thailand              0         12
## 4783 2020-01-27                  China              1        787
## 4784 2020-04-16             Madagascar              1          3
## 4785 2020-03-14           South Africa              1         21
## 4786 2020-03-31                   Mali              1          3
## 4787 2020-03-20           Burkina Faso              1         14
## 4788 2020-04-29                 Turkey              2       5328
## 4789 2020-03-13                Estonia              1         74
## 4790 2020-04-17            New Zealand              2         10
## 4791 2020-03-22               Mongolia              1          4
## 4792 2020-04-26                   Peru              2       5869
## 4793 2020-03-30                Moldova              1         67
## 4794 2020-01-28                  China              1       1753
## 4795 2020-04-21                 Serbia              1        572
## 4796 2020-03-18         Czech Republic              1        158
## 4797 2020-04-14             Uzbekistan              1        300
## 4798 2020-04-16            El Salvador              1          5
## 4799 2020-03-29                  Libya              1          5
## 4800 2020-04-11                Nigeria              1         30
## 4801 2020-04-30                  Kenya              1         22
## 4802 2020-03-25                 Belize              1          1
## 4803 2020-02-26                Algeria              0          1
## 4804 2020-03-24                Austria              2       1664
## 4805 2020-04-22                   Oman              3        106
## 4806 2020-03-14                  India              1         28
## 4807 2020-04-23                  Sudan              2         67
## 4808 2020-05-10            South Korea              3         69
## 4809 2020-04-17               Malaysia              3        179
## 4810 2020-03-22                  Spain              1       8260
## 4811 2020-04-15                  Ghana              3         70
## 4812 2020-03-11              Argentina              1          9
## 4813 2020-04-24               Mongolia              1          2
## 4814 2020-04-16               Malaysia              3        195
## 4815 2020-03-13          United States              2        947
## 4816 2020-04-19            Afghanistan              1        126
## 4817 2020-04-14               Portugal              3        863
## 4818 2020-04-20               Thailand              1         59
## 4819 2020-03-28            El Salvador              1          6
## 4820 2020-03-17    Trinidad and Tobago              1          2
## 4821 2020-04-26                  Benin              2         10
## 4822 2020-03-18                Uruguay              1         50
## 4823 2020-02-29               Thailand              0          3
## 4824 2020-04-27               Honduras              1         68
## 4825 2020-03-14                 Serbia              1         28
## 4826 2020-03-22             Cabo Verde              2          1
## 4827 2020-03-14                  Chile              0         28
## 4828 2020-03-21         Czech Republic              1        372
## 4829 2020-03-12               Portugal              1         18
## 4830 2020-03-15                Denmark              1         60
## 4831 2020-04-19                 Sweden              1       1169
## 4832 2020-04-28              Singapore              2       1327
## 4833 2020-03-25               Barbados              2          1
## 4834 2020-05-11                  China              3         19
## 4835 2020-04-27                Lebanon              1          6
## 4836 2020-04-28                Nigeria              1        259
## 4837 2020-03-26          United States              3      31999
## 4838 2020-04-29     Dominican Republic              2        517
## 4839 2020-04-15             Cabo Verde              2         46
## 4840 2020-03-26                 Uganda              1          5
## 4841 2020-04-30              Nicaragua              1          2
## 4842 2020-02-29                  Japan              1         33
## 4843 2020-04-14               Eswatini              3          1
## 4844 2020-04-12                Vietnam              3          8
## 4845 2020-03-26                 Angola              1          1
## 4846 2020-03-28             Mozambique              1          1
## 4847 2020-04-30                 Jordan              2          4
## 4848 2020-04-26           Burkina Faso              1          6
## 4849 2020-04-19                  Spain              1       6235
## 4850 2020-03-14               Colombia              2         16
## 4851 2020-03-16             Luxembourg              1         57
## 4852 2020-04-16   United Arab Emirates              3        892
## 4853 2020-03-31                   Oman              2         25
## 4854 2020-04-22                   Cuba              2        102
## 4855 2020-04-16                   Oman              3        109
## 4856 2020-04-24             Cabo Verde              2         15
## 4857 2020-04-26                Denmark              2        365
## 4858 2020-02-29                   Iran              0        348
## 4859 2020-04-18            South Korea              3         36
## 4860 2020-03-18                   Peru              1         59
## 4861 2020-03-22                 Greece              0        129
## 4862 2020-03-15            Afghanistan              1          8
## 4863 2020-02-29            Switzerland              2         14
## 4864 2020-03-22                 Guyana              1         12
## 4865 2020-04-30               Eswatini              3         29
## 4866 2020-04-19                Bahrain              2        137
## 4867 2020-03-28                 Guyana              1          3
## 4868 2020-04-18            El Salvador              1         26
## 4869 2020-03-21                Uruguay              1         41
## 4870 2020-03-18            Philippines              2         60
## 4871 2020-04-12                 Brazil              1       2554
## 4872 2020-03-17                Algeria              0         16
## 4873 2020-04-27                Ecuador              3      12057
## 4874 2020-04-27               Barbados              2          1
## 4875 2020-04-16                Nigeria              1         69
## 4876 2020-03-24                 Brazil              1        668
## 4877 2020-04-14                Ukraine              1        595
## 4878 2020-03-25                  Italy              2      10459
## 4879 2020-03-19             Azerbaijan              2         22
## 4880 2020-03-12          United States              2        739
## 4881 2020-03-22                   Iraq              2         40
## 4882 2020-04-26                Liberia              1          7
## 4883 2020-04-27            El Salvador              1         25
## 4884 2020-04-22                  India              3       2674
## 4885 2020-04-25                Germany              1       3569
## 4886 2020-04-29          United States              3      51540
## 4887 2020-03-18            New Zealand              1         20
## 4888 2020-05-11                  Ghana              3        437
## 4889 2020-02-27                Germany              1         23
## 4890 2020-04-20                Andorra              3         13
## 4891 2020-03-22               Thailand              1        421
## 4892 2020-03-31     Dominican Republic              2        250
## 4893 2020-04-28                 Greece              2         60
## 4894 2020-03-22               Malaysia              1        276
## 4895 2020-04-21                 Guyana              1          2
## 4896 2020-03-20     Dominican Republic              0         38
## 4897 2020-04-20           South Africa              2        266
## 4898 2020-03-25               Portugal              1        935
## 4899 2020-04-20                  Niger              1          9
## 4900 2020-05-11                   Peru              2       3807
## 4901 2020-04-11                 Israel              1        775
## 4902 2020-04-14                 Sweden              1        962
## 4903 2020-04-13           Burkina Faso              1         13
## 4904 2020-03-23                 Jordan              2         30
## 4905 2020-03-28                 Norway              1        685
## 4906 2020-03-31                Ecuador              3        354
## 4907 2020-03-24                 Russia              1         57
## 4908 2020-03-26                Nigeria              1         21
## 4909 2020-04-27           South Africa              2        432
## 4910 2020-03-28                Uruguay              1         29
## 4911 2020-04-25                Hungary              1         60
## 4912 2020-03-17                Ireland              2        108
## 4913 2020-04-11             Costa Rica              2         38
## 4914 2020-03-25               DR Congo              1         22
## 4915 2020-04-28           Sierra Leone              2         17
## 4916 2020-02-22   United Arab Emirates              0          6
## 4917 2020-03-24              Greenland              3          2
## 4918 2020-03-25                  Niger              1          9
## 4919 2020-04-13             Bangladesh              2        321
## 4920 2020-04-12             San Marino              2         12
## 4921 2020-04-16                Ukraine              1       1186
## 4922 2020-04-30               Slovenia              2         21
## 4923 2020-04-21                Bolivia              0         68
## 4924 2020-04-16           South Africa              2        190
## 4925 2020-03-30                 Jordan              2         33
## 4926 2020-03-12                  Japan              1         51
## 4927 2020-04-15                Iceland              3         16
## 4928 2020-04-26                   Iran              0       2287
## 4929 2020-04-22               Botswana              1          2
## 4930 2020-04-11                Albania              1         24
## 4931 2020-03-20             Uzbekistan              1         10
## 4932 2020-03-24                 Serbia              1         88
## 4933 2020-04-15                 Brazil              1       4890
## 4934 2020-02-21          United States              0          3
## 4935 2020-03-25                  Syria              0          4
## 4936 2020-03-29                Ukraine              1        212
## 4937 2020-05-11              Indonesia              1        620
## 4938 2020-04-13               Pakistan              2        677
## 4939 2020-03-15               Colombia              2         30
## 4940 2020-04-17           South Africa              2        277
## 4941 2020-03-23                Croatia              1         90
## 4942 2020-04-22    Trinidad and Tobago              2          1
## 4943 2020-04-15                Denmark              1        363
## 4944 2020-03-24                Iceland              3         80
## 4945 2020-03-30                Myanmar              2          4
## 4946 2020-03-23                Bahrain              2         71
## 4947 2020-03-16                 Brazil              1        117
## 4948 2020-03-19                 Zambia              1          2
## 4949 2020-04-29                 Norway              1        122
## 4950 2020-03-19         United Kingdom              1        743
## 4951 2020-03-23   United Arab Emirates              1         45
## 4952 2020-03-23                 Belize              0          1
## 4953 2020-02-28                 Canada              1          2
## 4954 2020-04-27                 Turkey              2       4488
## 4955 2020-03-20                Hungary              1         24
## 4956 2020-03-18              Australia              1         79
## 4957 2020-03-18                  India              1         26
## 4958 2020-03-17               Honduras              2          4
## 4959 2020-03-14                 Canada              2         38
## 4960 2020-03-13                  Sudan              2          1
## 4961 2020-04-14                 Jordan              2          8
## 4962 2020-03-25               Thailand              1        214
## 4963 2020-03-30                 Sweden              1        581
## 4964 2020-03-23              Venezuela              1          7
## 4965 2020-04-20                 Cyprus              3         11
## 4966 2020-04-20                Nigeria              1        123
## 4967 2020-04-20               Botswana              1          5
## 4968 2020-04-26              Australia              1         16
## 4969 2020-03-13                 Cyprus              0          8
## 4970 2020-03-31                Algeria              0        205
## 4971 2020-03-10                   Iran              0       1476
## 4972 2020-03-20                Belgium              1       1175
## 4973 2020-03-26            Philippines              2        155
## 4974 2020-04-12                Finland              1        205
## 4975 2020-04-29            South Sudan              2         28
## 4976 2020-03-22            New Zealand              1         63
## 4977 2020-03-12              Sri Lanka              1          1
## 4978 2020-04-21           South Africa              2        307
## 4979 2020-04-17            Afghanistan              1         76
## 4980 2020-04-14                Estonia              2         64
## 4981 2020-04-24                 Zambia              1         10
## 4982 2020-04-26                Finland              1        181
## 4983 2020-04-14                  Libya              1         10
## 4984 2020-03-31           Burkina Faso              1         57
## 4985 2020-04-29              Australia              1         13
## 4986 2020-03-20               Suriname              1          3
## 4987 2020-04-16                Denmark              1        368
## 4988 2020-03-26               Bulgaria              1         44
## 4989 2020-04-25             Azerbaijan              2         69
## 4990 2020-03-25            Philippines              2        174
## 4991 2020-04-16                Estonia              2         63
## 4992 2020-04-22                 Brazil              1       5176
## 4993 2020-03-17                Austria              1        470
## 4994 2020-03-28                Algeria              0         87
## 4995 2020-04-22                Tunisia              1         42
## 4996 2020-01-31                 Sweden              1          1
## 4997 2020-03-29                 Angola              1          2
## 4998 2020-04-20               Pakistan              2       1572
## 4999 2020-03-31                 Gambia              1          1
## 5000 2020-04-10                 Canada              3       1474
## 5001 2020-03-24              Singapore              2        103
## 5002 2020-03-30               Bulgaria              1         28
## 5003 2020-04-10        Kyrgyz Republic              1         36
## 5004 2020-02-11            South Korea              3          2
## 5005 2020-03-30               Paraguay              2         10
## 5006 2020-03-11                  India              1         12
## 5007 2020-04-26            Afghanistan              1        180
## 5008 2020-04-27               Malaysia              3         78
## 5009 2020-04-15                  Qatar              1        480
## 5010 2020-03-20               Ethiopia              1          4
## 5011 2020-04-27             San Marino              2         25
## 5012 2020-03-14               Pakistan              1         22
## 5013 2020-04-14               Bulgaria              1         38
## 5014 2020-04-30            Netherlands              1        900
## 5015 2020-04-13                Germany              1       4755
## 5016 2020-04-28                   Chad              1          6
## 5017 2020-01-31                  China              1       1980
## 5018 2020-04-21                Estonia              2         24
## 5019 2020-03-20           Saudi Arabia              2        137
## 5020 2020-04-20                 Jordan              2         12
## 5021 2020-04-17                 Zambia              1          4
## 5022 2020-04-19               Pakistan              2        582
## 5023 2020-04-25             Kazakhstan              1        267
## 5024 2020-04-27          United States              3      49333
## 5025 2020-03-27              Indonesia              1        256
## 5026 2020-04-28                Jamaica              1         14
## 5027 2020-04-20                 Serbia              1        636
## 5028 2020-04-22                Belgium              1       2196
## 5029 2020-03-19                   Cuba              2          8
## 5030 2020-04-13            Philippines              2        504
## 5031 2020-04-14             Mozambique              1         13
## 5032 2020-03-17                 Gambia              0          1
## 5033 2020-03-11                  Spain              1       1557
## 5034 2020-03-12                Austria              1        120
## 5035 2020-04-26         United Kingdom              1       9376
## 5036 2020-04-25                   Cuba              2        102
## 5037 2020-04-15                  Gabon              2         41
## 5038 2020-04-17                 Kuwait              2        253
## 5039 2020-03-13                   Oman              2          1
## 5040 2020-03-23            Philippines              2         82
## 5041 2020-03-20                Moldova              1         30
## 5042 2020-03-17                   Oman              2          4
## 5043 2020-04-28            Netherlands              1        571
## 5044 2020-02-11                Germany              1          2
## 5045 2020-03-25                 Rwanda              3          5
## 5046 2020-03-15             Azerbaijan              2         14
## 5047 2020-03-25              Singapore              2        122
## 5048 2020-04-24              Sri Lanka              2         90
## 5049 2020-03-29           Burkina Faso              1         49
## 5050 2020-04-25                Ireland              1        954
## 5051 2020-04-29                   Iraq              2         75
## 5052 2020-05-11                  Benin              2         35
## 5053 2020-04-19              Venezuela              1         29
## 5054 2020-03-27                  Niger              1          3
## 5055 2020-04-24                 Guyana              1          6
## 5056 2020-03-30                Croatia              1        133
## 5057 2020-03-18            Afghanistan              1          1
## 5058 2020-04-24                  Sudan              2         22
## 5059 2020-04-13                Belgium              1       1459
## 5060 2020-04-17                  Kenya              1         21
## 5061 2020-04-19               Malaysia              3        138
## 5062 2020-05-10                 Poland              1        630
## 5063 2020-04-19                 Serbia              1        628
## 5064 2020-03-21                 Turkey              2        622
## 5065 2020-03-19                Morocco              2         24
## 5066 2020-04-12              Mauritius              1          6
## 5067 2020-04-12                Croatia              2        105
## 5068 2020-03-21                Hungary              1         36
## 5069 2020-03-29                Bolivia              0         14
## 5070 2020-04-16            New Zealand              2         21
## 5071 2020-04-10              Palestine              1          4
## 5072 2020-04-30           Sierra Leone              2         32
## 5073 2020-04-25                Nigeria              1        201
## 5074 2020-03-31          United States              3      47606
## 5075 2020-04-21                   Oman              3        340
## 5076 2020-04-30                Bahrain              2        229
## 5077 2020-04-30                Belgium              1       1174
## 5078 2020-03-22                 Kuwait              2         29
## 5079 2020-03-26            South Korea              3        208
## 5080 2020-04-20                 Panama              2        388
## 5081 2020-03-21                   Guam              0          2
## 5082 2020-04-26               Honduras              1         36
## 5083 2020-04-20               DR Congo              1         10
## 5084 2020-03-21               Mongolia              1          5
## 5085 2020-04-23                Burundi              1          5
## 5086 2020-04-11              Mauritius              1          5
## 5087 2020-04-23               Cameroon              2        171
## 5088 2020-03-11               Malaysia              1         32
## 5089 2020-04-14                Hungary              1        108
## 5090 2020-04-29                Lebanon              1         11
## 5091 2020-03-18                 Canada              2        145
## 5092 2020-04-12                Lebanon              1         21
## 5093 2020-03-16            Netherlands              1        454
## 5094 2020-04-17         United Kingdom              1      10216
## 5095 2020-04-26                Morocco              2        307
## 5096 2020-03-16                Tunisia              1          4
## 5097 2020-03-26               Honduras              2         32
## 5098 2020-03-15                   Iran              0       2574
## 5099 2020-03-16                  Egypt              1         57
## 5100 2020-04-15                Ecuador              3        329
## 5101 2020-03-19           Burkina Faso              1         19
## 5102 2020-03-26    Trinidad and Tobago              2          8
## 5103 2020-04-12                  Italy              2       8786
## 5104 2020-04-14                Germany              1       3369
## 5105 2020-04-13                Ireland              1       1719
## 5106 2020-03-28                 Greece              0        169
## 5107 2020-03-31                  Chile              2        599
## 5108 2020-03-23              Mauritius              1         22
## 5109 2020-02-28               Pakistan              1          2
## 5110 2020-03-28                Moldova              1         54
## 5111 2020-04-17             Luxembourg              1        107
## 5112 2020-04-10            Afghanistan              1         98
## 5113 2020-04-23                 Russia              3      10010
## 5114 2020-03-21                Ukraine              1         18
## 5115 2020-03-10                Ireland              2         13
## 5116 2020-03-21                   Oman              2         13
## 5117 2020-04-23                Denmark              2        378
## 5118 2020-04-14            Philippines              2        575
## 5119 2020-03-24                Uruguay              1         31
## 5120 2020-04-27                  Benin              2          6
## 5121 2020-03-14             Kazakhstan              1          2
## 5122 2020-04-12               Cameroon              2         17
## 5123 2020-04-20                  Ghana              3        208
## 5124 2020-04-19                  Niger              1         21
## 5125 2020-03-15             San Marino              1         40
## 5126 2020-02-28   United Arab Emirates              0         12
## 5127 2020-03-27                 Turkey              2       3265
## 5128 2020-04-12                Andorra              1         58
## 5129 2020-03-20                 Rwanda              2          9
## 5130 2020-03-28               Bulgaria              1         67
## 5131 2020-04-21            Switzerland              1        287
## 5132 2020-04-15              Venezuela              1         12
## 5133 2020-04-22               Bulgaria              1         95
## 5134 2020-04-16               Slovenia              2         48
## 5135 2020-03-28                Germany              1      13118
## 5136 2020-03-14                 Norway              1         94
## 5137 2020-03-30              Palestine              1         16
## 5138 2020-04-13                 Kuwait              2        146
## 5139 2020-03-21                Belgium              1       1221
## 5140 2020-03-11          United States              2        669
## 5141 2020-04-11             Luxembourg              1        155
## 5142 2020-02-27                 Canada              1          1
## 5143 2020-02-27                  Japan              1         47
## 5144 2020-03-16               Ethiopia              1          7
## 5145 2020-03-19              Venezuela              1          6
## 5146 2020-03-11              Palestine              1         13
## 5147 2020-04-13            Netherlands              1       2138
## 5148 2020-03-28                   Cuba              2         52
## 5149 2020-04-10         United Kingdom              1      13025
## 5150 2020-04-17                 France              1       4620
## 5151 2020-02-23            South Korea              3        425
## 5152 2020-03-17                Bahrain              2         21
## 5153 2020-04-10                  Ghana              3         65
## 5154 2020-04-15                Morocco              2        261
## 5155 2020-03-30 Bosnia and Herzegovina              2        111
## 5156 2020-03-27                 Mexico              0        242
## 5157 2020-03-15               Portugal              1        133
## 5158 2020-04-17                  Italy              2       7279
## 5159 2020-04-14 Bosnia and Herzegovina              2         67
## 5160 2020-04-20                Denmark              2        273
## 5161 2020-03-31                  Sudan              2          2
## 5162 2020-02-19              Singapore              2          7
## 5163 2020-03-13               Colombia              2          4
## 5164 2020-04-27             Luxembourg              1         18
## 5165 2020-04-20             Cabo Verde              2          9
## 5166 2020-03-21          Cote d'Ivoire              2         10
## 5167 2020-03-22               Zimbabwe              0          1
## 5168 2020-04-13              Sri Lanka              2         18
## 5169 2020-04-14               Djibouti              3        149
## 5170 2020-04-11                 Poland              1        781
## 5171 2020-03-13                  Japan              1        118
## 5172 2020-03-17                Jamaica              1          2
## 5173 2020-04-23                 Panama              2        516
## 5174 2020-04-22                 Cyprus              3         18
## 5175 2020-04-30              Palestine              1         12
## 5176 2020-03-17                  Qatar              1         38
## 5177 2020-03-29                 Brazil              1        839
## 5178 2020-04-11                Myanmar              2         12
## 5179 2020-03-16                  Qatar              1        102
## 5180 2020-04-29   United Arab Emirates              3       1090
## 5181 2020-03-27            South Korea              3        182
## 5182 2020-04-14                 Serbia              1        835
## 5183 2020-03-18                Belgium              1        665
## 5184 2020-04-20                 Zambia              1          8
## 5185 2020-03-29             Mauritania              0          2
## 5186 2020-03-10            Philippines              2         36
## 5187 2020-03-14                  Italy              2       6044
## 5188 2020-04-16                 France              1      15104
## 5189 2020-04-10                Ireland              1       2684
## 5190 2020-04-12                  India              3       1668
## 5191 2020-03-25                Ecuador              0        192
## 5192 2020-03-21              Indonesia              1        163
## 5193 2020-04-28                Germany              1       2298
## 5194 2020-04-20                   Iran              0       2637
## 5195 2020-03-26                Ecuador              0        359
## 5196 2020-04-13                  Gabon              2         16
## 5197 2020-04-23               Slovakia              1        126
## 5198 2020-04-10                 France              1       8628
## 5199 2020-04-12                Bahrain              2        138
## 5200 2020-03-24                Namibia              1          3
## 5201 2020-04-18             Uzbekistan              1        155
## 5202 2020-04-30                 Poland              1        659
## 5203 2020-03-18               Pakistan              1        155
## 5204 2020-02-25                 France              0          2
## 5205 2020-04-21                Croatia              2         37
## 5206 2020-03-31              Guatemala              2          2
## 5207 2020-04-10                 Malawi              1          1
## 5208 2020-03-16                Bahrain              2          3
## 5209 2020-03-12              Indonesia              1         15
## 5210 2020-03-14          United States              3       1224
## 5211 2020-03-28                Morocco              2        127
## 5212 2020-04-30               Paraguay              2         37
## 5213 2020-04-28                 Israel              1        241
## 5214 2020-04-28                 France              1       4211
## 5215 2020-04-18              Sri Lanka              2         16
## 5216 2020-03-20                   Peru              1         89
## 5217 2020-04-24               Paraguay              2         17
## 5218 2020-02-28             San Marino              1          1
## 5219 2020-04-28         United Kingdom              1       8305
## 5220 2020-03-19                Ecuador              0        145
## 5221 2020-03-11                Bahrain              2         86
## 5222 2020-04-15                Myanmar              2         23
## 5223 2020-02-28            Switzerland              2          7
## 5224 2020-04-21                  Japan              3        705
## 5225 2020-04-21                 Israel              1        451
## 5226 2020-04-13              Guatemala              2          4
## 5227 2020-02-27                 Norway              1          1
## 5228 2020-05-11                  Spain              1       3479
## 5229 2020-05-11                Denmark              2        194
## 5230 2020-03-11                 Serbia              1         11
## 5231 2020-04-18               Portugal              3        844
## 5232 2020-04-27             Azerbaijan              2         61
## 5233 2020-03-22        Kyrgyz Republic              1          8
## 5234 2020-04-12                Estonia              2         51
## 5235 2020-03-27                   Peru              1         77
## 5236 2020-04-23             San Marino              2         25
## 5237 2020-04-12               Paraguay              2          2
## 5238 2020-03-18                  Kenya              1          1
## 5239 2020-03-17                 Guyana              1          3
## 5240 2020-04-30               Portugal              3        908
## 5241 2020-04-25                 Mexico              1       2209
## 5242 2020-03-15             Luxembourg              1          8
## 5243 2020-03-28                  China              2        119
## 5244 2020-04-26           Saudi Arabia              2       2420
## 5245 2020-04-28                Tunisia              1         26
## 5246 2020-04-22                Burundi              1          6
## 5247 2020-03-19             Luxembourg              1        202
## 5248 2020-04-21           Saudi Arabia              2       2269
## 5249 2020-04-17                 Cyprus              3         35
## 5250 2020-04-26                  China              3         10
## 5251 2020-04-11               Tanzania              0          7
## 5252 2020-04-15               Barbados              2          2
## 5253 2020-04-30                Estonia              2         29
## 5254 2020-03-14                Austria              1        294
## 5255 2020-03-23                  Chile              0        209
## 5256 2020-04-15                  Japan              3        910
## 5257 2020-04-23                Uruguay              1         14
## 5258 2020-03-26                Moldova              1         52
## 5259 2020-03-28                   Guam              0          2
## 5260 2020-04-12            Switzerland              1        900
## 5261 2020-03-31                Iceland              3        115
## 5262 2020-03-27                 Israel              1        639
## 5263 2020-04-18                  Egypt              1        359
## 5264 2020-03-30                 Brazil              1        675
## 5265 2020-04-25           Sierra Leone              2         18
## 5266 2020-02-11          United States              0          2
## 5267 2020-03-22                Hungary              1         56
## 5268 2020-03-10                   Oman              2          4
## 5269 2020-04-16                  Niger              1         14
## 5270 2020-03-24                Jamaica              1          2
## 5271 2020-03-26                 Zambia              1         13
## 5272 2020-01-29                 Canada              1          1
## 5273 2020-04-27                Algeria              0        261
## 5274 2020-03-22            Afghanistan              1         16
## 5275 2020-03-31              Mauritius              1         33
## 5276 2020-04-16             Luxembourg              1        137
## 5277 2020-03-28               Pakistan              1        102
## 5278 2020-03-11                  Japan              1        112
## 5279 2020-03-12                  Chile              0          6
## 5280 2020-04-16 Bosnia and Herzegovina              2         84
## 5281 2020-03-30               Ethiopia              1          2
## 5282 2020-03-22                  China              2         65
## 5283 2020-02-24                  Italy              1        127
## 5284 2020-03-14                Hungary              1         20
## 5285 2020-04-30                  Spain              1       1759
## 5286 2020-04-17            Puerto Rico              1         69
## 5287 2020-04-13                Romania              3        643
## 5288 2020-03-17   United Arab Emirates              1         12
## 5289 2020-04-27           Saudi Arabia              2       2512
## 5290 2020-04-22                Liberia              1          2
## 5291 2020-03-21                 France              1       3287
## 5292 2020-04-15                  Syria              2          8
## 5293 2020-04-15                Estonia              2         68
## 5294 2020-04-15              Singapore              2        781
## 5295 2020-04-26               Malaysia              3         89
## 5296 2020-03-21                Andorra              1         13
## 5297 2020-02-25              Singapore              2          3
## 5298 2020-03-18                 Norway              1        226
## 5299 2020-03-26            Switzerland              1       1839
## 5300 2020-04-20            New Zealand              2         16
## 5301 2020-04-12               Portugal              3       1113
## 5302 2020-04-10               Slovakia              1         33
## 5303 2020-04-10                 Brazil              1       3476
## 5304 2020-03-29            Netherlands              1       2263
## 5305 2020-04-10               Slovenia              2         69
## 5306 2020-04-15         Czech Republic              2        187
## 5307 2020-03-30                Uruguay              1         47
## 5308 2020-03-23               Thailand              1        244
## 5309 2020-04-15                  Kenya              1         17
## 5310 2020-03-21                  Japan              1        101
## 5311 2020-03-27                 Jordan              2         42
## 5312 2020-03-25               Colombia              2        164
## 5313 2020-03-17           South Africa              1         11
## 5314 2020-03-19                   Chad              1          1
## 5315 2020-04-18                 Canada              3       1791
## 5316 2020-03-14                  Japan              1        134
## 5317 2020-03-30                 Panama              2        176
## 5318 2020-03-23             Luxembourg              1        205
## 5319 2020-03-27                 Sweden              1        525
## 5320 2020-03-17              Palestine              1          2
## 5321 2020-04-18                Uruguay              1         15
## 5322 2020-04-17               Pakistan              2       1133
## 5323 2020-03-30            Puerto Rico              1         27
## 5324 2020-04-16                Croatia              2         87
## 5325 2020-03-16                  Spain              1       3850
## 5326 2020-03-25                 Uganda              1          5
## 5327 2020-02-28                 Kuwait              0         19
## 5328 2020-04-13             Cabo Verde              2          4
## 5329 2020-03-22                 Canada              3        331
## 5330 2020-04-10            Switzerland              1       1285
## 5331 2020-03-15              Indonesia              1         48
## 5332 2020-04-12                  Aruba              1          6
## 5333 2020-04-17         Czech Republic              2        246
## 5334 2020-03-19                  India              1         66
## 5335 2020-03-19         Congo Republic              1          4
## 5336 2020-03-21             Cabo Verde              2          4
## 5337 2020-04-28                  India              3       3416
## 5338 2020-04-22                Algeria              0        192
## 5339 2020-04-24                Romania              3        707
## 5340 2020-04-26           Sierra Leone              2         11
## 5341 2020-03-27     Dominican Republic              2        189
## 5342 2020-04-17                Andorra              1         32
## 5343 2020-04-20             Madagascar              1          4
## 5344 2020-03-27                 Zambia              1          8
## 5345 2020-03-12                 Russia              1         23
## 5346 2020-03-14             Luxembourg              1         29
## 5347 2020-03-10                 Sweden              1        152
## 5348 2020-03-29                  Ghana              3         15
## 5349 2020-03-23                 Israel              1        376
## 5350 2020-04-13                   Mali              1         29
## 5351 2020-04-15   United Arab Emirates              3        844
## 5352 2020-04-26               Slovenia              2         23
## 5353 2020-04-13                   Iran              0       3274
## 5354 2020-04-15    Trinidad and Tobago              2          1
## 5355 2020-04-24            New Zealand              2          7
## 5356 2020-04-10                Ecuador              3       2711
## 5357 2020-03-15               Honduras              2          1
## 5358 2020-03-24               Portugal              1        762
## 5359 2020-03-28               Barbados              2          2
## 5360 2020-03-18               Mongolia              1          4
## 5361 2020-04-18           Saudi Arabia              2       1894
## 5362 2020-03-30              Guatemala              2          4
## 5363 2020-04-29                Finland              1        211
## 5364 2020-04-10                Denmark              1        417
## 5365 2020-03-29            Afghanistan              1         25
## 5366 2020-03-19                Hungary              1         38
## 5367 2020-05-11                  Sudan              2        360
## 5368 2020-04-10             Azerbaijan              2        169
## 5369 2020-03-29                  Spain              1      13299
## 5370 2020-04-10               Botswana              1          6
## 5371 2020-04-18                 Norway              1         99
## 5372 2020-03-28               Colombia              2        117
## 5373 2020-02-16                  Japan              1         30
## 5374 2020-04-18                  Ghana              3        193
## 5375 2020-03-21                Ireland              2        228
## 5376 2020-04-10                   Mali              1         13
## 5377 2020-02-28                Austria              1          3
## 5378 2020-03-18             Luxembourg              1        122
## 5379 2020-04-12                  Gabon              2          6
## 5380 2020-02-29               Malaysia              1          4
## 5381 2020-04-30                Albania              2         23
## 5382 2020-04-17                  Benin              1          2
## 5383 2020-04-16       Papua New Guinea              2          5
## 5384 2020-04-29                 Israel              1        229
## 5385 2020-04-26               Cameroon              2        218
## 5386 2020-02-28              Singapore              2          3
## 5387 2020-04-29           Sierra Leone              2          5
## 5388 2020-03-10             Luxembourg              2          2
## 5389 2020-03-23                  Ghana              1          7
## 5390 2020-04-13          United States              3      52913
## 5391 2020-04-20                 Poland              1        851
## 5392 2020-03-19                 Cyprus              0         36
## 5393 2020-03-27                   Mali              1          9
## 5394 2020-03-26               Malaysia              1        407
## 5395 2020-04-23            South Sudan              2          1
## 5396 2020-02-16               Thailand              0          1
## 5397 2020-03-10                 Greece              0         27
## 5398 2020-03-12                Tunisia              1          2
## 5399 2020-05-11               Ethiopia              1         40
## 5400 2020-03-28                Denmark              1        324
## 5401 2020-03-18             Kazakhstan              1         24
## 5402 2020-03-25               Pakistan              1        242
## 5403 2020-04-13               Portugal              3        947
## 5404 2020-03-24               Honduras              2          3
## 5405 2020-03-18                 Mexico              0         36
## 5406 2020-04-10                 Israel              1       1004
## 5407 2020-04-10                  Gabon              2         11
## 5408 2020-04-26                Belgium              1       1196
## 5409 2020-03-31                 Belize              1          1
## 5410 2020-03-27                Myanmar              2         10
## 5411 2020-04-17               Tanzania              0         59
## 5412 2020-04-18                Germany              1       5554
## 5413 2020-04-20                Uruguay              1         18
## 5414 2020-04-30                  Qatar              1       1488
## 5415 2020-04-10              Venezuela              1          4
## 5416 2020-04-24                  Kenya              1         33
## 5417 2020-03-22                  India              1        155
## 5418 2020-04-14                Denmark              1        337
## 5419 2020-04-15                Tunisia              1         54
## 5420 2020-04-20                Romania              3        518
## 5421 2020-04-27               Colombia              2        455
## 5422 2020-03-25                 Zambia              1          9
## 5423 2020-03-24 Bosnia and Herzegovina              2         34
## 5424 2020-03-17                Romania              0         71
## 5425 2020-02-29                 Canada              1          2
## 5426 2020-03-23              Singapore              2         77
## 5427 2020-03-28            Afghanistan              1         16
## 5428 2020-03-31                Somalia              1          2
## 5429 2020-04-25                  Italy              2       5378
## 5430 2020-02-14                  Japan              1          2
## 5431 2020-04-20              Guatemala              2         64
## 5432 2020-03-30                Finland              1        112
## 5433 2020-03-14               Eswatini              1          1
## 5434 2020-03-17                 Norway              1        222
## 5435 2020-04-29            South Korea              3         13
## 5436 2020-03-19                Estonia              1         42
## 5437 2020-03-21                Estonia              1         39
## 5438 2020-04-25                Ukraine              1        956
## 5439 2020-04-29               Pakistan              2       2098
## 5440 2020-04-17             Madagascar              1          7
## 5441 2020-03-10                  India              1         23
## 5442 2020-04-19             Mozambique              1          5
## 5443 2020-04-18                 France              1        388
## 5444 2020-03-28               DR Congo              1         18
## 5445 2020-04-23             Kazakhstan              1        320
## 5446 2020-04-23                Moldova              1        312
## 5447 2020-03-28               Slovakia              1         92
## 5448 2020-03-30                Ecuador              0         93
## 5449 2020-03-25                Nigeria              1         11
## 5450 2020-03-14                Uruguay              1          2
## 5451 2020-04-24            Afghanistan              1        177
## 5452 2020-03-27               Mongolia              1          1
## 5453 2020-04-24                Ireland              1       1513
## 5454 2020-04-19                Moldova              1        181
## 5455 2020-03-14              Argentina              1          6
## 5456 2020-04-13                  Qatar              1        503
## 5457 2020-03-26                Jamaica              1          4
## 5458 2020-04-24               Slovenia              2         20
## 5459 2020-04-30                 Israel              1        357
## 5460 2020-03-29                   Guam              0          4
## 5461 2020-04-24                  Gabon              2          6
## 5462 2020-04-15                   Iran              0       3086
## 5463 2020-03-31              Nicaragua              1          1
## 5464 2020-04-25            El Salvador              1         11
## 5465 2020-03-21                Iceland              3        143
## 5466 2020-03-20            Afghanistan              1          2
## 5467 2020-04-27            Philippines              2        483
## 5468 2020-04-10                   Iran              0       3606
## 5469 2020-04-16                Bermuda              1         24
## 5470 2020-03-25                Ireland              1        439
## 5471 2020-03-27               Portugal              2       1273
## 5472 2020-03-27            Switzerland              1       2117
## 5473 2020-03-15              Palestine              1          6
## 5474 2020-02-27                Austria              1          1
## 5475 2020-03-20                Bahrain              2         20
## 5476 2020-04-10               Tanzania              0          7
## 5477 2020-03-22     Dominican Republic              2        168
## 5478 2020-03-21               Zimbabwe              0          3
## 5479 2020-03-27      Brunei Darussalam              2          8
## 5480 2020-03-12                 Canada              2         10
## 5481 2020-04-14                Croatia              2        104
## 5482 2020-04-11               Pakistan              2        406
## 5483 2020-03-12                 Norway              1        316
## 5484 2020-03-19              Singapore              2         79
## 5485 2020-04-25                 Jordan              2          7
## 5486 2020-03-18               Bulgaria              1         44
## 5487 2020-04-30                Bolivia              0        114
## 5488 2020-03-17              Indonesia              1         55
## 5489 2020-04-13               DR Congo              1          1
## 5490 2020-04-27              Singapore              2       1730
## 5491 2020-03-27                  Egypt              1         55
## 5492 2020-04-28          Cote d'Ivoire              2         33
## 5493 2020-03-26                 Kuwait              2         17
## 5494 2020-03-12            Netherlands              1        121
## 5495 2020-04-25 Bosnia and Herzegovina              2         72
## 5496 2020-03-30                   Chad              1          2
## 5497 2020-03-23                 Serbia              1         66
## 5498 2020-03-18              Indonesia              1         93
## 5499 2020-04-24                Uruguay              1         14
## 5500 2020-04-11                Estonia              2         97
## 5501 2020-04-26                  Niger              1         15
## 5502 2020-04-22               Malaysia              3        107
## 5503 2020-04-27                  Qatar              1       1886
## 5504 2020-02-12                  China              1       2028
## 5505 2020-03-24                Denmark              1        206
## 5506 2020-03-30                 Angola              1          3
## 5507 2020-03-16                Liberia              1          1
## 5508 2020-01-30   United Arab Emirates              0          3
## 5509 2020-02-11                  China              1       2490
## 5510 2020-03-21                   Peru              1        113
## 5511 2020-04-16         Congo Republic              1         43
## 5512 2020-04-29               Eswatini              3         26
## 5513 2020-04-20                 Rwanda              3          3
## 5514 2020-03-11                Croatia              1          6
## 5515 2020-04-18                 Panama              2        388
## 5516 2020-02-24                   Iraq              2          1
## 5517 2020-04-29             Costa Rica              2         16
## 5518 2020-04-26                 Norway              1         87
## 5519 2020-03-21                Bahrain              2         36
## 5520 2020-04-19                  Sudan              2         34
## 5521 2020-03-17                Tunisia              1          6
## 5522 2020-03-19                  Chile              0         37
## 5523 2020-04-26             Madagascar              1          3
## 5524 2020-03-25                  Qatar              1         36
## 5525 2020-03-24              Sri Lanka              1         15
## 5526 2020-04-30                  Niger              1         10
## 5527 2020-01-25                  China              1        441
## 5528 2020-03-28                Austria              2       1282
## 5529 2020-05-11         Congo Republic              1         59
## 5530 2020-03-30               Colombia              2        190
## 5531 2020-03-20                  Chile              0        300
## 5532 2020-03-21                  China              2         52
## 5533 2020-03-31                  China              3         84
## 5534 2020-03-24                  Libya              1          1
## 5535 2020-04-17               DR Congo              1         40
## 5536 2020-04-10           Burkina Faso              1         29
## 5537 2020-04-19                Uruguay              1         20
## 5538 2020-03-31              Venezuela              1         16
## 5539 2020-03-15               Bulgaria              1         20
## 5540 2020-04-24                 Brazil              1       7742
## 5541 2020-03-10                 Russia              1          3
## 5542 2020-01-26               Malaysia              1          2
## 5543 2020-03-25             Uzbekistan              1         16
## 5544 2020-04-27                  China              3          3
## 5545 2020-04-10                Germany              1       9313
## 5546 2020-03-28             Madagascar              1          1
## 5547 2020-02-28                  Italy              2        483
## 5548 2020-03-31                Vietnam              2         12
## 5549 2020-03-12                 Mexico              0          8
## 5550 2020-04-16                   Mali              1         27
## 5551 2020-03-22              Argentina              1        175
## 5552 2020-04-18                  Kenya              1         28
## 5553 2020-04-17             Bangladesh              2        607
## 5554 2020-04-18         Czech Republic              2        173
## 5555 2020-03-18                 Poland              0         74
## 5556 2020-03-10                  China              2         20
## 5557 2020-03-11      Brunei Darussalam              2         10
## 5558 2020-03-20                Uruguay              1         31
## 5559 2020-03-21                 Kuwait              2         28
## 5560 2020-04-24                Ecuador              3      11869
## 5561 2020-03-30          Cote d'Ivoire              2         28
## 5562 2020-04-23                  India              3       3116
## 5563 2020-03-31             San Marino              1          6
## 5564 2020-04-16                Germany              1       5811
## 5565 2020-04-28           Burkina Faso              1          6
## 5566 2020-03-20             Bangladesh              2          3
## 5567 2020-04-21                 Turkey              2       9285
## 5568 2020-04-15                Finland              1        173
## 5569 2020-04-26                 Zambia              1          4
## 5570 2020-04-12               Pakistan              2        516
## 5571 2020-03-28                Nigeria              1         35
## 5572 2020-04-17                Estonia              2         57
## 5573 2020-04-30               Colombia              2        562
## 5574 2020-04-10                Liberia              1          6
## 5575 2020-04-20           Sierra Leone              2         13
## 5576 2020-04-30 Bosnia and Herzegovina              2         80
## 5577 2020-03-20                Lebanon              1         22
## 5578 2020-04-23                  Chile              2        980
## 5579 2020-03-31                Morocco              2        138
## 5580 2020-04-28                  Egypt              1        723
## 5581 2020-03-22                Lebanon              1        128
## 5582 2020-03-31         Czech Republic              2        480
## 5583 2020-04-16                 Cyprus              3         40
## 5584 2020-03-20             Costa Rica              2         38
## 5585 2020-04-28            Philippines              2        379
## 5586 2020-04-12                Ecuador              3        305
## 5587 2020-03-28                 Angola              1          2
## 5588 2020-03-14                 France              0       1593
## 5589 2020-04-27             Bangladesh              2        915
## 5590 2020-02-27                 Sweden              1          6
## 5591 2020-04-13                  Sudan              2         10
## 5592 2020-04-22                Albania              2         50
## 5593 2020-03-19                 Norway              1        311
## 5594 2020-03-18               DR Congo              1          1
## 5595 2020-04-22              Guatemala              2         44
## 5596 2020-04-17                Belgium              1       2993
## 5597 2020-04-27                  Niger              1         17
## 5598 2020-04-30              Guatemala              2         70
## 5599 2020-04-26                Ukraine              1        984
## 5600 2020-04-16               Cameroon              2        148
## 5601 2020-04-20              Australia              1         26
## 5602 2020-03-18                 Zambia              1          2
## 5603 2020-02-19            South Korea              3         15
## 5604 2020-03-31               Suriname              1          1
## 5605 2020-03-30                 Poland              1        417
## 5606 2020-03-29               Zimbabwe              0          2
## 5607 2020-04-24           Burkina Faso              1         20
## 5608 2020-03-31                Lebanon              1         32
## 5609 2020-04-22               Portugal              3       1119
## 5610 2020-04-22            Afghanistan              1        145
## 5611 2020-03-26               Ethiopia              1          1
## 5612 2020-04-20                  Aruba              1          1
## 5613 2020-03-18                   Oman              2         15
## 5614 2020-04-27                 Cyprus              3         12
## 5615 2020-03-12          Cote d'Ivoire              0          1
## 5616 2020-04-20              Palestine              1         19
##      cases_of_covid_death covid_recovery_cases
## 1                       7                   18
## 2                    1622                 1459
## 3                       4                   61
## 4                       6                    0
## 5                       0                    0
## 6                       6                    0
## 7                       0                 <NA>
## 8                      42                   82
## 9                       0                    2
## 10                     59                 1000
## 11                      0                    1
## 12                      1                    0
## 13                      1                 <NA>
## 14                      1                    0
## 15                      3                    0
## 16                      2                    2
## 17                    167                 1506
## 18                      1                   98
## 19                      0                    0
## 20                      1                 <NA>
## 21                      2                    2
## 22                     80                    0
## 23                      0                    0
## 24                      2                   25
## 25                      4                   63
## 26                      2                    1
## 27                     40                   32
## 28                      8                  144
## 29                      0                    4
## 30                      0                    0
## 31                      2                   93
## 32                     21                    0
## 33                      0                    1
## 34                      0                    3
## 35                      0                    1
## 36                      0                   51
## 37                      0                    5
## 38                      0                    0
## 39                      8                    2
## 40                      2                    4
## 41                      2                    0
## 42                      0                    0
## 43                      0                   13
## 44                      2                    0
## 45                      3                    0
## 46                      0                    0
## 47                     57                    0
## 48                      0                    0
## 49                     80                   88
## 50                     10                    0
## 51                      0                    0
## 52                      1                    0
## 53                      1                 <NA>
## 54                      0                    0
## 55                      0                    0
## 56                      4                 <NA>
## 57                     36                  116
## 58                   3542                 1992
## 59                      0                    2
## 60                      0                    0
## 61                    188                    0
## 62                     50                   13
## 63                      3                    0
## 64                      2                    0
## 65                      2                    0
## 66                      0                    0
## 67                      9                  154
## 68                      0                    0
## 69                      0                   14
## 70                      1                    0
## 71                      0                    2
## 72                      0                    0
## 73                      1                    0
## 74                      0                 <NA>
## 75                      0                    1
## 76                      1                   24
## 77                      2                    0
## 78                      2                    2
## 79                     46                  421
## 80                    225                    0
## 81                    160                    0
## 82                     11                    0
## 83                     19                   22
## 84                      0                    0
## 85                     28                   41
## 86                      0                    0
## 87                      0                    0
## 88                      0                 <NA>
## 89                      2                    6
## 90                     40                   96
## 91                     25                   49
## 92                      7                  124
## 93                    164                  730
## 94                      0                    0
## 95                      6                    1
## 96                      0                    0
## 97                      0                    0
## 98                      3                    0
## 99                     24                  163
## 100                    79                    0
## 101                     4                    0
## 102                     0                    0
## 103                   705                 2311
## 104                     1                    0
## 105                     0                   11
## 106                     0                    0
## 107                     1                    0
## 108                     0                   50
## 109                     0                    0
## 110                    70                 <NA>
## 111                     0                    0
## 112                    79                   52
## 113                     0                    0
## 114                     0                    0
## 115                   204                    0
## 116                     0                    0
## 117                     1                   71
## 118                   118                 <NA>
## 119                    30                   55
## 120                     4                    0
## 121                     0                    2
## 122                     0                    0
## 123                    10                    2
## 124                    49                   29
## 125                    14                   32
## 126                   232                    0
## 127                     0                 <NA>
## 128                   412                 6500
## 129                     0                    0
## 130                     2                    0
## 131                     0                    0
## 132                     0                    6
## 133                     0                    1
## 134                     2                   17
## 135                     0                    0
## 136                     8                  300
## 137                     0                    0
## 138                  4253                 2875
## 139                    14                  132
## 140                    12                    1
## 141                     0                    0
## 142                     0                    6
## 143                     0                    0
## 144                    13                  139
## 145                     2                    0
## 146                     2                    3
## 147                     0                    1
## 148                     1                    4
## 149                     4                    0
## 150                   232                 2014
## 151                     0                    0
## 152                     0                    0
## 153                    85                   45
## 154                     4                  105
## 155                     0                 <NA>
## 156                     0                   36
## 157                     2                    0
## 158                     0                    0
## 159                     0                    0
## 160                     0                    0
## 161                    16                  293
## 162                     8                  286
## 163                     0                 <NA>
## 164                     0                    1
## 165                   282                    0
## 166                     8                   17
## 167                     0                    0
## 168                    16                    3
## 169                    -1                    3
## 170                     0                    0
## 171                     0                   26
## 172                     2                   47
## 173                   192                 2390
## 174                     1                    0
## 175                     0                   37
## 176                     0                    8
## 177                     1                    0
## 178                     0                    0
## 179                     6                    0
## 180                     0                    4
## 181                    22                  322
## 182                     0                    1
## 183                     0                    0
## 184                     0                    5
## 185                     4                   43
## 186                     0                   18
## 187                    51                  192
## 188                     0                    0
## 189                     0                    0
## 190                     0                    0
## 191                    22                  236
## 192                    23                   75
## 193                    12                   49
## 194                     0                    8
## 195                     0                    0
## 196                     2                   38
## 197                     5                   43
## 198                     0                    5
## 199                     0                    7
## 200                    42                  371
## 201                   186                    0
## 202                     0                   33
## 203                     3                   13
## 204                   884                 2922
## 205                  7015                 2607
## 206                     0                    0
## 207                     0                    0
## 208                     0                    0
## 209                     0                   13
## 210                     0                    0
## 211                     0                    0
## 212                    19                   53
## 213                     4                    0
## 214                     0                    0
## 215                   128                  301
## 216                     0                    0
## 217                     0                    0
## 218                     1                    3
## 219                     2                    0
## 220                     3                   78
## 221                     1                    1
## 222                     4                    8
## 223                   190                    0
## 224                     0                    1
## 225                     0                    0
## 226                     0                    0
## 227                     2                    1
## 228                     0                    0
## 229                     0                    0
## 230                     0                    0
## 231                    15                  151
## 232                    11                   53
## 233                   130                 1205
## 234                     7                    0
## 235                     2                   23
## 236                     0                    0
## 237                     0                    0
## 238                   664                  752
## 239                     0                    1
## 240                     2                    0
## 241                     5                   59
## 242                    -1                    0
## 243                    50                  400
## 244                   156                 <NA>
## 245                     0                   49
## 246                     0                    0
## 247                   139                 <NA>
## 248                     0                    0
## 249                     0                    0
## 250                    34                  151
## 251                     0                    5
## 252                     0                    0
## 253                     0                    0
## 254                     0                   11
## 255                     2                    2
## 256                     0                    0
## 257                   870                 3401
## 258                    12                  270
## 259                     0                    0
## 260                    11                   31
## 261                    16                  228
## 262                     5                  222
## 263                    17                   16
## 264                     0                    0
## 265                     3                   11
## 266                     0                   22
## 267                     0                    0
## 268                    18                    0
## 269                    33                    0
## 270                     0                    0
## 271                     0                    0
## 272                     2                   14
## 273                     0                    0
## 274                   112                    0
## 275                     0                   16
## 276                  1072                 1761
## 277                     2                    0
## 278                     0                    0
## 279                   818                 1402
## 280                     2                   41
## 281                     0                    0
## 282                     1                    0
## 283                     1                    0
## 284                     0                    0
## 285                     5                    7
## 286                     0                    5
## 287                     0                    0
## 288                     0                   30
## 289                     0                    0
## 290                     0                    0
## 291                     1                   32
## 292                    17                    0
## 293                     0                    0
## 294                     0                    0
## 295                     0                    0
## 296                    20                  357
## 297                     0                    0
## 298                     0                    0
## 299                    17                   70
## 300                     0                    0
## 301                     9                    0
## 302                     5                   15
## 303                     0                    0
## 304                     0                    0
## 305                     0                    0
## 306                    12                   15
## 307                     0                    4
## 308                    31                    0
## 309                     0                   15
## 310                     0                    0
## 311                     0                    3
## 312                     2                   71
## 313                     7                    0
## 314                     0                    0
## 315                     7                   11
## 316                     0                 <NA>
## 317                     0                    0
## 318                     0                    0
## 319                     0                    0
## 320                    15                  261
## 321                     0                    0
## 322                     1                   65
## 323                     0                   -4
## 324                    40                    0
## 325                    73                    0
## 326                     0                 <NA>
## 327                     0                    0
## 328                     1                    0
## 329                     2                   11
## 330                   221                  168
## 331                     1                    0
## 332                    14                    0
## 333                     0                    0
## 334                    18                    7
## 335                     0                    6
## 336                    81                  467
## 337                     0                    0
## 338                     2                    0
## 339                     1                    0
## 340                     2                   49
## 341                     5                    0
## 342                     7                    0
## 343                     0                    0
## 344                     1                   45
## 345                     0                    0
## 346                     0                    0
## 347                     0                    2
## 348                     0                   16
## 349                     0                    0
## 350                     3                   55
## 351                     0                    0
## 352                   151                 1312
## 353                    38                   52
## 354                   109                    0
## 355                     1                    0
## 356                    16                    0
## 357                     9                    3
## 358                     1                    0
## 359                     0                    0
## 360                     0                    7
## 361                    13                   19
## 362                    13                  169
## 363                     0                    0
## 364                    48                   58
## 365                     5                    7
## 366                     0                    0
## 367                   365                 3700
## 368                     2                   15
## 369                     1                    0
## 370                     0                    0
## 371                     0                    0
## 372                    61                  189
## 373                    32                  204
## 374                     2                    0
## 375                    49                  800
## 376                     1                    0
## 377                   284                    0
## 378                     0                 <NA>
## 379                     0                    0
## 380                     0                    0
## 381                     0                    0
## 382                   184                 1730
## 383                     2                    0
## 384                    47                    0
## 385                   933                 1673
## 386                     0                    0
## 387                    10                   48
## 388                     0                    3
## 389                     2                    0
## 390                     0                    1
## 391                     0                   19
## 392                     3                    0
## 393                     0                    0
## 394                     0                    1
## 395                     3                   47
## 396                     6                    7
## 397                     3                   13
## 398                     1                    0
## 399                    89                  500
## 400                     0                    0
## 401                     2                   21
## 402                     0                    0
## 403                     0                    1
## 404                    66                  178
## 405                     0                   17
## 406                     0                    0
## 407                    10                    0
## 408                     0                    0
## 409                    33                    0
## 410                     1                    3
## 411                   110                 <NA>
## 412                     0                    0
## 413                     0                    0
## 414                    10                    8
## 415                    22                   26
## 416                     5                    0
## 417                     1                   12
## 418                     0                    0
## 419                     0                    0
## 420                     0                    0
## 421                     4                    0
## 422                     1                    0
## 423                     0                    0
## 424                     0                    0
## 425                     3                    0
## 426                     9                    5
## 427                     0                    8
## 428                    18                   24
## 429                     8                   44
## 430                    13                   77
## 431                     1                 <NA>
## 432                     0                   15
## 433                    32                  469
## 434                     0                    2
## 435                     3                 <NA>
## 436                     1                    7
## 437                     5                   87
## 438                     1                    5
## 439                     0                    0
## 440                     3                   37
## 441                     0                    0
## 442                   205                 3558
## 443                     0                    0
## 444                     0                    0
## 445                    29                    0
## 446                     0                    0
## 447                     4                    5
## 448                    14                  293
## 449                    12                  223
## 450                   130                   86
## 451                    72                    0
## 452                     0                    0
## 453                     7                    0
## 454                     3                    2
## 455                     1                   38
## 456                     0                    0
## 457                     5                    8
## 458                     1                    0
## 459                     0                   20
## 460                     1                    0
## 461                     5                   10
## 462                     0                    0
## 463                     0                    6
## 464                   593                 1696
## 465                     0                    0
## 466                     0                    8
## 467                  3934                 4281
## 468                     0                    4
## 469                     1                    0
## 470                     0                    0
## 471                   200                   29
## 472                     1                    0
## 473                     0                   10
## 474                     0                    0
## 475                     1                    0
## 476                     0                    0
## 477                  1060                 1426
## 478                    86                    0
## 479                     0                   31
## 480                     2                    3
## 481                     4                   28
## 482                     0                    0
## 483                     0                    8
## 484                     7                  219
## 485                    37                  136
## 486                     1                    5
## 487                     7                    3
## 488                     0                    8
## 489                     6                    3
## 490                   102                  677
## 491                     0                    0
## 492                     0                    0
## 493                     0                    4
## 494                     0                    1
## 495                     4                    0
## 496                     0                    0
## 497                     0                 <NA>
## 498                     3                    0
## 499                     0                    0
## 500                     1                    6
## 501                     0                    0
## 502                     0                    0
## 503                    12                    0
## 504                     0                    0
## 505                     0                    0
## 506                     5                    0
## 507                     0                    0
## 508                     0                    5
## 509                     0                    0
## 510                    53                   53
## 511                    16                  222
## 512                     0                    6
## 513                     0                    0
## 514                     0                    0
## 515                     1                 <NA>
## 516                    42                  179
## 517                     3                    0
## 518                     0                 <NA>
## 519                    43                   31
## 520                    97                   26
## 521                     6                    0
## 522                     8                  117
## 523                     0                    0
## 524                    37                    2
## 525                    63                 <NA>
## 526                     0                   15
## 527                     0                    0
## 528                     0                    0
## 529                     0                    0
## 530                     2                    0
## 531                     4                   10
## 532                     1                    0
## 533                    47                   48
## 534                     0                    1
## 535                     0                    0
## 536                    10                    0
## 537                    13                 <NA>
## 538                     1                    0
## 539                     2                   22
## 540                    11                  163
## 541                     0                    0
## 542                     2                    0
## 543                     0                    0
## 544                     7                    0
## 545                     0                    0
## 546                     0                    0
## 547                     0                   14
## 548                     0                    0
## 549                     0                    0
## 550                     0                    0
## 551                     1                    1
## 552                     6                  432
## 553                     0                    0
## 554                     0                    0
## 555                     0                    0
## 556                     0                    0
## 557                  3944                 3380
## 558                     0                    2
## 559                     0                    0
## 560                     1                    0
## 561                     1                    0
## 562                     0                 <NA>
## 563                     1                    0
## 564                     0                    3
## 565                     1                    4
## 566                    13                    0
## 567                     0                    0
## 568                     0                    0
## 569                     1                    2
## 570                     0                    0
## 571                     0                    0
## 572                    11                   92
## 573                     1                    0
## 574                     0                    0
## 575                     0                    7
## 576                     2                    0
## 577                     1                    0
## 578                     0                    8
## 579                     4                    0
## 580                     0                    0
## 581                    28                   42
## 582                     1                    3
## 583                     4                    0
## 584                     1                    0
## 585                     3                   20
## 586                     0                   33
## 587                     0                    3
## 588                   315                    0
## 589                    69                    0
## 590                     0                    0
## 591                     0                    0
## 592                     5                    0
## 593                     0                    0
## 594                     8                    0
## 595                     0                    4
## 596                    53                  170
## 597                    14                  523
## 598                     1                  133
## 599                   252                  296
## 600                     0                    7
## 601                    26                   65
## 602                     0                    0
## 603                     0                    0
## 604                    37                    0
## 605                     1                    0
## 606                     0                    0
## 607                     1                    0
## 608                     1                    0
## 609                    21                    4
## 610                     0                    0
## 611                     1                    1
## 612                     0                    0
## 613                     0                 <NA>
## 614                     6                    0
## 615                     0                    0
## 616                     0                  242
## 617                    27                  113
## 618                     0                    0
## 619                     0                    0
## 620                    16                    3
## 621                     1                    0
## 622                     1                 <NA>
## 623                     0                    0
## 624                     0                    0
## 625                     3                    1
## 626                     4                    6
## 627                     0                    8
## 628                     1                    0
## 629                     1                    0
## 630                     1                   56
## 631                    50                  292
## 632                    15                    0
## 633                     0                    0
## 634                     0                    0
## 635                     1                    0
## 636                     5                   83
## 637                    19                   76
## 638                     0                    0
## 639                     2                 <NA>
## 640                     2                    0
## 641                     1                    0
## 642                     0                   13
## 643                     0                    0
## 644                     0                    0
## 645                     5                    0
## 646                     0                    0
## 647                     0                    0
## 648                     5                    0
## 649                     1                  117
## 650                     4                    0
## 651                     1                    0
## 652                     2                   49
## 653                    82                  195
## 654                     0                  134
## 655                    11                    0
## 656                     0                    0
## 657                     0                    1
## 658                     1                    3
## 659                     0                    0
## 660                     0                    0
## 661                     0                    0
## 662                    24                   10
## 663                     1                 <NA>
## 664                     0                 <NA>
## 665                     0                    0
## 666                     0                   54
## 667                     0                    0
## 668                    10                   11
## 669                   756                 3353
## 670                     0                    4
## 671                     0                    0
## 672                     0                    4
## 673                     0                    0
## 674                   997                 1224
## 675                     0                    0
## 676                     2                    8
## 677                     0                    0
## 678                     1                    0
## 679                   130                  985
## 680                     0                    0
## 681                     1                    0
## 682                     2                   44
## 683                     0                    2
## 684                    60                 <NA>
## 685                     0                   47
## 686                     0                 <NA>
## 687                   170                  183
## 688                     0                 <NA>
## 689                     0                    0
## 690                     2                    2
## 691                     0                    9
## 692                     1                   39
## 693                     1                   14
## 694                     0                    0
## 695                    12                  279
## 696                   599                 6114
## 697                     0                    3
## 698                     0                    0
## 699                     0                    0
## 700                     0                    0
## 701                     1                    0
## 702                     4                  392
## 703                  4650                33227
## 704                     0                    0
## 705                     0                    0
## 706                     4                   92
## 707                     0                    0
## 708                    13                   53
## 709                     0                    4
## 710                     1                   17
## 711                     0                    0
## 712                     0                    0
## 713                     0                    6
## 714                     2                    0
## 715                     0                    0
## 716                     0                    0
## 717                    17                   98
## 718                     0                    0
## 719                     1                    0
## 720                   298                    0
## 721                    60                  800
## 722                     0                    0
## 723                     0                    0
## 724                     0                    0
## 725                     0                   42
## 726                     0                    1
## 727                     0                    0
## 728                     0                    0
## 729                     0                    0
## 730                     0                    0
## 731                     2                    0
## 732                     0                    0
## 733                     0                    0
## 734                     3                   68
## 735                     0                    0
## 736                     0                    2
## 737                     6                    0
## 738                     2                    0
## 739                     0                    0
## 740                     0                    0
## 741                     1                    0
## 742                     0                    1
## 743                    46                   57
## 744                     0                    0
## 745                     1                   46
## 746                     0                    0
## 747                     2                    4
## 748                     0                  627
## 749                     0                    0
## 750                   521                   13
## 751                     0                    0
## 752                     0                   19
## 753                     2                   38
## 754                     0                    0
## 755                     0                    1
## 756                     8                    3
## 757                     0                    0
## 758                     0                    0
## 759                     0                    0
## 760                    29                    1
## 761                     0                    0
## 762                   303                    0
## 763                     0                    0
## 764                     6                    0
## 765                     0                    0
## 766                     0                    0
## 767                     0                    0
## 768                     3                    5
## 769                     1                 <NA>
## 770                     4                    0
## 771                    10                    6
## 772                     2                   20
## 773                     1                    0
## 774                     6                    5
## 775                    55                   28
## 776                     0                    0
## 777                     1                  131
## 778                     0                   47
## 779                    16                  598
## 780                     0                 <NA>
## 781                     1                    1
## 782                   900                  415
## 783                    69                  419
## 784                     0                 <NA>
## 785                    65                  391
## 786                     0                    0
## 787                   123                 <NA>
## 788                     0                    0
## 789                     7                    8
## 790                    15                  166
## 791                     0                    2
## 792                    10                    0
## 793                     0                    3
## 794                     0                 <NA>
## 795                     3                    3
## 796                   132                  517
## 797                     3                   51
## 798                     7                   33
## 799                     3                   22
## 800                     0                    0
## 801                     0                    0
## 802                     0                    4
## 803                     0                    1
## 804                     9                   11
## 805                   109                    0
## 806                     1                    0
## 807                     0                    2
## 808                     0                    0
## 809                     0                    0
## 810                     1                 <NA>
## 811                     0                    0
## 812                     0                    0
## 813                     0                    4
## 814                    20                  340
## 815                    15                    0
## 816                     4                   49
## 817                    32                  126
## 818                  1469                    0
## 819                     0                    0
## 820                     1                   34
## 821                     1                    0
## 822                     1                    0
## 823                     6                  202
## 824                     2                   12
## 825                     1                    0
## 826                     0                    0
## 827                     0                    1
## 828                     0                 <NA>
## 829                     0                    0
## 830                     0                   13
## 831                     0                 <NA>
## 832                     1                    0
## 833                     1                    0
## 834                   182                    0
## 835                     6                  170
## 836                     0                   43
## 837                     3                   11
## 838                     4                   12
## 839                    13                    1
## 840                     0                    0
## 841                     5                   24
## 842                     5                   29
## 843                     1                   12
## 844                     5                 <NA>
## 845                     4                    4
## 846                     0                    0
## 847                     1                    0
## 848                     1                    0
## 849                     0                    0
## 850                     0                    5
## 851                    51                  300
## 852                     0                    0
## 853                   150                    0
## 854                    -1                    7
## 855                     0                    0
## 856                     1                    0
## 857                     0                    5
## 858                     0                    0
## 859                    20                   39
## 860                    51                   58
## 861                     4                    0
## 862                    16                    9
## 863                    15                    0
## 864                     4                  122
## 865                    25                  118
## 866                     0                    7
## 867                     6                   83
## 868                     1                    0
## 869                     0                    0
## 870                     2                    0
## 871                    19                   71
## 872                     7                    2
## 873                     0                    0
## 874                     0                    0
## 875                     9                    0
## 876                     1                    0
## 877                     0                    0
## 878                     8                   35
## 879                     0                    2
## 880                     0                    0
## 881                     0                   71
## 882                     3                    0
## 883                     0                    1
## 884                     0                    0
## 885                   205                    0
## 886                     2                    2
## 887                     3                    0
## 888                     0                    0
## 889                     0                    0
## 890                     5                    0
## 891                     1                    0
## 892                     0                    0
## 893                     1                    9
## 894                     0                    0
## 895                     0                 <NA>
## 896                     0                    1
## 897                     0                   12
## 898                     0                    1
## 899                   205                  842
## 900                     0                    2
## 901                     0                    0
## 902                     2                    0
## 903                     0                    0
## 904                     1                  105
## 905                     0                    0
## 906                   359                 2155
## 907                     0                    0
## 908                     2                    7
## 909                   258                  745
## 910                     0                    0
## 911                     0                    0
## 912                    16                 <NA>
## 913                     0                    0
## 914                     0                    0
## 915                     0                    0
## 916                     9                   58
## 917                     0                    0
## 918                     2                  213
## 919                     0                    0
## 920                    95                 <NA>
## 921                     1                    0
## 922                     8                   12
## 923                    28                   70
## 924                    14                  368
## 925                     4                   51
## 926                     0                    0
## 927                     1                    1
## 928                     1                    0
## 929                     0                    0
## 930                     8                  141
## 931                     0                    0
## 932                     2                    0
## 933                   158                    0
## 934                     2                    2
## 935                     0                    0
## 936                     0                    0
## 937                     7                    0
## 938                     5                   56
## 939                   296                  321
## 940                     0                    0
## 941                     0                    0
## 942                     2                    0
## 943                     0                    0
## 944                    24                  120
## 945                     0                    0
## 946                     2                    0
## 947                     0                    0
## 948                   715                 2317
## 949                     0                    0
## 950                     0                    1
## 951                  1124                 2979
## 952                     1                    3
## 953                     2                   82
## 954                     0                    0
## 955                  1732                    0
## 956                    31                  340
## 957                     0                    0
## 958                     0                   47
## 959                  1344                 1302
## 960                     1                    0
## 961                     0                    0
## 962                     0                    3
## 963                    95                  427
## 964                    11                 <NA>
## 965                     0                    0
## 966                     1                   68
## 967                     0                   61
## 968                   212                  498
## 969                     0                    0
## 970                     5                    0
## 971                     3                   12
## 972                     7                   50
## 973                     2                    7
## 974                     2                  117
## 975                     2                   13
## 976                     0                    0
## 977                     6                   21
## 978                     0                    0
## 979                     0                    0
## 980                  1456                 1648
## 981                  1057                    0
## 982                     6                    0
## 983                     0                    0
## 984                     1                    1
## 985                     0                    0
## 986                     0                    7
## 987                     1                    2
## 988                     2                    9
## 989                     1                    0
## 990                     0                    0
## 991                     0                    0
## 992                     6                   11
## 993                     2                   14
## 994                     0                    0
## 995                     6                    7
## 996                     0                 <NA>
## 997                     0                 <NA>
## 998                     9                    0
## 999                     0                    4
## 1000                    4                    0
## 1001                    5                   24
## 1002                    0                    0
## 1003                    0                    0
## 1004                    2                    9
## 1005                    1                    0
## 1006                    8                   16
## 1007                    2                 <NA>
## 1008                    0                    0
## 1009                   70                  182
## 1010                   81                  228
## 1011                    4                    2
## 1012                    0                    0
## 1013                    0                    0
## 1014                    2                    0
## 1015                    0                    0
## 1016                    0                    0
## 1017                    8                   30
## 1018                    0                    0
## 1019                    6                    2
## 1020                    1                    0
## 1021                    1                   57
## 1022                    0                    0
## 1023                    0                    9
## 1024                    2                    0
## 1025                   14                   12
## 1026                    0                 <NA>
## 1027                    0                    0
## 1028                    3                   62
## 1029                    0                    0
## 1030                    1                    3
## 1031                   61                  239
## 1032                  267                  861
## 1033                    2                   93
## 1034                    2                    0
## 1035                    0                   31
## 1036                    0                   11
## 1037                    3                    7
## 1038                  880                 3335
## 1039                    0                    0
## 1040                    0                    0
## 1041                    0                    0
## 1042                    0                    0
## 1043                   21                  417
## 1044                    9                   16
## 1045                    0                    2
## 1046                  236                 1559
## 1047                  440                  409
## 1048                    2                   10
## 1049                    1                    0
## 1050                    0                    0
## 1051                    2                    0
## 1052                    0                    5
## 1053                    4                    0
## 1054                    0                   13
## 1055                   16                    0
## 1056                   44                    0
## 1057                    1                    0
## 1058                    4                    0
## 1059                   26                  118
## 1060                    2                    0
## 1061                    0                    0
## 1062                    0                    0
## 1063                    0                    2
## 1064                   17                  418
## 1065                    0                 <NA>
## 1066                   14                    0
## 1067                    1                    0
## 1068                    4                    2
## 1069                  355                 3000
## 1070                   21                   11
## 1071                   17                    0
## 1072                 1189                 2079
## 1073                   23                  103
## 1074                   10                   27
## 1075                  109                 <NA>
## 1076                    0                    0
## 1077                    0                   68
## 1078                  300                  832
## 1079                    0                    0
## 1080                    0                    2
## 1081                    0                 <NA>
## 1082                    2                    0
## 1083                    5                    0
## 1084                    0                    0
## 1085                    0                    0
## 1086                    0                    0
## 1087                    0                   82
## 1088                    0                    0
## 1089                    5                   33
## 1090                   31                  500
## 1091                    0                    0
## 1092                  511                 3900
## 1093                   43                   43
## 1094                    0                    0
## 1095                    2                    9
## 1096                    0                    0
## 1097                    0                    0
## 1098                    7                   18
## 1099                    0                    0
## 1100                  611                 1502
## 1101                    0                    6
## 1102                   10                    0
## 1103                    0                    6
## 1104                    0                    0
## 1105                    0                    0
## 1106                   25                  465
## 1107                    0                    0
## 1108                    0                    1
## 1109                    2                   34
## 1110                    2                    5
## 1111                    1                    0
## 1112                    0                    0
## 1113                   70                   20
## 1114                  258                 2600
## 1115                   12                  123
## 1116                    1                    0
## 1117                    0                    0
## 1118                    0                    0
## 1119                  107                 1700
## 1120                    0                    0
## 1121                    0                    1
## 1122                  361                  169
## 1123                   27                  366
## 1124                   32                   24
## 1125                    0                    0
## 1126                    0                    9
## 1127                    0                   -2
## 1128                   54                   65
## 1129                    0                    0
## 1130                    5                   20
## 1131                    9                  180
## 1132                    4                    0
## 1133                  182                    0
## 1134                   12                   46
## 1135                    1                   15
## 1136                    0                    7
## 1137                  117                  161
## 1138                 1886                    0
## 1139                    0                    0
## 1140                    0                    0
## 1141                    0                    2
## 1142                    1                    6
## 1143                    5                   16
## 1144                    2                    0
## 1145                    6                    0
## 1146                    0                    0
## 1147                    1                    2
## 1148                    1                    0
## 1149                    0                    0
## 1150                   19                  131
## 1151                    0                    0
## 1152                  251                   65
## 1153                    0                    0
## 1154                    1                    0
## 1155                    0                    4
## 1156                    1                    4
## 1157                  370                    0
## 1158                  329                 3100
## 1159                    1                   24
## 1160                    2                    0
## 1161                    1                   61
## 1162                    0                   15
## 1163                   82                  337
## 1164                    0                    0
## 1165                    4                    9
## 1166                   63                  400
## 1167                    0                    0
## 1168                    0                    0
## 1169                    0                    2
## 1170                    0                    0
## 1171                   14                    1
## 1172                    1                    3
## 1173                    0                    0
## 1174                    0                    0
## 1175                    0                   19
## 1176                    1                    0
## 1177                    3                    0
## 1178                    0                    0
## 1179                  242                    0
## 1180                   11                   69
## 1181                    0                    2
## 1182                    0                    1
## 1183                   48                    0
## 1184                    6                   21
## 1185                    0                    0
## 1186                    0                    0
## 1187                  272                   53
## 1188                    0                    0
## 1189                 1418                 1632
## 1190                    0                    0
## 1191                    0                    4
## 1192                 1613                 2928
## 1193                    0                    0
## 1194                    3                    0
## 1195                    6                   15
## 1196                    0                    9
## 1197                   36                    0
## 1198                   15                    0
## 1199                    0                    0
## 1200                    0                    0
## 1201                   26                    0
## 1202                    0                    0
## 1203                   14                    0
## 1204                   20                   72
## 1205                    0                    0
## 1206                   38                   32
## 1207                    1                   31
## 1208                    0                 <NA>
## 1209                    0                    0
## 1210                    0                   19
## 1211                    0                    0
## 1212                    0                    0
## 1213                    1                   34
## 1214                   12                   31
## 1215                    0                    0
## 1216                    0                   15
## 1217                    0                    0
## 1218                    0                    0
## 1219                    0                    0
## 1220                    1                    0
## 1221                    0                    0
## 1222                    0                    0
## 1223                    2                    0
## 1224                    0                    1
## 1225                    0                    7
## 1226                    0                    0
## 1227                    0                    5
## 1228                    0                    0
## 1229                    2                    7
## 1230                   33                   90
## 1231                    0                    0
## 1232                    0                    0
## 1233                    0                   10
## 1234                  249                  982
## 1235                    0                    0
## 1236                    5                   70
## 1237                    0                    0
## 1238                    0                    0
## 1239                    3                    0
## 1240                    0                    0
## 1241                    1                   16
## 1242                    3                   19
## 1243                    0                 <NA>
## 1244                    0                    2
## 1245                    1                    0
## 1246                  147                 <NA>
## 1247                    1                    2
## 1248                    0                    0
## 1249                   19                    0
## 1250                    1                    0
## 1251                  116                    0
## 1252                    5                    0
## 1253                    0                    0
## 1254                    0                    0
## 1255                    0                    0
## 1256                 4099                 2480
## 1257                    0                    0
## 1258                    0                 <NA>
## 1259                   12                    0
## 1260                    2                    0
## 1261                   31                   97
## 1262                   10                    0
## 1263                    6                   79
## 1264                    4                   27
## 1265                  195                  511
## 1266                    1                    0
## 1267                    1                    0
## 1268                    9                    0
## 1269                    0                    0
## 1270                    1                    0
## 1271                    0                   16
## 1272                    0                    0
## 1273                   80                    0
## 1274                  942                 1803
## 1275                    0                    0
## 1276                    4                   49
## 1277                    0                    0
## 1278                   23                    0
## 1279                    0                    0
## 1280                    6                   77
## 1281                    0                    0
## 1282                    0                    0
## 1283                    0                    0
## 1284                    0                    0
## 1285                    0                    2
## 1286                   11                    0
## 1287                    1                    0
## 1288                    2                    8
## 1289                    0                    1
## 1290                    1                    0
## 1291                   35                  844
## 1292                    0                 <NA>
## 1293                  544                  477
## 1294                    1                 <NA>
## 1295                   10                    0
## 1296                   24                   70
## 1297                    0                    0
## 1298                 1182                 1985
## 1299                    0                   10
## 1300                    1                    9
## 1301                    0                    0
## 1302                    0                    0
## 1303                    1                    8
## 1304                    0                    8
## 1305                    0                    0
## 1306                    8                   23
## 1307                    0                    0
## 1308                    0                    0
## 1309                    4                   70
## 1310                    9                   30
## 1311                    0                    0
## 1312                   39                   77
## 1313                    0                   23
## 1314                    0                    0
## 1315                    0                    1
## 1316                    0                    0
## 1317                    0                    3
## 1318                    0                    2
## 1319                   30                    0
## 1320                    0                    0
## 1321                    2                    8
## 1322                    5                    0
## 1323                    0                    0
## 1324                    3                    3
## 1325                    1                   55
## 1326                    0                    2
## 1327                   18                    0
## 1328                    0                    0
## 1329                   10                   39
## 1330                    0                    0
## 1331                    0                    0
## 1332                    0                    5
## 1333                    0                    1
## 1334                    3                    5
## 1335                    0                    0
## 1336                    0                    9
## 1337                    0                    0
## 1338                    0                    0
## 1339                    0                    0
## 1340                    7                   21
## 1341                 1397                  999
## 1342                   10                    0
## 1343                    1                    8
## 1344                    3                    0
## 1345                    0                    1
## 1346                    0                    0
## 1347                    0                    0
## 1348                    1                    0
## 1349                    1                    5
## 1350                    0                    0
## 1351                    2                    7
## 1352                    0                    0
## 1353                    1                    2
## 1354                    5                    0
## 1355                    0                    0
## 1356                    0                    0
## 1357                    0                    0
## 1358                    1                    1
## 1359                    0                    0
## 1360                    6                    0
## 1361                   18                  112
## 1362                    0                    0
## 1363                   17                  303
## 1364                    0                    0
## 1365                    2                    1
## 1366                  357                    0
## 1367                    0                    0
## 1368                   94                   40
## 1369                    0                    0
## 1370                   18                  383
## 1371                   11                    1
## 1372                    0                    2
## 1373                    0                    3
## 1374                    0                    2
## 1375                    3                    5
## 1376                    0                    0
## 1377                    1                    0
## 1378                    0                   12
## 1379                   10                   55
## 1380                    1                    0
## 1381                    3                   54
## 1382                    0                    0
## 1383                    0                    0
## 1384                    1                    4
## 1385                    0                    0
## 1386                    0                    0
## 1387                    0                    0
## 1388                    1                    5
## 1389                    1                    0
## 1390                    0                   12
## 1391                    0                 <NA>
## 1392                    0                    0
## 1393                    3                    8
## 1394                    2                    1
## 1395                    0                    0
## 1396                    3                    0
## 1397                    1                   87
## 1398                    0                    0
## 1399                    4                    7
## 1400                    2                    0
## 1401                    0                    8
## 1402                    0                    0
## 1403                    0                    0
## 1404                    0                    0
## 1405                   61                   33
## 1406                   26                  888
## 1407                    5                   12
## 1408                  471                  657
## 1409                    0                    0
## 1410                   27                  218
## 1411                    0                   11
## 1412                    0                   32
## 1413                    1                    0
## 1414                   24                    0
## 1415                    0                    0
## 1416                    0                    0
## 1417                    0                    0
## 1418                    0                   67
## 1419                    3                    0
## 1420                    0                    1
## 1421                    0                    0
## 1422                    0                    7
## 1423                    0                    0
## 1424                    0                    0
## 1425                    0                    1
## 1426                 1871                    0
## 1427                    0                    1
## 1428                  250                 1454
## 1429                    3                    2
## 1430                  182                 5495
## 1431                    1                    0
## 1432                    0                    0
## 1433                    4                   65
## 1434                    0                    0
## 1435                  494                  387
## 1436                    6                  150
## 1437                   32                    0
## 1438                    0                    1
## 1439                    0                    0
## 1440                    9                   91
## 1441                    0                    0
## 1442                    2                    0
## 1443                    0                    0
## 1444                   11                    0
## 1445                    0                   30
## 1446                    0                   12
## 1447                    0                  120
## 1448                   44                 3012
## 1449                    0                    0
## 1450                   13                    0
## 1451                    0                    0
## 1452                    0                    0
## 1453                  232                    0
## 1454                   41                  164
## 1455                    0                    0
## 1456                    0                    0
## 1457                   29                   56
## 1458                    0                    0
## 1459                    0                    0
## 1460                   10                   69
## 1461                    2                   72
## 1462                    0                   20
## 1463                    0                    0
## 1464                    0                    5
## 1465                  675                 1808
## 1466                    0                    0
## 1467                    0                   59
## 1468                    0                    0
## 1469                    0                   12
## 1470                   51                   64
## 1471                    0                    0
## 1472                    0                   39
## 1473                 4923                 4333
## 1474                    9                    0
## 1475                    4                    0
## 1476                    0                    5
## 1477                    0                    5
## 1478                    4                   10
## 1479                  224                    2
## 1480                    4                    0
## 1481                   97                 <NA>
## 1482                    0                   27
## 1483                    2                   14
## 1484                    0                    0
## 1485                  120                 9156
## 1486                    3                 <NA>
## 1487                    0                    6
## 1488                    2                    0
## 1489                 1290                 <NA>
## 1490                   40                  224
## 1491                   35                   29
## 1492                   33                    0
## 1493                    0                    0
## 1494                    0                    3
## 1495                    0                    0
## 1496                    0                    0
## 1497                    4                    6
## 1498                    4                   49
## 1499                    0                    0
## 1500                    0                    0
## 1501                    0                    1
## 1502                    0                    1
## 1503                    1                    0
## 1504                    4                    0
## 1505                    6                   16
## 1506                    0                   10
## 1507                    2                    1
## 1508                    3                    0
## 1509                    1                   13
## 1510                   37                  102
## 1511                    0                    0
## 1512                    2                    1
## 1513                    6                    0
## 1514                    1                    0
## 1515                  758                 1101
## 1516                    0                    0
## 1517                  258                    0
## 1518                   32                   33
## 1519                    6                   13
## 1520                    6                   44
## 1521                  354                  170
## 1522                   19                    0
## 1523                    2                    9
## 1524                    2                    0
## 1525                    0                    0
## 1526                    0                   10
## 1527                    2                   42
## 1528                    1                    0
## 1529                  331                 2503
## 1530                    0                    0
## 1531                    0                    0
## 1532                    0                    0
## 1533                    0                 <NA>
## 1534                    1                    0
## 1535                   18                   35
## 1536                    2                    7
## 1537                    5                    0
## 1538                    2                    1
## 1539                    0                    0
## 1540                  309                 2873
## 1541                    0                 <NA>
## 1542                    2                    6
## 1543                    0                   10
## 1544                    5                    0
## 1545                    4                   31
## 1546                    2                    0
## 1547                    1                    9
## 1548                    1                    0
## 1549                    9                   27
## 1550                    0                 <NA>
## 1551                    9                    0
## 1552                    0                    0
## 1553                   13                 <NA>
## 1554                    4                 <NA>
## 1555                    0                 <NA>
## 1556                    5                    7
## 1557                    6                    6
## 1558                    4                    8
## 1559                   42                   21
## 1560                    1                 <NA>
## 1561                    0                    0
## 1562                    2                    0
## 1563                    0                    9
## 1564                    4                 <NA>
## 1565                  110                  121
## 1566                    2                    0
## 1567                    1                    0
## 1568                    1                    3
## 1569                    6                   49
## 1570                    2                    0
## 1571                    0                    0
## 1572                    3                    0
## 1573                    0                    2
## 1574                    0                    0
## 1575                    0                   14
## 1576                  716                 1234
## 1577                    0                    0
## 1578                    5                   19
## 1579                    0                    0
## 1580                    0                    1
## 1581                    0                    4
## 1582                    0                    9
## 1583                    2                   13
## 1584                   22                    0
## 1585                    0                    1
## 1586                    0                    0
## 1587                   50                   94
## 1588                    2                    0
## 1589                    0                    0
## 1590                    0                    0
## 1591                  115                   10
## 1592                 1057                 2200
## 1593                    2                   54
## 1594                    1                    0
## 1595                    0                    0
## 1596                    3                  150
## 1597                    4                    4
## 1598                    0                    0
## 1599                    0                    0
## 1600                    0                    0
## 1601                   15                  388
## 1602                    2                    0
## 1603                    2                    0
## 1604                    0                 <NA>
## 1605                    4                    0
## 1606                   11                   94
## 1607                    0                    0
## 1608                   98                 <NA>
## 1609                    0                    0
## 1610                    0                    0
## 1611                    0                    2
## 1612                    2                 <NA>
## 1613                   11                   52
## 1614                    0                   16
## 1615                    2                    0
## 1616                    9                 <NA>
## 1617                    0                    0
## 1618                    2                    0
## 1619                    0                    0
## 1620                    0                    0
## 1621                   14                   10
## 1622                    0                    0
## 1623                    0                   32
## 1624                   24                    8
## 1625                    8                    0
## 1626                  100                  702
## 1627                    0                    0
## 1628                   27                   83
## 1629                    0                    0
## 1630                    0                   38
## 1631                   15                  228
## 1632                   10                    0
## 1633                    1                    0
## 1634                    1                   11
## 1635                    4                    2
## 1636                    0                    0
## 1637                    0                    0
## 1638                   84                 <NA>
## 1639                    0                    0
## 1640                    0                   10
## 1641                    0                    0
## 1642                    0                    0
## 1643                    0                    9
## 1644                    1                    0
## 1645                    3                  102
## 1646                    1                    0
## 1647                   18                   39
## 1648                    0                    5
## 1649                    5                    0
## 1650                    1                    0
## 1651                    0                    0
## 1652                    1                    0
## 1653                   70                  700
## 1654                    0                    0
## 1655                    0                    0
## 1656                    0                    7
## 1657                    0                    0
## 1658                    2                   31
## 1659                   20                   12
## 1660                    0                   45
## 1661                    8                   37
## 1662                   25                  143
## 1663                    1                   20
## 1664                   12                   30
## 1665                    0                    0
## 1666                   19                  294
## 1667                    0                    5
## 1668                    3                 <NA>
## 1669                    1                    0
## 1670                  385                  295
## 1671                   48                  131
## 1672                    0                    0
## 1673                    0                    0
## 1674                    0                   15
## 1675                    2                    0
## 1676                   47                   36
## 1677                    1                   13
## 1678                    0                    0
## 1679                    0                    0
## 1680                    0                    3
## 1681                    0                    0
## 1682                   22                    6
## 1683                    1                   74
## 1684                   26                   80
## 1685                    0                    1
## 1686                    0                    0
## 1687                    0                    0
## 1688                    0                    0
## 1689                    1                   34
## 1690                   30                  103
## 1691                    0                    0
## 1692                  364                  322
## 1693                   51                    0
## 1694                    0                    0
## 1695                    2                 <NA>
## 1696                   18                    0
## 1697                    0                    0
## 1698                    0                    6
## 1699                    0                   -5
## 1700                    0                    5
## 1701                    0                    1
## 1702                    3                    0
## 1703                    1                    0
## 1704                   19                  128
## 1705                    0                    0
## 1706                    3                  115
## 1707                    0                    0
## 1708                    0                    3
## 1709                  225                    0
## 1710                    0                    0
## 1711                    1                    0
## 1712                    6                    8
## 1713                    2                    5
## 1714                    1                   27
## 1715                    0                    0
## 1716                    0                    1
## 1717                    0                    0
## 1718                    6                   82
## 1719                    0                    0
## 1720                    1                    8
## 1721                    3                 <NA>
## 1722                    0                    1
## 1723                    0                    0
## 1724                    4                    0
## 1725                   11                    0
## 1726                    0                    0
## 1727                    2                   75
## 1728                 1428                 2342
## 1729                    0                    0
## 1730                   12                   58
## 1731                    4                  160
## 1732                   48                  307
## 1733                    0                    0
## 1734                   19                   57
## 1735                  352                 1841
## 1736                    3                    1
## 1737                    0                    0
## 1738                   26                   58
## 1739                    0                    1
## 1740                    3                   40
## 1741                   12                   41
## 1742                    0                    0
## 1743                    0                    0
## 1744                   14                   84
## 1745                    1                    0
## 1746                    3                   38
## 1747                   12                    0
## 1748                   64                    0
## 1749                    0                    1
## 1750                   13                   71
## 1751                    1                    1
## 1752                    0                   13
## 1753                    0                    0
## 1754                    0                    0
## 1755                    2                    3
## 1756                    1                    0
## 1757                    0                    0
## 1758                    3                   67
## 1759                   10                    7
## 1760                    8                    0
## 1761                   10                   59
## 1762                    3                   99
## 1763                    4                  113
## 1764                    8                   66
## 1765                    5                    0
## 1766                    0                    0
## 1767                    0                    0
## 1768                   10                   29
## 1769                  152                 <NA>
## 1770                    0                 <NA>
## 1771                   73                    0
## 1772                    2                   32
## 1773                   33                   36
## 1774                    1                    1
## 1775                    3                    0
## 1776                    0                    0
## 1777                    0                    7
## 1778                    0                    0
## 1779                    0                    0
## 1780                    2                    0
## 1781                    0                    5
## 1782                    0                 <NA>
## 1783                  183                    0
## 1784                    0                    0
## 1785                    0                   12
## 1786                    0                   12
## 1787                    0                    0
## 1788                    0                    4
## 1789                    0                 <NA>
## 1790                    0                    8
## 1791                   30                  111
## 1792                    0                   23
## 1793                    2                 <NA>
## 1794                   20                  387
## 1795                    3                    2
## 1796                   11                  107
## 1797                    4                    3
## 1798                    0                    0
## 1799                    0                    0
## 1800                    1                    2
## 1801                    0                    0
## 1802                   14                    0
## 1803                    5                    0
## 1804                    1                    0
## 1805                    0                    0
## 1806                    0                    0
## 1807                    3                   21
## 1808                  113                 <NA>
## 1809                    5                    1
## 1810                    0                    0
## 1811                  188                  205
## 1812                    0                    0
## 1813                    0                    0
## 1814                   21                  308
## 1815                    2                   16
## 1816                    0                    0
## 1817                    1                   54
## 1818                   11                   88
## 1819                    1                   50
## 1820                    2                    2
## 1821                    0                    1
## 1822                    2                   17
## 1823                    3                    0
## 1824                    0                    1
## 1825                    0                   -1
## 1826                    0                    0
## 1827                    2                    0
## 1828                    0                    0
## 1829                    0                    3
## 1830                    1                    0
## 1831                  283                  546
## 1832                    9                 <NA>
## 1833                    9                 <NA>
## 1834                    0                    4
## 1835                    0                    0
## 1836                    0                    0
## 1837                    1                    0
## 1838                    8                   94
## 1839                    0                    9
## 1840                    0                    0
## 1841                    3                   15
## 1842                  171                    0
## 1843                    3                  126
## 1844                   13                   47
## 1845                    0                    0
## 1846                    0                 <NA>
## 1847                    1                    6
## 1848                    8                   62
## 1849                   13                    0
## 1850                    1                   15
## 1851                   15                  128
## 1852                    1                    0
## 1853                  266                    0
## 1854                    2                    0
## 1855                    0                    0
## 1856                    2                   37
## 1857                    1                    8
## 1858                    0                    0
## 1859                    5                   23
## 1860                    0                    0
## 1861                    0                    2
## 1862                    0                    7
## 1863                    1                    0
## 1864                    1                    0
## 1865                    3                   21
## 1866                   13                    0
## 1867                    2                    0
## 1868                    0                    0
## 1869                    6                   82
## 1870                    8                    0
## 1871                    0                    0
## 1872                    0                   -4
## 1873                    0                    0
## 1874                    0                    0
## 1875                    0                    1
## 1876                    0                    0
## 1877                    3                   77
## 1878                    0                   34
## 1879                   27                   93
## 1880                    0                 <NA>
## 1881                    7                    0
## 1882                    0                    0
## 1883                    4                    0
## 1884                    6                    0
## 1885                    0                    0
## 1886                    0                   10
## 1887                    0                 <NA>
## 1888                    5                    1
## 1889                    4                    8
## 1890                    0                    0
## 1891                    0                    1
## 1892                    0                    0
## 1893                    1                    0
## 1894                    0                    0
## 1895                    2                    0
## 1896                   17                   65
## 1897                    1                   10
## 1898                    7                    1
## 1899                    0                    0
## 1900                   27                   15
## 1901                    0                    0
## 1902                  211                  296
## 1903                    1                    0
## 1904                    0                    6
## 1905                    0                   17
## 1906                  183                 1756
## 1907                    0                    0
## 1908                    4                    4
## 1909                 1135                  532
## 1910                    2                   25
## 1911                   24                   59
## 1912                    0                    0
## 1913                    0                    6
## 1914                   13                  163
## 1915                  575                  992
## 1916                    0                    0
## 1917                    0                    0
## 1918                    2                    0
## 1919                  710                 1505
## 1920                    2                    7
## 1921                    0                   27
## 1922                  382                  481
## 1923                   42                  540
## 1924                    1                    0
## 1925                    8                   82
## 1926                    0                 <NA>
## 1927                    0                    6
## 1928                    1                    9
## 1929                    0                 <NA>
## 1930                    0                    0
## 1931                    3                   35
## 1932                    3                   10
## 1933                    0                 <NA>
## 1934                    1                    0
## 1935                    0                    2
## 1936                    0                    0
## 1937                    0                    6
## 1938                    0                    0
## 1939                    1                   39
## 1940                  608                 4693
## 1941                    1                   46
## 1942                    0                    5
## 1943                    0                    0
## 1944                    4                  122
## 1945                    0                    0
## 1946                    7                   11
## 1947                  187                 5018
## 1948                   11                    1
## 1949                  256                    0
## 1950                    6                   55
## 1951                    0                    1
## 1952                    2                   25
## 1953                  247                    0
## 1954                    0                    0
## 1955                    2                    0
## 1956                    0                    0
## 1957                 3323                 1293
## 1958                    0                    0
## 1959                    4                    0
## 1960                   19                    2
## 1961                   98                 <NA>
## 1962                    0                    0
## 1963                    3                   19
## 1964                    0                    0
## 1965                    4                   18
## 1966                    1                    0
## 1967                  335                    0
## 1968                   14                    4
## 1969                    1                    0
## 1970                    0                    7
## 1971                    8                    0
## 1972                   11                  172
## 1973                    0                    0
## 1974                    0                    0
## 1975                    3                    0
## 1976                   14                   24
## 1977                    0                    0
## 1978                    0                    5
## 1979                    0                    6
## 1980                    0                    1
## 1981                    0                    0
## 1982                    0                    0
## 1983                   78                  422
## 1984                    4                  224
## 1985                    0                    4
## 1986                    2                    2
## 1987                    5                   43
## 1988                    0                    1
## 1989                    0                    1
## 1990                    6                    8
## 1991                  959                 1219
## 1992                    0                    0
## 1993                    0                    0
## 1994                   47                  166
## 1995                    4                  172
## 1996                    1                 <NA>
## 1997                    1                    0
## 1998                    0                    0
## 1999                    1                    0
## 2000                    0                   18
## 2001                    0                   -4
## 2002                    0                    1
## 2003                   42                    0
## 2004                   12                  113
## 2005                   19                   66
## 2006                    0                    0
## 2007                   22                   50
## 2008                    2                    0
## 2009                    1                   13
## 2010                    5                    3
## 2011                    0                    0
## 2012                    0                    0
## 2013                    1                 <NA>
## 2014                    2                    2
## 2015                  110                 2126
## 2016                    0                    0
## 2017                    0                    0
## 2018                    0                    0
## 2019                    1                   86
## 2020                    9                 <NA>
## 2021                    0                    0
## 2022                    1                    0
## 2023                    0                   28
## 2024                    1                    0
## 2025                    1                    0
## 2026                    0                    0
## 2027                    0                    0
## 2028                    1                    0
## 2029                   18                   60
## 2030                    2                   33
## 2031                    0                    0
## 2032                  295                    0
## 2033                   82                    0
## 2034                    2                    0
## 2035                    5                    3
## 2036                    0                    3
## 2037                    1                   15
## 2038                 1525                    0
## 2039                    3                    0
## 2040                   25                  252
## 2041                    0                   78
## 2042                   10                 1369
## 2043                   43                  366
## 2044                    0                    0
## 2045                    0                    0
## 2046                   20                    8
## 2047                    0                    0
## 2048                 1319                  794
## 2049                   11                   51
## 2050                    0                    0
## 2051                  260                 2500
## 2052                    5                    7
## 2053                    1                    0
## 2054                    0                    0
## 2055                    3                    0
## 2056                    1                    0
## 2057                    4                   24
## 2058                   16                    0
## 2059                    0                    0
## 2060                    1                    0
## 2061                    2                    0
## 2062                    0                   17
## 2063                    0                    0
## 2064                   21                  287
## 2065                    0                    1
## 2066                    1                    0
## 2067                    0                    0
## 2068                    2                    3
## 2069                    0                    0
## 2070                    0                    0
## 2071                    0                    0
## 2072                    2                    1
## 2073                  289                   93
## 2074                    0                    6
## 2075                    3                   15
## 2076                    0                   -6
## 2077                  541                  369
## 2078                    0                    1
## 2079                   21                  298
## 2080                    0                    5
## 2081                    7                   -6
## 2082                   50                   81
## 2083                   38                 <NA>
## 2084                    3                    0
## 2085                   21                    0
## 2086                 6115                 6295
## 2087                    0                    0
## 2088                    1                   32
## 2089                    1                    2
## 2090                   24                   45
## 2091                    0                    0
## 2092                    0                    0
## 2093                    0                    3
## 2094                    0                    0
## 2095                    5                    0
## 2096                    0                    0
## 2097                    0                    3
## 2098                    0                    9
## 2099                    0                    0
## 2100                    0                    0
## 2101                  206                 1333
## 2102                    0                 <NA>
## 2103                    9                    0
## 2104                    0                    1
## 2105                    5                   19
## 2106                    0                    0
## 2107                  140                  502
## 2108                    0                   12
## 2109                    0                    2
## 2110                    4                  129
## 2111                    0                   17
## 2112                    4                    0
## 2113                    0                    0
## 2114                   68                  204
## 2115                    0                    0
## 2116                    0                    0
## 2117                    1                    0
## 2118                    1                    5
## 2119                    0                    0
## 2120                 4041                 2837
## 2121                    1                   11
## 2122                    2                 <NA>
## 2123                    2                   22
## 2124                    1                    9
## 2125                    9                 <NA>
## 2126                    0                    0
## 2127                    0                    1
## 2128                    0                    0
## 2129                    6                  600
## 2130                    3                    8
## 2131                    0                    4
## 2132                    4                 <NA>
## 2133                    1                    1
## 2134                    0                    1
## 2135                    0                    0
## 2136                    2                    0
## 2137                    1                    0
## 2138                    0                    0
## 2139                  120                   16
## 2140                    4                   28
## 2141                    3                    0
## 2142                    0                    0
## 2143                  225                    0
## 2144                    0                   12
## 2145                   14                  227
## 2146                  311                 2600
## 2147                   25                  112
## 2148                   11                   32
## 2149                    0                  145
## 2150                  104                   74
## 2151                    0                    4
## 2152                    0                    0
## 2153                    0                    0
## 2154                    6                   39
## 2155                    0                    0
## 2156                   79                    0
## 2157                    0                    0
## 2158                   69                   27
## 2159                    0                    0
## 2160                    8                   56
## 2161                   19                    5
## 2162                    1                    8
## 2163                    0                    0
## 2164                    0                    0
## 2165                    0                    0
## 2166                   20                    2
## 2167                    1                   31
## 2168                    6                    0
## 2169                    7                   54
## 2170                    1                 <NA>
## 2171                   10                    0
## 2172                    0                    0
## 2173                    2                 <NA>
## 2174                   15                   26
## 2175                    0                    0
## 2176                    0                    0
## 2177                    1                    0
## 2178                    0                    0
## 2179                    0                    1
## 2180                    3                    0
## 2181                   16                   13
## 2182                   13                  362
## 2183                    1                    0
## 2184                    0                    0
## 2185                   10                   91
## 2186                    0                   13
## 2187                    9                    0
## 2188                    1                    1
## 2189                    0                    0
## 2190                   14                   28
## 2191                    6                   26
## 2192                    4                   38
## 2193                    6                    0
## 2194                    0                    0
## 2195                    0                    0
## 2196                   16                   18
## 2197                   20                   17
## 2198                   84                   14
## 2199                    0                    0
## 2200                    0                    0
## 2201                    2                    4
## 2202                    0                    8
## 2203                    6                    0
## 2204                    5                   41
## 2205                    0                 <NA>
## 2206                    0                    0
## 2207                    1                   22
## 2208                    0                    0
## 2209                    0                    0
## 2210                    2                    6
## 2211                 3571                 1718
## 2212                    0                   15
## 2213                    4                    0
## 2214                    0                   11
## 2215                    0                    0
## 2216                    0                    0
## 2217                    0                    0
## 2218                  439                  394
## 2219                    0                    0
## 2220                    6                    7
## 2221                  164                    0
## 2222                    1                    0
## 2223                    0                   60
## 2224                    2                  244
## 2225                    0                    0
## 2226                    0                    0
## 2227                    6                   28
## 2228                    0                    0
## 2229                    0                    0
## 2230                 1075                 1445
## 2231                    8                    5
## 2232                    0                    0
## 2233                    0                    0
## 2234                    1                    0
## 2235                    0                    0
## 2236                    0                   13
## 2237                    0                   26
## 2238                    0                    0
## 2239                   15                    0
## 2240                    4                    0
## 2241                    0                   13
## 2242                    0                    0
## 2243                   22                   17
## 2244                   31                    0
## 2245                    0                    1
## 2246                    2                    0
## 2247                   31                   17
## 2248                    0                    0
## 2249                    0                    4
## 2250                    0                    0
## 2251                    0                    0
## 2252                    0                    0
## 2253                   19                   98
## 2254                    6                   19
## 2255                    8                 <NA>
## 2256                    0                  165
## 2257                    3                    0
## 2258                    0                 <NA>
## 2259                    4                    2
## 2260                    9                  308
## 2261                   10                    6
## 2262                    0                    0
## 2263                    0                    0
## 2264                   35                    0
## 2265                  578                    0
## 2266                    0                    0
## 2267                    0                 <NA>
## 2268                  314                 8104
## 2269                    0                 <NA>
## 2270                    1                   55
## 2271                    0                    0
## 2272                    0                    0
## 2273                    0                    0
## 2274                    0                    0
## 2275                  144                 <NA>
## 2276                    1                    1
## 2277                    0                    1
## 2278                   99                  324
## 2279                    0                    0
## 2280                    3                    8
## 2281                    4                   47
## 2282                    0                   15
## 2283                  117                  228
## 2284                    0                   43
## 2285                    0                    0
## 2286                    1                    0
## 2287                   13                   10
## 2288                    0                    0
## 2289                    0                    0
## 2290                    4                    0
## 2291                   25                    0
## 2292                    0                    0
## 2293                    0                    0
## 2294                   77                  700
## 2295                    0                    0
## 2296                    0                    1
## 2297                    5                    0
## 2298                   97                    0
## 2299                    2                   81
## 2300                    2                   12
## 2301                    0                    0
## 2302                    3                   99
## 2303                    1                   12
## 2304                   46                  216
## 2305                    0                    3
## 2306                  161                    0
## 2307                    1                   56
## 2308                    3                    0
## 2309                    0                    0
## 2310                    0                    0
## 2311                   38                   20
## 2312                    0                    1
## 2313                    1                    0
## 2314                    3                    0
## 2315                    0                    0
## 2316                    0                    0
## 2317                    1                    0
## 2318                   18                   68
## 2319                    0                    0
## 2320                    1                    0
## 2321                   26                   51
## 2322                   51                  400
## 2323                    0                    5
## 2324                    0                    6
## 2325                    0                    0
## 2326                    2                    0
## 2327                    0                    0
## 2328                    0                    1
## 2329                   15                   24
## 2330                    0                    0
## 2331                    2                    6
## 2332                    0                    0
## 2333                    0                    0
## 2334                    6                 <NA>
## 2335                    5                    0
## 2336                  242                 1947
## 2337                    0                    3
## 2338                  258                    0
## 2339                    0                    0
## 2340                    0                    4
## 2341                    2                    8
## 2342                    0                  148
## 2343                    1                    0
## 2344                    3                    7
## 2345                    0                   56
## 2346                   20                    0
## 2347                   82                    0
## 2348                    0                    0
## 2349                    0                    0
## 2350                   16                   37
## 2351                    3                    0
## 2352                    4                    6
## 2353                    0                    0
## 2354                    1                    0
## 2355                   56                    0
## 2356                    0                   46
## 2357                    0                    0
## 2358                    0                    0
## 2359                    0                    1
## 2360                    5                    0
## 2361                  798                 3230
## 2362                    0                    0
## 2363                    6                 <NA>
## 2364                    0                    2
## 2365                    6                    0
## 2366                    0                    0
## 2367                  161                  858
## 2368                    7                    0
## 2369                    0                    0
## 2370                    7                    0
## 2371                  177                 1830
## 2372                    0                    0
## 2373                    4                   29
## 2374                    6                    2
## 2375                 1613                    0
## 2376                   13                    0
## 2377                    0                    0
## 2378                    8                    0
## 2379                   19                  142
## 2380                    0                    6
## 2381                    2                    0
## 2382                    0                   22
## 2383                    4                    3
## 2384                   21                   44
## 2385                    1                    1
## 2386                    0                    0
## 2387                    0                    7
## 2388                   92                    0
## 2389                    4                    0
## 2390                    3                 <NA>
## 2391                    0                    0
## 2392                  710                  725
## 2393                    4                   72
## 2394                    0                   66
## 2395                    0                    0
## 2396                    0                    9
## 2397                    2                   58
## 2398                   12                    0
## 2399                   17                   66
## 2400                   58                   26
## 2401                    2                    0
## 2402                    0                 <NA>
## 2403                   22                  135
## 2404                    2                    0
## 2405                    0                    2
## 2406                    4                 <NA>
## 2407                  126                  754
## 2408                    1                    0
## 2409                    2                   19
## 2410                    0                    1
## 2411                    3                    0
## 2412                    7                    2
## 2413                   44                 <NA>
## 2414                    0                    0
## 2415                   11                    0
## 2416                   72                   21
## 2417                    0                    0
## 2418                 1430                 -344
## 2419                    0                    0
## 2420                    0                    0
## 2421                  758                    0
## 2422                    0                    0
## 2423                    0                    0
## 2424                 1130                 3441
## 2425                    0                    0
## 2426                    9                   70
## 2427                    0                    1
## 2428                  369                  107
## 2429                    0                    0
## 2430                    0                  100
## 2431                    0                    0
## 2432                    0                   21
## 2433                    4                   15
## 2434                    8                 <NA>
## 2435                    1                    0
## 2436                    0                    0
## 2437                    0                 <NA>
## 2438                    0                    0
## 2439                    0                    9
## 2440                    0                   15
## 2441                   10                   87
## 2442                   16                    0
## 2443                   29                  179
## 2444                   24                   34
## 2445                    0                    0
## 2446                    0                    0
## 2447                    0                   29
## 2448                    3                 <NA>
## 2449                    5                    0
## 2450                    0                    0
## 2451                    2                    0
## 2452                   55                   61
## 2453                    0                    0
## 2454                    0                    0
## 2455                    8                    0
## 2456                    1                   50
## 2457                    1                    5
## 2458                    0                    0
## 2459                    2                    0
## 2460                    0                    0
## 2461                    0                    0
## 2462                  224                 3246
## 2463                    2                   19
## 2464                    0                    0
## 2465                    1                    1
## 2466                    0                    0
## 2467                    1                 <NA>
## 2468                    0                    0
## 2469                    0                    0
## 2470                    9                    1
## 2471                    4                    0
## 2472                    1                   47
## 2473                    0                   84
## 2474                    2                   16
## 2475                    7                    0
## 2476                    0                    8
## 2477                    1                    8
## 2478                    0                    0
## 2479                    0                    0
## 2480                    0                    0
## 2481                    0                 <NA>
## 2482                    0                    0
## 2483                    1                   27
## 2484                    0                    9
## 2485                    0                    3
## 2486                    0                    6
## 2487                    0                    0
## 2488                   22                   34
## 2489                    0                    0
## 2490                   27                   21
## 2491                    0                    0
## 2492                    0                    0
## 2493                    0                    0
## 2494                    0                    0
## 2495                    0                   44
## 2496                    1                    0
## 2497                    0                    0
## 2498                    0                    0
## 2499                   59                   73
## 2500                   22                   84
## 2501                    1                   53
## 2502                    0                    0
## 2503                    0                    0
## 2504                    1                    3
## 2505                   11                    0
## 2506                    0                   18
## 2507                   44                  111
## 2508                    0                    2
## 2509                    1                   29
## 2510                    0                    0
## 2511                    0                    0
## 2512                    0                    0
## 2513                    0                    0
## 2514                    0                    1
## 2515                    0                    0
## 2516                    5                    7
## 2517                    2                    0
## 2518                    1                   96
## 2519                    0                    2
## 2520                   63                 1139
## 2521                    0                    0
## 2522                    0                 <NA>
## 2523                    1                   63
## 2524                    0                    0
## 2525                    2                   10
## 2526                    1                    0
## 2527                    1                    0
## 2528                   83                 1000
## 2529                    2                    9
## 2530                    0                    9
## 2531                  467                    0
## 2532                    1                    0
## 2533                   16                    1
## 2534                    0                    0
## 2535                    0                    0
## 2536                    0                    0
## 2537                    0                   41
## 2538                    0                    0
## 2539                    8                    0
## 2540                    1                    1
## 2541                    0                    0
## 2542                    4                 <NA>
## 2543                    1                    0
## 2544                    0                    5
## 2545                    0                   29
## 2546                    0                    0
## 2547                  212                    0
## 2548                    0                    4
## 2549                    0                   10
## 2550                  268                    0
## 2551                    8                   32
## 2552                    0                    0
## 2553                    0                    0
## 2554                 1113                 3282
## 2555                    1                   24
## 2556                    0                    0
## 2557                    0                    0
## 2558                    0                    8
## 2559                    1                    0
## 2560                    1                    2
## 2561                    1                    0
## 2562                    0                    5
## 2563                   14                   64
## 2564                    0                    6
## 2565                  158                 <NA>
## 2566                    0                    0
## 2567                   33                    3
## 2568                  506                  990
## 2569                    0                    0
## 2570                    4                   61
## 2571                    2                   56
## 2572                  508                    0
## 2573                    0                    5
## 2574                    0                    0
## 2575                   12                   71
## 2576                    0                    0
## 2577                   13                  338
## 2578                    1                    0
## 2579                    0                   10
## 2580                    0                   24
## 2581                    0                    0
## 2582                    1                    9
## 2583                    5                   29
## 2584                   12                   49
## 2585                    0                   24
## 2586                    0                    0
## 2587                    6                    0
## 2588                   28                 <NA>
## 2589                    0                    0
## 2590                    3                    4
## 2591                    3                    0
## 2592                    2                    1
## 2593                    0                    0
## 2594                    1                    0
## 2595                    0                    0
## 2596                    0                    0
## 2597                    2                    0
## 2598                    1                    0
## 2599                    1                   11
## 2600                    0                    0
## 2601                    2                   50
## 2602                    0                    0
## 2603                    0                    4
## 2604                    7                 <NA>
## 2605                    0                    0
## 2606                    0                    9
## 2607                   60                   57
## 2608                    0                   10
## 2609                    4                   52
## 2610                    0                    1
## 2611                    0                    1
## 2612                    0                    0
## 2613                    1                    5
## 2614                  906                 6399
## 2615                    0                    0
## 2616                    2                    1
## 2617                    0                 <NA>
## 2618                    0                   19
## 2619                    1                    0
## 2620                    0                    0
## 2621                   11                    0
## 2622                    0                    1
## 2623                    0                  103
## 2624                    0                 <NA>
## 2625                   14                    0
## 2626                    3                   14
## 2627                    2                   50
## 2628                  183                 <NA>
## 2629                   13                  419
## 2630                    0                    0
## 2631                   46                   72
## 2632                    0                    3
## 2633                   22                   18
## 2634                    2                    1
## 2635                    7                   44
## 2636                    0                   14
## 2637                    0                    0
## 2638                    0                    0
## 2639                   55                   87
## 2640                    0                    0
## 2641                    0                   41
## 2642                    0                    0
## 2643                   40                    5
## 2644                 1353                 1573
## 2645                    0                   22
## 2646                   16                   29
## 2647                   18                  254
## 2648                    0                    1
## 2649                   34                   19
## 2650                    4                    0
## 2651                    0                    0
## 2652                    0                   14
## 2653                    0                    1
## 2654                  767                  404
## 2655                    0                    0
## 2656                    1                    0
## 2657                   91                    0
## 2658                    0                   58
## 2659                    1                    0
## 2660                    0                   59
## 2661                    0                    7
## 2662                    0                    0
## 2663                    1                    0
## 2664                    0                    0
## 2665                    0                 <NA>
## 2666                    0                    0
## 2667                    0                    0
## 2668                    0                    0
## 2669                   11                  534
## 2670                   52                 <NA>
## 2671                    0                    3
## 2672                    0                    0
## 2673                   12                  162
## 2674                    0                    0
## 2675                    0                    0
## 2676                    2                 <NA>
## 2677                    4                    6
## 2678                    0                   26
## 2679                    0                    0
## 2680                    1                  104
## 2681                    0                    0
## 2682                    0                    0
## 2683                   11                    0
## 2684                 1048                  203
## 2685                    0                    0
## 2686                  240                 1520
## 2687                    3                   11
## 2688                   22                   24
## 2689                    0                    1
## 2690                    0                   36
## 2691                    0                   18
## 2692                    0                    0
## 2693                    0                    0
## 2694                  385                    0
## 2695                    0                   18
## 2696                   14                   42
## 2697                   45                  263
## 2698                    0                    0
## 2699                   34                   58
## 2700                    2                    0
## 2701                    0                   38
## 2702                    0                    0
## 2703                  231                    0
## 2704                    9                    7
## 2705                    4                    0
## 2706                    0                    0
## 2707                    0                    0
## 2708                    0                    2
## 2709                   11                   30
## 2710                    0                    0
## 2711                  162                 1923
## 2712                    2                   16
## 2713                    0                    0
## 2714                  285                  340
## 2715                    0                    7
## 2716                  240                 1415
## 2717                    0                    0
## 2718                    0                    7
## 2719                   21                   90
## 2720                    0                   13
## 2721                    1                    0
## 2722                   74                  143
## 2723                    0                    1
## 2724                    0                    1
## 2725                    1                    4
## 2726                   15                 <NA>
## 2727                 1731                    0
## 2728                    1                   17
## 2729                  144                  690
## 2730                  887                 1822
## 2731                    1                   25
## 2732                  100                  127
## 2733                    0                    1
## 2734                    0                    0
## 2735                  756                    0
## 2736                    0                    0
## 2737                    0                    0
## 2738                    0                    0
## 2739                    0                    6
## 2740                    0                 <NA>
## 2741                    0                    0
## 2742                    0                    4
## 2743                    1                   16
## 2744                    0                    0
## 2745                    1                   24
## 2746                    2                    3
## 2747                    0                    0
## 2748                    1                    0
## 2749                 1109                 1593
## 2750                    0                    0
## 2751                    0                    0
## 2752                    0                    1
## 2753                    0                 <NA>
## 2754                  107                 <NA>
## 2755                    1                   25
## 2756                    0                    0
## 2757                  369                    0
## 2758                    0                    0
## 2759                    0                 <NA>
## 2760                    7                    0
## 2761                    0                    0
## 2762                    0                    0
## 2763                    0                    0
## 2764                   26                   57
## 2765                    2                    5
## 2766                    0                 <NA>
## 2767                    0                   30
## 2768                    0                    0
## 2769                    0                    0
## 2770                    0                    0
## 2771                  386                 3500
## 2772                    1                    8
## 2773                    0                    3
## 2774                    6                   16
## 2775                    0                    0
## 2776                    0                 <NA>
## 2777                    0                  109
## 2778                   23                    4
## 2779                    6                    7
## 2780                  392                    0
## 2781                    1                   16
## 2782                    0                    0
## 2783                    0                 <NA>
## 2784                   74                   65
## 2785                  171                    0
## 2786                    5                    0
## 2787                    0                    0
## 2788                    5                    9
## 2789                    7                   16
## 2790                    0                    0
## 2791                    0                    3
## 2792                    0                    0
## 2793                    0                    3
## 2794                    0                    0
## 2795                    0                    0
## 2796                    2                   11
## 2797                   59                   71
## 2798                    1                    0
## 2799                    1                   37
## 2800                    8                    0
## 2801                    0                    0
## 2802                    0                 <NA>
## 2803                    6                    0
## 2804                    0                    3
## 2805                   91                  400
## 2806                   50                   73
## 2807                   10                    0
## 2808                    0                    0
## 2809                    1                    0
## 2810                    0                    0
## 2811                   32                   30
## 2812                    5                  172
## 2813                    3                    0
## 2814                    0                    0
## 2815                   10                    0
## 2816                   14                  103
## 2817                    0                    0
## 2818                    0                    0
## 2819                    4                    0
## 2820                    0                    0
## 2821                    1                   26
## 2822                    1                    0
## 2823                    3                   28
## 2824                    0                    0
## 2825                    0                    0
## 2826                    0                   47
## 2827                    1                    1
## 2828                    0                    4
## 2829                    1                    0
## 2830                   24                  143
## 2831                    2                    1
## 2832                    0                    0
## 2833                    6                   98
## 2834                    0                   18
## 2835                    6                   60
## 2836                    1                    0
## 2837                    0                    0
## 2838                    0                    0
## 2839                    1                    0
## 2840                   31                   40
## 2841                    0                    7
## 2842                    0                    0
## 2843                    2                    0
## 2844                    0                    0
## 2845                    3                 <NA>
## 2846                 4889                 3842
## 2847                    1                   28
## 2848                   23                   35
## 2849                    0                    0
## 2850                    0                    0
## 2851                    1                    0
## 2852                    0                    6
## 2853                    0                    9
## 2854                    0                    0
## 2855                    5                 2279
## 2856                    1                    0
## 2857                    3                   37
## 2858                    0                    0
## 2859                   10                    0
## 2860                    0                    0
## 2861                    0                    0
## 2862                   17                   53
## 2863                    0                    7
## 2864                    0                    0
## 2865                    0                    9
## 2866                    6                    0
## 2867                    0                    0
## 2868                    0                    1
## 2869                    0                   33
## 2870                  314                   26
## 2871                    8                    0
## 2872                    3                    1
## 2873                   18                   64
## 2874                    0                    0
## 2875                    7                    0
## 2876                    2                  -41
## 2877                    2                   32
## 2878                    0                    0
## 2879                    1                   14
## 2880                    0                    1
## 2881                    0                    0
## 2882                    0                    0
## 2883                   15                  278
## 2884                  286                 2214
## 2885                   12                  341
## 2886                    4                   11
## 2887                    8                   26
## 2888                    3                  164
## 2889                    0                    0
## 2890                    1                   42
## 2891                    0                    2
## 2892                  311                    0
## 2893                    1                    5
## 2894                  222                  875
## 2895                   47                 <NA>
## 2896                    1                 <NA>
## 2897                    2                   13
## 2898                    1                    6
## 2899                    0                    0
## 2900                    2                    0
## 2901                    0                    0
## 2902                    0                   66
## 2903                    1                   27
## 2904                    2                   26
## 2905                    0                    1
## 2906                    3                    0
## 2907                    2                    0
## 2908                    0                    1
## 2909                    0                    0
## 2910                    9                    0
## 2911                    0                    0
## 2912                    0                    0
## 2913                    1                    0
## 2914                   28                   63
## 2915                    1                   60
## 2916                    3                    7
## 2917                    0                    0
## 2918                    0                    0
## 2919                    1                    0
## 2920                  163                 <NA>
## 2921                    8                    8
## 2922                    0                    0
## 2923                    6                  113
## 2924                   11                   67
## 2925                    0                 <NA>
## 2926                   12                   23
## 2927                    5                 <NA>
## 2928                    0                    0
## 2929                    0                    5
## 2930                    1                   26
## 2931                    0                    0
## 2932                   37                  131
## 2933                    0                    0
## 2934                    0                    0
## 2935                    2                    0
## 2936                    0                  100
## 2937                   15                  194
## 2938                    3                   16
## 2939                    3                    0
## 2940                    0                    5
## 2941                    0                    0
## 2942                    2                   24
## 2943                    0                    0
## 2944                    0                    0
## 2945                    2                    0
## 2946                    0                    0
## 2947                    0                    4
## 2948                    1                    0
## 2949                   14                    0
## 2950                    0                   11
## 2951                    5                   33
## 2952                    0                    0
## 2953                    0                    0
## 2954                    4                    9
## 2955                    1                   13
## 2956                    0                   28
## 2957                    2                    3
## 2958                    1                    4
## 2959                    6                  -36
## 2960                   31                  199
## 2961                    0                    0
## 2962                    0                    8
## 2963                    0                    0
## 2964                    0                    0
## 2965                   31                   39
## 2966                    1                    0
## 2967                    0                    1
## 2968                    4                   30
## 2969                    0                    6
## 2970                   28                    8
## 2971                    0                    0
## 2972                    1                    0
## 2973                    0                    4
## 2974                    3                    0
## 2975                    1                   17
## 2976                    1                    0
## 2977                    0                 <NA>
## 2978                    0                    0
## 2979                    1                    0
## 2980                    5                   35
## 2981                    1                    4
## 2982                    3                   12
## 2983                    0                    7
## 2984                    0                    0
## 2985                   15                   73
## 2986                    0                    0
## 2987                    1                    0
## 2988                    2                    1
## 2989                    0                    0
## 2990                    1                  109
## 2991                    0                    5
## 2992                    0                    0
## 2993                    7                    0
## 2994                   11                    0
## 2995                    0                 <NA>
## 2996                    0                    0
## 2997                  182                 4846
## 2998                    0                    1
## 2999                    1                    3
## 3000                   53                   67
## 3001                    0                    0
## 3002                    6                    1
## 3003                    2                    0
## 3004                    8                   59
## 3005                  121                 1110
## 3006                    6                   20
## 3007                    1                    7
## 3008                   -5                   -8
## 3009                   19                  255
## 3010                   17                  297
## 3011                    1                    7
## 3012                    0                 <NA>
## 3013                    0                    0
## 3014                    0                    0
## 3015                    1                    0
## 3016                    0                    0
## 3017                    1                    6
## 3018                    4                    0
## 3019                    0                    0
## 3020                  335                    0
## 3021                    0                 <NA>
## 3022                    1                    0
## 3023                    1                   26
## 3024                   96                  486
## 3025                    0                    0
## 3026                    4                   41
## 3027                   18                   53
## 3028                   64                 <NA>
## 3029                    1                    0
## 3030                    0                 <NA>
## 3031                    1                    4
## 3032                    0                    1
## 3033                    2                   26
## 3034                    1                    0
## 3035                    2                    3
## 3036                    0                    7
## 3037                    1                    0
## 3038                  567                  537
## 3039                    0                    8
## 3040                    0                    0
## 3041                    1                    7
## 3042                    6                    6
## 3043                    0                    4
## 3044                    3                   23
## 3045                    0                    0
## 3046                    0                    0
## 3047                    0                    0
## 3048                    0                    0
## 3049                    2                 <NA>
## 3050                    0                    0
## 3051                    1                    2
## 3052                  645                  418
## 3053                    0                 <NA>
## 3054                  363                  321
## 3055                    3                   25
## 3056                    0                    0
## 3057                    1                   53
## 3058                    0                    0
## 3059                    2                 <NA>
## 3060                    0                 <NA>
## 3061                    1                    1
## 3062                  286                    0
## 3063                  140                 <NA>
## 3064                    0                    0
## 3065                 1317                 3503
## 3066                    4                   27
## 3067                  175                 1103
## 3068                   51                   59
## 3069                    0                   17
## 3070                    0                    0
## 3071                    0                    0
## 3072                    0                    0
## 3073                   15                    0
## 3074                    0                    0
## 3075                   23                  222
## 3076                    0                    0
## 3077                    2                   29
## 3078                   85                    0
## 3079                    0                    1
## 3080                    0                    0
## 3081                   11                 <NA>
## 3082                    0                    0
## 3083                    0                    0
## 3084                    0                    0
## 3085                    3                    0
## 3086                    4                   24
## 3087                    1                    7
## 3088                   23                  123
## 3089                    2                   11
## 3090                    8                   14
## 3091                    0                    0
## 3092                    0                    0
## 3093                    1                    0
## 3094                   14                    0
## 3095                    7                    1
## 3096                   11                    7
## 3097                    6                   32
## 3098                    2                    0
## 3099                    0                    0
## 3100                    0                    0
## 3101                   13                    0
## 3102                    0                    0
## 3103                    2                   14
## 3104                    0                    0
## 3105                    0                    0
## 3106                    0                    0
## 3107                    6                    0
## 3108                   62                  110
## 3109                  588                    0
## 3110                    0                    1
## 3111                    3                    4
## 3112                    4                    4
## 3113                    0                    0
## 3114                   46                   92
## 3115                    0                   20
## 3116                   38                   10
## 3117                   27                    0
## 3118                    1                    0
## 3119                    3                   25
## 3120                    0                    0
## 3121                    5                   17
## 3122                    5                   64
## 3123                    0                 <NA>
## 3124                    1                   11
## 3125                    0                    2
## 3126                    1                   70
## 3127                    0                    0
## 3128                  169                 1594
## 3129                    1                   21
## 3130                    1                    8
## 3131                    1                    8
## 3132                    0                    4
## 3133                    0                 <NA>
## 3134                    0                    0
## 3135                   12                   93
## 3136                   13                    0
## 3137                    0                    0
## 3138                    0                 <NA>
## 3139                    0                    0
## 3140                    0                   17
## 3141                    0                    0
## 3142                    0                    0
## 3143                    2                   99
## 3144                    0                    0
## 3145                    0                    1
## 3146                    0                    0
## 3147                    0                    0
## 3148                    2                    0
## 3149                    0                    0
## 3150                   23                   14
## 3151                    6                    0
## 3152                    0                    1
## 3153                    0                    0
## 3154                    1                    0
## 3155                    0                    9
## 3156                    0                    0
## 3157                   26                   17
## 3158                   88                 4153
## 3159                   18                  117
## 3160                   16                    7
## 3161                    0                    0
## 3162                   24                   13
## 3163                    0                    0
## 3164                    0                    0
## 3165                    6                    7
## 3166                   26                  153
## 3167                    4                    0
## 3168                    4                   69
## 3169                    3                    6
## 3170                    0                 <NA>
## 3171                  178                 4289
## 3172                    1                   12
## 3173                    2                    0
## 3174                    0                    0
## 3175                    0                    1
## 3176                    0                 <NA>
## 3177                   17                   16
## 3178                    0                    0
## 3179                    0                    0
## 3180                    1                 <NA>
## 3181                    0                    0
## 3182                    4                   43
## 3183                    0                    2
## 3184                   50                   28
## 3185                    0                    0
## 3186                    0                    0
## 3187                   30                  250
## 3188                    1                    0
## 3189                    0                    0
## 3190                    6                  315
## 3191                    1                   49
## 3192                    3                    0
## 3193                    4                    2
## 3194                    0                    0
## 3195                    0                    0
## 3196                    0                    0
## 3197                    0                    0
## 3198                   12                    0
## 3199                    0                    0
## 3200                   13                  124
## 3201                    0                    0
## 3202                    0                    1
## 3203                  181                 1835
## 3204                    5                   16
## 3205                    2                    0
## 3206                    0                    9
## 3207                    0                    0
## 3208                    0                    9
## 3209                 1704                    0
## 3210                    3                    2
## 3211                    0                    3
## 3212                    3                    0
## 3213                    0                 <NA>
## 3214                    0                    1
## 3215                   17                   52
## 3216                    0                   28
## 3217                   94                    0
## 3218                    0                    1
## 3219                    0                    0
## 3220                   64                   36
## 3221                    8                   18
## 3222                   65                    7
## 3223                   16                   90
## 3224                    2                   75
## 3225                   28                   20
## 3226                    0                   38
## 3227                  112                 <NA>
## 3228                    0                    0
## 3229                  272                  890
## 3230                    0                    0
## 3231                    0                    0
## 3232                    0                   18
## 3233                    0                    0
## 3234                    1                    0
## 3235                    0                    0
## 3236                   14                   13
## 3237                    0                    0
## 3238                    0                    2
## 3239                 1564                    0
## 3240                    0                    0
## 3241                   44                    0
## 3242                  298                 1035
## 3243                   34                  290
## 3244                  262                  712
## 3245                    0                    0
## 3246                   45                   71
## 3247                    3                    0
## 3248                    0                    0
## 3249                  576                 2664
## 3250                    4                    0
## 3251                    6                    0
## 3252                    5                   91
## 3253                   58                  253
## 3254                    5                  156
## 3255                    0                    0
## 3256                    0                    7
## 3257                    2                    0
## 3258                    3                    0
## 3259                   11                  231
## 3260                   67                   73
## 3261                    0                    0
## 3262                    3                    0
## 3263                   28                   59
## 3264                    0                 <NA>
## 3265                    0                    0
## 3266                    2                    3
## 3267                    1                    0
## 3268                    0                    0
## 3269                  194                  281
## 3270                    9                   47
## 3271                    0                 <NA>
## 3272                    0                    0
## 3273                    0                    0
## 3274                    0                    0
## 3275                    0                    0
## 3276                    0                    4
## 3277                    4                    0
## 3278                    0                    0
## 3279                 1250                    0
## 3280                    6                    0
## 3281                   30                   91
## 3282                    4                   10
## 3283                   16                  178
## 3284                   23                  182
## 3285                    0                    5
## 3286                 1439                 3349
## 3287                    0                    0
## 3288                    8                   58
## 3289                    1                    0
## 3290                    1                    0
## 3291                    0                    0
## 3292                   10                  396
## 3293                    0                    6
## 3294                    2                 <NA>
## 3295                    0                    0
## 3296                    2                    0
## 3297                    8                   35
## 3298                    0                    0
## 3299                    0                    3
## 3300                   88                  395
## 3301                    0                    0
## 3302                    0                   14
## 3303                    1                    0
## 3304                   11                  308
## 3305                    0                    0
## 3306                    0                    0
## 3307                    0                 <NA>
## 3308                   18                    0
## 3309                   76                  500
## 3310                    0                 <NA>
## 3311                   12                    0
## 3312                    6                   24
## 3313                    2                    0
## 3314                    1                    7
## 3315                    1                    6
## 3316                 1860                 1434
## 3317                    0                    5
## 3318                  235                    0
## 3319                   12                   51
## 3320                   23                   62
## 3321                    0                    0
## 3322                    0                    0
## 3323                    4                    3
## 3324                    0                   19
## 3325                    1                    0
## 3326                    0                    0
## 3327                    0                    0
## 3328                   66                   30
## 3329                    1                    0
## 3330                   86                   46
## 3331                    0                    0
## 3332                    6                   81
## 3333                    1                    0
## 3334                   10                    0
## 3335                    0                    0
## 3336                    6                   18
## 3337                    0                    0
## 3338                    0                    8
## 3339                    0                    0
## 3340                    5                   24
## 3341                    0                    5
## 3342                    0                    0
## 3343                  795                 4400
## 3344                    0                    0
## 3345                    2                   18
## 3346                   16                    8
## 3347                    0                    0
## 3348                    0                    0
## 3349                    1                    0
## 3350                   23                   93
## 3351                    0                    0
## 3352                    0                    0
## 3353                   14                   95
## 3354                   49                   48
## 3355                    1                   19
## 3356                    1                   12
## 3357                  719                  414
## 3358                    2                    0
## 3359                   12                   45
## 3360                    8                   27
## 3361                    1                    0
## 3362                    0                    0
## 3363                   11                    0
## 3364                    6                    0
## 3365                    0                    0
## 3366                    8                    0
## 3367                    1                    1
## 3368                   29                 <NA>
## 3369                    0                    0
## 3370                    0                    0
## 3371                    0                    0
## 3372                    1                    3
## 3373                   21                    0
## 3374                    2                   13
## 3375                   48                    0
## 3376                   10                   27
## 3377                    0                 <NA>
## 3378                    3                    5
## 3379                    3                  121
## 3380                    0                    0
## 3381                 1272                    0
## 3382                    0                    1
## 3383                    0                 <NA>
## 3384                    0                 <NA>
## 3385                    0                   82
## 3386                    3                   11
## 3387                   15                  195
## 3388                    0                    7
## 3389                   11                    4
## 3390                    1                 <NA>
## 3391                   97                  157
## 3392                    9                   83
## 3393                    1                   13
## 3394                    2                    0
## 3395                    0                    0
## 3396                   19                   48
## 3397                  138                    0
## 3398                    0                    0
## 3399                    0                 <NA>
## 3400                    0                    3
## 3401                    0                    3
## 3402                    0                    0
## 3403                    3                    0
## 3404                    6                    0
## 3405                    2                    0
## 3406                    1                    0
## 3407                    0                    0
## 3408                   31                  383
## 3409                    1                   25
## 3410                   11                    0
## 3411                    2                    2
## 3412                    0                   26
## 3413                    0                    0
## 3414                    0                 <NA>
## 3415                    9                  300
## 3416                    0                    3
## 3417                    3                    0
## 3418                    4                 <NA>
## 3419                    0                   16
## 3420                    1                   80
## 3421                   72                  304
## 3422                    2                    0
## 3423                  933                    0
## 3424                    0                    0
## 3425                    0                    0
## 3426                    0                    0
## 3427                   24                   70
## 3428                    0                    0
## 3429                  263                    0
## 3430                    2                    0
## 3431                    0                   10
## 3432                  251                    0
## 3433                    2                   46
## 3434                    0                    0
## 3435                    0                   18
## 3436                    0                   32
## 3437                    1                   15
## 3438                   27                    5
## 3439                   12                    0
## 3440                  596                 1048
## 3441                    3                   22
## 3442                    0                    0
## 3443                    0                   11
## 3444                    0                   22
## 3445                    0                   38
## 3446                   27                  130
## 3447                    0                    0
## 3448                    0                    0
## 3449                    0                    6
## 3450                    0                    0
## 3451                    1                    5
## 3452                  209                 2146
## 3453                   23                    4
## 3454                    0                    0
## 3455                    2                   26
## 3456                    0                    0
## 3457                    0                 <NA>
## 3458                    1                   26
## 3459                    9                   15
## 3460                    2                   45
## 3461                    0                    0
## 3462                   11                   17
## 3463                    0                   18
## 3464                    1                    0
## 3465                  822                 1084
## 3466                   92                  155
## 3467                   88                  234
## 3468                    0                    0
## 3469                    0                    3
## 3470                    0                 <NA>
## 3471                    0                    0
## 3472                    2                    0
## 3473                   72                    0
## 3474                    0                    0
## 3475                    0                    0
## 3476                    3                   33
## 3477                   38                  134
## 3478                    0                    0
## 3479                    0                    6
## 3480                    4                   16
## 3481                    7                  296
## 3482                    1                    0
## 3483                    3                   33
## 3484                 1991                    0
## 3485                    2                    9
## 3486                   51                    0
## 3487                    1                    0
## 3488                    0                    0
## 3489                    0                    0
## 3490                    1                   48
## 3491                    0                   49
## 3492                    0                    0
## 3493                    2                    0
## 3494                    2                 <NA>
## 3495                    2                   14
## 3496                    0                    0
## 3497                    2                    0
## 3498                    0                    0
## 3499                    0                    0
## 3500                   17                  303
## 3501                   16                    3
## 3502                    0                   16
## 3503                    3                   13
## 3504                    6                  281
## 3505                    2                   32
## 3506                    0                    1
## 3507                    5                   24
## 3508                    1                   37
## 3509                    7                    0
## 3510                    0                    0
## 3511                    0                   12
## 3512                    0                    4
## 3513                    4                    0
## 3514                    0                    3
## 3515                    7                    0
## 3516                    0                   15
## 3517                    0                    0
## 3518                    0                    0
## 3519                   24                    8
## 3520                    2                    0
## 3521                    0                    0
## 3522                   22                 <NA>
## 3523                    0                    4
## 3524                    0                    0
## 3525                    0                    0
## 3526                    3                    0
## 3527                  160                 1036
## 3528                    0                    0
## 3529                    2                   62
## 3530                  150                 <NA>
## 3531                   18                   18
## 3532                    5                   92
## 3533                    0                    0
## 3534                    0                    0
## 3535                   48                   68
## 3536                    2                    0
## 3537                   51                   89
## 3538                    6                 <NA>
## 3539                   25                    0
## 3540                    3                  132
## 3541                    0                    0
## 3542                    2                   90
## 3543                    9                    0
## 3544                  105                  584
## 3545                   47                    4
## 3546                    0                    2
## 3547                    0                    0
## 3548                    0                    0
## 3549                    1                   36
## 3550                    0                    0
## 3551                    8                   18
## 3552                  405                    0
## 3553                    1                    3
## 3554                    2                   12
## 3555                    0                    0
## 3556                    8                   44
## 3557                    1                    0
## 3558                    0                    1
## 3559                    2                    0
## 3560                    1                    0
## 3561                  142                 <NA>
## 3562                    3                   17
## 3563                    0                    0
## 3564                    0                   60
## 3565                   17                    7
## 3566                    3                    5
## 3567                    0                    0
## 3568                    0                    0
## 3569                 4956                18876
## 3570                    0                    0
## 3571                    0                    4
## 3572                    0                    1
## 3573                    8                   41
## 3574                    0                    1
## 3575                    0                 <NA>
## 3576                    0                    0
## 3577                    0                    8
## 3578                    0                    0
## 3579                    1                   13
## 3580                    0                    3
## 3581                    0                    0
## 3582                   27                   82
## 3583                    0                    0
## 3584                    2                   15
## 3585                    0                    3
## 3586                    0                    0
## 3587                    0                    1
## 3588                    5                   29
## 3589                    0                    0
## 3590                    3                   14
## 3591                 1579                  589
## 3592                    0                    0
## 3593                    0                    0
## 3594                  618                    0
## 3595                 1166                 1695
## 3596                    3                    0
## 3597                    0                    0
## 3598                    6                   63
## 3599                    0                    0
## 3600                    0                    0
## 3601                    0                    1
## 3602                    0                    0
## 3603                   13                   91
## 3604                    2                   11
## 3605                    0                    0
## 3606                    0                 <NA>
## 3607                  143                 <NA>
## 3608                    0                    0
## 3609                  300                    0
## 3610                    0                    0
## 3611                   12                   41
## 3612                   12                  236
## 3613                    1                  111
## 3614                    0                    0
## 3615                   15                  127
## 3616                 1570                 1590
## 3617                   10                   29
## 3618                   10                   10
## 3619                    0                    0
## 3620                   12                  195
## 3621                   20                    0
## 3622                  164                    0
## 3623                    2                    5
## 3624                    0                    0
## 3625                    2                    4
## 3626                  420                  367
## 3627                    0                    5
## 3628                    0                    0
## 3629                    0                    0
## 3630                  415                 2900
## 3631                    2                    0
## 3632                   20                   60
## 3633                    0                    0
## 3634                    6                   74
## 3635                    0                    0
## 3636                    6                    0
## 3637                    0                    0
## 3638                    1                    0
## 3639                    0                    0
## 3640                    2                 <NA>
## 3641                    0                    0
## 3642                    0                   45
## 3643                 2198                 1928
## 3644                    6                   92
## 3645                    0                    0
## 3646                    0                    0
## 3647                    0                   17
## 3648                    0                    1
## 3649                  527                 4200
## 3650                    7                    0
## 3651                   18                    0
## 3652                    1                    0
## 3653                   22                  178
## 3654                    1                    5
## 3655                    5                    6
## 3656                    0                    0
## 3657                    0                    1
## 3658                    0                    3
## 3659                    0                    0
## 3660                    0                    0
## 3661                    1                    0
## 3662                    1                 <NA>
## 3663                    1                    0
## 3664                  105                 <NA>
## 3665                    4                    0
## 3666                    8                    2
## 3667                  126                  682
## 3668                    1                    0
## 3669                    4                  168
## 3670                    0                    0
## 3671                    5                   43
## 3672                   75                  286
## 3673                    0                    0
## 3674                    1                    0
## 3675                    6                   21
## 3676                    0                    0
## 3677                    0                    6
## 3678                    0                    0
## 3679                    0                    0
## 3680                    0                    0
## 3681                   83                  700
## 3682                    0                    0
## 3683                    2                 <NA>
## 3684                    0                    0
## 3685                 1643                  646
## 3686                    0                    4
## 3687                    0                    0
## 3688                    0                   12
## 3689                    4                    1
## 3690                    0                    0
## 3691                  182                 2148
## 3692                    0                    0
## 3693                    0                    0
## 3694                    0                    0
## 3695                    0                  141
## 3696                    4                   49
## 3697                    2                    0
## 3698                    3                    0
## 3699                    0                    0
## 3700                   43                    0
## 3701                   13                    0
## 3702                    0                    0
## 3703                    0                    0
## 3704                    0                    0
## 3705                    0                    0
## 3706                    4                    0
## 3707                    0                    0
## 3708                   41                   50
## 3709                    0                    0
## 3710                   25                    0
## 3711                    0                    2
## 3712                    0                    0
## 3713                   10                  283
## 3714                    5                   10
## 3715                    6                   65
## 3716                   16                    0
## 3717                    0                    0
## 3718                    0                    0
## 3719                  860                 1927
## 3720                    5                   43
## 3721                    0                    0
## 3722                    1                   35
## 3723                    1                   57
## 3724                    0                    0
## 3725                    0                    1
## 3726                    0                 <NA>
## 3727                 1224                 3944
## 3728                    0                    0
## 3729                   41                    0
## 3730                    0                    0
## 3731                    1                    2
## 3732                    2                    1
## 3733                    0                    0
## 3734                    1                   46
## 3735                    0                 <NA>
## 3736                   21                    0
## 3737                 1182                  962
## 3738                    0                    0
## 3739                   18                    0
## 3740                    6                   13
## 3741                    0                    0
## 3742                   80                    0
## 3743                    0                 <NA>
## 3744                    0                   83
## 3745                   15                    0
## 3746                   11                    0
## 3747                    5                    2
## 3748                    4                  797
## 3749                    0                    0
## 3750                    0                    0
## 3751                   19                    0
## 3752                    0                    6
## 3753                  140                 3487
## 3754                    3                    7
## 3755                    2                    0
## 3756                  113                  579
## 3757                    1                    0
## 3758                    9                    2
## 3759                   26                  168
## 3760                  358                  138
## 3761                    0                   15
## 3762                    0                    0
## 3763                   46                   52
## 3764                    0                    0
## 3765                    0                    0
## 3766                    3                   36
## 3767                    7                    0
## 3768                 1788                    0
## 3769                    0                    0
## 3770                  917                 1517
## 3771                    0                  101
## 3772                    1                    0
## 3773                    0                    0
## 3774                   27                    7
## 3775                    0                    0
## 3776                  178                    0
## 3777                   28                  199
## 3778                    8                  133
## 3779                    0                    0
## 3780                    0                    8
## 3781                  197                    0
## 3782                    0                    0
## 3783                  148                  138
## 3784                    3                   90
## 3785                    5                   48
## 3786                    5                  150
## 3787                    0                 <NA>
## 3788                    0                    0
## 3789                    0                    9
## 3790                   10                    3
## 3791                    0                    2
## 3792                 1056                    0
## 3793                    2                    1
## 3794                    0                    0
## 3795                    2                    0
## 3796                    0                    0
## 3797                    0                    0
## 3798                    2                    0
## 3799                   49                  448
## 3800                    0                    0
## 3801                    0                    0
## 3802                   39                   16
## 3803                    1                    2
## 3804                    0                    0
## 3805                    1                    0
## 3806                    0                    0
## 3807                   54                   42
## 3808                    0                   38
## 3809                    0                    0
## 3810                    1                   59
## 3811                    4                   41
## 3812                    2                    6
## 3813                    0                    0
## 3814                    2                    0
## 3815                  224                 2188
## 3816                    2                   14
## 3817                    1                    0
## 3818                    0                    0
## 3819                    0                    0
## 3820                    0                    0
## 3821                    0                    4
## 3822                    0                    0
## 3823                    3                   -8
## 3824                    6                    0
## 3825                    0                    0
## 3826                    0                    0
## 3827                    1                    0
## 3828                    0                    0
## 3829                  108                  547
## 3830                    0                    0
## 3831                    0                    0
## 3832                   19                   47
## 3833                    1                   28
## 3834                    8                    0
## 3835                    1                    0
## 3836                    0                    0
## 3837                    1                    3
## 3838                    1                    3
## 3839                    3                    0
## 3840                   70                    0
## 3841                    0                    0
## 3842                    0                    0
## 3843                    0                    0
## 3844                    0                    3
## 3845                   11                 1400
## 3846                    0                   10
## 3847                    0                   12
## 3848                    3                    0
## 3849                    0                    0
## 3850                    0                    0
## 3851                    0                    0
## 3852                    0                    0
## 3853                    0                    5
## 3854                    0                   15
## 3855                   69                    0
## 3856                    4                  135
## 3857                    3                   32
## 3858                    0                    0
## 3859                    0                    0
## 3860                  220                    0
## 3861                   37                   48
## 3862                    0                    0
## 3863                    1                    0
## 3864                    1                    0
## 3865                  208                    0
## 3866                    0                    0
## 3867                    2                    0
## 3868                    0                    0
## 3869                   32                  137
## 3870                    0                    2
## 3871                    0                   10
## 3872                    0                    0
## 3873                    0                    0
## 3874                    0                    0
## 3875                    0                    0
## 3876                   47                    0
## 3877                   18                  180
## 3878                    0                    0
## 3879                    2                    0
## 3880                   16                    3
## 3881                    0                    0
## 3882                   10                   41
## 3883                    4                   45
## 3884                 1166                 2336
## 3885                    0                    0
## 3886                   13                   80
## 3887                    0                    0
## 3888                    3                    0
## 3889                    0                    0
## 3890                    1                   11
## 3891                    0                    0
## 3892                    0                    0
## 3893                   12                    0
## 3894                    1                    0
## 3895                    0                    0
## 3896                    0                    0
## 3897                   47                   23
## 3898                   25                   29
## 3899                    0                    0
## 3900                    1                    0
## 3901                    0                    0
## 3902                    0                    0
## 3903                    0                    0
## 3904                 1446                  952
## 3905                    3                  206
## 3906                    0                    0
## 3907                    2                    2
## 3908                    2                   50
## 3909                    0                    0
## 3910                   16                  245
## 3911                    0                    0
## 3912                    6                  169
## 3913                    0                    0
## 3914                    4                   56
## 3915                    0                    0
## 3916                    0                    0
## 3917                    0                    0
## 3918                    0                    7
## 3919                    0                    0
## 3920                    0                    0
## 3921                    2                    0
## 3922                  264                  799
## 3923                    0                    0
## 3924                    0                    0
## 3925                    0                    0
## 3926                    0                    1
## 3927                   17                   10
## 3928                  606                    0
## 3929                   33                   46
## 3930                    1                    0
## 3931                  817                 2777
## 3932                    2                   21
## 3933                    1                    0
## 3934                    0                    0
## 3935                   18                  347
## 3936                    0                    8
## 3937                    1                   30
## 3938                    0                    0
## 3939                    0                    0
## 3940                    5                    0
## 3941                    5                    0
## 3942                    0                    0
## 3943                    0                    9
## 3944                    0                   11
## 3945                    1                    0
## 3946                    6                    0
## 3947                    1                    7
## 3948                    8                    9
## 3949                   19                  137
## 3950                    0                    0
## 3951                    2                   68
## 3952                    0                    1
## 3953                    0                 <NA>
## 3954                  151                 1352
## 3955                  692                  192
## 3956                    5                    8
## 3957                   19                    0
## 3958                    0                    3
## 3959                    1                    0
## 3960                    8                 <NA>
## 3961                    0                    0
## 3962                    4                    0
## 3963                    0                    5
## 3964                    0                    0
## 3965                    1                    0
## 3966                    1                    0
## 3967                    0                    0
## 3968                   24                    0
## 3969                    0                   30
## 3970                    0                    0
## 3971                    3                 <NA>
## 3972                    0                    0
## 3973                    0                    0
## 3974                    4                   23
## 3975                    4                   63
## 3976                  106                  614
## 3977                    2                   16
## 3978                  261                    0
## 3979                    0                   25
## 3980                    1                    0
## 3981                    0                    0
## 3982                    0                    0
## 3983                    1                    0
## 3984                  223                   70
## 3985                    2                   18
## 3986                    0                    0
## 3987                    0                   31
## 3988                    1                    0
## 3989                    0                    0
## 3990                    8                   59
## 3991                    0                    0
## 3992                    0                    2
## 3993                    6                    1
## 3994                   17                    0
## 3995                    0                    0
## 3996                   36                  246
## 3997                    0                    0
## 3998                    3                    0
## 3999                    8                    0
## 4000                    0                    0
## 4001                    0                    0
## 4002                    0                    0
## 4003                   57                    0
## 4004                   40                   55
## 4005                    7                 <NA>
## 4006                    0                    3
## 4007                    0                    0
## 4008                    0                    1
## 4009                  430                    0
## 4010                    0                    0
## 4011                    0                    2
## 4012                    0                    0
## 4013                    0                    0
## 4014                    0                    0
## 4015                    0                    0
## 4016                    0                   10
## 4017                    0                    0
## 4018                    2                    0
## 4019                    0                   15
## 4020                    0                    0
## 4021                    7                    0
## 4022                    2                    1
## 4023                    0                    0
## 4024                    0                    0
## 4025                    7                    0
## 4026                    0                    0
## 4027                    0                    0
## 4028                    0                    0
## 4029                    1                    0
## 4030                   93                    0
## 4031                    2                   40
## 4032                    0                    0
## 4033                    0                    0
## 4034                    0                   10
## 4035                    4                    0
## 4036                    0                    6
## 4037                   42                  459
## 4038                    0                    0
## 4039                  172                 <NA>
## 4040                    2                   30
## 4041                    2                    4
## 4042                    0                    0
## 4043                    0                    0
## 4044                   40                   66
## 4045                    0                    0
## 4046                 1103                 2072
## 4047                    0                    5
## 4048                    1                  177
## 4049                    0                    0
## 4050                    0                    0
## 4051                    0                    0
## 4052                    0                    0
## 4053                    1                    0
## 4054                    0                    0
## 4055                    2                   64
## 4056                  193                  542
## 4057                    0                    0
## 4058                    5                    0
## 4059                   20                  278
## 4060                 4859                 2162
## 4061                    1                    0
## 4062                    0                    0
## 4063                    8                    0
## 4064                   19                    0
## 4065                   29                    4
## 4066                    0                    0
## 4067                    2                   81
## 4068                 1033                  594
## 4069                    1                    0
## 4070                    4                   15
## 4071                    2                    0
## 4072                    3                   20
## 4073                    0                    0
## 4074                    0                    0
## 4075                    0                    0
## 4076                    6                   42
## 4077                   12                  291
## 4078                    9                   68
## 4079                   33                    0
## 4080                    0                    0
## 4081                   15                    0
## 4082                    0                    0
## 4083                    0                   41
## 4084                    1                   22
## 4085                    1                   79
## 4086                    1                    0
## 4087                    6                    0
## 4088                    2                    0
## 4089                    0                   21
## 4090                    2                    0
## 4091                    0                   23
## 4092                    2                    5
## 4093                    0                    7
## 4094                    3                   18
## 4095                  215                    0
## 4096                    3                   10
## 4097                   12                  708
## 4098                   53                  154
## 4099                    3                    0
## 4100                    1                    0
## 4101                    0                    0
## 4102                    0                 <NA>
## 4103                    1                    6
## 4104                    0                    0
## 4105                    0                    0
## 4106                    0                    0
## 4107                    0                    0
## 4108                    0                 <NA>
## 4109                    2                    0
## 4110                    0                    0
## 4111                    0                   -1
## 4112                    0                    0
## 4113                    0                    1
## 4114                    0                    5
## 4115                    3                    0
## 4116                    0                    2
## 4117                   13                  253
## 4118                  139                  128
## 4119                    0                    5
## 4120                    0                    1
## 4121                    3                    0
## 4122                   38                  718
## 4123                   19                    0
## 4124                  248                 1523
## 4125                    0                    0
## 4126                  247                 1822
## 4127                   31                   47
## 4128                    0                    2
## 4129                    9                  103
## 4130                    4                    0
## 4131                    6                    9
## 4132                    7                    4
## 4133                    0                    0
## 4134                    0                    0
## 4135                    5                   63
## 4136                  692                  455
## 4137                   47                    0
## 4138                    0                    0
## 4139                    1                    0
## 4140                    0                    0
## 4141                    0                   16
## 4142                    8                    0
## 4143                    8                   20
## 4144                    0                    2
## 4145                   13                    4
## 4146                    3                    0
## 4147                   26                 <NA>
## 4148                    0                    0
## 4149                    0                    2
## 4150                    3                    0
## 4151                  193                    0
## 4152                    0                    0
## 4153                    1                    4
## 4154                   17                    0
## 4155                  536                  161
## 4156                    0                    1
## 4157                   19                   53
## 4158                    1                   69
## 4159                    0                    0
## 4160                    0                    0
## 4161                    2                    0
## 4162                    1                    3
## 4163                    1                    0
## 4164                    1                    0
## 4165                    0                    0
## 4166                    0                    0
## 4167                   20                   45
## 4168                    0                    0
## 4169                    0                 <NA>
## 4170                    0                    0
## 4171                    0                    1
## 4172                   49                  165
## 4173                    0                   -4
## 4174                    0                    0
## 4175                    1                 <NA>
## 4176                    2                 <NA>
## 4177                    2                   39
## 4178                    2                    0
## 4179                    0                    0
## 4180                    0                    0
## 4181                    5                   15
## 4182                    1                    2
## 4183                    1                    0
## 4184                    0                    6
## 4185                  192                  481
## 4186                   29                    0
## 4187                    0                    0
## 4188                    0                    0
## 4189                    2                    0
## 4190                    4                   50
## 4191                    0                  133
## 4192                  558                  239
## 4193                    0                    3
## 4194                    0                    3
## 4195                    0                    0
## 4196                    0                    0
## 4197                  156                 1276
## 4198                   20                   11
## 4199                   31                   41
## 4200                    1                    5
## 4201                   11                  153
## 4202                    2                    2
## 4203                    0                    0
## 4204                   62                  370
## 4205                    0                    0
## 4206                    1                   17
## 4207                    6                    0
## 4208                    2                    0
## 4209                    7                   18
## 4210                  197                  368
## 4211                    0                    0
## 4212                    0                    0
## 4213                    0                    2
## 4214                   12                   14
## 4215                    0                   27
## 4216                    0                    0
## 4217                   31                    0
## 4218                    8                  153
## 4219                    0                    0
## 4220                    4                    4
## 4221                    0                   20
## 4222                    0                    0
## 4223                    0                    2
## 4224                    0                    1
## 4225                    2                   96
## 4226                   38                  201
## 4227                  290                    0
## 4228                    0                    0
## 4229                    0                    0
## 4230                    0                    0
## 4231                    3                    0
## 4232                    0                    0
## 4233                    0                    0
## 4234                    7                    3
## 4235                   40                    0
## 4236                    0                    0
## 4237                    1                   12
## 4238                    0                    0
## 4239                    8                    0
## 4240                   58                   58
## 4241                    0                    1
## 4242                    0                    0
## 4243                    0                    0
## 4244                    8                    0
## 4245                    5                   20
## 4246                    0                    0
## 4247                    9                  206
## 4248                  240                    0
## 4249                    9                   53
## 4250                   62                    0
## 4251                    9                    5
## 4252                    2                    1
## 4253                    0                   24
## 4254                    1                    0
## 4255                    1                   12
## 4256                   40                  157
## 4257                    0                    0
## 4258                    0                    0
## 4259                   28                    3
## 4260                    2                    2
## 4261                    0                    2
## 4262                    0                 <NA>
## 4263                    9                   51
## 4264                    0                    0
## 4265                    0                    7
## 4266                    0                    0
## 4267                    6                    4
## 4268                    1                    0
## 4269                    7                    0
## 4270                   20                   27
## 4271                   62                  318
## 4272                    9                   68
## 4273                   31                  356
## 4274                  904                 1588
## 4275                    0                    0
## 4276                    0                    0
## 4277                    0                    0
## 4278                    1                   59
## 4279                    0                   67
## 4280                   22                   56
## 4281                    0                    0
## 4282                    0                    5
## 4283                  102                  441
## 4284                   10                   37
## 4285                   10                    0
## 4286                    0                    0
## 4287                    0                    0
## 4288                   46                  824
## 4289                    0                    0
## 4290                    0                    0
## 4291                    1                    2
## 4292                    0                    4
## 4293                   97                    0
## 4294                    4                    7
## 4295                    0                    8
## 4296                    5                    7
## 4297                    0                    0
## 4298                    0                   12
## 4299                   59                    0
## 4300                   11                    0
## 4301                    0                    0
## 4302                    0                    3
## 4303                    0                    0
## 4304                    1                    8
## 4305                    0                    1
## 4306                   34                    0
## 4307                    0                    0
## 4308                    0                    0
## 4309                    0                    0
## 4310                    1                    0
## 4311                   26                   89
## 4312                    4                    0
## 4313                   33                  510
## 4314                    0                    0
## 4315                  142                  631
## 4316                   36                   99
## 4317                    2                   31
## 4318                    0                    3
## 4319                    0                   26
## 4320                  254                 <NA>
## 4321                    1                    0
## 4322                    2                    0
## 4323                    0                   18
## 4324                  344                 1401
## 4325                   20                  523
## 4326                    0                    0
## 4327                    0                    0
## 4328                    4                    0
## 4329                    7                    0
## 4330                    0                    0
## 4331                    0                    0
## 4332                    1                    0
## 4333                    7                    0
## 4334                    9                    0
## 4335                    7                   34
## 4336                    6                   23
## 4337                    0                 <NA>
## 4338                 3499                 4512
## 4339                    3                    6
## 4340                    7                    0
## 4341                    0                    3
## 4342                    2                  304
## 4343                    0                    2
## 4344                    2                    0
## 4345                  265                  712
## 4346                    0                    0
## 4347                   15                   24
## 4348                    2                   17
## 4349                    0                    2
## 4350                  941                  809
## 4351                    1                    2
## 4352                    0                    0
## 4353                    1                    0
## 4354                    0                    3
## 4355                    0                    0
## 4356                    6                  165
## 4357                    0                    0
## 4358                   23                    0
## 4359                    0                 <NA>
## 4360                    1                    0
## 4361                    0                    0
## 4362                   66                 2977
## 4363                    2                   90
## 4364                    0                    0
## 4365                    0                    0
## 4366                    0                    0
## 4367                  137                 <NA>
## 4368                    0                  -12
## 4369                    1                   92
## 4370                    2                   27
## 4371                    0                    0
## 4372                   60                    0
## 4373                    0                    0
## 4374                   13                    7
## 4375                   10                    0
## 4376                    0                    1
## 4377                   48                  140
## 4378                    0                 <NA>
## 4379                    0                    0
## 4380                    0                    0
## 4381                    0                    0
## 4382                    2                   53
## 4383                   62                   55
## 4384                    0                   10
## 4385                    0                    0
## 4386                    3                   64
## 4387                    0                    0
## 4388                    0                    0
## 4389                    0                    1
## 4390                    0                    0
## 4391                   50                    0
## 4392                    0                    0
## 4393                   55                    0
## 4394                    0                    0
## 4395                    0                    0
## 4396                    0                    0
## 4397                    2                    0
## 4398                    0                    0
## 4399                   12                    0
## 4400                  186                 2296
## 4401                    0                    0
## 4402                    0                    0
## 4403                    9                    9
## 4404                   12                    2
## 4405                    0                    0
## 4406                    4                    0
## 4407                    1                    0
## 4408                    1                    4
## 4409                    0                    0
## 4410                    6                   13
## 4411                  301                  676
## 4412                    0                    0
## 4413                  325                    0
## 4414                    0                    0
## 4415                    2                    4
## 4416                    0                    5
## 4417                    0                    0
## 4418                    0                    0
## 4419                  590                 1255
## 4420                    0                    0
## 4421                    6                   11
## 4422                    2                   15
## 4423                    0                    2
## 4424                    0                    0
## 4425                    0                    0
## 4426                  913                 2128
## 4427                    1                    4
## 4428                    0                    1
## 4429                   34                   31
## 4430                    0                    8
## 4431                  988                 2723
## 4432                   25                    0
## 4433                   34                   95
## 4434                    0                    8
## 4435                    2                 <NA>
## 4436                    6                   13
## 4437                    0                    0
## 4438                    1                    0
## 4439                   10                   21
## 4440                    2                   84
## 4441                    0                   49
## 4442                  971                 2943
## 4443                    0                    0
## 4444                   39                   24
## 4445                    0                    0
## 4446                    0                    0
## 4447                    0                    4
## 4448                    4                   20
## 4449                    1                    8
## 4450                   61                  273
## 4451                    2                    5
## 4452                    2                   18
## 4453                    0                    0
## 4454                    0                   22
## 4455                    0                    0
## 4456                    0                    0
## 4457                    9                  125
## 4458                    0                    5
## 4459                    0                    6
## 4460                    0                    0
## 4461                    9                    7
## 4462                    0                    2
## 4463                    0                    0
## 4464                    0                    3
## 4465                    1                    9
## 4466                    6                  119
## 4467                    0                   10
## 4468                   39                    0
## 4469                    4                    4
## 4470                  218                 2337
## 4471                    0                    0
## 4472                  111                  198
## 4473                    0                    0
## 4474                    0                    0
## 4475                    5                    0
## 4476                    0                 <NA>
## 4477                    0                    4
## 4478                 1560                 2479
## 4479                    0                    0
## 4480                  239                 2200
## 4481                    7                    0
## 4482                    2                    0
## 4483                    1                   75
## 4484                    2                    0
## 4485                    6                  122
## 4486                    0                    0
## 4487                   47                  162
## 4488                    0                   -2
## 4489                    0                    0
## 4490                  115                  500
## 4491                    2                    4
## 4492                    0                    0
## 4493                    2                 <NA>
## 4494                    1                 <NA>
## 4495                 3038                 5497
## 4496                   17                   10
## 4497                    2                 <NA>
## 4498                    1                    6
## 4499                  109                    0
## 4500                    1                   28
## 4501                    4                  150
## 4502                    1                 <NA>
## 4503                    3                    1
## 4504                    2                   11
## 4505                    1                   79
## 4506                 2050                    0
## 4507                    2                   49
## 4508                    1                    1
## 4509                    0                    0
## 4510                   12                    0
## 4511                    1                   30
## 4512                   10                  210
## 4513                    0                    0
## 4514                    0                   98
## 4515                    0                    0
## 4516                    0                    0
## 4517                    0                    0
## 4518                    0                    0
## 4519                   33                  115
## 4520                    4                   83
## 4521                    0                    0
## 4522                    0                    0
## 4523                    0                    0
## 4524                    0                    7
## 4525                  215                 3845
## 4526                    0                    0
## 4527                    0                    0
## 4528                    1                    0
## 4529                   13                   44
## 4530                    6                 <NA>
## 4531                  901                 3033
## 4532                    1                    2
## 4533                    7                    0
## 4534                    3                   62
## 4535                    0                    0
## 4536                    0                 <NA>
## 4537                    0                    4
## 4538                    1                    0
## 4539                   28                  500
## 4540                    2                    0
## 4541                   15                 <NA>
## 4542                 1751                 2071
## 4543                    1                 <NA>
## 4544                    1                   24
## 4545                   41                  139
## 4546                    0                    0
## 4547                    0                    0
## 4548                   80                  336
## 4549                    1                    0
## 4550                    0                    0
## 4551                   10                    0
## 4552                    0                   92
## 4553                    3                    0
## 4554                   86                   49
## 4555                    0                    0
## 4556                  905                 1301
## 4557                    0                 <NA>
## 4558                   14                    9
## 4559                    0                    0
## 4560                    0                 <NA>
## 4561                    6                   96
## 4562                    0                    1
## 4563                    2                   56
## 4564                    4                   48
## 4565                 2009                    0
## 4566                   33                   28
## 4567                    3                    0
## 4568                    1                   15
## 4569                 1848                    0
## 4570                    0                    0
## 4571                    4                    0
## 4572                    1                    0
## 4573                    0                    0
## 4574                    3                    0
## 4575                   32                   36
## 4576                    0                 <NA>
## 4577                    1                    1
## 4578                   -2                  -15
## 4579                  247                 6482
## 4580                    0                    0
## 4581                    0                    0
## 4582                    4                    5
## 4583                   41                  164
## 4584                    2                  115
## 4585                    0                    0
## 4586                    0                    2
## 4587                    1                    1
## 4588                    1                   21
## 4589                    0                   29
## 4590                   73                   40
## 4591                    0                    0
## 4592                    1                    0
## 4593                    0                    0
## 4594                   13                    0
## 4595                    1                    0
## 4596                  679                  608
## 4597                    0                    4
## 4598                    3                 <NA>
## 4599                    0                 <NA>
## 4600                  611                  309
## 4601                   77                    0
## 4602                    1                 <NA>
## 4603                    0                    5
## 4604                    1                    0
## 4605                    0                    0
## 4606                    0                   40
## 4607                    0                    0
## 4608                    0                    7
## 4609                    0                    2
## 4610                    0                    0
## 4611                    2                    0
## 4612                    0                   68
## 4613                    0                    0
## 4614                    0                    0
## 4615                    0                 <NA>
## 4616                    0                    1
## 4617                   12                  200
## 4618                    7                   21
## 4619                   43                   92
## 4620                    0                    0
## 4621                    0                   72
## 4622                    3                   16
## 4623                    6                    0
## 4624                    7                 <NA>
## 4625                    4                   32
## 4626                    0                   69
## 4627                    0                    1
## 4628                   11                   27
## 4629                    0                    0
## 4630                    0                    0
## 4631                    2                    0
## 4632                    0                    0
## 4633                    4                   38
## 4634                    2                 <NA>
## 4635                   10                    2
## 4636                    2                    0
## 4637                   43                  170
## 4638                   11                   11
## 4639                    3                   15
## 4640                    0                    0
## 4641                  298                    0
## 4642                    0                    0
## 4643                    2                    0
## 4644                    7                  182
## 4645                   16                  100
## 4646                    2                   28
## 4647                    0                    0
## 4648                   25                   23
## 4649                    2                   73
## 4650                    1                 <NA>
## 4651                    0                    0
## 4652                   22                   16
## 4653                   -3                    0
## 4654                    1                    0
## 4655                    0                    4
## 4656                    0                    0
## 4657                    1                   23
## 4658                    0                    0
## 4659                    1                    2
## 4660                   14                   55
## 4661                    2                   54
## 4662                    0                    0
## 4663                   29                    0
## 4664                    1                    6
## 4665                   12                   51
## 4666                    0                    0
## 4667                    2                   66
## 4668                   45                   44
## 4669                   20                    8
## 4670                    0                    3
## 4671                    0                    6
## 4672                    7                   26
## 4673                    1                   14
## 4674                    0                    9
## 4675                    7                    0
## 4676                    1                   63
## 4677                    0                    0
## 4678                  426                 1043
## 4679                    7                    0
## 4680                    0                    0
## 4681                   34                    0
## 4682                    0                    4
## 4683                    0                    0
## 4684                    0                    0
## 4685                   25                  458
## 4686                    0                    0
## 4687                   21                  414
## 4688                    0                    0
## 4689                    0                   13
## 4690                    0                    0
## 4691                   16                   72
## 4692                    3                   16
## 4693                    2                    0
## 4694                    0                    0
## 4695                    1                    0
## 4696                    0                   56
## 4697                  251                 1542
## 4698                    0                    0
## 4699                 1647                 1109
## 4700                   51                  106
## 4701                   14                 <NA>
## 4702                    0                 <NA>
## 4703                    0                    4
## 4704                    0                    0
## 4705                    2                    0
## 4706                   26                    0
## 4707                    7                   33
## 4708                   31                  131
## 4709                    0                    1
## 4710                    0                    0
## 4711                    3                  469
## 4712                    0                    2
## 4713                    1                    0
## 4714                    0                    1
## 4715                    0                    0
## 4716                   62                  101
## 4717                    0                 <NA>
## 4718                    0                   22
## 4719                    0                    3
## 4720                    0                    1
## 4721                    1                    0
## 4722                    0                    0
## 4723                    2                   26
## 4724                    0                    0
## 4725                    0                    1
## 4726                    0                    2
## 4727                    1                    0
## 4728                    2                    4
## 4729                    0                   23
## 4730                    0                    0
## 4731                   16                    6
## 4732                    2                    2
## 4733                    4                    0
## 4734                  256                    0
## 4735                   14                   42
## 4736                    0                    0
## 4737                  129                  732
## 4738                    1                    0
## 4739                    0                    0
## 4740                    5                    9
## 4741                    0                    1
## 4742                    0                    0
## 4743                 1196                  795
## 4744                    2                    4
## 4745                    1                    5
## 4746                    8                   35
## 4747                    4                    2
## 4748                    0                    0
## 4749                  226                    0
## 4750                  794                  188
## 4751                    2                    0
## 4752                    0                    0
## 4753                    0                    0
## 4754                    0                   17
## 4755                   18                   20
## 4756                 3319                 6616
## 4757                    1                   27
## 4758                    0                    0
## 4759                   13                  295
## 4760                    1                    0
## 4761                    2                    0
## 4762                   17                   13
## 4763                    4                   19
## 4764                    1                    0
## 4765                  143                    0
## 4766                   22                  330
## 4767                    0                    0
## 4768                   53                  227
## 4769                    6                    0
## 4770                    0                  -12
## 4771                    0                    0
## 4772                    5                    0
## 4773                    1                    5
## 4774                    0                    1
## 4775                   39                   35
## 4776                    1                    0
## 4777                    4                    0
## 4778                    1                   11
## 4779                    0                   21
## 4780                  179                 1692
## 4781                   83                   81
## 4782                    0                    3
## 4783                   25                 <NA>
## 4784                    0                    4
## 4785                    0                    0
## 4786                    0                    0
## 4787                    0                    0
## 4788                  181                 5231
## 4789                    0                    0
## 4790                    4                   46
## 4791                    0                    0
## 4792                   94                  291
## 4793                    0                   13
## 4794                   25                 <NA>
## 4795                    8                  107
## 4796                    0                    0
## 4797                    0                   14
## 4798                    0                    3
## 4799                    0                    0
## 4800                    3                   12
## 4801                    3                   15
## 4802                    0                    0
## 4803                    0                    0
## 4804                   16                    0
## 4805                    0                    0
## 4806                    1                    0
## 4807                    4                    2
## 4808                    0                   22
## 4809                    3                  201
## 4810                  721                  450
## 4811                    0                    0
## 4812                    0                    0
## 4813                    0                    0
## 4814                    2                  119
## 4815                   19                    0
## 4816                    3                   19
## 4817                   63                   70
## 4818                    0                   71
## 4819                    0                    0
## 4820                    0                    0
## 4821                    0                    6
## 4822                    0                    0
## 4823                    0                    0
## 4824                    4                   14
## 4825                    0                    0
## 4826                    0                    0
## 4827                    0                    0
## 4828                    0                    2
## 4829                    0                    0
## 4830                    1                    0
## 4831                  140                    0
## 4832                    2                   33
## 4833                    0                    0
## 4834                    0                 <NA>
## 4835                    0                    0
## 4836                    4                    0
## 4837                  656                  320
## 4838                   15                   63
## 4839                    0                    0
## 4840                    0                    0
## 4841                    1                    0
## 4842                    1                   10
## 4843                    0                    1
## 4844                    0                    0
## 4845                    0                    0
## 4846                    0                    0
## 4847                    0                    6
## 4848                    1                   11
## 4849                  820                 2560
## 4850                    0                    0
## 4851                    0                    0
## 4852                    7                   61
## 4853                    1                    5
## 4854                    4                   32
## 4855                    0                   45
## 4856                    0                    0
## 4857                   19                  136
## 4858                   17                   50
## 4859                    4                  108
## 4860                    0                    0
## 4861                    7                    0
## 4862                    0                    0
## 4863                    0                    0
## 4864                    0                    0
## 4865                    0                    2
## 4866                    0                    4
## 4867                    0                    0
## 4868                    1                    5
## 4869                    0                    0
## 4870                    9                    0
## 4871                  167                    0
## 4872                    0                    0
## 4873                   87                  191
## 4874                    0                    0
## 4875                    2                   24
## 4876                   21                    0
## 4877                   15                   22
## 4878                 1426                 1036
## 4879                    0                    0
## 4880                   13                    4
## 4881                    6                    6
## 4882                    4                    0
## 4883                    0                    6
## 4884                   86                  395
## 4885                  296                    0
## 4886                 4730                 4784
## 4887                    0                    0
## 4888                    0                  116
## 4889                    0                    1
## 4890                    2                   13
## 4891                    0                    2
## 4892                   12                    1
## 4893                    8                    0
## 4894                    8                   25
## 4895                    0                    0
## 4896                    0                    0
## 4897                    6                  152
## 4898                   20                    0
## 4899                    1                    0
## 4900                  147                 1057
## 4901                   15                  158
## 4902                  134                    0
## 4903                    0                    0
## 4904                    0                    0
## 4905                    6                    1
## 4906                   19                   51
## 4907                    0                    6
## 4908                    0                    0
## 4909                    4                    0
## 4910                    1                    0
## 4911                   12                    0
## 4912                    0                    5
## 4913                    0                    7
## 4914                    1                    0
## 4915                    0                    2
## 4916                    0                    0
## 4917                    0                 <NA>
## 4918                    2                    0
## 4919                    9                    3
## 4920                    1                    0
## 4921                   26                   43
## 4922                    5                    3
## 4923                    2                    6
## 4924                   21                  493
## 4925                    2                    8
## 4926                    4                    0
## 4927                    0                   88
## 4928                  136                 1464
## 4929                    0                    0
## 4930                    0                   15
## 4931                    0                    0
## 4932                    0                   14
## 4933                  408                10980
## 4934                    0                    2
## 4935                    0                    0
## 4936                    4                    1
## 4937                   32                  183
## 4938                   10                  283
## 4939                    0                    0
## 4940                   16                    0
## 4941                    0                    0
## 4942                    0                    9
## 4943                   24                  233
## 4944                    2                   15
## 4945                    0                    0
## 4946                    1                    0
## 4947                    0                    1
## 4948                    0                    0
## 4949                    3                    0
## 4950                   77                    0
## 4951                    0                    0
## 4952                    0                    0
## 4953                    0                 <NA>
## 4954                  194                 4651
## 4955                    2                    0
## 4956                    0                 <NA>
## 4957                    0                    0
## 4958                    0                    0
## 4959                    0                 <NA>
## 4960                    1                    0
## 4961                    0                   20
## 4962                    0                   18
## 4963                   44                    0
## 4964                    0                    0
## 4965                    0                    0
## 4966                    3                   18
## 4967                    0                    0
## 4968                    2                 <NA>
## 4969                    0                    0
## 4970                   13                    9
## 4971                   97                  337
## 4972                   44                  -30
## 4973                   10                    2
## 4974                    8                    0
## 4975                    0                    0
## 4976                    0                    0
## 4977                    0                    0
## 4978                    4                    0
## 4979                    4                   45
## 4980                    6                   13
## 4981                    0                    0
## 4982                   13                    0
## 4983                    0                    0
## 4984                    5                    1
## 4985                    4                 <NA>
## 4986                    0                    0
## 4987                   22                  275
## 4988                    0                    4
## 4989                    1                   67
## 4990                    5                    6
## 4991                    5                   16
## 4992                  331                 2327
## 4993                    2                   -5
## 4994                    4                    2
## 4995                    0                   42
## 4996                    0                    0
## 4997                    2                    0
## 4998                   42                  103
## 4999                    0                    0
## 5000                   74                 <NA>
## 5001                    0                   12
## 5002                    1                    3
## 5003                    2                    0
## 5004                    0                    0
## 5005                    0                    0
## 5006                    1                    0
## 5007                    7                   19
## 5008                    1                   95
## 5009                    0                   33
## 5010                    0                    0
## 5011                    1                    0
## 5012                    0                    0
## 5013                    6                   10
## 5014                  229                    0
## 5015                  298                 4000
## 5016                    2                    4
## 5017                   43                 <NA>
## 5018                    3                    4
## 5019                    0                    2
## 5020                    0                    6
## 5021                    0                    0
## 5022                   24                  102
## 5023                    3                   42
## 5024                 3027                 4436
## 5025                   29                   11
## 5026                    0                    0
## 5027                    8                  117
## 5028                  466                  431
## 5029                    1                    0
## 5030                   68                   45
## 5031                    0                    0
## 5032                    0                    0
## 5033                   26                  151
## 5034                    1                    0
## 5035                 1263                    0
## 5036                    8                   21
## 5037                    0                    3
## 5038                    2                   33
## 5039                    0                    0
## 5040                    8                    0
## 5041                    0                    0
## 5042                    0                    0
## 5043                   91                    0
## 5044                    0                    0
## 5045                    0                    0
## 5046                    0                    3
## 5047                    0                    4
## 5048                    0                    2
## 5049                    7                    2
## 5050                   84                    0
## 5051                    2                   27
## 5052                    0                    0
## 5053                    0                    4
## 5054                    0                    0
## 5055                    0                    3
## 5056                    1                   15
## 5057                    0                    0
## 5058                    0                    0
## 5059                  646                  244
## 5060                    1                    0
## 5061                    3                   95
## 5062                   24                  261
## 5063                   12                  116
## 5064                   10                    0
## 5065                    0                    0
## 5066                    0                   14
## 5067                    2                   50
## 5068                    4                    5
## 5069                    1                    0
## 5070                    0                   42
## 5071                    1                    1
## 5072                    3                    9
## 5073                    4                   14
## 5074                 1877                 1380
## 5075                    2                    0
## 5076                    0                   45
## 5077                  191                  293
## 5078                    0                    0
## 5079                   10                  414
## 5080                   12                   25
## 5081                    0                 <NA>
## 5082                   12                    0
## 5083                    0                    1
## 5084                    0                    0
## 5085                    0                    0
## 5086                    2                    5
## 5087                    1                  271
## 5088                    0                    2
## 5089                   26                    2
## 5090                    0                    5
## 5091                    4                 <NA>
## 5092                    0                    3
## 5093                   12                    0
## 5094                 1964                    0
## 5095                    3                   56
## 5096                    0                    0
## 5097                    1                    0
## 5098                  210                 1631
## 5099                    0                    6
## 5100                   19                   84
## 5101                    1                    0
## 5102                    1                    0
## 5103                 1050                 1677
## 5104                  270                 3900
## 5105                   45                    0
## 5106                    6                    0
## 5107                    5                    0
## 5108                    1                    0
## 5109                    0                    0
## 5110                    1                    0
## 5111                    3                   27
## 5112                    1                    0
## 5113                   99                  471
## 5114                    1                    1
## 5115                    0                    0
## 5116                    0                    0
## 5117                   24                  297
## 5118                   38                   53
## 5119                    0                    0
## 5120                    0                    0
## 5121                    0                    0
## 5122                    1                    0
## 5123                    0                    0
## 5124                    2                    4
## 5125                    0                    0
## 5126                    0                    1
## 5127                   33                   16
## 5128                    5                   57
## 5129                    0                    0
## 5130                    4                    2
## 5131                   56                  800
## 5132                    0                    1
## 5133                    6                    4
## 5134                    5                    9
## 5135                  163                 1823
## 5136                    3                    0
## 5137                    0                    0
## 5138                    1                    8
## 5139                   61                  262
## 5140                    6                    0
## 5141                   10                    0
## 5142                    0                 <NA>
## 5143                    4                    0
## 5144                    0                    0
## 5145                    0                    0
## 5146                    0                    0
## 5147                  180                    0
## 5148                    1                    0
## 5149                 2255                  209
## 5150                 1513                 1537
## 5151                    7                    2
## 5152                    1                    4
## 5153                    0                    1
## 5154                    1                   12
## 5155                    5                    9
## 5156                    7                    0
## 5157                    0                    0
## 5158                 1100                 2563
## 5159                    1                   30
## 5160                   18                  171
## 5161                    1                    1
## 5162                    0                    5
## 5163                    0                    0
## 5164                    3                   19
## 5165                    0                    0
## 5166                    0                    0
## 5167                    0                    0
## 5168                    0                    0
## 5169                    0                   12
## 5170                   34                   57
## 5171                    7                    0
## 5172                    0                    0
## 5173                    8                   40
## 5174                    1                    0
## 5175                    0                    5
## 5176                    0                    0
## 5177                   47                    0
## 5178                    0                    0
## 5179                    0                    0
## 5180                   16                  148
## 5181                   16                  384
## 5182                   14                    0
## 5183                   16                   30
## 5184                    1                    2
## 5185                    0                    2
## 5186                    0                    1
## 5187                  427                  527
## 5188                 2191                 1857
## 5189                   52                    0
## 5190                   77                  111
## 5191                   10                    0
## 5192                   12                    0
## 5193                  351                 2900
## 5194                  178                 2250
## 5195                    8                    0
## 5196                    0                    0
## 5197                    1                    4
## 5198                 2328                 1726
## 5199                    0                    3
## 5200                    0                    2
## 5201                    1                   38
## 5202                   48                  211
## 5203                    2                   11
## 5204                    0                    7
## 5205                    1                   30
## 5206                    0                    2
## 5207                    0                    0
## 5208                    1                   17
## 5209                    1                    0
## 5210                   14                    0
## 5211                   15                    0
## 5212                    1                   11
## 5213                    9                  546
## 5214                  804                 1264
## 5215                    0                    9
## 5216                    5                    0
## 5217                    0                   11
## 5218                    0                    0
## 5219                 1247                    0
## 5220                    2                    0
## 5221                    0                   13
## 5222                    0                    0
## 5223                    0                    0
## 5224                   42                   80
## 5225                   12                  458
## 5226                    2                    0
## 5227                    0                    0
## 5228                  246                  973
## 5229                    7                  111
## 5230                    0                    0
## 5231                   58                   91
## 5232                    1                   23
## 5233                    0                    0
## 5234                    1                    5
## 5235                    3                    2
## 5236                    0                    1
## 5237                    0                    4
## 5238                    0                    0
## 5239                    0                    0
## 5240                   32                   49
## 5241                  236                 4522
## 5242                    0                    0
## 5243                    3                 <NA>
## 5244                   12                  142
## 5245                    2                    0
## 5246                    0                    0
## 5247                    3                    0
## 5248                   12                  150
## 5249                    0                    0
## 5250                    0                 <NA>
## 5251                    2                    0
## 5252                    2                    2
## 5253                    2                   13
## 5254                    0                    0
## 5255                    2                    0
## 5256                   13                   54
## 5257                    0                   17
## 5258                    0                    0
## 5259                    0                 <NA>
## 5260                   96                  600
## 5261                    0                   41
## 5262                    7                   11
## 5263                   28                   55
## 5264                   45                  114
## 5265                    2                    0
## 5266                    0                    0
## 5267                    2                    9
## 5268                    0                    7
## 5269                    0                    0
## 5270                    0                    0
## 5271                    0                    0
## 5272                    0                 <NA>
## 5273                   13                   50
## 5274                    1                    0
## 5275                    2                    0
## 5276                    2                   26
## 5277                    2                    0
## 5278                    8                   17
## 5279                    0                    0
## 5280                    3                   24
## 5281                    0                    3
## 5282                    6                 <NA>
## 5283                    4                   -1
## 5284                    0                    1
## 5285                  536                 3103
## 5286                    5                 <NA>
## 5287                   39                   62
## 5288                    0                    0
## 5289                    8                  174
## 5290                    0                   13
## 5291                  190                    0
## 5292                    0                    0
## 5293                    7                    2
## 5294                    1                   41
## 5295                    2                  100
## 5296                    0                    0
## 5297                    0                    2
## 5298                    3                    0
## 5299                   55                    0
## 5300                    0                   62
## 5301                   69                   11
## 5302                    0                    0
## 5303                  248                    0
## 5304                  225                    0
## 5305                    5                    9
## 5306                   23                  177
## 5307                    1                    0
## 5308                    0                    0
## 5309                    1                   12
## 5310                    4                   41
## 5311                    1                   17
## 5312                    1                    2
## 5313                    0                    0
## 5314                    0                    0
## 5315                  116                 <NA>
## 5316                    5                    0
## 5317                   14                    0
## 5318                    0                    0
## 5319                   52                    0
## 5320                    0                    0
## 5321                    0                    4
## 5322                   19                   67
## 5323                    2                 <NA>
## 5324                    5                   56
## 5325                  205                   13
## 5326                    0                    0
## 5327                    0                    0
## 5328                    0                    0
## 5329                    6                 <NA>
## 5330                  105                  500
## 5331                    0                    0
## 5332                    0                 <NA>
## 5333                    7                  202
## 5334                    1                    1
## 5335                    0                    0
## 5336                    0                    0
## 5337                  131                  610
## 5338                   18                   52
## 5339                   41                  339
## 5340                    2                    0
## 5341                   10                    0
## 5342                    2                   22
## 5343                    0                    2
## 5344                    0                    0
## 5345                    0                    0
## 5346                    2                    0
## 5347                    0                    0
## 5348                    2                    0
## 5349                    0                    0
## 5350                    1                    4
## 5351                    8                  101
## 5352                    2                    2
## 5353                  228                 2089
## 5354                    0                    2
## 5355                    2                   23
## 5356                   55                   29
## 5357                    0                    0
## 5358                   19                   17
## 5359                    0                    0
## 5360                    0                    0
## 5361                    9                  280
## 5362                    0                    0
## 5363                   13                    0
## 5364                   29                   37
## 5365                    1                    0
## 5366                    0                    0
## 5367                   10                   13
## 5368                    2                   58
## 5369                 1653                 2424
## 5370                    0                    0
## 5371                    3                    0
## 5372                    0                    0
## 5373                    0                    0
## 5374                    1                   16
## 5375                    0                    0
## 5376                    0                    0
## 5377                    0                    0
## 5378                    1                    0
## 5379                    0                    0
## 5380                    0                    0
## 5381                    2                   15
## 5382                    0                    0
## 5383                    0                    0
## 5384                   11                  487
## 5385                    7                   89
## 5386                    0                    0
## 5387                    0                    0
## 5388                    0                    0
## 5389                    1                    0
## 5390                 3298                10494
## 5391                   33                   93
## 5392                    0                    0
## 5393                    0                    0
## 5394                    7                   16
## 5395                    0                    0
## 5396                    0                    2
## 5397                    0                    0
## 5398                    0                    0
## 5399                    0                    6
## 5400                   24                    0
## 5401                    0                    0
## 5402                    2                    0
## 5403                   65                    0
## 5404                    0                    0
## 5405                    0                    0
## 5406                   24                  172
## 5407                    0                    0
## 5408                  332                  368
## 5409                    0                    0
## 5410                    0                    0
## 5411                    1                    0
## 5412                  349                 2286
## 5413                    1                   15
## 5414                    0                  129
## 5415                    1                    0
## 5416                    0                    5
## 5417                    3                    4
## 5418                   26                  280
## 5419                    1                    0
## 5420                   44                  125
## 5421                   19                   77
## 5422                    0                    0
## 5423                    2                    0
## 5424                    0                    7
## 5425                    0                 <NA>
## 5426                    0                    0
## 5427                    1                    0
## 5428                    0                    1
## 5429                  835                 2622
## 5430                    0                    0
## 5431                    0                    0
## 5432                    4                    0
## 5433                    0                    0
## 5434                    2                    0
## 5435                    3                  137
## 5436                    0                    0
## 5437                    0                    0
## 5438                    8                    0
## 5439                   68                  890
## 5440                    0                    0
## 5441                    0                    1
## 5442                    0                    4
## 5443                 1403                 1545
## 5444                    3                    0
## 5445                    1                   45
## 5446                    8                  101
## 5447                    0                    0
## 5448                   12                    0
## 5449                    0                    0
## 5450                    0                    0
## 5451                    3                    9
## 5452                    0                    0
## 5453                  245                    0
## 5454                   14                   66
## 5455                    1                    1
## 5456                    1                   59
## 5457                    0                    0
## 5458                    1                    0
## 5459                   14                  328
## 5460                    0                 <NA>
## 5461                    2                    2
## 5462                  192                 1804
## 5463                    0                    0
## 5464                    0                    0
## 5465                    1                   17
## 5466                    0                    0
## 5467                   17                   70
## 5468                  239                 3156
## 5469                    0                 <NA>
## 5470                    3                    0
## 5471                   33                    0
## 5472                   98                 1399
## 5473                    0                    0
## 5474                    0                    0
## 5475                    0                    0
## 5476                    2                    0
## 5477                    2                    0
## 5478                    0                    0
## 5479                    0                    6
## 5480                    0                 <NA>
## 5481                    8                   15
## 5482                   10                  266
## 5483                    0                    0
## 5484                    0                    0
## 5485                    0                    6
## 5486                    0                    0
## 5487                    7                   15
## 5488                    0                    0
## 5489                    0                    1
## 5490                    2                   35
## 5491                    6                   14
## 5492                    0                   26
## 5493                    0                    6
## 5494                    1                    0
## 5495                    3                   54
## 5496                    0                    0
## 5497                    1                    0
## 5498                   14                    3
## 5499                    0                   15
## 5500                    0                    0
## 5501                    5                   25
## 5502                    4                  103
## 5503                    0                   54
## 5504                   97                 <NA>
## 5505                   19                    0
## 5506                    2                    0
## 5507                    0                    0
## 5508                    0                    0
## 5509                  108                 <NA>
## 5510                    3                    0
## 5511                    0                    0
## 5512                    0                    0
## 5513                    0                    0
## 5514                    0                    0
## 5515                   14                   24
## 5516                    0                    0
## 5517                    0                   17
## 5518                    2                    0
## 5519                    0                   25
## 5520                    5                    0
## 5521                    0                    0
## 5522                    0                    0
## 5523                    0                    9
## 5524                    0                    0
## 5525                    0                   -1
## 5526                    1                   17
## 5527                   15                 <NA>
## 5528                   26                    0
## 5529                    1                   20
## 5530                    6                    5
## 5531                    0                    6
## 5532                    6                 <NA>
## 5533                    3                 <NA>
## 5534                    0                    0
## 5535                    2                    2
## 5536                    1                    0
## 5537                    1                    0
## 5538                    2                    0
## 5539                    1                    0
## 5540                  780                 1082
## 5541                    0                    0
## 5542                    0                    0
## 5543                    0                    0
## 5544                    1                 <NA>
## 5545                  426                 1506
## 5546                    0                    0
## 5547                    9                    1
## 5548                    0                    3
## 5549                    0                    0
## 5550                    0                    0
## 5551                    1                    0
## 5552                    1                    7
## 5553                   25                    9
## 5554                   12                   53
## 5555                    1                    0
## 5556                   17                 <NA>
## 5557                    0                    0
## 5558                    0                    0
## 5559                    0                    9
## 5560                   39                   38
## 5561                    1                    2
## 5562                   81                  642
## 5563                    2                    0
## 5564                  563                 4400
## 5565                    0                    7
## 5566                    0                    0
## 5567                  242                 1488
## 5568                   13                    0
## 5569                    0                    5
## 5570                   17                   67
## 5571                    0                    0
## 5572                    3                   12
## 5573                   24                   28
## 5574                    1                    0
## 5575                    0                    0
## 5576                    4                   17
## 5577                    0                    0
## 5578                   21                  418
## 5579                   10                    9
## 5580                   52                   68
## 5581                    0                    4
## 5582                   16                   20
## 5583                    0                   12
## 5584                    0                    0
## 5585                   29                   43
## 5586                   36                   90
## 5587                    0                    0
## 5588                   30                    0
## 5589                   12                    9
## 5590                    0                    0
## 5591                    2                    2
## 5592                    1                   11
## 5593                    1                    0
## 5594                    0                    0
## 5595                    2                    0
## 5596                  560                  399
## 5597                    2                   35
## 5598                    0                    4
## 5599                   16                   58
## 5600                    5                   -1
## 5601                    1                 <NA>
## 5602                    0                    0
## 5603                    0                    0
## 5604                    0                    0
## 5605                   13                    0
## 5606                    0                    0
## 5607                    2                   15
## 5608                    2                    2
## 5609                   50                  226
## 5610                    5                   16
## 5611                    0                    0
## 5612                    0                 <NA>
## 5613                    0                    3
## 5614                    1                    0
## 5615                    0                    0
## 5616                    0                    0

Health Index By Country and Mitigation

q3 <- "
      SELECT c.date as Date_Based_On_Health_Index
            , d.convert_name as Country
            , a.value as Health_Index
            , b.measure_value as Countermeasures_Mitigation
      FROM country_health_index a
      JOIN measurement b on b.country_id=a.country_id
      JOIN time c ON c.time_id=a.time_id 
      JOIN country d ON d.country_id=a.country_id
      "
g3 <- dbGetQuery(con, q3)
g3
##       date_based_on_health_index                  country health_index
## 1                     2015-01-01              Afghanistan         32.5
## 2                     2010-01-01              Afghanistan         29.4
## 3                     2005-01-01              Afghanistan         27.1
## 4                     2000-01-01              Afghanistan         24.8
## 5                     1995-01-01              Afghanistan         24.5
## 6                     1990-01-01              Afghanistan         24.7
## 7                     2015-01-01              Afghanistan         32.5
## 8                     2010-01-01              Afghanistan         29.4
## 9                     2005-01-01              Afghanistan         27.1
## 10                    2000-01-01              Afghanistan         24.8
## 11                    1995-01-01              Afghanistan         24.5
## 12                    1990-01-01              Afghanistan         24.7
## 13                    2015-01-01              Afghanistan         32.5
## 14                    2010-01-01              Afghanistan         29.4
## 15                    2005-01-01              Afghanistan         27.1
## 16                    2000-01-01              Afghanistan         24.8
## 17                    1995-01-01              Afghanistan         24.5
## 18                    1990-01-01              Afghanistan         24.7
## 19                    2015-01-01              Afghanistan         32.5
## 20                    2010-01-01              Afghanistan         29.4
## 21                    2005-01-01              Afghanistan         27.1
## 22                    2000-01-01              Afghanistan         24.8
## 23                    1995-01-01              Afghanistan         24.5
## 24                    1990-01-01              Afghanistan         24.7
## 25                    2015-01-01              Afghanistan         32.5
## 26                    2010-01-01              Afghanistan         29.4
## 27                    2005-01-01              Afghanistan         27.1
## 28                    2000-01-01              Afghanistan         24.8
## 29                    1995-01-01              Afghanistan         24.5
## 30                    1990-01-01              Afghanistan         24.7
## 31                    2015-01-01              Afghanistan         32.5
## 32                    2010-01-01              Afghanistan         29.4
## 33                    2005-01-01              Afghanistan         27.1
## 34                    2000-01-01              Afghanistan         24.8
## 35                    1995-01-01              Afghanistan         24.5
## 36                    1990-01-01              Afghanistan         24.7
## 37                    2015-01-01              Afghanistan         32.5
## 38                    2010-01-01              Afghanistan         29.4
## 39                    2005-01-01              Afghanistan         27.1
## 40                    2000-01-01              Afghanistan         24.8
## 41                    1995-01-01              Afghanistan         24.5
## 42                    1990-01-01              Afghanistan         24.7
## 43                    2015-01-01              Afghanistan         32.5
## 44                    2010-01-01              Afghanistan         29.4
## 45                    2005-01-01              Afghanistan         27.1
## 46                    2000-01-01              Afghanistan         24.8
## 47                    1995-01-01              Afghanistan         24.5
## 48                    1990-01-01              Afghanistan         24.7
## 49                    2015-01-01              Afghanistan         32.5
## 50                    2010-01-01              Afghanistan         29.4
## 51                    2005-01-01              Afghanistan         27.1
## 52                    2000-01-01              Afghanistan         24.8
## 53                    1995-01-01              Afghanistan         24.5
## 54                    1990-01-01              Afghanistan         24.7
## 55                    2015-01-01              Afghanistan         32.5
## 56                    2010-01-01              Afghanistan         29.4
## 57                    2005-01-01              Afghanistan         27.1
## 58                    2000-01-01              Afghanistan         24.8
## 59                    1995-01-01              Afghanistan         24.5
## 60                    1990-01-01              Afghanistan         24.7
## 61                    2015-01-01              Afghanistan         32.5
## 62                    2010-01-01              Afghanistan         29.4
## 63                    2005-01-01              Afghanistan         27.1
## 64                    2000-01-01              Afghanistan         24.8
## 65                    1995-01-01              Afghanistan         24.5
## 66                    1990-01-01              Afghanistan         24.7
## 67                    2015-01-01              Afghanistan         32.5
## 68                    2010-01-01              Afghanistan         29.4
## 69                    2005-01-01              Afghanistan         27.1
## 70                    2000-01-01              Afghanistan         24.8
## 71                    1995-01-01              Afghanistan         24.5
## 72                    1990-01-01              Afghanistan         24.7
## 73                    2015-01-01              Afghanistan         32.5
## 74                    2010-01-01              Afghanistan         29.4
## 75                    2005-01-01              Afghanistan         27.1
## 76                    2000-01-01              Afghanistan         24.8
## 77                    1995-01-01              Afghanistan         24.5
## 78                    1990-01-01              Afghanistan         24.7
## 79                    2015-01-01              Afghanistan         32.5
## 80                    2010-01-01              Afghanistan         29.4
## 81                    2005-01-01              Afghanistan         27.1
## 82                    2000-01-01              Afghanistan         24.8
## 83                    1995-01-01              Afghanistan         24.5
## 84                    1990-01-01              Afghanistan         24.7
## 85                    2015-01-01              Afghanistan         32.5
## 86                    2010-01-01              Afghanistan         29.4
## 87                    2005-01-01              Afghanistan         27.1
## 88                    2000-01-01              Afghanistan         24.8
## 89                    1995-01-01              Afghanistan         24.5
## 90                    1990-01-01              Afghanistan         24.7
## 91                    2015-01-01              Afghanistan         32.5
## 92                    2010-01-01              Afghanistan         29.4
## 93                    2005-01-01              Afghanistan         27.1
## 94                    2000-01-01              Afghanistan         24.8
## 95                    1995-01-01              Afghanistan         24.5
## 96                    1990-01-01              Afghanistan         24.7
## 97                    2015-01-01              Afghanistan         32.5
## 98                    2010-01-01              Afghanistan         29.4
## 99                    2005-01-01              Afghanistan         27.1
## 100                   2000-01-01              Afghanistan         24.8
## 101                   1995-01-01              Afghanistan         24.5
## 102                   1990-01-01              Afghanistan         24.7
## 103                   2015-01-01              Afghanistan         32.5
## 104                   2010-01-01              Afghanistan         29.4
## 105                   2005-01-01              Afghanistan         27.1
## 106                   2000-01-01              Afghanistan         24.8
## 107                   1995-01-01              Afghanistan         24.5
## 108                   1990-01-01              Afghanistan         24.7
## 109                   2015-01-01              Afghanistan         32.5
## 110                   2010-01-01              Afghanistan         29.4
## 111                   2005-01-01              Afghanistan         27.1
## 112                   2000-01-01              Afghanistan         24.8
## 113                   1995-01-01              Afghanistan         24.5
## 114                   1990-01-01              Afghanistan         24.7
## 115                   2015-01-01              Afghanistan         32.5
## 116                   2010-01-01              Afghanistan         29.4
## 117                   2005-01-01              Afghanistan         27.1
## 118                   2000-01-01              Afghanistan         24.8
## 119                   1995-01-01              Afghanistan         24.5
## 120                   1990-01-01              Afghanistan         24.7
## 121                   2015-01-01              Afghanistan         32.5
## 122                   2010-01-01              Afghanistan         29.4
## 123                   2005-01-01              Afghanistan         27.1
## 124                   2000-01-01              Afghanistan         24.8
## 125                   1995-01-01              Afghanistan         24.5
## 126                   1990-01-01              Afghanistan         24.7
## 127                   2015-01-01              Afghanistan         32.5
## 128                   2010-01-01              Afghanistan         29.4
## 129                   2005-01-01              Afghanistan         27.1
## 130                   2000-01-01              Afghanistan         24.8
## 131                   1995-01-01              Afghanistan         24.5
## 132                   1990-01-01              Afghanistan         24.7
## 133                   2015-01-01              Afghanistan         32.5
## 134                   2010-01-01              Afghanistan         29.4
## 135                   2005-01-01              Afghanistan         27.1
## 136                   2000-01-01              Afghanistan         24.8
## 137                   1995-01-01              Afghanistan         24.5
## 138                   1990-01-01              Afghanistan         24.7
## 139                   2015-01-01              Afghanistan         32.5
## 140                   2010-01-01              Afghanistan         29.4
## 141                   2005-01-01              Afghanistan         27.1
## 142                   2000-01-01              Afghanistan         24.8
## 143                   1995-01-01              Afghanistan         24.5
## 144                   1990-01-01              Afghanistan         24.7
## 145                   2015-01-01              Afghanistan         32.5
## 146                   2010-01-01              Afghanistan         29.4
## 147                   2005-01-01              Afghanistan         27.1
## 148                   2000-01-01              Afghanistan         24.8
## 149                   1995-01-01              Afghanistan         24.5
## 150                   1990-01-01              Afghanistan         24.7
## 151                   2015-01-01              Afghanistan         32.5
## 152                   2010-01-01              Afghanistan         29.4
## 153                   2005-01-01              Afghanistan         27.1
## 154                   2000-01-01              Afghanistan         24.8
## 155                   1995-01-01              Afghanistan         24.5
## 156                   1990-01-01              Afghanistan         24.7
## 157                   2015-01-01              Afghanistan         32.5
## 158                   2010-01-01              Afghanistan         29.4
## 159                   2005-01-01              Afghanistan         27.1
## 160                   2000-01-01              Afghanistan         24.8
## 161                   1995-01-01              Afghanistan         24.5
## 162                   1990-01-01              Afghanistan         24.7
## 163                   2015-01-01              Afghanistan         32.5
## 164                   2010-01-01              Afghanistan         29.4
## 165                   2005-01-01              Afghanistan         27.1
## 166                   2000-01-01              Afghanistan         24.8
## 167                   1995-01-01              Afghanistan         24.5
## 168                   1990-01-01              Afghanistan         24.7
## 169                   2015-01-01              Afghanistan         32.5
## 170                   2010-01-01              Afghanistan         29.4
## 171                   2005-01-01              Afghanistan         27.1
## 172                   2000-01-01              Afghanistan         24.8
## 173                   1995-01-01              Afghanistan         24.5
## 174                   1990-01-01              Afghanistan         24.7
## 175                   2015-01-01              Afghanistan         32.5
## 176                   2010-01-01              Afghanistan         29.4
## 177                   2005-01-01              Afghanistan         27.1
## 178                   2000-01-01              Afghanistan         24.8
## 179                   1995-01-01              Afghanistan         24.5
## 180                   1990-01-01              Afghanistan         24.7
## 181                   2015-01-01              Afghanistan         32.5
## 182                   2010-01-01              Afghanistan         29.4
## 183                   2005-01-01              Afghanistan         27.1
## 184                   2000-01-01              Afghanistan         24.8
## 185                   1995-01-01              Afghanistan         24.5
## 186                   1990-01-01              Afghanistan         24.7
## 187                   2015-01-01              Afghanistan         32.5
## 188                   2010-01-01              Afghanistan         29.4
## 189                   2005-01-01              Afghanistan         27.1
## 190                   2000-01-01              Afghanistan         24.8
## 191                   1995-01-01              Afghanistan         24.5
## 192                   1990-01-01              Afghanistan         24.7
## 193                   2015-01-01              Afghanistan         32.5
## 194                   2010-01-01              Afghanistan         29.4
## 195                   2005-01-01              Afghanistan         27.1
## 196                   2000-01-01              Afghanistan         24.8
## 197                   1995-01-01              Afghanistan         24.5
## 198                   1990-01-01              Afghanistan         24.7
## 199                   2015-01-01              Afghanistan         32.5
## 200                   2010-01-01              Afghanistan         29.4
## 201                   2005-01-01              Afghanistan         27.1
## 202                   2000-01-01              Afghanistan         24.8
## 203                   1995-01-01              Afghanistan         24.5
## 204                   1990-01-01              Afghanistan         24.7
## 205                   2015-01-01              Afghanistan         32.5
## 206                   2010-01-01              Afghanistan         29.4
## 207                   2005-01-01              Afghanistan         27.1
## 208                   2000-01-01              Afghanistan         24.8
## 209                   1995-01-01              Afghanistan         24.5
## 210                   1990-01-01              Afghanistan         24.7
## 211                   2015-01-01              Afghanistan         32.5
## 212                   2010-01-01              Afghanistan         29.4
## 213                   2005-01-01              Afghanistan         27.1
## 214                   2000-01-01              Afghanistan         24.8
## 215                   1995-01-01              Afghanistan         24.5
## 216                   1990-01-01              Afghanistan         24.7
## 217                   2015-01-01              Afghanistan         32.5
## 218                   2010-01-01              Afghanistan         29.4
## 219                   2005-01-01              Afghanistan         27.1
## 220                   2000-01-01              Afghanistan         24.8
## 221                   1995-01-01              Afghanistan         24.5
## 222                   1990-01-01              Afghanistan         24.7
## 223                   2015-01-01              Afghanistan         32.5
## 224                   2010-01-01              Afghanistan         29.4
## 225                   2005-01-01              Afghanistan         27.1
## 226                   2000-01-01              Afghanistan         24.8
## 227                   1995-01-01              Afghanistan         24.5
## 228                   1990-01-01              Afghanistan         24.7
## 229                   2015-01-01              Afghanistan         32.5
## 230                   2010-01-01              Afghanistan         29.4
## 231                   2005-01-01              Afghanistan         27.1
## 232                   2000-01-01              Afghanistan         24.8
## 233                   1995-01-01              Afghanistan         24.5
## 234                   1990-01-01              Afghanistan         24.7
## 235                   2015-01-01              Afghanistan         32.5
## 236                   2010-01-01              Afghanistan         29.4
## 237                   2005-01-01              Afghanistan         27.1
## 238                   2000-01-01              Afghanistan         24.8
## 239                   1995-01-01              Afghanistan         24.5
## 240                   1990-01-01              Afghanistan         24.7
## 241                   2015-01-01              Afghanistan         32.5
## 242                   2010-01-01              Afghanistan         29.4
## 243                   2005-01-01              Afghanistan         27.1
## 244                   2000-01-01              Afghanistan         24.8
## 245                   1995-01-01              Afghanistan         24.5
## 246                   1990-01-01              Afghanistan         24.7
## 247                   2015-01-01              Afghanistan         32.5
## 248                   2010-01-01              Afghanistan         29.4
## 249                   2005-01-01              Afghanistan         27.1
## 250                   2000-01-01              Afghanistan         24.8
## 251                   1995-01-01              Afghanistan         24.5
## 252                   1990-01-01              Afghanistan         24.7
## 253                   2015-01-01              Afghanistan         32.5
## 254                   2010-01-01              Afghanistan         29.4
## 255                   2005-01-01              Afghanistan         27.1
## 256                   2000-01-01              Afghanistan         24.8
## 257                   1995-01-01              Afghanistan         24.5
## 258                   1990-01-01              Afghanistan         24.7
## 259                   2015-01-01              Afghanistan         32.5
## 260                   2010-01-01              Afghanistan         29.4
## 261                   2005-01-01              Afghanistan         27.1
## 262                   2000-01-01              Afghanistan         24.8
## 263                   1995-01-01              Afghanistan         24.5
## 264                   1990-01-01              Afghanistan         24.7
## 265                   2015-01-01              Afghanistan         32.5
## 266                   2010-01-01              Afghanistan         29.4
## 267                   2005-01-01              Afghanistan         27.1
## 268                   2000-01-01              Afghanistan         24.8
## 269                   1995-01-01              Afghanistan         24.5
## 270                   1990-01-01              Afghanistan         24.7
## 271                   2015-01-01              Afghanistan         32.5
## 272                   2010-01-01              Afghanistan         29.4
## 273                   2005-01-01              Afghanistan         27.1
## 274                   2000-01-01              Afghanistan         24.8
## 275                   1995-01-01              Afghanistan         24.5
## 276                   1990-01-01              Afghanistan         24.7
## 277                   2015-01-01              Afghanistan         32.5
## 278                   2010-01-01              Afghanistan         29.4
## 279                   2005-01-01              Afghanistan         27.1
## 280                   2000-01-01              Afghanistan         24.8
## 281                   1995-01-01              Afghanistan         24.5
## 282                   1990-01-01              Afghanistan         24.7
## 283                   2015-01-01              Afghanistan         32.5
## 284                   2010-01-01              Afghanistan         29.4
## 285                   2005-01-01              Afghanistan         27.1
## 286                   2000-01-01              Afghanistan         24.8
## 287                   1995-01-01              Afghanistan         24.5
## 288                   1990-01-01              Afghanistan         24.7
## 289                   2015-01-01              Afghanistan         32.5
## 290                   2010-01-01              Afghanistan         29.4
## 291                   2005-01-01              Afghanistan         27.1
## 292                   2000-01-01              Afghanistan         24.8
## 293                   1995-01-01              Afghanistan         24.5
## 294                   1990-01-01              Afghanistan         24.7
## 295                   2015-01-01              Afghanistan         32.5
## 296                   2010-01-01              Afghanistan         29.4
## 297                   2005-01-01              Afghanistan         27.1
## 298                   2000-01-01              Afghanistan         24.8
## 299                   1995-01-01              Afghanistan         24.5
## 300                   1990-01-01              Afghanistan         24.7
## 301                   2015-01-01              Afghanistan         32.5
## 302                   2010-01-01              Afghanistan         29.4
## 303                   2005-01-01              Afghanistan         27.1
## 304                   2000-01-01              Afghanistan         24.8
## 305                   1995-01-01              Afghanistan         24.5
## 306                   1990-01-01              Afghanistan         24.7
## 307                   2015-01-01              Afghanistan         32.5
## 308                   2010-01-01              Afghanistan         29.4
## 309                   2005-01-01              Afghanistan         27.1
## 310                   2000-01-01              Afghanistan         24.8
## 311                   1995-01-01              Afghanistan         24.5
## 312                   1990-01-01              Afghanistan         24.7
## 313                   2015-01-01              Afghanistan         32.5
## 314                   2010-01-01              Afghanistan         29.4
## 315                   2005-01-01              Afghanistan         27.1
## 316                   2000-01-01              Afghanistan         24.8
## 317                   1995-01-01              Afghanistan         24.5
## 318                   1990-01-01              Afghanistan         24.7
## 319                   2015-01-01              Afghanistan         32.5
## 320                   2010-01-01              Afghanistan         29.4
## 321                   2005-01-01              Afghanistan         27.1
## 322                   2000-01-01              Afghanistan         24.8
## 323                   1995-01-01              Afghanistan         24.5
## 324                   1990-01-01              Afghanistan         24.7
## 325                   2015-01-01              Afghanistan         32.5
## 326                   2010-01-01              Afghanistan         29.4
## 327                   2005-01-01              Afghanistan         27.1
## 328                   2000-01-01              Afghanistan         24.8
## 329                   1995-01-01              Afghanistan         24.5
## 330                   1990-01-01              Afghanistan         24.7
## 331                   2015-01-01              Afghanistan         32.5
## 332                   2010-01-01              Afghanistan         29.4
## 333                   2005-01-01              Afghanistan         27.1
## 334                   2000-01-01              Afghanistan         24.8
## 335                   1995-01-01              Afghanistan         24.5
## 336                   1990-01-01              Afghanistan         24.7
## 337                   2015-01-01                  Albania         78.2
## 338                   2010-01-01                  Albania         75.3
## 339                   2005-01-01                  Albania         71.6
## 340                   2000-01-01                  Albania         68.5
## 341                   1995-01-01                  Albania         65.1
## 342                   1990-01-01                  Albania         62.4
## 343                   2015-01-01                  Albania         78.2
## 344                   2010-01-01                  Albania         75.3
## 345                   2005-01-01                  Albania         71.6
## 346                   2000-01-01                  Albania         68.5
## 347                   1995-01-01                  Albania         65.1
## 348                   1990-01-01                  Albania         62.4
## 349                   2015-01-01                  Albania         78.2
## 350                   2010-01-01                  Albania         75.3
## 351                   2005-01-01                  Albania         71.6
## 352                   2000-01-01                  Albania         68.5
## 353                   1995-01-01                  Albania         65.1
## 354                   1990-01-01                  Albania         62.4
## 355                   2015-01-01                  Albania         78.2
## 356                   2010-01-01                  Albania         75.3
## 357                   2005-01-01                  Albania         71.6
## 358                   2000-01-01                  Albania         68.5
## 359                   1995-01-01                  Albania         65.1
## 360                   1990-01-01                  Albania         62.4
## 361                   2015-01-01                  Albania         78.2
## 362                   2010-01-01                  Albania         75.3
## 363                   2005-01-01                  Albania         71.6
## 364                   2000-01-01                  Albania         68.5
## 365                   1995-01-01                  Albania         65.1
## 366                   1990-01-01                  Albania         62.4
## 367                   2015-01-01                  Albania         78.2
## 368                   2010-01-01                  Albania         75.3
## 369                   2005-01-01                  Albania         71.6
## 370                   2000-01-01                  Albania         68.5
## 371                   1995-01-01                  Albania         65.1
## 372                   1990-01-01                  Albania         62.4
## 373                   2015-01-01                  Albania         78.2
## 374                   2010-01-01                  Albania         75.3
## 375                   2005-01-01                  Albania         71.6
## 376                   2000-01-01                  Albania         68.5
## 377                   1995-01-01                  Albania         65.1
## 378                   1990-01-01                  Albania         62.4
## 379                   2015-01-01                  Albania         78.2
## 380                   2010-01-01                  Albania         75.3
## 381                   2005-01-01                  Albania         71.6
## 382                   2000-01-01                  Albania         68.5
## 383                   1995-01-01                  Albania         65.1
## 384                   1990-01-01                  Albania         62.4
## 385                   2015-01-01                  Albania         78.2
## 386                   2010-01-01                  Albania         75.3
## 387                   2005-01-01                  Albania         71.6
## 388                   2000-01-01                  Albania         68.5
## 389                   1995-01-01                  Albania         65.1
## 390                   1990-01-01                  Albania         62.4
## 391                   2015-01-01                  Albania         78.2
## 392                   2010-01-01                  Albania         75.3
## 393                   2005-01-01                  Albania         71.6
## 394                   2000-01-01                  Albania         68.5
## 395                   1995-01-01                  Albania         65.1
## 396                   1990-01-01                  Albania         62.4
## 397                   2015-01-01                  Albania         78.2
## 398                   2010-01-01                  Albania         75.3
## 399                   2005-01-01                  Albania         71.6
## 400                   2000-01-01                  Albania         68.5
## 401                   1995-01-01                  Albania         65.1
## 402                   1990-01-01                  Albania         62.4
## 403                   2015-01-01                  Albania         78.2
## 404                   2010-01-01                  Albania         75.3
## 405                   2005-01-01                  Albania         71.6
## 406                   2000-01-01                  Albania         68.5
## 407                   1995-01-01                  Albania         65.1
## 408                   1990-01-01                  Albania         62.4
## 409                   2015-01-01                  Albania         78.2
## 410                   2010-01-01                  Albania         75.3
## 411                   2005-01-01                  Albania         71.6
## 412                   2000-01-01                  Albania         68.5
## 413                   1995-01-01                  Albania         65.1
## 414                   1990-01-01                  Albania         62.4
## 415                   2015-01-01                  Albania         78.2
## 416                   2010-01-01                  Albania         75.3
## 417                   2005-01-01                  Albania         71.6
## 418                   2000-01-01                  Albania         68.5
## 419                   1995-01-01                  Albania         65.1
## 420                   1990-01-01                  Albania         62.4
## 421                   2015-01-01                  Albania         78.2
## 422                   2010-01-01                  Albania         75.3
## 423                   2005-01-01                  Albania         71.6
## 424                   2000-01-01                  Albania         68.5
## 425                   1995-01-01                  Albania         65.1
## 426                   1990-01-01                  Albania         62.4
## 427                   2015-01-01                  Albania         78.2
## 428                   2010-01-01                  Albania         75.3
## 429                   2005-01-01                  Albania         71.6
## 430                   2000-01-01                  Albania         68.5
## 431                   1995-01-01                  Albania         65.1
## 432                   1990-01-01                  Albania         62.4
## 433                   2015-01-01                  Albania         78.2
## 434                   2010-01-01                  Albania         75.3
## 435                   2005-01-01                  Albania         71.6
## 436                   2000-01-01                  Albania         68.5
## 437                   1995-01-01                  Albania         65.1
## 438                   1990-01-01                  Albania         62.4
## 439                   2015-01-01                  Albania         78.2
## 440                   2010-01-01                  Albania         75.3
## 441                   2005-01-01                  Albania         71.6
## 442                   2000-01-01                  Albania         68.5
## 443                   1995-01-01                  Albania         65.1
## 444                   1990-01-01                  Albania         62.4
## 445                   2015-01-01                  Albania         78.2
## 446                   2010-01-01                  Albania         75.3
## 447                   2005-01-01                  Albania         71.6
## 448                   2000-01-01                  Albania         68.5
## 449                   1995-01-01                  Albania         65.1
## 450                   1990-01-01                  Albania         62.4
## 451                   2015-01-01                  Albania         78.2
## 452                   2010-01-01                  Albania         75.3
## 453                   2005-01-01                  Albania         71.6
## 454                   2000-01-01                  Albania         68.5
## 455                   1995-01-01                  Albania         65.1
## 456                   1990-01-01                  Albania         62.4
## 457                   2015-01-01                  Albania         78.2
## 458                   2010-01-01                  Albania         75.3
## 459                   2005-01-01                  Albania         71.6
## 460                   2000-01-01                  Albania         68.5
## 461                   1995-01-01                  Albania         65.1
## 462                   1990-01-01                  Albania         62.4
## 463                   2015-01-01                  Albania         78.2
## 464                   2010-01-01                  Albania         75.3
## 465                   2005-01-01                  Albania         71.6
## 466                   2000-01-01                  Albania         68.5
## 467                   1995-01-01                  Albania         65.1
## 468                   1990-01-01                  Albania         62.4
## 469                   2015-01-01                  Albania         78.2
## 470                   2010-01-01                  Albania         75.3
## 471                   2005-01-01                  Albania         71.6
## 472                   2000-01-01                  Albania         68.5
## 473                   1995-01-01                  Albania         65.1
## 474                   1990-01-01                  Albania         62.4
## 475                   2015-01-01                  Albania         78.2
## 476                   2010-01-01                  Albania         75.3
## 477                   2005-01-01                  Albania         71.6
## 478                   2000-01-01                  Albania         68.5
## 479                   1995-01-01                  Albania         65.1
## 480                   1990-01-01                  Albania         62.4
## 481                   2015-01-01                  Albania         78.2
## 482                   2010-01-01                  Albania         75.3
## 483                   2005-01-01                  Albania         71.6
## 484                   2000-01-01                  Albania         68.5
## 485                   1995-01-01                  Albania         65.1
## 486                   1990-01-01                  Albania         62.4
## 487                   2015-01-01                  Albania         78.2
## 488                   2010-01-01                  Albania         75.3
## 489                   2005-01-01                  Albania         71.6
## 490                   2000-01-01                  Albania         68.5
## 491                   1995-01-01                  Albania         65.1
## 492                   1990-01-01                  Albania         62.4
## 493                   2015-01-01                  Albania         78.2
## 494                   2010-01-01                  Albania         75.3
## 495                   2005-01-01                  Albania         71.6
## 496                   2000-01-01                  Albania         68.5
## 497                   1995-01-01                  Albania         65.1
## 498                   1990-01-01                  Albania         62.4
## 499                   2015-01-01                  Albania         78.2
## 500                   2010-01-01                  Albania         75.3
## 501                   2005-01-01                  Albania         71.6
## 502                   2000-01-01                  Albania         68.5
## 503                   1995-01-01                  Albania         65.1
## 504                   1990-01-01                  Albania         62.4
## 505                   2015-01-01                  Albania         78.2
## 506                   2010-01-01                  Albania         75.3
## 507                   2005-01-01                  Albania         71.6
## 508                   2000-01-01                  Albania         68.5
## 509                   1995-01-01                  Albania         65.1
## 510                   1990-01-01                  Albania         62.4
## 511                   2015-01-01                  Albania         78.2
## 512                   2010-01-01                  Albania         75.3
## 513                   2005-01-01                  Albania         71.6
## 514                   2000-01-01                  Albania         68.5
## 515                   1995-01-01                  Albania         65.1
## 516                   1990-01-01                  Albania         62.4
## 517                   2015-01-01                  Albania         78.2
## 518                   2010-01-01                  Albania         75.3
## 519                   2005-01-01                  Albania         71.6
## 520                   2000-01-01                  Albania         68.5
## 521                   1995-01-01                  Albania         65.1
## 522                   1990-01-01                  Albania         62.4
## 523                   2015-01-01                  Albania         78.2
## 524                   2010-01-01                  Albania         75.3
## 525                   2005-01-01                  Albania         71.6
## 526                   2000-01-01                  Albania         68.5
## 527                   1995-01-01                  Albania         65.1
## 528                   1990-01-01                  Albania         62.4
## 529                   2015-01-01                  Albania         78.2
## 530                   2010-01-01                  Albania         75.3
## 531                   2005-01-01                  Albania         71.6
## 532                   2000-01-01                  Albania         68.5
## 533                   1995-01-01                  Albania         65.1
## 534                   1990-01-01                  Albania         62.4
## 535                   2015-01-01                  Albania         78.2
## 536                   2010-01-01                  Albania         75.3
## 537                   2005-01-01                  Albania         71.6
## 538                   2000-01-01                  Albania         68.5
## 539                   1995-01-01                  Albania         65.1
## 540                   1990-01-01                  Albania         62.4
## 541                   2015-01-01                  Albania         78.2
## 542                   2010-01-01                  Albania         75.3
## 543                   2005-01-01                  Albania         71.6
## 544                   2000-01-01                  Albania         68.5
## 545                   1995-01-01                  Albania         65.1
## 546                   1990-01-01                  Albania         62.4
## 547                   2015-01-01                  Albania         78.2
## 548                   2010-01-01                  Albania         75.3
## 549                   2005-01-01                  Albania         71.6
## 550                   2000-01-01                  Albania         68.5
## 551                   1995-01-01                  Albania         65.1
## 552                   1990-01-01                  Albania         62.4
## 553                   2015-01-01                  Albania         78.2
## 554                   2010-01-01                  Albania         75.3
## 555                   2005-01-01                  Albania         71.6
## 556                   2000-01-01                  Albania         68.5
## 557                   1995-01-01                  Albania         65.1
## 558                   1990-01-01                  Albania         62.4
## 559                   2015-01-01                  Albania         78.2
## 560                   2010-01-01                  Albania         75.3
## 561                   2005-01-01                  Albania         71.6
## 562                   2000-01-01                  Albania         68.5
## 563                   1995-01-01                  Albania         65.1
## 564                   1990-01-01                  Albania         62.4
## 565                   2015-01-01                  Albania         78.2
## 566                   2010-01-01                  Albania         75.3
## 567                   2005-01-01                  Albania         71.6
## 568                   2000-01-01                  Albania         68.5
## 569                   1995-01-01                  Albania         65.1
## 570                   1990-01-01                  Albania         62.4
## 571                   2015-01-01                  Albania         78.2
## 572                   2010-01-01                  Albania         75.3
## 573                   2005-01-01                  Albania         71.6
## 574                   2000-01-01                  Albania         68.5
## 575                   1995-01-01                  Albania         65.1
## 576                   1990-01-01                  Albania         62.4
## 577                   2015-01-01                  Albania         78.2
## 578                   2010-01-01                  Albania         75.3
## 579                   2005-01-01                  Albania         71.6
## 580                   2000-01-01                  Albania         68.5
## 581                   1995-01-01                  Albania         65.1
## 582                   1990-01-01                  Albania         62.4
## 583                   2015-01-01                  Albania         78.2
## 584                   2010-01-01                  Albania         75.3
## 585                   2005-01-01                  Albania         71.6
## 586                   2000-01-01                  Albania         68.5
## 587                   1995-01-01                  Albania         65.1
## 588                   1990-01-01                  Albania         62.4
## 589                   2015-01-01                  Albania         78.2
## 590                   2010-01-01                  Albania         75.3
## 591                   2005-01-01                  Albania         71.6
## 592                   2000-01-01                  Albania         68.5
## 593                   1995-01-01                  Albania         65.1
## 594                   1990-01-01                  Albania         62.4
## 595                   2015-01-01                  Albania         78.2
## 596                   2010-01-01                  Albania         75.3
## 597                   2005-01-01                  Albania         71.6
## 598                   2000-01-01                  Albania         68.5
## 599                   1995-01-01                  Albania         65.1
## 600                   1990-01-01                  Albania         62.4
## 601                   2015-01-01                  Albania         78.2
## 602                   2010-01-01                  Albania         75.3
## 603                   2005-01-01                  Albania         71.6
## 604                   2000-01-01                  Albania         68.5
## 605                   1995-01-01                  Albania         65.1
## 606                   1990-01-01                  Albania         62.4
## 607                   2015-01-01                  Albania         78.2
## 608                   2010-01-01                  Albania         75.3
## 609                   2005-01-01                  Albania         71.6
## 610                   2000-01-01                  Albania         68.5
## 611                   1995-01-01                  Albania         65.1
## 612                   1990-01-01                  Albania         62.4
## 613                   2015-01-01                  Albania         78.2
## 614                   2010-01-01                  Albania         75.3
## 615                   2005-01-01                  Albania         71.6
## 616                   2000-01-01                  Albania         68.5
## 617                   1995-01-01                  Albania         65.1
## 618                   1990-01-01                  Albania         62.4
## 619                   2015-01-01                  Albania         78.2
## 620                   2010-01-01                  Albania         75.3
## 621                   2005-01-01                  Albania         71.6
## 622                   2000-01-01                  Albania         68.5
## 623                   1995-01-01                  Albania         65.1
## 624                   1990-01-01                  Albania         62.4
## 625                   2015-01-01                  Albania         78.2
## 626                   2010-01-01                  Albania         75.3
## 627                   2005-01-01                  Albania         71.6
## 628                   2000-01-01                  Albania         68.5
## 629                   1995-01-01                  Albania         65.1
## 630                   1990-01-01                  Albania         62.4
## 631                   2015-01-01                  Albania         78.2
## 632                   2010-01-01                  Albania         75.3
## 633                   2005-01-01                  Albania         71.6
## 634                   2000-01-01                  Albania         68.5
## 635                   1995-01-01                  Albania         65.1
## 636                   1990-01-01                  Albania         62.4
## 637                   2015-01-01                  Albania         78.2
## 638                   2010-01-01                  Albania         75.3
## 639                   2005-01-01                  Albania         71.6
## 640                   2000-01-01                  Albania         68.5
## 641                   1995-01-01                  Albania         65.1
## 642                   1990-01-01                  Albania         62.4
## 643                   2015-01-01                  Albania         78.2
## 644                   2010-01-01                  Albania         75.3
## 645                   2005-01-01                  Albania         71.6
## 646                   2000-01-01                  Albania         68.5
## 647                   1995-01-01                  Albania         65.1
## 648                   1990-01-01                  Albania         62.4
## 649                   2015-01-01                  Albania         78.2
## 650                   2010-01-01                  Albania         75.3
## 651                   2005-01-01                  Albania         71.6
## 652                   2000-01-01                  Albania         68.5
## 653                   1995-01-01                  Albania         65.1
## 654                   1990-01-01                  Albania         62.4
## 655                   2015-01-01                  Albania         78.2
## 656                   2010-01-01                  Albania         75.3
## 657                   2005-01-01                  Albania         71.6
## 658                   2000-01-01                  Albania         68.5
## 659                   1995-01-01                  Albania         65.1
## 660                   1990-01-01                  Albania         62.4
## 661                   2015-01-01                  Albania         78.2
## 662                   2010-01-01                  Albania         75.3
## 663                   2005-01-01                  Albania         71.6
## 664                   2000-01-01                  Albania         68.5
## 665                   1995-01-01                  Albania         65.1
## 666                   1990-01-01                  Albania         62.4
## 667                   2015-01-01                  Albania         78.2
## 668                   2010-01-01                  Albania         75.3
## 669                   2005-01-01                  Albania         71.6
## 670                   2000-01-01                  Albania         68.5
## 671                   1995-01-01                  Albania         65.1
## 672                   1990-01-01                  Albania         62.4
## 673                   2015-01-01                  Albania         78.2
## 674                   2010-01-01                  Albania         75.3
## 675                   2005-01-01                  Albania         71.6
## 676                   2000-01-01                  Albania         68.5
## 677                   1995-01-01                  Albania         65.1
## 678                   1990-01-01                  Albania         62.4
## 679                   2015-01-01                  Albania         78.2
## 680                   2010-01-01                  Albania         75.3
## 681                   2005-01-01                  Albania         71.6
## 682                   2000-01-01                  Albania         68.5
## 683                   1995-01-01                  Albania         65.1
## 684                   1990-01-01                  Albania         62.4
## 685                   2015-01-01                  Albania         78.2
## 686                   2010-01-01                  Albania         75.3
## 687                   2005-01-01                  Albania         71.6
## 688                   2000-01-01                  Albania         68.5
## 689                   1995-01-01                  Albania         65.1
## 690                   1990-01-01                  Albania         62.4
## 691                   2015-01-01                  Albania         78.2
## 692                   2010-01-01                  Albania         75.3
## 693                   2005-01-01                  Albania         71.6
## 694                   2000-01-01                  Albania         68.5
## 695                   1995-01-01                  Albania         65.1
## 696                   1990-01-01                  Albania         62.4
## 697                   2015-01-01                  Albania         78.2
## 698                   2010-01-01                  Albania         75.3
## 699                   2005-01-01                  Albania         71.6
## 700                   2000-01-01                  Albania         68.5
## 701                   1995-01-01                  Albania         65.1
## 702                   1990-01-01                  Albania         62.4
## 703                   2015-01-01                  Albania         78.2
## 704                   2010-01-01                  Albania         75.3
## 705                   2005-01-01                  Albania         71.6
## 706                   2000-01-01                  Albania         68.5
## 707                   1995-01-01                  Albania         65.1
## 708                   1990-01-01                  Albania         62.4
## 709                   2015-01-01                  Albania         78.2
## 710                   2010-01-01                  Albania         75.3
## 711                   2005-01-01                  Albania         71.6
## 712                   2000-01-01                  Albania         68.5
## 713                   1995-01-01                  Albania         65.1
## 714                   1990-01-01                  Albania         62.4
## 715                   2015-01-01                  Albania         78.2
## 716                   2010-01-01                  Albania         75.3
## 717                   2005-01-01                  Albania         71.6
## 718                   2000-01-01                  Albania         68.5
## 719                   1995-01-01                  Albania         65.1
## 720                   1990-01-01                  Albania         62.4
## 721                   2015-01-01                  Algeria         63.7
## 722                   2010-01-01                  Algeria         62.2
## 723                   2005-01-01                  Algeria         59.6
## 724                   2000-01-01                  Algeria         56.2
## 725                   1995-01-01                  Algeria         52.6
## 726                   1990-01-01                  Algeria         48.2
## 727                   2015-01-01                  Algeria         63.7
## 728                   2010-01-01                  Algeria         62.2
## 729                   2005-01-01                  Algeria         59.6
## 730                   2000-01-01                  Algeria         56.2
## 731                   1995-01-01                  Algeria         52.6
## 732                   1990-01-01                  Algeria         48.2
## 733                   2015-01-01                  Algeria         63.7
## 734                   2010-01-01                  Algeria         62.2
## 735                   2005-01-01                  Algeria         59.6
## 736                   2000-01-01                  Algeria         56.2
## 737                   1995-01-01                  Algeria         52.6
## 738                   1990-01-01                  Algeria         48.2
## 739                   2015-01-01                  Algeria         63.7
## 740                   2010-01-01                  Algeria         62.2
## 741                   2005-01-01                  Algeria         59.6
## 742                   2000-01-01                  Algeria         56.2
## 743                   1995-01-01                  Algeria         52.6
## 744                   1990-01-01                  Algeria         48.2
## 745                   2015-01-01                  Algeria         63.7
## 746                   2010-01-01                  Algeria         62.2
## 747                   2005-01-01                  Algeria         59.6
## 748                   2000-01-01                  Algeria         56.2
## 749                   1995-01-01                  Algeria         52.6
## 750                   1990-01-01                  Algeria         48.2
## 751                   2015-01-01                  Algeria         63.7
## 752                   2010-01-01                  Algeria         62.2
## 753                   2005-01-01                  Algeria         59.6
## 754                   2000-01-01                  Algeria         56.2
## 755                   1995-01-01                  Algeria         52.6
## 756                   1990-01-01                  Algeria         48.2
## 757                   2015-01-01                  Algeria         63.7
## 758                   2010-01-01                  Algeria         62.2
## 759                   2005-01-01                  Algeria         59.6
## 760                   2000-01-01                  Algeria         56.2
## 761                   1995-01-01                  Algeria         52.6
## 762                   1990-01-01                  Algeria         48.2
## 763                   2015-01-01                  Algeria         63.7
## 764                   2010-01-01                  Algeria         62.2
## 765                   2005-01-01                  Algeria         59.6
## 766                   2000-01-01                  Algeria         56.2
## 767                   1995-01-01                  Algeria         52.6
## 768                   1990-01-01                  Algeria         48.2
## 769                   2015-01-01                  Algeria         63.7
## 770                   2010-01-01                  Algeria         62.2
## 771                   2005-01-01                  Algeria         59.6
## 772                   2000-01-01                  Algeria         56.2
## 773                   1995-01-01                  Algeria         52.6
## 774                   1990-01-01                  Algeria         48.2
## 775                   2015-01-01                  Algeria         63.7
## 776                   2010-01-01                  Algeria         62.2
## 777                   2005-01-01                  Algeria         59.6
## 778                   2000-01-01                  Algeria         56.2
## 779                   1995-01-01                  Algeria         52.6
## 780                   1990-01-01                  Algeria         48.2
## 781                   2015-01-01                  Algeria         63.7
## 782                   2010-01-01                  Algeria         62.2
## 783                   2005-01-01                  Algeria         59.6
## 784                   2000-01-01                  Algeria         56.2
## 785                   1995-01-01                  Algeria         52.6
## 786                   1990-01-01                  Algeria         48.2
## 787                   2015-01-01                  Algeria         63.7
## 788                   2010-01-01                  Algeria         62.2
## 789                   2005-01-01                  Algeria         59.6
## 790                   2000-01-01                  Algeria         56.2
## 791                   1995-01-01                  Algeria         52.6
## 792                   1990-01-01                  Algeria         48.2
## 793                   2015-01-01                  Algeria         63.7
## 794                   2010-01-01                  Algeria         62.2
## 795                   2005-01-01                  Algeria         59.6
## 796                   2000-01-01                  Algeria         56.2
## 797                   1995-01-01                  Algeria         52.6
## 798                   1990-01-01                  Algeria         48.2
## 799                   2015-01-01                  Algeria         63.7
## 800                   2010-01-01                  Algeria         62.2
## 801                   2005-01-01                  Algeria         59.6
## 802                   2000-01-01                  Algeria         56.2
## 803                   1995-01-01                  Algeria         52.6
## 804                   1990-01-01                  Algeria         48.2
## 805                   2015-01-01                  Algeria         63.7
## 806                   2010-01-01                  Algeria         62.2
## 807                   2005-01-01                  Algeria         59.6
## 808                   2000-01-01                  Algeria         56.2
## 809                   1995-01-01                  Algeria         52.6
## 810                   1990-01-01                  Algeria         48.2
## 811                   2015-01-01                  Algeria         63.7
## 812                   2010-01-01                  Algeria         62.2
## 813                   2005-01-01                  Algeria         59.6
## 814                   2000-01-01                  Algeria         56.2
## 815                   1995-01-01                  Algeria         52.6
## 816                   1990-01-01                  Algeria         48.2
## 817                   2015-01-01                  Algeria         63.7
## 818                   2010-01-01                  Algeria         62.2
## 819                   2005-01-01                  Algeria         59.6
## 820                   2000-01-01                  Algeria         56.2
## 821                   1995-01-01                  Algeria         52.6
## 822                   1990-01-01                  Algeria         48.2
## 823                   2015-01-01                  Algeria         63.7
## 824                   2010-01-01                  Algeria         62.2
## 825                   2005-01-01                  Algeria         59.6
## 826                   2000-01-01                  Algeria         56.2
## 827                   1995-01-01                  Algeria         52.6
## 828                   1990-01-01                  Algeria         48.2
## 829                   2015-01-01                  Algeria         63.7
## 830                   2010-01-01                  Algeria         62.2
## 831                   2005-01-01                  Algeria         59.6
## 832                   2000-01-01                  Algeria         56.2
## 833                   1995-01-01                  Algeria         52.6
## 834                   1990-01-01                  Algeria         48.2
## 835                   2015-01-01                  Algeria         63.7
## 836                   2010-01-01                  Algeria         62.2
## 837                   2005-01-01                  Algeria         59.6
## 838                   2000-01-01                  Algeria         56.2
## 839                   1995-01-01                  Algeria         52.6
## 840                   1990-01-01                  Algeria         48.2
## 841                   2015-01-01                  Algeria         63.7
## 842                   2010-01-01                  Algeria         62.2
## 843                   2005-01-01                  Algeria         59.6
## 844                   2000-01-01                  Algeria         56.2
## 845                   1995-01-01                  Algeria         52.6
## 846                   1990-01-01                  Algeria         48.2
## 847                   2015-01-01                  Algeria         63.7
## 848                   2010-01-01                  Algeria         62.2
## 849                   2005-01-01                  Algeria         59.6
## 850                   2000-01-01                  Algeria         56.2
## 851                   1995-01-01                  Algeria         52.6
## 852                   1990-01-01                  Algeria         48.2
## 853                   2015-01-01                  Algeria         63.7
## 854                   2010-01-01                  Algeria         62.2
## 855                   2005-01-01                  Algeria         59.6
## 856                   2000-01-01                  Algeria         56.2
## 857                   1995-01-01                  Algeria         52.6
## 858                   1990-01-01                  Algeria         48.2
## 859                   2015-01-01                  Algeria         63.7
## 860                   2010-01-01                  Algeria         62.2
## 861                   2005-01-01                  Algeria         59.6
## 862                   2000-01-01                  Algeria         56.2
## 863                   1995-01-01                  Algeria         52.6
## 864                   1990-01-01                  Algeria         48.2
## 865                   2015-01-01                  Algeria         63.7
## 866                   2010-01-01                  Algeria         62.2
## 867                   2005-01-01                  Algeria         59.6
## 868                   2000-01-01                  Algeria         56.2
## 869                   1995-01-01                  Algeria         52.6
## 870                   1990-01-01                  Algeria         48.2
## 871                   2015-01-01                  Algeria         63.7
## 872                   2010-01-01                  Algeria         62.2
## 873                   2005-01-01                  Algeria         59.6
## 874                   2000-01-01                  Algeria         56.2
## 875                   1995-01-01                  Algeria         52.6
## 876                   1990-01-01                  Algeria         48.2
## 877                   2015-01-01                  Algeria         63.7
## 878                   2010-01-01                  Algeria         62.2
## 879                   2005-01-01                  Algeria         59.6
## 880                   2000-01-01                  Algeria         56.2
## 881                   1995-01-01                  Algeria         52.6
## 882                   1990-01-01                  Algeria         48.2
## 883                   2015-01-01                  Algeria         63.7
## 884                   2010-01-01                  Algeria         62.2
## 885                   2005-01-01                  Algeria         59.6
## 886                   2000-01-01                  Algeria         56.2
## 887                   1995-01-01                  Algeria         52.6
## 888                   1990-01-01                  Algeria         48.2
## 889                   2015-01-01                  Algeria         63.7
## 890                   2010-01-01                  Algeria         62.2
## 891                   2005-01-01                  Algeria         59.6
## 892                   2000-01-01                  Algeria         56.2
## 893                   1995-01-01                  Algeria         52.6
## 894                   1990-01-01                  Algeria         48.2
## 895                   2015-01-01                  Algeria         63.7
## 896                   2010-01-01                  Algeria         62.2
## 897                   2005-01-01                  Algeria         59.6
## 898                   2000-01-01                  Algeria         56.2
## 899                   1995-01-01                  Algeria         52.6
## 900                   1990-01-01                  Algeria         48.2
## 901                   2015-01-01                  Algeria         63.7
## 902                   2010-01-01                  Algeria         62.2
## 903                   2005-01-01                  Algeria         59.6
## 904                   2000-01-01                  Algeria         56.2
## 905                   1995-01-01                  Algeria         52.6
## 906                   1990-01-01                  Algeria         48.2
## 907                   2015-01-01                  Algeria         63.7
## 908                   2010-01-01                  Algeria         62.2
## 909                   2005-01-01                  Algeria         59.6
## 910                   2000-01-01                  Algeria         56.2
## 911                   1995-01-01                  Algeria         52.6
## 912                   1990-01-01                  Algeria         48.2
## 913                   2015-01-01                  Algeria         63.7
## 914                   2010-01-01                  Algeria         62.2
## 915                   2005-01-01                  Algeria         59.6
## 916                   2000-01-01                  Algeria         56.2
## 917                   1995-01-01                  Algeria         52.6
## 918                   1990-01-01                  Algeria         48.2
## 919                   2015-01-01                  Algeria         63.7
## 920                   2010-01-01                  Algeria         62.2
## 921                   2005-01-01                  Algeria         59.6
## 922                   2000-01-01                  Algeria         56.2
## 923                   1995-01-01                  Algeria         52.6
## 924                   1990-01-01                  Algeria         48.2
## 925                   2015-01-01                  Algeria         63.7
## 926                   2010-01-01                  Algeria         62.2
## 927                   2005-01-01                  Algeria         59.6
## 928                   2000-01-01                  Algeria         56.2
## 929                   1995-01-01                  Algeria         52.6
## 930                   1990-01-01                  Algeria         48.2
## 931                   2015-01-01                  Algeria         63.7
## 932                   2010-01-01                  Algeria         62.2
## 933                   2005-01-01                  Algeria         59.6
## 934                   2000-01-01                  Algeria         56.2
## 935                   1995-01-01                  Algeria         52.6
## 936                   1990-01-01                  Algeria         48.2
## 937                   2015-01-01                  Algeria         63.7
## 938                   2010-01-01                  Algeria         62.2
## 939                   2005-01-01                  Algeria         59.6
## 940                   2000-01-01                  Algeria         56.2
## 941                   1995-01-01                  Algeria         52.6
## 942                   1990-01-01                  Algeria         48.2
## 943                   2015-01-01                  Algeria         63.7
## 944                   2010-01-01                  Algeria         62.2
## 945                   2005-01-01                  Algeria         59.6
## 946                   2000-01-01                  Algeria         56.2
## 947                   1995-01-01                  Algeria         52.6
## 948                   1990-01-01                  Algeria         48.2
## 949                   2015-01-01                  Algeria         63.7
## 950                   2010-01-01                  Algeria         62.2
## 951                   2005-01-01                  Algeria         59.6
## 952                   2000-01-01                  Algeria         56.2
## 953                   1995-01-01                  Algeria         52.6
## 954                   1990-01-01                  Algeria         48.2
## 955                   2015-01-01                  Algeria         63.7
## 956                   2010-01-01                  Algeria         62.2
## 957                   2005-01-01                  Algeria         59.6
## 958                   2000-01-01                  Algeria         56.2
## 959                   1995-01-01                  Algeria         52.6
## 960                   1990-01-01                  Algeria         48.2
## 961                   2015-01-01                  Algeria         63.7
## 962                   2010-01-01                  Algeria         62.2
## 963                   2005-01-01                  Algeria         59.6
## 964                   2000-01-01                  Algeria         56.2
## 965                   1995-01-01                  Algeria         52.6
## 966                   1990-01-01                  Algeria         48.2
## 967                   2015-01-01                  Algeria         63.7
## 968                   2010-01-01                  Algeria         62.2
## 969                   2005-01-01                  Algeria         59.6
## 970                   2000-01-01                  Algeria         56.2
## 971                   1995-01-01                  Algeria         52.6
## 972                   1990-01-01                  Algeria         48.2
## 973                   2015-01-01                  Algeria         63.7
## 974                   2010-01-01                  Algeria         62.2
## 975                   2005-01-01                  Algeria         59.6
## 976                   2000-01-01                  Algeria         56.2
## 977                   1995-01-01                  Algeria         52.6
## 978                   1990-01-01                  Algeria         48.2
## 979                   2015-01-01                  Algeria         63.7
## 980                   2010-01-01                  Algeria         62.2
## 981                   2005-01-01                  Algeria         59.6
## 982                   2000-01-01                  Algeria         56.2
## 983                   1995-01-01                  Algeria         52.6
## 984                   1990-01-01                  Algeria         48.2
## 985                   2015-01-01                  Algeria         63.7
## 986                   2010-01-01                  Algeria         62.2
## 987                   2005-01-01                  Algeria         59.6
## 988                   2000-01-01                  Algeria         56.2
## 989                   1995-01-01                  Algeria         52.6
## 990                   1990-01-01                  Algeria         48.2
## 991                   2015-01-01                  Algeria         63.7
## 992                   2010-01-01                  Algeria         62.2
## 993                   2005-01-01                  Algeria         59.6
## 994                   2000-01-01                  Algeria         56.2
## 995                   1995-01-01                  Algeria         52.6
## 996                   1990-01-01                  Algeria         48.2
## 997                   2015-01-01                  Algeria         63.7
## 998                   2010-01-01                  Algeria         62.2
## 999                   2005-01-01                  Algeria         59.6
## 1000                  2000-01-01                  Algeria         56.2
## 1001                  1995-01-01                  Algeria         52.6
## 1002                  1990-01-01                  Algeria         48.2
## 1003                  2015-01-01                  Algeria         63.7
## 1004                  2010-01-01                  Algeria         62.2
## 1005                  2005-01-01                  Algeria         59.6
## 1006                  2000-01-01                  Algeria         56.2
## 1007                  1995-01-01                  Algeria         52.6
## 1008                  1990-01-01                  Algeria         48.2
## 1009                  2015-01-01                  Algeria         63.7
## 1010                  2010-01-01                  Algeria         62.2
## 1011                  2005-01-01                  Algeria         59.6
## 1012                  2000-01-01                  Algeria         56.2
## 1013                  1995-01-01                  Algeria         52.6
## 1014                  1990-01-01                  Algeria         48.2
## 1015                  2015-01-01                  Algeria         63.7
## 1016                  2010-01-01                  Algeria         62.2
## 1017                  2005-01-01                  Algeria         59.6
## 1018                  2000-01-01                  Algeria         56.2
## 1019                  1995-01-01                  Algeria         52.6
## 1020                  1990-01-01                  Algeria         48.2
## 1021                  2015-01-01                  Algeria         63.7
## 1022                  2010-01-01                  Algeria         62.2
## 1023                  2005-01-01                  Algeria         59.6
## 1024                  2000-01-01                  Algeria         56.2
## 1025                  1995-01-01                  Algeria         52.6
## 1026                  1990-01-01                  Algeria         48.2
## 1027                  2015-01-01                  Algeria         63.7
## 1028                  2010-01-01                  Algeria         62.2
## 1029                  2005-01-01                  Algeria         59.6
## 1030                  2000-01-01                  Algeria         56.2
## 1031                  1995-01-01                  Algeria         52.6
## 1032                  1990-01-01                  Algeria         48.2
## 1033                  2015-01-01                  Algeria         63.7
## 1034                  2010-01-01                  Algeria         62.2
## 1035                  2005-01-01                  Algeria         59.6
## 1036                  2000-01-01                  Algeria         56.2
## 1037                  1995-01-01                  Algeria         52.6
## 1038                  1990-01-01                  Algeria         48.2
## 1039                  2015-01-01                  Algeria         63.7
## 1040                  2010-01-01                  Algeria         62.2
## 1041                  2005-01-01                  Algeria         59.6
## 1042                  2000-01-01                  Algeria         56.2
## 1043                  1995-01-01                  Algeria         52.6
## 1044                  1990-01-01                  Algeria         48.2
## 1045                  2015-01-01                   Angola         40.7
## 1046                  2010-01-01                   Angola         37.7
## 1047                  2005-01-01                   Angola         35.6
## 1048                  2000-01-01                   Angola         31.2
## 1049                  1995-01-01                   Angola         28.1
## 1050                  1990-01-01                   Angola         25.8
## 1051                  2015-01-01                   Angola         40.7
## 1052                  2010-01-01                   Angola         37.7
## 1053                  2005-01-01                   Angola         35.6
## 1054                  2000-01-01                   Angola         31.2
## 1055                  1995-01-01                   Angola         28.1
## 1056                  1990-01-01                   Angola         25.8
## 1057                  2015-01-01                   Angola         40.7
## 1058                  2010-01-01                   Angola         37.7
## 1059                  2005-01-01                   Angola         35.6
## 1060                  2000-01-01                   Angola         31.2
## 1061                  1995-01-01                   Angola         28.1
## 1062                  1990-01-01                   Angola         25.8
## 1063                  2015-01-01                   Angola         40.7
## 1064                  2010-01-01                   Angola         37.7
## 1065                  2005-01-01                   Angola         35.6
## 1066                  2000-01-01                   Angola         31.2
## 1067                  1995-01-01                   Angola         28.1
## 1068                  1990-01-01                   Angola         25.8
## 1069                  2015-01-01                   Angola         40.7
## 1070                  2010-01-01                   Angola         37.7
## 1071                  2005-01-01                   Angola         35.6
## 1072                  2000-01-01                   Angola         31.2
## 1073                  1995-01-01                   Angola         28.1
## 1074                  1990-01-01                   Angola         25.8
## 1075                  2015-01-01                   Angola         40.7
## 1076                  2010-01-01                   Angola         37.7
## 1077                  2005-01-01                   Angola         35.6
## 1078                  2000-01-01                   Angola         31.2
## 1079                  1995-01-01                   Angola         28.1
## 1080                  1990-01-01                   Angola         25.8
## 1081                  2015-01-01                   Angola         40.7
## 1082                  2010-01-01                   Angola         37.7
## 1083                  2005-01-01                   Angola         35.6
## 1084                  2000-01-01                   Angola         31.2
## 1085                  1995-01-01                   Angola         28.1
## 1086                  1990-01-01                   Angola         25.8
## 1087                  2015-01-01                   Angola         40.7
## 1088                  2010-01-01                   Angola         37.7
## 1089                  2005-01-01                   Angola         35.6
## 1090                  2000-01-01                   Angola         31.2
## 1091                  1995-01-01                   Angola         28.1
## 1092                  1990-01-01                   Angola         25.8
## 1093                  2015-01-01                   Angola         40.7
## 1094                  2010-01-01                   Angola         37.7
## 1095                  2005-01-01                   Angola         35.6
## 1096                  2000-01-01                   Angola         31.2
## 1097                  1995-01-01                   Angola         28.1
## 1098                  1990-01-01                   Angola         25.8
## 1099                  2015-01-01                   Angola         40.7
## 1100                  2010-01-01                   Angola         37.7
## 1101                  2005-01-01                   Angola         35.6
## 1102                  2000-01-01                   Angola         31.2
## 1103                  1995-01-01                   Angola         28.1
## 1104                  1990-01-01                   Angola         25.8
## 1105                  2015-01-01                   Angola         40.7
## 1106                  2010-01-01                   Angola         37.7
## 1107                  2005-01-01                   Angola         35.6
## 1108                  2000-01-01                   Angola         31.2
## 1109                  1995-01-01                   Angola         28.1
## 1110                  1990-01-01                   Angola         25.8
## 1111                  2015-01-01                   Angola         40.7
## 1112                  2010-01-01                   Angola         37.7
## 1113                  2005-01-01                   Angola         35.6
## 1114                  2000-01-01                   Angola         31.2
## 1115                  1995-01-01                   Angola         28.1
## 1116                  1990-01-01                   Angola         25.8
## 1117                  2015-01-01                   Angola         40.7
## 1118                  2010-01-01                   Angola         37.7
## 1119                  2005-01-01                   Angola         35.6
## 1120                  2000-01-01                   Angola         31.2
## 1121                  1995-01-01                   Angola         28.1
## 1122                  1990-01-01                   Angola         25.8
## 1123                  2015-01-01                   Angola         40.7
## 1124                  2010-01-01                   Angola         37.7
## 1125                  2005-01-01                   Angola         35.6
## 1126                  2000-01-01                   Angola         31.2
## 1127                  1995-01-01                   Angola         28.1
## 1128                  1990-01-01                   Angola         25.8
## 1129                  2015-01-01                   Angola         40.7
## 1130                  2010-01-01                   Angola         37.7
## 1131                  2005-01-01                   Angola         35.6
## 1132                  2000-01-01                   Angola         31.2
## 1133                  1995-01-01                   Angola         28.1
## 1134                  1990-01-01                   Angola         25.8
## 1135                  2015-01-01                   Angola         40.7
## 1136                  2010-01-01                   Angola         37.7
## 1137                  2005-01-01                   Angola         35.6
## 1138                  2000-01-01                   Angola         31.2
## 1139                  1995-01-01                   Angola         28.1
## 1140                  1990-01-01                   Angola         25.8
## 1141                  2015-01-01                   Angola         40.7
## 1142                  2010-01-01                   Angola         37.7
## 1143                  2005-01-01                   Angola         35.6
## 1144                  2000-01-01                   Angola         31.2
## 1145                  1995-01-01                   Angola         28.1
## 1146                  1990-01-01                   Angola         25.8
## 1147                  2015-01-01                   Angola         40.7
## 1148                  2010-01-01                   Angola         37.7
## 1149                  2005-01-01                   Angola         35.6
## 1150                  2000-01-01                   Angola         31.2
## 1151                  1995-01-01                   Angola         28.1
## 1152                  1990-01-01                   Angola         25.8
## 1153                  2015-01-01                   Angola         40.7
## 1154                  2010-01-01                   Angola         37.7
## 1155                  2005-01-01                   Angola         35.6
## 1156                  2000-01-01                   Angola         31.2
## 1157                  1995-01-01                   Angola         28.1
## 1158                  1990-01-01                   Angola         25.8
## 1159                  2015-01-01                   Angola         40.7
## 1160                  2010-01-01                   Angola         37.7
## 1161                  2005-01-01                   Angola         35.6
## 1162                  2000-01-01                   Angola         31.2
## 1163                  1995-01-01                   Angola         28.1
## 1164                  1990-01-01                   Angola         25.8
## 1165                  2015-01-01                   Angola         40.7
## 1166                  2010-01-01                   Angola         37.7
## 1167                  2005-01-01                   Angola         35.6
## 1168                  2000-01-01                   Angola         31.2
## 1169                  1995-01-01                   Angola         28.1
## 1170                  1990-01-01                   Angola         25.8
## 1171                  2015-01-01                   Angola         40.7
## 1172                  2010-01-01                   Angola         37.7
## 1173                  2005-01-01                   Angola         35.6
## 1174                  2000-01-01                   Angola         31.2
## 1175                  1995-01-01                   Angola         28.1
## 1176                  1990-01-01                   Angola         25.8
## 1177                  2015-01-01                   Angola         40.7
## 1178                  2010-01-01                   Angola         37.7
## 1179                  2005-01-01                   Angola         35.6
## 1180                  2000-01-01                   Angola         31.2
## 1181                  1995-01-01                   Angola         28.1
## 1182                  1990-01-01                   Angola         25.8
## 1183                  2015-01-01                   Angola         40.7
## 1184                  2010-01-01                   Angola         37.7
## 1185                  2005-01-01                   Angola         35.6
## 1186                  2000-01-01                   Angola         31.2
## 1187                  1995-01-01                   Angola         28.1
## 1188                  1990-01-01                   Angola         25.8
## 1189                  2015-01-01                   Angola         40.7
## 1190                  2010-01-01                   Angola         37.7
## 1191                  2005-01-01                   Angola         35.6
## 1192                  2000-01-01                   Angola         31.2
## 1193                  1995-01-01                   Angola         28.1
## 1194                  1990-01-01                   Angola         25.8
## 1195                  2015-01-01                   Angola         40.7
## 1196                  2010-01-01                   Angola         37.7
## 1197                  2005-01-01                   Angola         35.6
## 1198                  2000-01-01                   Angola         31.2
## 1199                  1995-01-01                   Angola         28.1
## 1200                  1990-01-01                   Angola         25.8
## 1201                  2015-01-01                   Angola         40.7
## 1202                  2010-01-01                   Angola         37.7
## 1203                  2005-01-01                   Angola         35.6
## 1204                  2000-01-01                   Angola         31.2
## 1205                  1995-01-01                   Angola         28.1
## 1206                  1990-01-01                   Angola         25.8
## 1207                  2015-01-01                   Angola         40.7
## 1208                  2010-01-01                   Angola         37.7
## 1209                  2005-01-01                   Angola         35.6
## 1210                  2000-01-01                   Angola         31.2
## 1211                  1995-01-01                   Angola         28.1
## 1212                  1990-01-01                   Angola         25.8
## 1213                  2015-01-01                   Angola         40.7
## 1214                  2010-01-01                   Angola         37.7
## 1215                  2005-01-01                   Angola         35.6
## 1216                  2000-01-01                   Angola         31.2
## 1217                  1995-01-01                   Angola         28.1
## 1218                  1990-01-01                   Angola         25.8
## 1219                  2015-01-01                   Angola         40.7
## 1220                  2010-01-01                   Angola         37.7
## 1221                  2005-01-01                   Angola         35.6
## 1222                  2000-01-01                   Angola         31.2
## 1223                  1995-01-01                   Angola         28.1
## 1224                  1990-01-01                   Angola         25.8
## 1225                  2015-01-01                   Angola         40.7
## 1226                  2010-01-01                   Angola         37.7
## 1227                  2005-01-01                   Angola         35.6
## 1228                  2000-01-01                   Angola         31.2
## 1229                  1995-01-01                   Angola         28.1
## 1230                  1990-01-01                   Angola         25.8
## 1231                  2015-01-01                   Angola         40.7
## 1232                  2010-01-01                   Angola         37.7
## 1233                  2005-01-01                   Angola         35.6
## 1234                  2000-01-01                   Angola         31.2
## 1235                  1995-01-01                   Angola         28.1
## 1236                  1990-01-01                   Angola         25.8
## 1237                  2015-01-01                   Angola         40.7
## 1238                  2010-01-01                   Angola         37.7
## 1239                  2005-01-01                   Angola         35.6
## 1240                  2000-01-01                   Angola         31.2
## 1241                  1995-01-01                   Angola         28.1
## 1242                  1990-01-01                   Angola         25.8
## 1243                  2015-01-01                   Angola         40.7
## 1244                  2010-01-01                   Angola         37.7
## 1245                  2005-01-01                   Angola         35.6
## 1246                  2000-01-01                   Angola         31.2
## 1247                  1995-01-01                   Angola         28.1
## 1248                  1990-01-01                   Angola         25.8
## 1249                  2015-01-01                   Angola         40.7
## 1250                  2010-01-01                   Angola         37.7
## 1251                  2005-01-01                   Angola         35.6
## 1252                  2000-01-01                   Angola         31.2
## 1253                  1995-01-01                   Angola         28.1
## 1254                  1990-01-01                   Angola         25.8
## 1255                  2015-01-01                   Angola         40.7
## 1256                  2010-01-01                   Angola         37.7
## 1257                  2005-01-01                   Angola         35.6
## 1258                  2000-01-01                   Angola         31.2
## 1259                  1995-01-01                   Angola         28.1
## 1260                  1990-01-01                   Angola         25.8
## 1261                  2015-01-01                   Angola         40.7
## 1262                  2010-01-01                   Angola         37.7
## 1263                  2005-01-01                   Angola         35.6
## 1264                  2000-01-01                   Angola         31.2
## 1265                  1995-01-01                   Angola         28.1
## 1266                  1990-01-01                   Angola         25.8
## 1267                  2015-01-01                   Angola         40.7
## 1268                  2010-01-01                   Angola         37.7
## 1269                  2005-01-01                   Angola         35.6
## 1270                  2000-01-01                   Angola         31.2
## 1271                  1995-01-01                   Angola         28.1
## 1272                  1990-01-01                   Angola         25.8
## 1273                  2015-01-01                   Angola         40.7
## 1274                  2010-01-01                   Angola         37.7
## 1275                  2005-01-01                   Angola         35.6
## 1276                  2000-01-01                   Angola         31.2
## 1277                  1995-01-01                   Angola         28.1
## 1278                  1990-01-01                   Angola         25.8
## 1279                  2015-01-01                   Angola         40.7
## 1280                  2010-01-01                   Angola         37.7
## 1281                  2005-01-01                   Angola         35.6
## 1282                  2000-01-01                   Angola         31.2
## 1283                  1995-01-01                   Angola         28.1
## 1284                  1990-01-01                   Angola         25.8
## 1285                  2015-01-01                   Angola         40.7
## 1286                  2010-01-01                   Angola         37.7
## 1287                  2005-01-01                   Angola         35.6
## 1288                  2000-01-01                   Angola         31.2
## 1289                  1995-01-01                   Angola         28.1
## 1290                  1990-01-01                   Angola         25.8
## 1291                  2015-01-01                   Angola         40.7
## 1292                  2010-01-01                   Angola         37.7
## 1293                  2005-01-01                   Angola         35.6
## 1294                  2000-01-01                   Angola         31.2
## 1295                  1995-01-01                   Angola         28.1
## 1296                  1990-01-01                   Angola         25.8
## 1297                  2015-01-01                   Angola         40.7
## 1298                  2010-01-01                   Angola         37.7
## 1299                  2005-01-01                   Angola         35.6
## 1300                  2000-01-01                   Angola         31.2
## 1301                  1995-01-01                   Angola         28.1
## 1302                  1990-01-01                   Angola         25.8
## 1303                  2015-01-01                   Angola         40.7
## 1304                  2010-01-01                   Angola         37.7
## 1305                  2005-01-01                   Angola         35.6
## 1306                  2000-01-01                   Angola         31.2
## 1307                  1995-01-01                   Angola         28.1
## 1308                  1990-01-01                   Angola         25.8
## 1309                  2015-01-01                   Angola         40.7
## 1310                  2010-01-01                   Angola         37.7
## 1311                  2005-01-01                   Angola         35.6
## 1312                  2000-01-01                   Angola         31.2
## 1313                  1995-01-01                   Angola         28.1
## 1314                  1990-01-01                   Angola         25.8
## 1315                  2015-01-01                   Angola         40.7
## 1316                  2010-01-01                   Angola         37.7
## 1317                  2005-01-01                   Angola         35.6
## 1318                  2000-01-01                   Angola         31.2
## 1319                  1995-01-01                   Angola         28.1
## 1320                  1990-01-01                   Angola         25.8
## 1321                  2015-01-01                   Angola         40.7
## 1322                  2010-01-01                   Angola         37.7
## 1323                  2005-01-01                   Angola         35.6
## 1324                  2000-01-01                   Angola         31.2
## 1325                  1995-01-01                   Angola         28.1
## 1326                  1990-01-01                   Angola         25.8
## 1327                  2015-01-01                   Angola         40.7
## 1328                  2010-01-01                   Angola         37.7
## 1329                  2005-01-01                   Angola         35.6
## 1330                  2000-01-01                   Angola         31.2
## 1331                  1995-01-01                   Angola         28.1
## 1332                  1990-01-01                   Angola         25.8
## 1333                  2015-01-01                   Angola         40.7
## 1334                  2010-01-01                   Angola         37.7
## 1335                  2005-01-01                   Angola         35.6
## 1336                  2000-01-01                   Angola         31.2
## 1337                  1995-01-01                   Angola         28.1
## 1338                  1990-01-01                   Angola         25.8
## 1339                  2015-01-01                   Angola         40.7
## 1340                  2010-01-01                   Angola         37.7
## 1341                  2005-01-01                   Angola         35.6
## 1342                  2000-01-01                   Angola         31.2
## 1343                  1995-01-01                   Angola         28.1
## 1344                  1990-01-01                   Angola         25.8
## 1345                  2015-01-01                   Angola         40.7
## 1346                  2010-01-01                   Angola         37.7
## 1347                  2005-01-01                   Angola         35.6
## 1348                  2000-01-01                   Angola         31.2
## 1349                  1995-01-01                   Angola         28.1
## 1350                  1990-01-01                   Angola         25.8
## 1351                  2015-01-01                   Angola         40.7
## 1352                  2010-01-01                   Angola         37.7
## 1353                  2005-01-01                   Angola         35.6
## 1354                  2000-01-01                   Angola         31.2
## 1355                  1995-01-01                   Angola         28.1
## 1356                  1990-01-01                   Angola         25.8
## 1357                  2015-01-01                   Angola         40.7
## 1358                  2010-01-01                   Angola         37.7
## 1359                  2005-01-01                   Angola         35.6
## 1360                  2000-01-01                   Angola         31.2
## 1361                  1995-01-01                   Angola         28.1
## 1362                  1990-01-01                   Angola         25.8
## 1363                  2015-01-01                   Angola         40.7
## 1364                  2010-01-01                   Angola         37.7
## 1365                  2005-01-01                   Angola         35.6
## 1366                  2000-01-01                   Angola         31.2
## 1367                  1995-01-01                   Angola         28.1
## 1368                  1990-01-01                   Angola         25.8
## 1369                  2015-01-01                   Angola         40.7
## 1370                  2010-01-01                   Angola         37.7
## 1371                  2005-01-01                   Angola         35.6
## 1372                  2000-01-01                   Angola         31.2
## 1373                  1995-01-01                   Angola         28.1
## 1374                  1990-01-01                   Angola         25.8
## 1375                  2015-01-01                   Angola         40.7
## 1376                  2010-01-01                   Angola         37.7
## 1377                  2005-01-01                   Angola         35.6
## 1378                  2000-01-01                   Angola         31.2
## 1379                  1995-01-01                   Angola         28.1
## 1380                  1990-01-01                   Angola         25.8
## 1381                  2015-01-01                   Angola         40.7
## 1382                  2010-01-01                   Angola         37.7
## 1383                  2005-01-01                   Angola         35.6
## 1384                  2000-01-01                   Angola         31.2
## 1385                  1995-01-01                   Angola         28.1
## 1386                  1990-01-01                   Angola         25.8
## 1387                  2015-01-01                   Angola         40.7
## 1388                  2010-01-01                   Angola         37.7
## 1389                  2005-01-01                   Angola         35.6
## 1390                  2000-01-01                   Angola         31.2
## 1391                  1995-01-01                   Angola         28.1
## 1392                  1990-01-01                   Angola         25.8
## 1393                  2015-01-01                   Angola         40.7
## 1394                  2010-01-01                   Angola         37.7
## 1395                  2005-01-01                   Angola         35.6
## 1396                  2000-01-01                   Angola         31.2
## 1397                  1995-01-01                   Angola         28.1
## 1398                  1990-01-01                   Angola         25.8
## 1399                  2015-01-01                   Angola         40.7
## 1400                  2010-01-01                   Angola         37.7
## 1401                  2005-01-01                   Angola         35.6
## 1402                  2000-01-01                   Angola         31.2
## 1403                  1995-01-01                   Angola         28.1
## 1404                  1990-01-01                   Angola         25.8
## 1405                  2015-01-01                   Angola         40.7
## 1406                  2010-01-01                   Angola         37.7
## 1407                  2005-01-01                   Angola         35.6
## 1408                  2000-01-01                   Angola         31.2
## 1409                  1995-01-01                   Angola         28.1
## 1410                  1990-01-01                   Angola         25.8
## 1411                  2015-01-01                   Angola         40.7
## 1412                  2010-01-01                   Angola         37.7
## 1413                  2005-01-01                   Angola         35.6
## 1414                  2000-01-01                   Angola         31.2
## 1415                  1995-01-01                   Angola         28.1
## 1416                  1990-01-01                   Angola         25.8
## 1417                  2015-01-01                   Angola         40.7
## 1418                  2010-01-01                   Angola         37.7
## 1419                  2005-01-01                   Angola         35.6
## 1420                  2000-01-01                   Angola         31.2
## 1421                  1995-01-01                   Angola         28.1
## 1422                  1990-01-01                   Angola         25.8
## 1423                  2015-01-01                   Angola         40.7
## 1424                  2010-01-01                   Angola         37.7
## 1425                  2005-01-01                   Angola         35.6
## 1426                  2000-01-01                   Angola         31.2
## 1427                  1995-01-01                   Angola         28.1
## 1428                  1990-01-01                   Angola         25.8
## 1429                  2015-01-01                   Angola         40.7
## 1430                  2010-01-01                   Angola         37.7
## 1431                  2005-01-01                   Angola         35.6
## 1432                  2000-01-01                   Angola         31.2
## 1433                  1995-01-01                   Angola         28.1
## 1434                  1990-01-01                   Angola         25.8
## 1435                  2015-01-01                   Angola         40.7
## 1436                  2010-01-01                   Angola         37.7
## 1437                  2005-01-01                   Angola         35.6
## 1438                  2000-01-01                   Angola         31.2
## 1439                  1995-01-01                   Angola         28.1
## 1440                  1990-01-01                   Angola         25.8
## 1441                  2015-01-01                   Angola         40.7
## 1442                  2010-01-01                   Angola         37.7
## 1443                  2005-01-01                   Angola         35.6
## 1444                  2000-01-01                   Angola         31.2
## 1445                  1995-01-01                   Angola         28.1
## 1446                  1990-01-01                   Angola         25.8
## 1447                  2015-01-01                   Angola         40.7
## 1448                  2010-01-01                   Angola         37.7
## 1449                  2005-01-01                   Angola         35.6
## 1450                  2000-01-01                   Angola         31.2
## 1451                  1995-01-01                   Angola         28.1
## 1452                  1990-01-01                   Angola         25.8
## 1453                  2015-01-01                   Angola         40.7
## 1454                  2010-01-01                   Angola         37.7
## 1455                  2005-01-01                   Angola         35.6
## 1456                  2000-01-01                   Angola         31.2
## 1457                  1995-01-01                   Angola         28.1
## 1458                  1990-01-01                   Angola         25.8
## 1459                  2015-01-01                   Angola         40.7
## 1460                  2010-01-01                   Angola         37.7
## 1461                  2005-01-01                   Angola         35.6
## 1462                  2000-01-01                   Angola         31.2
## 1463                  1995-01-01                   Angola         28.1
## 1464                  1990-01-01                   Angola         25.8
## 1465                  2015-01-01                   Angola         40.7
## 1466                  2010-01-01                   Angola         37.7
## 1467                  2005-01-01                   Angola         35.6
## 1468                  2000-01-01                   Angola         31.2
## 1469                  1995-01-01                   Angola         28.1
## 1470                  1990-01-01                   Angola         25.8
## 1471                  2015-01-01                   Angola         40.7
## 1472                  2010-01-01                   Angola         37.7
## 1473                  2005-01-01                   Angola         35.6
## 1474                  2000-01-01                   Angola         31.2
## 1475                  1995-01-01                   Angola         28.1
## 1476                  1990-01-01                   Angola         25.8
## 1477                  2015-01-01                   Angola         40.7
## 1478                  2010-01-01                   Angola         37.7
## 1479                  2005-01-01                   Angola         35.6
## 1480                  2000-01-01                   Angola         31.2
## 1481                  1995-01-01                   Angola         28.1
## 1482                  1990-01-01                   Angola         25.8
## 1483                  2015-01-01                   Angola         40.7
## 1484                  2010-01-01                   Angola         37.7
## 1485                  2005-01-01                   Angola         35.6
## 1486                  2000-01-01                   Angola         31.2
## 1487                  1995-01-01                   Angola         28.1
## 1488                  1990-01-01                   Angola         25.8
## 1489                  2015-01-01                   Angola         40.7
## 1490                  2010-01-01                   Angola         37.7
## 1491                  2005-01-01                   Angola         35.6
## 1492                  2000-01-01                   Angola         31.2
## 1493                  1995-01-01                   Angola         28.1
## 1494                  1990-01-01                   Angola         25.8
## 1495                  2015-01-01                   Angola         40.7
## 1496                  2010-01-01                   Angola         37.7
## 1497                  2005-01-01                   Angola         35.6
## 1498                  2000-01-01                   Angola         31.2
## 1499                  1995-01-01                   Angola         28.1
## 1500                  1990-01-01                   Angola         25.8
## 1501                  2015-01-01                   Angola         40.7
## 1502                  2010-01-01                   Angola         37.7
## 1503                  2005-01-01                   Angola         35.6
## 1504                  2000-01-01                   Angola         31.2
## 1505                  1995-01-01                   Angola         28.1
## 1506                  1990-01-01                   Angola         25.8
## 1507                  2015-01-01                   Angola         40.7
## 1508                  2010-01-01                   Angola         37.7
## 1509                  2005-01-01                   Angola         35.6
## 1510                  2000-01-01                   Angola         31.2
## 1511                  1995-01-01                   Angola         28.1
## 1512                  1990-01-01                   Angola         25.8
## 1513                  2015-01-01                   Angola         40.7
## 1514                  2010-01-01                   Angola         37.7
## 1515                  2005-01-01                   Angola         35.6
## 1516                  2000-01-01                   Angola         31.2
## 1517                  1995-01-01                   Angola         28.1
## 1518                  1990-01-01                   Angola         25.8
## 1519                  2015-01-01                  Bolivia         59.2
## 1520                  2010-01-01                  Bolivia         56.4
## 1521                  2005-01-01                  Bolivia         53.3
## 1522                  2000-01-01                  Bolivia         48.5
## 1523                  1995-01-01                  Bolivia         43.8
## 1524                  1990-01-01                  Bolivia         40.5
## 1525                  2015-01-01                   Angola         40.7
## 1526                  2010-01-01                   Angola         37.7
## 1527                  2005-01-01                   Angola         35.6
## 1528                  2000-01-01                   Angola         31.2
## 1529                  1995-01-01                   Angola         28.1
## 1530                  1990-01-01                   Angola         25.8
## 1531                  2015-01-01                   Angola         40.7
## 1532                  2010-01-01                   Angola         37.7
## 1533                  2005-01-01                   Angola         35.6
## 1534                  2000-01-01                   Angola         31.2
## 1535                  1995-01-01                   Angola         28.1
## 1536                  1990-01-01                   Angola         25.8
## 1537                  2015-01-01                   Angola         40.7
## 1538                  2010-01-01                   Angola         37.7
## 1539                  2005-01-01                   Angola         35.6
## 1540                  2000-01-01                   Angola         31.2
## 1541                  1995-01-01                   Angola         28.1
## 1542                  1990-01-01                   Angola         25.8
## 1543                  2015-01-01                   Angola         40.7
## 1544                  2010-01-01                   Angola         37.7
## 1545                  2005-01-01                   Angola         35.6
## 1546                  2000-01-01                   Angola         31.2
## 1547                  1995-01-01                   Angola         28.1
## 1548                  1990-01-01                   Angola         25.8
## 1549                  2015-01-01                   Angola         40.7
## 1550                  2010-01-01                   Angola         37.7
## 1551                  2005-01-01                   Angola         35.6
## 1552                  2000-01-01                   Angola         31.2
## 1553                  1995-01-01                   Angola         28.1
## 1554                  1990-01-01                   Angola         25.8
## 1555                  2015-01-01                   Angola         40.7
## 1556                  2010-01-01                   Angola         37.7
## 1557                  2005-01-01                   Angola         35.6
## 1558                  2000-01-01                   Angola         31.2
## 1559                  1995-01-01                   Angola         28.1
## 1560                  1990-01-01                   Angola         25.8
## 1561                  2015-01-01                   Angola         40.7
## 1562                  2010-01-01                   Angola         37.7
## 1563                  2005-01-01                   Angola         35.6
## 1564                  2000-01-01                   Angola         31.2
## 1565                  1995-01-01                   Angola         28.1
## 1566                  1990-01-01                   Angola         25.8
## 1567                  2015-01-01                   Angola         40.7
## 1568                  2010-01-01                   Angola         37.7
## 1569                  2005-01-01                   Angola         35.6
## 1570                  2000-01-01                   Angola         31.2
## 1571                  1995-01-01                   Angola         28.1
## 1572                  1990-01-01                   Angola         25.8
## 1573                  2015-01-01                   Angola         40.7
## 1574                  2010-01-01                   Angola         37.7
## 1575                  2005-01-01                   Angola         35.6
## 1576                  2000-01-01                   Angola         31.2
## 1577                  1995-01-01                   Angola         28.1
## 1578                  1990-01-01                   Angola         25.8
## 1579                  2015-01-01                   Angola         40.7
## 1580                  2010-01-01                   Angola         37.7
## 1581                  2005-01-01                   Angola         35.6
## 1582                  2000-01-01                   Angola         31.2
## 1583                  1995-01-01                   Angola         28.1
## 1584                  1990-01-01                   Angola         25.8
## 1585                  2015-01-01                   Angola         40.7
## 1586                  2010-01-01                   Angola         37.7
## 1587                  2005-01-01                   Angola         35.6
## 1588                  2000-01-01                   Angola         31.2
## 1589                  1995-01-01                   Angola         28.1
## 1590                  1990-01-01                   Angola         25.8
## 1591                  2015-01-01                   Angola         40.7
## 1592                  2010-01-01                   Angola         37.7
## 1593                  2005-01-01                   Angola         35.6
## 1594                  2000-01-01                   Angola         31.2
## 1595                  1995-01-01                   Angola         28.1
## 1596                  1990-01-01                   Angola         25.8
## 1597                  2015-01-01                   Angola         40.7
## 1598                  2010-01-01                   Angola         37.7
## 1599                  2005-01-01                   Angola         35.6
## 1600                  2000-01-01                   Angola         31.2
## 1601                  1995-01-01                   Angola         28.1
## 1602                  1990-01-01                   Angola         25.8
## 1603                  2015-01-01                   Angola         40.7
## 1604                  2010-01-01                   Angola         37.7
## 1605                  2005-01-01                   Angola         35.6
## 1606                  2000-01-01                   Angola         31.2
## 1607                  1995-01-01                   Angola         28.1
## 1608                  1990-01-01                   Angola         25.8
## 1609                  2015-01-01                   Angola         40.7
## 1610                  2010-01-01                   Angola         37.7
## 1611                  2005-01-01                   Angola         35.6
## 1612                  2000-01-01                   Angola         31.2
## 1613                  1995-01-01                   Angola         28.1
## 1614                  1990-01-01                   Angola         25.8
## 1615                  2015-01-01                   Angola         40.7
## 1616                  2010-01-01                   Angola         37.7
## 1617                  2005-01-01                   Angola         35.6
## 1618                  2000-01-01                   Angola         31.2
## 1619                  1995-01-01                   Angola         28.1
## 1620                  1990-01-01                   Angola         25.8
## 1621                  2015-01-01                   Angola         40.7
## 1622                  2010-01-01                   Angola         37.7
## 1623                  2005-01-01                   Angola         35.6
## 1624                  2000-01-01                   Angola         31.2
## 1625                  1995-01-01                   Angola         28.1
## 1626                  1990-01-01                   Angola         25.8
## 1627                  2015-01-01                   Angola         40.7
## 1628                  2010-01-01                   Angola         37.7
## 1629                  2005-01-01                   Angola         35.6
## 1630                  2000-01-01                   Angola         31.2
## 1631                  1995-01-01                   Angola         28.1
## 1632                  1990-01-01                   Angola         25.8
## 1633                  2015-01-01                   Angola         40.7
## 1634                  2010-01-01                   Angola         37.7
## 1635                  2005-01-01                   Angola         35.6
## 1636                  2000-01-01                   Angola         31.2
## 1637                  1995-01-01                   Angola         28.1
## 1638                  1990-01-01                   Angola         25.8
## 1639                  2015-01-01                   Angola         40.7
## 1640                  2010-01-01                   Angola         37.7
## 1641                  2005-01-01                   Angola         35.6
## 1642                  2000-01-01                   Angola         31.2
## 1643                  1995-01-01                   Angola         28.1
## 1644                  1990-01-01                   Angola         25.8
## 1645                  2015-01-01                   Angola         40.7
## 1646                  2010-01-01                   Angola         37.7
## 1647                  2005-01-01                   Angola         35.6
## 1648                  2000-01-01                   Angola         31.2
## 1649                  1995-01-01                   Angola         28.1
## 1650                  1990-01-01                   Angola         25.8
## 1651                  2015-01-01                   Angola         40.7
## 1652                  2010-01-01                   Angola         37.7
## 1653                  2005-01-01                   Angola         35.6
## 1654                  2000-01-01                   Angola         31.2
## 1655                  1995-01-01                   Angola         28.1
## 1656                  1990-01-01                   Angola         25.8
## 1657                  2015-01-01                   Angola         40.7
## 1658                  2010-01-01                   Angola         37.7
## 1659                  2005-01-01                   Angola         35.6
## 1660                  2000-01-01                   Angola         31.2
## 1661                  1995-01-01                   Angola         28.1
## 1662                  1990-01-01                   Angola         25.8
## 1663                  2015-01-01                   Angola         40.7
## 1664                  2010-01-01                   Angola         37.7
## 1665                  2005-01-01                   Angola         35.6
## 1666                  2000-01-01                   Angola         31.2
## 1667                  1995-01-01                   Angola         28.1
## 1668                  1990-01-01                   Angola         25.8
## 1669                  2015-01-01                   Angola         40.7
## 1670                  2010-01-01                   Angola         37.7
## 1671                  2005-01-01                   Angola         35.6
## 1672                  2000-01-01                   Angola         31.2
## 1673                  1995-01-01                   Angola         28.1
## 1674                  1990-01-01                   Angola         25.8
## 1675                  2015-01-01                   Angola         40.7
## 1676                  2010-01-01                   Angola         37.7
## 1677                  2005-01-01                   Angola         35.6
## 1678                  2000-01-01                   Angola         31.2
## 1679                  1995-01-01                   Angola         28.1
## 1680                  1990-01-01                   Angola         25.8
## 1681                  2015-01-01                   Angola         40.7
## 1682                  2010-01-01                   Angola         37.7
## 1683                  2005-01-01                   Angola         35.6
## 1684                  2000-01-01                   Angola         31.2
## 1685                  1995-01-01                   Angola         28.1
## 1686                  1990-01-01                   Angola         25.8
## 1687                  2015-01-01                   Angola         40.7
## 1688                  2010-01-01                   Angola         37.7
## 1689                  2005-01-01                   Angola         35.6
## 1690                  2000-01-01                   Angola         31.2
## 1691                  1995-01-01                   Angola         28.1
## 1692                  1990-01-01                   Angola         25.8
## 1693                  2015-01-01                   Angola         40.7
## 1694                  2010-01-01                   Angola         37.7
## 1695                  2005-01-01                   Angola         35.6
## 1696                  2000-01-01                   Angola         31.2
## 1697                  1995-01-01                   Angola         28.1
## 1698                  1990-01-01                   Angola         25.8
## 1699                  2015-01-01                   Angola         40.7
## 1700                  2010-01-01                   Angola         37.7
## 1701                  2005-01-01                   Angola         35.6
## 1702                  2000-01-01                   Angola         31.2
## 1703                  1995-01-01                   Angola         28.1
## 1704                  1990-01-01                   Angola         25.8
## 1705                  2015-01-01                   Angola         40.7
## 1706                  2010-01-01                   Angola         37.7
## 1707                  2005-01-01                   Angola         35.6
## 1708                  2000-01-01                   Angola         31.2
## 1709                  1995-01-01                   Angola         28.1
## 1710                  1990-01-01                   Angola         25.8
## 1711                  2015-01-01                   Angola         40.7
## 1712                  2010-01-01                   Angola         37.7
## 1713                  2005-01-01                   Angola         35.6
## 1714                  2000-01-01                   Angola         31.2
## 1715                  1995-01-01                   Angola         28.1
## 1716                  1990-01-01                   Angola         25.8
## 1717                  2015-01-01                   Angola         40.7
## 1718                  2010-01-01                   Angola         37.7
## 1719                  2005-01-01                   Angola         35.6
## 1720                  2000-01-01                   Angola         31.2
## 1721                  1995-01-01                   Angola         28.1
## 1722                  1990-01-01                   Angola         25.8
## 1723                  2015-01-01                   Angola         40.7
## 1724                  2010-01-01                   Angola         37.7
## 1725                  2005-01-01                   Angola         35.6
## 1726                  2000-01-01                   Angola         31.2
## 1727                  1995-01-01                   Angola         28.1
## 1728                  1990-01-01                   Angola         25.8
## 1729                  2015-01-01                   Angola         40.7
## 1730                  2010-01-01                   Angola         37.7
## 1731                  2005-01-01                   Angola         35.6
## 1732                  2000-01-01                   Angola         31.2
## 1733                  1995-01-01                   Angola         28.1
## 1734                  1990-01-01                   Angola         25.8
## 1735                  2015-01-01                   Angola         40.7
## 1736                  2010-01-01                   Angola         37.7
## 1737                  2005-01-01                   Angola         35.6
## 1738                  2000-01-01                   Angola         31.2
## 1739                  1995-01-01                   Angola         28.1
## 1740                  1990-01-01                   Angola         25.8
## 1741                  2015-01-01                   Angola         40.7
## 1742                  2010-01-01                   Angola         37.7
## 1743                  2005-01-01                   Angola         35.6
## 1744                  2000-01-01                   Angola         31.2
## 1745                  1995-01-01                   Angola         28.1
## 1746                  1990-01-01                   Angola         25.8
## 1747                  2015-01-01                   Angola         40.7
## 1748                  2010-01-01                   Angola         37.7
## 1749                  2005-01-01                   Angola         35.6
## 1750                  2000-01-01                   Angola         31.2
## 1751                  1995-01-01                   Angola         28.1
## 1752                  1990-01-01                   Angola         25.8
## 1753                  2015-01-01                   Angola         40.7
## 1754                  2010-01-01                   Angola         37.7
## 1755                  2005-01-01                   Angola         35.6
## 1756                  2000-01-01                   Angola         31.2
## 1757                  1995-01-01                   Angola         28.1
## 1758                  1990-01-01                   Angola         25.8
## 1759                  2015-01-01                   Angola         40.7
## 1760                  2010-01-01                   Angola         37.7
## 1761                  2005-01-01                   Angola         35.6
## 1762                  2000-01-01                   Angola         31.2
## 1763                  1995-01-01                   Angola         28.1
## 1764                  1990-01-01                   Angola         25.8
## 1765                  2015-01-01                   Angola         40.7
## 1766                  2010-01-01                   Angola         37.7
## 1767                  2005-01-01                   Angola         35.6
## 1768                  2000-01-01                   Angola         31.2
## 1769                  1995-01-01                   Angola         28.1
## 1770                  1990-01-01                   Angola         25.8
## 1771                  2015-01-01                   Angola         40.7
## 1772                  2010-01-01                   Angola         37.7
## 1773                  2005-01-01                   Angola         35.6
## 1774                  2000-01-01                   Angola         31.2
## 1775                  1995-01-01                   Angola         28.1
## 1776                  1990-01-01                   Angola         25.8
## 1777                  2015-01-01                   Angola         40.7
## 1778                  2010-01-01                   Angola         37.7
## 1779                  2005-01-01                   Angola         35.6
## 1780                  2000-01-01                   Angola         31.2
## 1781                  1995-01-01                   Angola         28.1
## 1782                  1990-01-01                   Angola         25.8
## 1783                  2015-01-01                   Angola         40.7
## 1784                  2010-01-01                   Angola         37.7
## 1785                  2005-01-01                   Angola         35.6
## 1786                  2000-01-01                   Angola         31.2
## 1787                  1995-01-01                   Angola         28.1
## 1788                  1990-01-01                   Angola         25.8
## 1789                  2015-01-01                   Angola         40.7
## 1790                  2010-01-01                   Angola         37.7
## 1791                  2005-01-01                   Angola         35.6
## 1792                  2000-01-01                   Angola         31.2
## 1793                  1995-01-01                   Angola         28.1
## 1794                  1990-01-01                   Angola         25.8
## 1795                  2015-01-01                   Angola         40.7
## 1796                  2010-01-01                   Angola         37.7
## 1797                  2005-01-01                   Angola         35.6
## 1798                  2000-01-01                   Angola         31.2
## 1799                  1995-01-01                   Angola         28.1
## 1800                  1990-01-01                   Angola         25.8
## 1801                  2015-01-01                   Angola         40.7
## 1802                  2010-01-01                   Angola         37.7
## 1803                  2005-01-01                   Angola         35.6
## 1804                  2000-01-01                   Angola         31.2
## 1805                  1995-01-01                   Angola         28.1
## 1806                  1990-01-01                   Angola         25.8
## 1807                  2015-01-01                   Angola         40.7
## 1808                  2010-01-01                   Angola         37.7
## 1809                  2005-01-01                   Angola         35.6
## 1810                  2000-01-01                   Angola         31.2
## 1811                  1995-01-01                   Angola         28.1
## 1812                  1990-01-01                   Angola         25.8
## 1813                  2015-01-01                   Angola         40.7
## 1814                  2010-01-01                   Angola         37.7
## 1815                  2005-01-01                   Angola         35.6
## 1816                  2000-01-01                   Angola         31.2
## 1817                  1995-01-01                   Angola         28.1
## 1818                  1990-01-01                   Angola         25.8
## 1819                  2015-01-01                   Angola         40.7
## 1820                  2010-01-01                   Angola         37.7
## 1821                  2005-01-01                   Angola         35.6
## 1822                  2000-01-01                   Angola         31.2
## 1823                  1995-01-01                   Angola         28.1
## 1824                  1990-01-01                   Angola         25.8
## 1825                  2015-01-01                   Angola         40.7
## 1826                  2010-01-01                   Angola         37.7
## 1827                  2005-01-01                   Angola         35.6
## 1828                  2000-01-01                   Angola         31.2
## 1829                  1995-01-01                   Angola         28.1
## 1830                  1990-01-01                   Angola         25.8
## 1831                  2015-01-01                   Angola         40.7
## 1832                  2010-01-01                   Angola         37.7
## 1833                  2005-01-01                   Angola         35.6
## 1834                  2000-01-01                   Angola         31.2
## 1835                  1995-01-01                   Angola         28.1
## 1836                  1990-01-01                   Angola         25.8
## 1837                  2015-01-01                   Angola         40.7
## 1838                  2010-01-01                   Angola         37.7
## 1839                  2005-01-01                   Angola         35.6
## 1840                  2000-01-01                   Angola         31.2
## 1841                  1995-01-01                   Angola         28.1
## 1842                  1990-01-01                   Angola         25.8
## 1843                  2015-01-01                   Angola         40.7
## 1844                  2010-01-01                   Angola         37.7
## 1845                  2005-01-01                   Angola         35.6
## 1846                  2000-01-01                   Angola         31.2
## 1847                  1995-01-01                   Angola         28.1
## 1848                  1990-01-01                   Angola         25.8
## 1849                  2015-01-01                   Angola         40.7
## 1850                  2010-01-01                   Angola         37.7
## 1851                  2005-01-01                   Angola         35.6
## 1852                  2000-01-01                   Angola         31.2
## 1853                  1995-01-01                   Angola         28.1
## 1854                  1990-01-01                   Angola         25.8
## 1855                  2015-01-01                   Angola         40.7
## 1856                  2010-01-01                   Angola         37.7
## 1857                  2005-01-01                   Angola         35.6
## 1858                  2000-01-01                   Angola         31.2
## 1859                  1995-01-01                   Angola         28.1
## 1860                  1990-01-01                   Angola         25.8
## 1861                  2015-01-01                   Angola         40.7
## 1862                  2010-01-01                   Angola         37.7
## 1863                  2005-01-01                   Angola         35.6
## 1864                  2000-01-01                   Angola         31.2
## 1865                  1995-01-01                   Angola         28.1
## 1866                  1990-01-01                   Angola         25.8
## 1867                  2015-01-01                   Angola         40.7
## 1868                  2010-01-01                   Angola         37.7
## 1869                  2005-01-01                   Angola         35.6
## 1870                  2000-01-01                   Angola         31.2
## 1871                  1995-01-01                   Angola         28.1
## 1872                  1990-01-01                   Angola         25.8
## 1873                  2015-01-01                   Angola         40.7
## 1874                  2010-01-01                   Angola         37.7
## 1875                  2005-01-01                   Angola         35.6
## 1876                  2000-01-01                   Angola         31.2
## 1877                  1995-01-01                   Angola         28.1
## 1878                  1990-01-01                   Angola         25.8
## 1879                  2015-01-01                   Angola         40.7
## 1880                  2010-01-01                   Angola         37.7
## 1881                  2005-01-01                   Angola         35.6
## 1882                  2000-01-01                   Angola         31.2
## 1883                  1995-01-01                   Angola         28.1
## 1884                  1990-01-01                   Angola         25.8
## 1885                  2015-01-01                   Angola         40.7
## 1886                  2010-01-01                   Angola         37.7
## 1887                  2005-01-01                   Angola         35.6
## 1888                  2000-01-01                   Angola         31.2
## 1889                  1995-01-01                   Angola         28.1
## 1890                  1990-01-01                   Angola         25.8
## 1891                  2015-01-01                   Angola         40.7
## 1892                  2010-01-01                   Angola         37.7
## 1893                  2005-01-01                   Angola         35.6
## 1894                  2000-01-01                   Angola         31.2
## 1895                  1995-01-01                   Angola         28.1
## 1896                  1990-01-01                   Angola         25.8
## 1897                  2015-01-01                   Angola         40.7
## 1898                  2010-01-01                   Angola         37.7
## 1899                  2005-01-01                   Angola         35.6
## 1900                  2000-01-01                   Angola         31.2
## 1901                  1995-01-01                   Angola         28.1
## 1902                  1990-01-01                   Angola         25.8
## 1903                  2015-01-01                   Angola         40.7
## 1904                  2010-01-01                   Angola         37.7
## 1905                  2005-01-01                   Angola         35.6
## 1906                  2000-01-01                   Angola         31.2
## 1907                  1995-01-01                   Angola         28.1
## 1908                  1990-01-01                   Angola         25.8
## 1909                  2015-01-01                   Angola         40.7
## 1910                  2010-01-01                   Angola         37.7
## 1911                  2005-01-01                   Angola         35.6
## 1912                  2000-01-01                   Angola         31.2
## 1913                  1995-01-01                   Angola         28.1
## 1914                  1990-01-01                   Angola         25.8
## 1915                  2015-01-01                   Angola         40.7
## 1916                  2010-01-01                   Angola         37.7
## 1917                  2005-01-01                   Angola         35.6
## 1918                  2000-01-01                   Angola         31.2
## 1919                  1995-01-01                   Angola         28.1
## 1920                  1990-01-01                   Angola         25.8
## 1921                  2015-01-01                   Angola         40.7
## 1922                  2010-01-01                   Angola         37.7
## 1923                  2005-01-01                   Angola         35.6
## 1924                  2000-01-01                   Angola         31.2
## 1925                  1995-01-01                   Angola         28.1
## 1926                  1990-01-01                   Angola         25.8
## 1927                  2015-01-01                   Angola         40.7
## 1928                  2010-01-01                   Angola         37.7
## 1929                  2005-01-01                   Angola         35.6
## 1930                  2000-01-01                   Angola         31.2
## 1931                  1995-01-01                   Angola         28.1
## 1932                  1990-01-01                   Angola         25.8
## 1933                  2015-01-01                   Angola         40.7
## 1934                  2010-01-01                   Angola         37.7
## 1935                  2005-01-01                   Angola         35.6
## 1936                  2000-01-01                   Angola         31.2
## 1937                  1995-01-01                   Angola         28.1
## 1938                  1990-01-01                   Angola         25.8
## 1939                  2015-01-01                   Angola         40.7
## 1940                  2010-01-01                   Angola         37.7
## 1941                  2005-01-01                   Angola         35.6
## 1942                  2000-01-01                   Angola         31.2
## 1943                  1995-01-01                   Angola         28.1
## 1944                  1990-01-01                   Angola         25.8
## 1945                  2015-01-01                   Angola         40.7
## 1946                  2010-01-01                   Angola         37.7
## 1947                  2005-01-01                   Angola         35.6
## 1948                  2000-01-01                   Angola         31.2
## 1949                  1995-01-01                   Angola         28.1
## 1950                  1990-01-01                   Angola         25.8
## 1951                  2015-01-01                   Angola         40.7
## 1952                  2010-01-01                   Angola         37.7
## 1953                  2005-01-01                   Angola         35.6
## 1954                  2000-01-01                   Angola         31.2
## 1955                  1995-01-01                   Angola         28.1
## 1956                  1990-01-01                   Angola         25.8
## 1957                  2015-01-01                   Angola         40.7
## 1958                  2010-01-01                   Angola         37.7
## 1959                  2005-01-01                   Angola         35.6
## 1960                  2000-01-01                   Angola         31.2
## 1961                  1995-01-01                   Angola         28.1
## 1962                  1990-01-01                   Angola         25.8
## 1963                  2015-01-01                   Angola         40.7
## 1964                  2010-01-01                   Angola         37.7
## 1965                  2005-01-01                   Angola         35.6
## 1966                  2000-01-01                   Angola         31.2
## 1967                  1995-01-01                   Angola         28.1
## 1968                  1990-01-01                   Angola         25.8
## 1969                  2015-01-01                   Angola         40.7
## 1970                  2010-01-01                   Angola         37.7
## 1971                  2005-01-01                   Angola         35.6
## 1972                  2000-01-01                   Angola         31.2
## 1973                  1995-01-01                   Angola         28.1
## 1974                  1990-01-01                   Angola         25.8
## 1975                  2015-01-01                   Angola         40.7
## 1976                  2010-01-01                   Angola         37.7
## 1977                  2005-01-01                   Angola         35.6
## 1978                  2000-01-01                   Angola         31.2
## 1979                  1995-01-01                   Angola         28.1
## 1980                  1990-01-01                   Angola         25.8
## 1981                  2015-01-01                   Angola         40.7
## 1982                  2010-01-01                   Angola         37.7
## 1983                  2005-01-01                   Angola         35.6
## 1984                  2000-01-01                   Angola         31.2
## 1985                  1995-01-01                   Angola         28.1
## 1986                  1990-01-01                   Angola         25.8
## 1987                  2015-01-01                   Angola         40.7
## 1988                  2010-01-01                   Angola         37.7
## 1989                  2005-01-01                   Angola         35.6
## 1990                  2000-01-01                   Angola         31.2
## 1991                  1995-01-01                   Angola         28.1
## 1992                  1990-01-01                   Angola         25.8
## 1993                  2015-01-01                   Angola         40.7
## 1994                  2010-01-01                   Angola         37.7
## 1995                  2005-01-01                   Angola         35.6
## 1996                  2000-01-01                   Angola         31.2
## 1997                  1995-01-01                   Angola         28.1
## 1998                  1990-01-01                   Angola         25.8
## 1999                  2015-01-01                   Angola         40.7
## 2000                  2010-01-01                   Angola         37.7
## 2001                  2005-01-01                   Angola         35.6
## 2002                  2000-01-01                   Angola         31.2
## 2003                  1995-01-01                   Angola         28.1
## 2004                  1990-01-01                   Angola         25.8
## 2005                  2015-01-01                   Angola         40.7
## 2006                  2010-01-01                   Angola         37.7
## 2007                  2005-01-01                   Angola         35.6
## 2008                  2000-01-01                   Angola         31.2
## 2009                  1995-01-01                   Angola         28.1
## 2010                  1990-01-01                   Angola         25.8
## 2011                  2015-01-01                   Angola         40.7
## 2012                  2010-01-01                   Angola         37.7
## 2013                  2005-01-01                   Angola         35.6
## 2014                  2000-01-01                   Angola         31.2
## 2015                  1995-01-01                   Angola         28.1
## 2016                  1990-01-01                   Angola         25.8
## 2017                  2015-01-01                   Angola         40.7
## 2018                  2010-01-01                   Angola         37.7
## 2019                  2005-01-01                   Angola         35.6
## 2020                  2000-01-01                   Angola         31.2
## 2021                  1995-01-01                   Angola         28.1
## 2022                  1990-01-01                   Angola         25.8
## 2023                  2015-01-01                   Angola         40.7
## 2024                  2010-01-01                   Angola         37.7
## 2025                  2005-01-01                   Angola         35.6
## 2026                  2000-01-01                   Angola         31.2
## 2027                  1995-01-01                   Angola         28.1
## 2028                  1990-01-01                   Angola         25.8
## 2029                  2015-01-01                   Angola         40.7
## 2030                  2010-01-01                   Angola         37.7
## 2031                  2005-01-01                   Angola         35.6
## 2032                  2000-01-01                   Angola         31.2
## 2033                  1995-01-01                   Angola         28.1
## 2034                  1990-01-01                   Angola         25.8
## 2035                  2015-01-01                   Angola         40.7
## 2036                  2010-01-01                   Angola         37.7
## 2037                  2005-01-01                   Angola         35.6
## 2038                  2000-01-01                   Angola         31.2
## 2039                  1995-01-01                   Angola         28.1
## 2040                  1990-01-01                   Angola         25.8
## 2041                  2015-01-01                   Angola         40.7
## 2042                  2010-01-01                   Angola         37.7
## 2043                  2005-01-01                   Angola         35.6
## 2044                  2000-01-01                   Angola         31.2
## 2045                  1995-01-01                   Angola         28.1
## 2046                  1990-01-01                   Angola         25.8
## 2047                  2015-01-01                   Angola         40.7
## 2048                  2010-01-01                   Angola         37.7
## 2049                  2005-01-01                   Angola         35.6
## 2050                  2000-01-01                   Angola         31.2
## 2051                  1995-01-01                   Angola         28.1
## 2052                  1990-01-01                   Angola         25.8
## 2053                  2015-01-01                   Angola         40.7
## 2054                  2010-01-01                   Angola         37.7
## 2055                  2005-01-01                   Angola         35.6
## 2056                  2000-01-01                   Angola         31.2
## 2057                  1995-01-01                   Angola         28.1
## 2058                  1990-01-01                   Angola         25.8
## 2059                  2015-01-01                   Angola         40.7
## 2060                  2010-01-01                   Angola         37.7
## 2061                  2005-01-01                   Angola         35.6
## 2062                  2000-01-01                   Angola         31.2
## 2063                  1995-01-01                   Angola         28.1
## 2064                  1990-01-01                   Angola         25.8
## 2065                  2015-01-01                   Angola         40.7
## 2066                  2010-01-01                   Angola         37.7
## 2067                  2005-01-01                   Angola         35.6
## 2068                  2000-01-01                   Angola         31.2
## 2069                  1995-01-01                   Angola         28.1
## 2070                  1990-01-01                   Angola         25.8
## 2071                  2015-01-01                   Angola         40.7
## 2072                  2010-01-01                   Angola         37.7
## 2073                  2005-01-01                   Angola         35.6
## 2074                  2000-01-01                   Angola         31.2
## 2075                  1995-01-01                   Angola         28.1
## 2076                  1990-01-01                   Angola         25.8
## 2077                  2015-01-01                   Angola         40.7
## 2078                  2010-01-01                   Angola         37.7
## 2079                  2005-01-01                   Angola         35.6
## 2080                  2000-01-01                   Angola         31.2
## 2081                  1995-01-01                   Angola         28.1
## 2082                  1990-01-01                   Angola         25.8
## 2083                  2015-01-01                   Angola         40.7
## 2084                  2010-01-01                   Angola         37.7
## 2085                  2005-01-01                   Angola         35.6
## 2086                  2000-01-01                   Angola         31.2
## 2087                  1995-01-01                   Angola         28.1
## 2088                  1990-01-01                   Angola         25.8
## 2089                  2015-01-01                   Angola         40.7
## 2090                  2010-01-01                   Angola         37.7
## 2091                  2005-01-01                   Angola         35.6
## 2092                  2000-01-01                   Angola         31.2
## 2093                  1995-01-01                   Angola         28.1
## 2094                  1990-01-01                   Angola         25.8
## 2095                  2015-01-01                   Angola         40.7
## 2096                  2010-01-01                   Angola         37.7
## 2097                  2005-01-01                   Angola         35.6
## 2098                  2000-01-01                   Angola         31.2
## 2099                  1995-01-01                   Angola         28.1
## 2100                  1990-01-01                   Angola         25.8
## 2101                  2015-01-01                   Angola         40.7
## 2102                  2010-01-01                   Angola         37.7
## 2103                  2005-01-01                   Angola         35.6
## 2104                  2000-01-01                   Angola         31.2
## 2105                  1995-01-01                   Angola         28.1
## 2106                  1990-01-01                   Angola         25.8
## 2107                  2015-01-01                   Angola         40.7
## 2108                  2010-01-01                   Angola         37.7
## 2109                  2005-01-01                   Angola         35.6
## 2110                  2000-01-01                   Angola         31.2
## 2111                  1995-01-01                   Angola         28.1
## 2112                  1990-01-01                   Angola         25.8
## 2113                  2015-01-01                   Angola         40.7
## 2114                  2010-01-01                   Angola         37.7
## 2115                  2005-01-01                   Angola         35.6
## 2116                  2000-01-01                   Angola         31.2
## 2117                  1995-01-01                   Angola         28.1
## 2118                  1990-01-01                   Angola         25.8
## 2119                  2015-01-01                   Angola         40.7
## 2120                  2010-01-01                   Angola         37.7
## 2121                  2005-01-01                   Angola         35.6
## 2122                  2000-01-01                   Angola         31.2
## 2123                  1995-01-01                   Angola         28.1
## 2124                  1990-01-01                   Angola         25.8
## 2125                  2015-01-01                   Angola         40.7
## 2126                  2010-01-01                   Angola         37.7
## 2127                  2005-01-01                   Angola         35.6
## 2128                  2000-01-01                   Angola         31.2
## 2129                  1995-01-01                   Angola         28.1
## 2130                  1990-01-01                   Angola         25.8
## 2131                  2015-01-01                   Angola         40.7
## 2132                  2010-01-01                   Angola         37.7
## 2133                  2005-01-01                   Angola         35.6
## 2134                  2000-01-01                   Angola         31.2
## 2135                  1995-01-01                   Angola         28.1
## 2136                  1990-01-01                   Angola         25.8
## 2137                  2015-01-01                   Angola         40.7
## 2138                  2010-01-01                   Angola         37.7
## 2139                  2005-01-01                   Angola         35.6
## 2140                  2000-01-01                   Angola         31.2
## 2141                  1995-01-01                   Angola         28.1
## 2142                  1990-01-01                   Angola         25.8
## 2143                  2015-01-01                   Angola         40.7
## 2144                  2010-01-01                   Angola         37.7
## 2145                  2005-01-01                   Angola         35.6
## 2146                  2000-01-01                   Angola         31.2
## 2147                  1995-01-01                   Angola         28.1
## 2148                  1990-01-01                   Angola         25.8
## 2149                  2015-01-01                   Angola         40.7
## 2150                  2010-01-01                   Angola         37.7
## 2151                  2005-01-01                   Angola         35.6
## 2152                  2000-01-01                   Angola         31.2
## 2153                  1995-01-01                   Angola         28.1
## 2154                  1990-01-01                   Angola         25.8
## 2155                  2015-01-01                   Angola         40.7
## 2156                  2010-01-01                   Angola         37.7
## 2157                  2005-01-01                   Angola         35.6
## 2158                  2000-01-01                   Angola         31.2
## 2159                  1995-01-01                   Angola         28.1
## 2160                  1990-01-01                   Angola         25.8
## 2161                  2015-01-01                   Angola         40.7
## 2162                  2010-01-01                   Angola         37.7
## 2163                  2005-01-01                   Angola         35.6
## 2164                  2000-01-01                   Angola         31.2
## 2165                  1995-01-01                   Angola         28.1
## 2166                  1990-01-01                   Angola         25.8
## 2167                  2015-01-01                   Angola         40.7
## 2168                  2010-01-01                   Angola         37.7
## 2169                  2005-01-01                   Angola         35.6
## 2170                  2000-01-01                   Angola         31.2
## 2171                  1995-01-01                   Angola         28.1
## 2172                  1990-01-01                   Angola         25.8
## 2173                  2015-01-01                   Angola         40.7
## 2174                  2010-01-01                   Angola         37.7
## 2175                  2005-01-01                   Angola         35.6
## 2176                  2000-01-01                   Angola         31.2
## 2177                  1995-01-01                   Angola         28.1
## 2178                  1990-01-01                   Angola         25.8
## 2179                  2015-01-01                   Angola         40.7
## 2180                  2010-01-01                   Angola         37.7
## 2181                  2005-01-01                   Angola         35.6
## 2182                  2000-01-01                   Angola         31.2
## 2183                  1995-01-01                   Angola         28.1
## 2184                  1990-01-01                   Angola         25.8
## 2185                  2015-01-01                   Angola         40.7
## 2186                  2010-01-01                   Angola         37.7
## 2187                  2005-01-01                   Angola         35.6
## 2188                  2000-01-01                   Angola         31.2
## 2189                  1995-01-01                   Angola         28.1
## 2190                  1990-01-01                   Angola         25.8
## 2191                  2015-01-01                   Angola         40.7
## 2192                  2010-01-01                   Angola         37.7
## 2193                  2005-01-01                   Angola         35.6
## 2194                  2000-01-01                   Angola         31.2
## 2195                  1995-01-01                   Angola         28.1
## 2196                  1990-01-01                   Angola         25.8
## 2197                  2015-01-01                   Angola         40.7
## 2198                  2010-01-01                   Angola         37.7
## 2199                  2005-01-01                   Angola         35.6
## 2200                  2000-01-01                   Angola         31.2
## 2201                  1995-01-01                   Angola         28.1
## 2202                  1990-01-01                   Angola         25.8
## 2203                  2015-01-01                   Angola         40.7
## 2204                  2010-01-01                   Angola         37.7
## 2205                  2005-01-01                   Angola         35.6
## 2206                  2000-01-01                   Angola         31.2
## 2207                  1995-01-01                   Angola         28.1
## 2208                  1990-01-01                   Angola         25.8
## 2209                  2015-01-01                   Angola         40.7
## 2210                  2010-01-01                   Angola         37.7
## 2211                  2005-01-01                   Angola         35.6
## 2212                  2000-01-01                   Angola         31.2
## 2213                  1995-01-01                   Angola         28.1
## 2214                  1990-01-01                   Angola         25.8
## 2215                  2015-01-01                   Angola         40.7
## 2216                  2010-01-01                   Angola         37.7
## 2217                  2005-01-01                   Angola         35.6
## 2218                  2000-01-01                   Angola         31.2
## 2219                  1995-01-01                   Angola         28.1
## 2220                  1990-01-01                   Angola         25.8
## 2221                  2015-01-01      Antigua and Barbuda         66.7
## 2222                  2010-01-01      Antigua and Barbuda         64.9
## 2223                  2005-01-01      Antigua and Barbuda         62.5
## 2224                  2000-01-01      Antigua and Barbuda         60.3
## 2225                  1995-01-01      Antigua and Barbuda         57.8
## 2226                  1990-01-01      Antigua and Barbuda         56.6
## 2227                  2015-01-01      Antigua and Barbuda         66.7
## 2228                  2010-01-01      Antigua and Barbuda         64.9
## 2229                  2005-01-01      Antigua and Barbuda         62.5
## 2230                  2000-01-01      Antigua and Barbuda         60.3
## 2231                  1995-01-01      Antigua and Barbuda         57.8
## 2232                  1990-01-01      Antigua and Barbuda         56.6
## 2233                  2015-01-01      Antigua and Barbuda         66.7
## 2234                  2010-01-01      Antigua and Barbuda         64.9
## 2235                  2005-01-01      Antigua and Barbuda         62.5
## 2236                  2000-01-01      Antigua and Barbuda         60.3
## 2237                  1995-01-01      Antigua and Barbuda         57.8
## 2238                  1990-01-01      Antigua and Barbuda         56.6
## 2239                  2015-01-01      Antigua and Barbuda         66.7
## 2240                  2010-01-01      Antigua and Barbuda         64.9
## 2241                  2005-01-01      Antigua and Barbuda         62.5
## 2242                  2000-01-01      Antigua and Barbuda         60.3
## 2243                  1995-01-01      Antigua and Barbuda         57.8
## 2244                  1990-01-01      Antigua and Barbuda         56.6
## 2245                  2015-01-01      Antigua and Barbuda         66.7
## 2246                  2010-01-01      Antigua and Barbuda         64.9
## 2247                  2005-01-01      Antigua and Barbuda         62.5
## 2248                  2000-01-01      Antigua and Barbuda         60.3
## 2249                  1995-01-01      Antigua and Barbuda         57.8
## 2250                  1990-01-01      Antigua and Barbuda         56.6
## 2251                  2015-01-01      Antigua and Barbuda         66.7
## 2252                  2010-01-01      Antigua and Barbuda         64.9
## 2253                  2005-01-01      Antigua and Barbuda         62.5
## 2254                  2000-01-01      Antigua and Barbuda         60.3
## 2255                  1995-01-01      Antigua and Barbuda         57.8
## 2256                  1990-01-01      Antigua and Barbuda         56.6
## 2257                  2015-01-01      Antigua and Barbuda         66.7
## 2258                  2010-01-01      Antigua and Barbuda         64.9
## 2259                  2005-01-01      Antigua and Barbuda         62.5
## 2260                  2000-01-01      Antigua and Barbuda         60.3
## 2261                  1995-01-01      Antigua and Barbuda         57.8
## 2262                  1990-01-01      Antigua and Barbuda         56.6
## 2263                  2015-01-01      Antigua and Barbuda         66.7
## 2264                  2010-01-01      Antigua and Barbuda         64.9
## 2265                  2005-01-01      Antigua and Barbuda         62.5
## 2266                  2000-01-01      Antigua and Barbuda         60.3
## 2267                  1995-01-01      Antigua and Barbuda         57.8
## 2268                  1990-01-01      Antigua and Barbuda         56.6
## 2269                  2015-01-01      Antigua and Barbuda         66.7
## 2270                  2010-01-01      Antigua and Barbuda         64.9
## 2271                  2005-01-01      Antigua and Barbuda         62.5
## 2272                  2000-01-01      Antigua and Barbuda         60.3
## 2273                  1995-01-01      Antigua and Barbuda         57.8
## 2274                  1990-01-01      Antigua and Barbuda         56.6
## 2275                  2015-01-01      Antigua and Barbuda         66.7
## 2276                  2010-01-01      Antigua and Barbuda         64.9
## 2277                  2005-01-01      Antigua and Barbuda         62.5
## 2278                  2000-01-01      Antigua and Barbuda         60.3
## 2279                  1995-01-01      Antigua and Barbuda         57.8
## 2280                  1990-01-01      Antigua and Barbuda         56.6
## 2281                  2015-01-01      Antigua and Barbuda         66.7
## 2282                  2010-01-01      Antigua and Barbuda         64.9
## 2283                  2005-01-01      Antigua and Barbuda         62.5
## 2284                  2000-01-01      Antigua and Barbuda         60.3
## 2285                  1995-01-01      Antigua and Barbuda         57.8
## 2286                  1990-01-01      Antigua and Barbuda         56.6
## 2287                  2015-01-01      Antigua and Barbuda         66.7
## 2288                  2010-01-01      Antigua and Barbuda         64.9
## 2289                  2005-01-01      Antigua and Barbuda         62.5
## 2290                  2000-01-01      Antigua and Barbuda         60.3
## 2291                  1995-01-01      Antigua and Barbuda         57.8
## 2292                  1990-01-01      Antigua and Barbuda         56.6
## 2293                  2015-01-01      Antigua and Barbuda         66.7
## 2294                  2010-01-01      Antigua and Barbuda         64.9
## 2295                  2005-01-01      Antigua and Barbuda         62.5
## 2296                  2000-01-01      Antigua and Barbuda         60.3
## 2297                  1995-01-01      Antigua and Barbuda         57.8
## 2298                  1990-01-01      Antigua and Barbuda         56.6
## 2299                  2015-01-01      Antigua and Barbuda         66.7
## 2300                  2010-01-01      Antigua and Barbuda         64.9
## 2301                  2005-01-01      Antigua and Barbuda         62.5
## 2302                  2000-01-01      Antigua and Barbuda         60.3
## 2303                  1995-01-01      Antigua and Barbuda         57.8
## 2304                  1990-01-01      Antigua and Barbuda         56.6
## 2305                  2015-01-01      Antigua and Barbuda         66.7
## 2306                  2010-01-01      Antigua and Barbuda         64.9
## 2307                  2005-01-01      Antigua and Barbuda         62.5
## 2308                  2000-01-01      Antigua and Barbuda         60.3
## 2309                  1995-01-01      Antigua and Barbuda         57.8
## 2310                  1990-01-01      Antigua and Barbuda         56.6
## 2311                  2015-01-01      Antigua and Barbuda         66.7
## 2312                  2010-01-01      Antigua and Barbuda         64.9
## 2313                  2005-01-01      Antigua and Barbuda         62.5
## 2314                  2000-01-01      Antigua and Barbuda         60.3
## 2315                  1995-01-01      Antigua and Barbuda         57.8
## 2316                  1990-01-01      Antigua and Barbuda         56.6
## 2317                  2015-01-01      Antigua and Barbuda         66.7
## 2318                  2010-01-01      Antigua and Barbuda         64.9
## 2319                  2005-01-01      Antigua and Barbuda         62.5
## 2320                  2000-01-01      Antigua and Barbuda         60.3
## 2321                  1995-01-01      Antigua and Barbuda         57.8
## 2322                  1990-01-01      Antigua and Barbuda         56.6
## 2323                  2015-01-01      Antigua and Barbuda         66.7
## 2324                  2010-01-01      Antigua and Barbuda         64.9
## 2325                  2005-01-01      Antigua and Barbuda         62.5
## 2326                  2000-01-01      Antigua and Barbuda         60.3
## 2327                  1995-01-01      Antigua and Barbuda         57.8
## 2328                  1990-01-01      Antigua and Barbuda         56.6
## 2329                  2015-01-01      Antigua and Barbuda         66.7
## 2330                  2010-01-01      Antigua and Barbuda         64.9
## 2331                  2005-01-01      Antigua and Barbuda         62.5
## 2332                  2000-01-01      Antigua and Barbuda         60.3
## 2333                  1995-01-01      Antigua and Barbuda         57.8
## 2334                  1990-01-01      Antigua and Barbuda         56.6
## 2335                  2015-01-01      Antigua and Barbuda         66.7
## 2336                  2010-01-01      Antigua and Barbuda         64.9
## 2337                  2005-01-01      Antigua and Barbuda         62.5
## 2338                  2000-01-01      Antigua and Barbuda         60.3
## 2339                  1995-01-01      Antigua and Barbuda         57.8
## 2340                  1990-01-01      Antigua and Barbuda         56.6
## 2341                  2015-01-01      Antigua and Barbuda         66.7
## 2342                  2010-01-01      Antigua and Barbuda         64.9
## 2343                  2005-01-01      Antigua and Barbuda         62.5
## 2344                  2000-01-01      Antigua and Barbuda         60.3
## 2345                  1995-01-01      Antigua and Barbuda         57.8
## 2346                  1990-01-01      Antigua and Barbuda         56.6
## 2347                  2015-01-01      Antigua and Barbuda         66.7
## 2348                  2010-01-01      Antigua and Barbuda         64.9
## 2349                  2005-01-01      Antigua and Barbuda         62.5
## 2350                  2000-01-01      Antigua and Barbuda         60.3
## 2351                  1995-01-01      Antigua and Barbuda         57.8
## 2352                  1990-01-01      Antigua and Barbuda         56.6
## 2353                  2015-01-01      Antigua and Barbuda         66.7
## 2354                  2010-01-01      Antigua and Barbuda         64.9
## 2355                  2005-01-01      Antigua and Barbuda         62.5
## 2356                  2000-01-01      Antigua and Barbuda         60.3
## 2357                  1995-01-01      Antigua and Barbuda         57.8
## 2358                  1990-01-01      Antigua and Barbuda         56.6
## 2359                  2015-01-01      Antigua and Barbuda         66.7
## 2360                  2010-01-01      Antigua and Barbuda         64.9
## 2361                  2005-01-01      Antigua and Barbuda         62.5
## 2362                  2000-01-01      Antigua and Barbuda         60.3
## 2363                  1995-01-01      Antigua and Barbuda         57.8
## 2364                  1990-01-01      Antigua and Barbuda         56.6
## 2365                  2015-01-01      Antigua and Barbuda         66.7
## 2366                  2010-01-01      Antigua and Barbuda         64.9
## 2367                  2005-01-01      Antigua and Barbuda         62.5
## 2368                  2000-01-01      Antigua and Barbuda         60.3
## 2369                  1995-01-01      Antigua and Barbuda         57.8
## 2370                  1990-01-01      Antigua and Barbuda         56.6
## 2371                  2015-01-01      Antigua and Barbuda         66.7
## 2372                  2010-01-01      Antigua and Barbuda         64.9
## 2373                  2005-01-01      Antigua and Barbuda         62.5
## 2374                  2000-01-01      Antigua and Barbuda         60.3
## 2375                  1995-01-01      Antigua and Barbuda         57.8
## 2376                  1990-01-01      Antigua and Barbuda         56.6
## 2377                  2015-01-01      Antigua and Barbuda         66.7
## 2378                  2010-01-01      Antigua and Barbuda         64.9
## 2379                  2005-01-01      Antigua and Barbuda         62.5
## 2380                  2000-01-01      Antigua and Barbuda         60.3
## 2381                  1995-01-01      Antigua and Barbuda         57.8
## 2382                  1990-01-01      Antigua and Barbuda         56.6
## 2383                  2015-01-01      Antigua and Barbuda         66.7
## 2384                  2010-01-01      Antigua and Barbuda         64.9
## 2385                  2005-01-01      Antigua and Barbuda         62.5
## 2386                  2000-01-01      Antigua and Barbuda         60.3
## 2387                  1995-01-01      Antigua and Barbuda         57.8
## 2388                  1990-01-01      Antigua and Barbuda         56.6
## 2389                  2015-01-01      Antigua and Barbuda         66.7
## 2390                  2010-01-01      Antigua and Barbuda         64.9
## 2391                  2005-01-01      Antigua and Barbuda         62.5
## 2392                  2000-01-01      Antigua and Barbuda         60.3
## 2393                  1995-01-01      Antigua and Barbuda         57.8
## 2394                  1990-01-01      Antigua and Barbuda         56.6
## 2395                  2015-01-01      Antigua and Barbuda         66.7
## 2396                  2010-01-01      Antigua and Barbuda         64.9
## 2397                  2005-01-01      Antigua and Barbuda         62.5
## 2398                  2000-01-01      Antigua and Barbuda         60.3
## 2399                  1995-01-01      Antigua and Barbuda         57.8
## 2400                  1990-01-01      Antigua and Barbuda         56.6
## 2401                  2015-01-01      Antigua and Barbuda         66.7
## 2402                  2010-01-01      Antigua and Barbuda         64.9
## 2403                  2005-01-01      Antigua and Barbuda         62.5
## 2404                  2000-01-01      Antigua and Barbuda         60.3
## 2405                  1995-01-01      Antigua and Barbuda         57.8
## 2406                  1990-01-01      Antigua and Barbuda         56.6
## 2407                  2015-01-01      Antigua and Barbuda         66.7
## 2408                  2010-01-01      Antigua and Barbuda         64.9
## 2409                  2005-01-01      Antigua and Barbuda         62.5
## 2410                  2000-01-01      Antigua and Barbuda         60.3
## 2411                  1995-01-01      Antigua and Barbuda         57.8
## 2412                  1990-01-01      Antigua and Barbuda         56.6
## 2413                  2015-01-01      Antigua and Barbuda         66.7
## 2414                  2010-01-01      Antigua and Barbuda         64.9
## 2415                  2005-01-01      Antigua and Barbuda         62.5
## 2416                  2000-01-01      Antigua and Barbuda         60.3
## 2417                  1995-01-01      Antigua and Barbuda         57.8
## 2418                  1990-01-01      Antigua and Barbuda         56.6
## 2419                  2015-01-01      Antigua and Barbuda         66.7
## 2420                  2010-01-01      Antigua and Barbuda         64.9
## 2421                  2005-01-01      Antigua and Barbuda         62.5
## 2422                  2000-01-01      Antigua and Barbuda         60.3
## 2423                  1995-01-01      Antigua and Barbuda         57.8
## 2424                  1990-01-01      Antigua and Barbuda         56.6
## 2425                  2015-01-01      Antigua and Barbuda         66.7
## 2426                  2010-01-01      Antigua and Barbuda         64.9
## 2427                  2005-01-01      Antigua and Barbuda         62.5
## 2428                  2000-01-01      Antigua and Barbuda         60.3
## 2429                  1995-01-01      Antigua and Barbuda         57.8
## 2430                  1990-01-01      Antigua and Barbuda         56.6
## 2431                  2015-01-01      Antigua and Barbuda         66.7
## 2432                  2010-01-01      Antigua and Barbuda         64.9
## 2433                  2005-01-01      Antigua and Barbuda         62.5
## 2434                  2000-01-01      Antigua and Barbuda         60.3
## 2435                  1995-01-01      Antigua and Barbuda         57.8
## 2436                  1990-01-01      Antigua and Barbuda         56.6
## 2437                  2015-01-01      Antigua and Barbuda         66.7
## 2438                  2010-01-01      Antigua and Barbuda         64.9
## 2439                  2005-01-01      Antigua and Barbuda         62.5
## 2440                  2000-01-01      Antigua and Barbuda         60.3
## 2441                  1995-01-01      Antigua and Barbuda         57.8
## 2442                  1990-01-01      Antigua and Barbuda         56.6
## 2443                  2015-01-01      Antigua and Barbuda         66.7
## 2444                  2010-01-01      Antigua and Barbuda         64.9
## 2445                  2005-01-01      Antigua and Barbuda         62.5
## 2446                  2000-01-01      Antigua and Barbuda         60.3
## 2447                  1995-01-01      Antigua and Barbuda         57.8
## 2448                  1990-01-01      Antigua and Barbuda         56.6
## 2449                  2015-01-01      Antigua and Barbuda         66.7
## 2450                  2010-01-01      Antigua and Barbuda         64.9
## 2451                  2005-01-01      Antigua and Barbuda         62.5
## 2452                  2000-01-01      Antigua and Barbuda         60.3
## 2453                  1995-01-01      Antigua and Barbuda         57.8
## 2454                  1990-01-01      Antigua and Barbuda         56.6
## 2455                  2015-01-01      Antigua and Barbuda         66.7
## 2456                  2010-01-01      Antigua and Barbuda         64.9
## 2457                  2005-01-01      Antigua and Barbuda         62.5
## 2458                  2000-01-01      Antigua and Barbuda         60.3
## 2459                  1995-01-01      Antigua and Barbuda         57.8
## 2460                  1990-01-01      Antigua and Barbuda         56.6
## 2461                  2015-01-01      Antigua and Barbuda         66.7
## 2462                  2010-01-01      Antigua and Barbuda         64.9
## 2463                  2005-01-01      Antigua and Barbuda         62.5
## 2464                  2000-01-01      Antigua and Barbuda         60.3
## 2465                  1995-01-01      Antigua and Barbuda         57.8
## 2466                  1990-01-01      Antigua and Barbuda         56.6
## 2467                  2015-01-01      Antigua and Barbuda         66.7
## 2468                  2010-01-01      Antigua and Barbuda         64.9
## 2469                  2005-01-01      Antigua and Barbuda         62.5
## 2470                  2000-01-01      Antigua and Barbuda         60.3
## 2471                  1995-01-01      Antigua and Barbuda         57.8
## 2472                  1990-01-01      Antigua and Barbuda         56.6
## 2473                  2015-01-01      Antigua and Barbuda         66.7
## 2474                  2010-01-01      Antigua and Barbuda         64.9
## 2475                  2005-01-01      Antigua and Barbuda         62.5
## 2476                  2000-01-01      Antigua and Barbuda         60.3
## 2477                  1995-01-01      Antigua and Barbuda         57.8
## 2478                  1990-01-01      Antigua and Barbuda         56.6
## 2479                  2015-01-01      Antigua and Barbuda         66.7
## 2480                  2010-01-01      Antigua and Barbuda         64.9
## 2481                  2005-01-01      Antigua and Barbuda         62.5
## 2482                  2000-01-01      Antigua and Barbuda         60.3
## 2483                  1995-01-01      Antigua and Barbuda         57.8
## 2484                  1990-01-01      Antigua and Barbuda         56.6
## 2485                  2015-01-01      Antigua and Barbuda         66.7
## 2486                  2010-01-01      Antigua and Barbuda         64.9
## 2487                  2005-01-01      Antigua and Barbuda         62.5
## 2488                  2000-01-01      Antigua and Barbuda         60.3
## 2489                  1995-01-01      Antigua and Barbuda         57.8
## 2490                  1990-01-01      Antigua and Barbuda         56.6
## 2491                  2015-01-01      Antigua and Barbuda         66.7
## 2492                  2010-01-01      Antigua and Barbuda         64.9
## 2493                  2005-01-01      Antigua and Barbuda         62.5
## 2494                  2000-01-01      Antigua and Barbuda         60.3
## 2495                  1995-01-01      Antigua and Barbuda         57.8
## 2496                  1990-01-01      Antigua and Barbuda         56.6
## 2497                  2015-01-01      Antigua and Barbuda         66.7
## 2498                  2010-01-01      Antigua and Barbuda         64.9
## 2499                  2005-01-01      Antigua and Barbuda         62.5
## 2500                  2000-01-01      Antigua and Barbuda         60.3
## 2501                  1995-01-01      Antigua and Barbuda         57.8
## 2502                  1990-01-01      Antigua and Barbuda         56.6
## 2503                  2015-01-01      Antigua and Barbuda         66.7
## 2504                  2010-01-01      Antigua and Barbuda         64.9
## 2505                  2005-01-01      Antigua and Barbuda         62.5
## 2506                  2000-01-01      Antigua and Barbuda         60.3
## 2507                  1995-01-01      Antigua and Barbuda         57.8
## 2508                  1990-01-01      Antigua and Barbuda         56.6
## 2509                  2015-01-01      Antigua and Barbuda         66.7
## 2510                  2010-01-01      Antigua and Barbuda         64.9
## 2511                  2005-01-01      Antigua and Barbuda         62.5
## 2512                  2000-01-01      Antigua and Barbuda         60.3
## 2513                  1995-01-01      Antigua and Barbuda         57.8
## 2514                  1990-01-01      Antigua and Barbuda         56.6
## 2515                  2015-01-01      Antigua and Barbuda         66.7
## 2516                  2010-01-01      Antigua and Barbuda         64.9
## 2517                  2005-01-01      Antigua and Barbuda         62.5
## 2518                  2000-01-01      Antigua and Barbuda         60.3
## 2519                  1995-01-01      Antigua and Barbuda         57.8
## 2520                  1990-01-01      Antigua and Barbuda         56.6
## 2521                  2015-01-01      Antigua and Barbuda         66.7
## 2522                  2010-01-01      Antigua and Barbuda         64.9
## 2523                  2005-01-01      Antigua and Barbuda         62.5
## 2524                  2000-01-01      Antigua and Barbuda         60.3
## 2525                  1995-01-01      Antigua and Barbuda         57.8
## 2526                  1990-01-01      Antigua and Barbuda         56.6
## 2527                  2015-01-01      Antigua and Barbuda         66.7
## 2528                  2010-01-01      Antigua and Barbuda         64.9
## 2529                  2005-01-01      Antigua and Barbuda         62.5
## 2530                  2000-01-01      Antigua and Barbuda         60.3
## 2531                  1995-01-01      Antigua and Barbuda         57.8
## 2532                  1990-01-01      Antigua and Barbuda         56.6
## 2533                  2015-01-01      Antigua and Barbuda         66.7
## 2534                  2010-01-01      Antigua and Barbuda         64.9
## 2535                  2005-01-01      Antigua and Barbuda         62.5
## 2536                  2000-01-01      Antigua and Barbuda         60.3
## 2537                  1995-01-01      Antigua and Barbuda         57.8
## 2538                  1990-01-01      Antigua and Barbuda         56.6
## 2539                  2015-01-01      Antigua and Barbuda         66.7
## 2540                  2010-01-01      Antigua and Barbuda         64.9
## 2541                  2005-01-01      Antigua and Barbuda         62.5
## 2542                  2000-01-01      Antigua and Barbuda         60.3
## 2543                  1995-01-01      Antigua and Barbuda         57.8
## 2544                  1990-01-01      Antigua and Barbuda         56.6
## 2545                  2015-01-01      Antigua and Barbuda         66.7
## 2546                  2010-01-01      Antigua and Barbuda         64.9
## 2547                  2005-01-01      Antigua and Barbuda         62.5
## 2548                  2000-01-01      Antigua and Barbuda         60.3
## 2549                  1995-01-01      Antigua and Barbuda         57.8
## 2550                  1990-01-01      Antigua and Barbuda         56.6
## 2551                  2015-01-01      Antigua and Barbuda         66.7
## 2552                  2010-01-01      Antigua and Barbuda         64.9
## 2553                  2005-01-01      Antigua and Barbuda         62.5
## 2554                  2000-01-01      Antigua and Barbuda         60.3
## 2555                  1995-01-01      Antigua and Barbuda         57.8
## 2556                  1990-01-01      Antigua and Barbuda         56.6
## 2557                  2015-01-01      Antigua and Barbuda         66.7
## 2558                  2010-01-01      Antigua and Barbuda         64.9
## 2559                  2005-01-01      Antigua and Barbuda         62.5
## 2560                  2000-01-01      Antigua and Barbuda         60.3
## 2561                  1995-01-01      Antigua and Barbuda         57.8
## 2562                  1990-01-01      Antigua and Barbuda         56.6
## 2563                  2015-01-01      Antigua and Barbuda         66.7
## 2564                  2010-01-01      Antigua and Barbuda         64.9
## 2565                  2005-01-01      Antigua and Barbuda         62.5
## 2566                  2000-01-01      Antigua and Barbuda         60.3
## 2567                  1995-01-01      Antigua and Barbuda         57.8
## 2568                  1990-01-01      Antigua and Barbuda         56.6
## 2569                  2015-01-01      Antigua and Barbuda         66.7
## 2570                  2010-01-01      Antigua and Barbuda         64.9
## 2571                  2005-01-01      Antigua and Barbuda         62.5
## 2572                  2000-01-01      Antigua and Barbuda         60.3
## 2573                  1995-01-01      Antigua and Barbuda         57.8
## 2574                  1990-01-01      Antigua and Barbuda         56.6
## 2575                  2015-01-01      Antigua and Barbuda         66.7
## 2576                  2010-01-01      Antigua and Barbuda         64.9
## 2577                  2005-01-01      Antigua and Barbuda         62.5
## 2578                  2000-01-01      Antigua and Barbuda         60.3
## 2579                  1995-01-01      Antigua and Barbuda         57.8
## 2580                  1990-01-01      Antigua and Barbuda         56.6
## 2581                  2015-01-01      Antigua and Barbuda         66.7
## 2582                  2010-01-01      Antigua and Barbuda         64.9
## 2583                  2005-01-01      Antigua and Barbuda         62.5
## 2584                  2000-01-01      Antigua and Barbuda         60.3
## 2585                  1995-01-01      Antigua and Barbuda         57.8
## 2586                  1990-01-01      Antigua and Barbuda         56.6
## 2587                  2015-01-01      Antigua and Barbuda         66.7
## 2588                  2010-01-01      Antigua and Barbuda         64.9
## 2589                  2005-01-01      Antigua and Barbuda         62.5
## 2590                  2000-01-01      Antigua and Barbuda         60.3
## 2591                  1995-01-01      Antigua and Barbuda         57.8
## 2592                  1990-01-01      Antigua and Barbuda         56.6
## 2593                  2015-01-01      Antigua and Barbuda         66.7
## 2594                  2010-01-01      Antigua and Barbuda         64.9
## 2595                  2005-01-01      Antigua and Barbuda         62.5
## 2596                  2000-01-01      Antigua and Barbuda         60.3
## 2597                  1995-01-01      Antigua and Barbuda         57.8
## 2598                  1990-01-01      Antigua and Barbuda         56.6
## 2599                  2015-01-01      Antigua and Barbuda         66.7
## 2600                  2010-01-01      Antigua and Barbuda         64.9
## 2601                  2005-01-01      Antigua and Barbuda         62.5
## 2602                  2000-01-01      Antigua and Barbuda         60.3
## 2603                  1995-01-01      Antigua and Barbuda         57.8
## 2604                  1990-01-01      Antigua and Barbuda         56.6
## 2605                  2015-01-01      Antigua and Barbuda         66.7
## 2606                  2010-01-01      Antigua and Barbuda         64.9
## 2607                  2005-01-01      Antigua and Barbuda         62.5
## 2608                  2000-01-01      Antigua and Barbuda         60.3
## 2609                  1995-01-01      Antigua and Barbuda         57.8
## 2610                  1990-01-01      Antigua and Barbuda         56.6
## 2611                  2015-01-01      Antigua and Barbuda         66.7
## 2612                  2010-01-01      Antigua and Barbuda         64.9
## 2613                  2005-01-01      Antigua and Barbuda         62.5
## 2614                  2000-01-01      Antigua and Barbuda         60.3
## 2615                  1995-01-01      Antigua and Barbuda         57.8
## 2616                  1990-01-01      Antigua and Barbuda         56.6
## 2617                  2015-01-01                Argentina         68.4
## 2618                  2010-01-01                Argentina         66.6
## 2619                  2005-01-01                Argentina         65.3
## 2620                  2000-01-01                Argentina         63.5
## 2621                  1995-01-01                Argentina         60.3
## 2622                  1990-01-01                Argentina         57.4
## 2623                  2015-01-01                Argentina         68.4
## 2624                  2010-01-01                Argentina         66.6
## 2625                  2005-01-01                Argentina         65.3
## 2626                  2000-01-01                Argentina         63.5
## 2627                  1995-01-01                Argentina         60.3
## 2628                  1990-01-01                Argentina         57.4
## 2629                  2015-01-01                Argentina         68.4
## 2630                  2010-01-01                Argentina         66.6
## 2631                  2005-01-01                Argentina         65.3
## 2632                  2000-01-01                Argentina         63.5
## 2633                  1995-01-01                Argentina         60.3
## 2634                  1990-01-01                Argentina         57.4
## 2635                  2015-01-01                Argentina         68.4
## 2636                  2010-01-01                Argentina         66.6
## 2637                  2005-01-01                Argentina         65.3
## 2638                  2000-01-01                Argentina         63.5
## 2639                  1995-01-01                Argentina         60.3
## 2640                  1990-01-01                Argentina         57.4
## 2641                  2015-01-01                Argentina         68.4
## 2642                  2010-01-01                Argentina         66.6
## 2643                  2005-01-01                Argentina         65.3
## 2644                  2000-01-01                Argentina         63.5
## 2645                  1995-01-01                Argentina         60.3
## 2646                  1990-01-01                Argentina         57.4
## 2647                  2015-01-01                Argentina         68.4
## 2648                  2010-01-01                Argentina         66.6
## 2649                  2005-01-01                Argentina         65.3
## 2650                  2000-01-01                Argentina         63.5
## 2651                  1995-01-01                Argentina         60.3
## 2652                  1990-01-01                Argentina         57.4
## 2653                  2015-01-01                Argentina         68.4
## 2654                  2010-01-01                Argentina         66.6
## 2655                  2005-01-01                Argentina         65.3
## 2656                  2000-01-01                Argentina         63.5
## 2657                  1995-01-01                Argentina         60.3
## 2658                  1990-01-01                Argentina         57.4
## 2659                  2015-01-01                Argentina         68.4
## 2660                  2010-01-01                Argentina         66.6
## 2661                  2005-01-01                Argentina         65.3
## 2662                  2000-01-01                Argentina         63.5
## 2663                  1995-01-01                Argentina         60.3
## 2664                  1990-01-01                Argentina         57.4
## 2665                  2015-01-01                Argentina         68.4
## 2666                  2010-01-01                Argentina         66.6
## 2667                  2005-01-01                Argentina         65.3
## 2668                  2000-01-01                Argentina         63.5
## 2669                  1995-01-01                Argentina         60.3
## 2670                  1990-01-01                Argentina         57.4
## 2671                  2015-01-01                Argentina         68.4
## 2672                  2010-01-01                Argentina         66.6
## 2673                  2005-01-01                Argentina         65.3
## 2674                  2000-01-01                Argentina         63.5
## 2675                  1995-01-01                Argentina         60.3
## 2676                  1990-01-01                Argentina         57.4
## 2677                  2015-01-01                Argentina         68.4
## 2678                  2010-01-01                Argentina         66.6
## 2679                  2005-01-01                Argentina         65.3
## 2680                  2000-01-01                Argentina         63.5
## 2681                  1995-01-01                Argentina         60.3
## 2682                  1990-01-01                Argentina         57.4
## 2683                  2015-01-01                Argentina         68.4
## 2684                  2010-01-01                Argentina         66.6
## 2685                  2005-01-01                Argentina         65.3
## 2686                  2000-01-01                Argentina         63.5
## 2687                  1995-01-01                Argentina         60.3
## 2688                  1990-01-01                Argentina         57.4
## 2689                  2015-01-01                Argentina         68.4
## 2690                  2010-01-01                Argentina         66.6
## 2691                  2005-01-01                Argentina         65.3
## 2692                  2000-01-01                Argentina         63.5
## 2693                  1995-01-01                Argentina         60.3
## 2694                  1990-01-01                Argentina         57.4
## 2695                  2015-01-01                Argentina         68.4
## 2696                  2010-01-01                Argentina         66.6
## 2697                  2005-01-01                Argentina         65.3
## 2698                  2000-01-01                Argentina         63.5
## 2699                  1995-01-01                Argentina         60.3
## 2700                  1990-01-01                Argentina         57.4
## 2701                  2015-01-01                Argentina         68.4
## 2702                  2010-01-01                Argentina         66.6
## 2703                  2005-01-01                Argentina         65.3
## 2704                  2000-01-01                Argentina         63.5
## 2705                  1995-01-01                Argentina         60.3
## 2706                  1990-01-01                Argentina         57.4
## 2707                  2015-01-01                Argentina         68.4
## 2708                  2010-01-01                Argentina         66.6
## 2709                  2005-01-01                Argentina         65.3
## 2710                  2000-01-01                Argentina         63.5
## 2711                  1995-01-01                Argentina         60.3
## 2712                  1990-01-01                Argentina         57.4
## 2713                  2015-01-01                Argentina         68.4
## 2714                  2010-01-01                Argentina         66.6
## 2715                  2005-01-01                Argentina         65.3
## 2716                  2000-01-01                Argentina         63.5
## 2717                  1995-01-01                Argentina         60.3
## 2718                  1990-01-01                Argentina         57.4
## 2719                  2015-01-01                Argentina         68.4
## 2720                  2010-01-01                Argentina         66.6
## 2721                  2005-01-01                Argentina         65.3
## 2722                  2000-01-01                Argentina         63.5
## 2723                  1995-01-01                Argentina         60.3
## 2724                  1990-01-01                Argentina         57.4
## 2725                  2015-01-01                Argentina         68.4
## 2726                  2010-01-01                Argentina         66.6
## 2727                  2005-01-01                Argentina         65.3
## 2728                  2000-01-01                Argentina         63.5
## 2729                  1995-01-01                Argentina         60.3
## 2730                  1990-01-01                Argentina         57.4
## 2731                  2015-01-01                Argentina         68.4
## 2732                  2010-01-01                Argentina         66.6
## 2733                  2005-01-01                Argentina         65.3
## 2734                  2000-01-01                Argentina         63.5
## 2735                  1995-01-01                Argentina         60.3
## 2736                  1990-01-01                Argentina         57.4
## 2737                  2015-01-01                Argentina         68.4
## 2738                  2010-01-01                Argentina         66.6
## 2739                  2005-01-01                Argentina         65.3
## 2740                  2000-01-01                Argentina         63.5
## 2741                  1995-01-01                Argentina         60.3
## 2742                  1990-01-01                Argentina         57.4
## 2743                  2015-01-01                Argentina         68.4
## 2744                  2010-01-01                Argentina         66.6
## 2745                  2005-01-01                Argentina         65.3
## 2746                  2000-01-01                Argentina         63.5
## 2747                  1995-01-01                Argentina         60.3
## 2748                  1990-01-01                Argentina         57.4
## 2749                  2015-01-01                Argentina         68.4
## 2750                  2010-01-01                Argentina         66.6
## 2751                  2005-01-01                Argentina         65.3
## 2752                  2000-01-01                Argentina         63.5
## 2753                  1995-01-01                Argentina         60.3
## 2754                  1990-01-01                Argentina         57.4
## 2755                  2015-01-01                Argentina         68.4
## 2756                  2010-01-01                Argentina         66.6
## 2757                  2005-01-01                Argentina         65.3
## 2758                  2000-01-01                Argentina         63.5
## 2759                  1995-01-01                Argentina         60.3
## 2760                  1990-01-01                Argentina         57.4
## 2761                  2015-01-01                Argentina         68.4
## 2762                  2010-01-01                Argentina         66.6
## 2763                  2005-01-01                Argentina         65.3
## 2764                  2000-01-01                Argentina         63.5
## 2765                  1995-01-01                Argentina         60.3
## 2766                  1990-01-01                Argentina         57.4
## 2767                  2015-01-01                Argentina         68.4
## 2768                  2010-01-01                Argentina         66.6
## 2769                  2005-01-01                Argentina         65.3
## 2770                  2000-01-01                Argentina         63.5
## 2771                  1995-01-01                Argentina         60.3
## 2772                  1990-01-01                Argentina         57.4
## 2773                  2015-01-01                Argentina         68.4
## 2774                  2010-01-01                Argentina         66.6
## 2775                  2005-01-01                Argentina         65.3
## 2776                  2000-01-01                Argentina         63.5
## 2777                  1995-01-01                Argentina         60.3
## 2778                  1990-01-01                Argentina         57.4
## 2779                  2015-01-01                Argentina         68.4
## 2780                  2010-01-01                Argentina         66.6
## 2781                  2005-01-01                Argentina         65.3
## 2782                  2000-01-01                Argentina         63.5
## 2783                  1995-01-01                Argentina         60.3
## 2784                  1990-01-01                Argentina         57.4
## 2785                  2015-01-01                Argentina         68.4
## 2786                  2010-01-01                Argentina         66.6
## 2787                  2005-01-01                Argentina         65.3
## 2788                  2000-01-01                Argentina         63.5
## 2789                  1995-01-01                Argentina         60.3
## 2790                  1990-01-01                Argentina         57.4
## 2791                  2015-01-01                Argentina         68.4
## 2792                  2010-01-01                Argentina         66.6
## 2793                  2005-01-01                Argentina         65.3
## 2794                  2000-01-01                Argentina         63.5
## 2795                  1995-01-01                Argentina         60.3
## 2796                  1990-01-01                Argentina         57.4
## 2797                  2015-01-01                Argentina         68.4
## 2798                  2010-01-01                Argentina         66.6
## 2799                  2005-01-01                Argentina         65.3
## 2800                  2000-01-01                Argentina         63.5
## 2801                  1995-01-01                Argentina         60.3
## 2802                  1990-01-01                Argentina         57.4
## 2803                  2015-01-01                Argentina         68.4
## 2804                  2010-01-01                Argentina         66.6
## 2805                  2005-01-01                Argentina         65.3
## 2806                  2000-01-01                Argentina         63.5
## 2807                  1995-01-01                Argentina         60.3
## 2808                  1990-01-01                Argentina         57.4
## 2809                  2015-01-01                Argentina         68.4
## 2810                  2010-01-01                Argentina         66.6
## 2811                  2005-01-01                Argentina         65.3
## 2812                  2000-01-01                Argentina         63.5
## 2813                  1995-01-01                Argentina         60.3
## 2814                  1990-01-01                Argentina         57.4
## 2815                  2015-01-01                Argentina         68.4
## 2816                  2010-01-01                Argentina         66.6
## 2817                  2005-01-01                Argentina         65.3
## 2818                  2000-01-01                Argentina         63.5
## 2819                  1995-01-01                Argentina         60.3
## 2820                  1990-01-01                Argentina         57.4
## 2821                  2015-01-01                Argentina         68.4
## 2822                  2010-01-01                Argentina         66.6
## 2823                  2005-01-01                Argentina         65.3
## 2824                  2000-01-01                Argentina         63.5
## 2825                  1995-01-01                Argentina         60.3
## 2826                  1990-01-01                Argentina         57.4
## 2827                  2015-01-01                Argentina         68.4
## 2828                  2010-01-01                Argentina         66.6
## 2829                  2005-01-01                Argentina         65.3
## 2830                  2000-01-01                Argentina         63.5
## 2831                  1995-01-01                Argentina         60.3
## 2832                  1990-01-01                Argentina         57.4
## 2833                  2015-01-01                Argentina         68.4
## 2834                  2010-01-01                Argentina         66.6
## 2835                  2005-01-01                Argentina         65.3
## 2836                  2000-01-01                Argentina         63.5
## 2837                  1995-01-01                Argentina         60.3
## 2838                  1990-01-01                Argentina         57.4
## 2839                  2015-01-01                Argentina         68.4
## 2840                  2010-01-01                Argentina         66.6
## 2841                  2005-01-01                Argentina         65.3
## 2842                  2000-01-01                Argentina         63.5
## 2843                  1995-01-01                Argentina         60.3
## 2844                  1990-01-01                Argentina         57.4
## 2845                  2015-01-01                Argentina         68.4
## 2846                  2010-01-01                Argentina         66.6
## 2847                  2005-01-01                Argentina         65.3
## 2848                  2000-01-01                Argentina         63.5
## 2849                  1995-01-01                Argentina         60.3
## 2850                  1990-01-01                Argentina         57.4
## 2851                  2015-01-01                Argentina         68.4
## 2852                  2010-01-01                Argentina         66.6
## 2853                  2005-01-01                Argentina         65.3
## 2854                  2000-01-01                Argentina         63.5
## 2855                  1995-01-01                Argentina         60.3
## 2856                  1990-01-01                Argentina         57.4
## 2857                  2015-01-01                Argentina         68.4
## 2858                  2010-01-01                Argentina         66.6
## 2859                  2005-01-01                Argentina         65.3
## 2860                  2000-01-01                Argentina         63.5
## 2861                  1995-01-01                Argentina         60.3
## 2862                  1990-01-01                Argentina         57.4
## 2863                  2015-01-01                Argentina         68.4
## 2864                  2010-01-01                Argentina         66.6
## 2865                  2005-01-01                Argentina         65.3
## 2866                  2000-01-01                Argentina         63.5
## 2867                  1995-01-01                Argentina         60.3
## 2868                  1990-01-01                Argentina         57.4
## 2869                  2015-01-01                Argentina         68.4
## 2870                  2010-01-01                Argentina         66.6
## 2871                  2005-01-01                Argentina         65.3
## 2872                  2000-01-01                Argentina         63.5
## 2873                  1995-01-01                Argentina         60.3
## 2874                  1990-01-01                Argentina         57.4
## 2875                  2015-01-01                Argentina         68.4
## 2876                  2010-01-01                Argentina         66.6
## 2877                  2005-01-01                Argentina         65.3
## 2878                  2000-01-01                Argentina         63.5
## 2879                  1995-01-01                Argentina         60.3
## 2880                  1990-01-01                Argentina         57.4
## 2881                  2015-01-01                Argentina         68.4
## 2882                  2010-01-01                Argentina         66.6
## 2883                  2005-01-01                Argentina         65.3
## 2884                  2000-01-01                Argentina         63.5
## 2885                  1995-01-01                Argentina         60.3
## 2886                  1990-01-01                Argentina         57.4
## 2887                  2015-01-01                Argentina         68.4
## 2888                  2010-01-01                Argentina         66.6
## 2889                  2005-01-01                Argentina         65.3
## 2890                  2000-01-01                Argentina         63.5
## 2891                  1995-01-01                Argentina         60.3
## 2892                  1990-01-01                Argentina         57.4
## 2893                  2015-01-01                Argentina         68.4
## 2894                  2010-01-01                Argentina         66.6
## 2895                  2005-01-01                Argentina         65.3
## 2896                  2000-01-01                Argentina         63.5
## 2897                  1995-01-01                Argentina         60.3
## 2898                  1990-01-01                Argentina         57.4
## 2899                  2015-01-01                Argentina         68.4
## 2900                  2010-01-01                Argentina         66.6
## 2901                  2005-01-01                Argentina         65.3
## 2902                  2000-01-01                Argentina         63.5
## 2903                  1995-01-01                Argentina         60.3
## 2904                  1990-01-01                Argentina         57.4
## 2905                  2015-01-01                Argentina         68.4
## 2906                  2010-01-01                Argentina         66.6
## 2907                  2005-01-01                Argentina         65.3
## 2908                  2000-01-01                Argentina         63.5
## 2909                  1995-01-01                Argentina         60.3
## 2910                  1990-01-01                Argentina         57.4
## 2911                  2015-01-01                Argentina         68.4
## 2912                  2010-01-01                Argentina         66.6
## 2913                  2005-01-01                Argentina         65.3
## 2914                  2000-01-01                Argentina         63.5
## 2915                  1995-01-01                Argentina         60.3
## 2916                  1990-01-01                Argentina         57.4
## 2917                  2015-01-01                Argentina         68.4
## 2918                  2010-01-01                Argentina         66.6
## 2919                  2005-01-01                Argentina         65.3
## 2920                  2000-01-01                Argentina         63.5
## 2921                  1995-01-01                Argentina         60.3
## 2922                  1990-01-01                Argentina         57.4
## 2923                  2015-01-01                Argentina         68.4
## 2924                  2010-01-01                Argentina         66.6
## 2925                  2005-01-01                Argentina         65.3
## 2926                  2000-01-01                Argentina         63.5
## 2927                  1995-01-01                Argentina         60.3
## 2928                  1990-01-01                Argentina         57.4
## 2929                  2015-01-01                Argentina         68.4
## 2930                  2010-01-01                Argentina         66.6
## 2931                  2005-01-01                Argentina         65.3
## 2932                  2000-01-01                Argentina         63.5
## 2933                  1995-01-01                Argentina         60.3
## 2934                  1990-01-01                Argentina         57.4
## 2935                  2015-01-01                Argentina         68.4
## 2936                  2010-01-01                Argentina         66.6
## 2937                  2005-01-01                Argentina         65.3
## 2938                  2000-01-01                Argentina         63.5
## 2939                  1995-01-01                Argentina         60.3
## 2940                  1990-01-01                Argentina         57.4
## 2941                  2015-01-01                Argentina         68.4
## 2942                  2010-01-01                Argentina         66.6
## 2943                  2005-01-01                Argentina         65.3
## 2944                  2000-01-01                Argentina         63.5
## 2945                  1995-01-01                Argentina         60.3
## 2946                  1990-01-01                Argentina         57.4
## 2947                  2015-01-01                Argentina         68.4
## 2948                  2010-01-01                Argentina         66.6
## 2949                  2005-01-01                Argentina         65.3
## 2950                  2000-01-01                Argentina         63.5
## 2951                  1995-01-01                Argentina         60.3
## 2952                  1990-01-01                Argentina         57.4
## 2953                  2015-01-01                Argentina         68.4
## 2954                  2010-01-01                Argentina         66.6
## 2955                  2005-01-01                Argentina         65.3
## 2956                  2000-01-01                Argentina         63.5
## 2957                  1995-01-01                Argentina         60.3
## 2958                  1990-01-01                Argentina         57.4
## 2959                  2015-01-01                Argentina         68.4
## 2960                  2010-01-01                Argentina         66.6
## 2961                  2005-01-01                Argentina         65.3
## 2962                  2000-01-01                Argentina         63.5
## 2963                  1995-01-01                Argentina         60.3
## 2964                  1990-01-01                Argentina         57.4
## 2965                  2015-01-01                Argentina         68.4
## 2966                  2010-01-01                Argentina         66.6
## 2967                  2005-01-01                Argentina         65.3
## 2968                  2000-01-01                Argentina         63.5
## 2969                  1995-01-01                Argentina         60.3
## 2970                  1990-01-01                Argentina         57.4
## 2971                  2015-01-01                Argentina         68.4
## 2972                  2010-01-01                Argentina         66.6
## 2973                  2005-01-01                Argentina         65.3
## 2974                  2000-01-01                Argentina         63.5
## 2975                  1995-01-01                Argentina         60.3
## 2976                  1990-01-01                Argentina         57.4
## 2977                  2015-01-01                Argentina         68.4
## 2978                  2010-01-01                Argentina         66.6
## 2979                  2005-01-01                Argentina         65.3
## 2980                  2000-01-01                Argentina         63.5
## 2981                  1995-01-01                Argentina         60.3
## 2982                  1990-01-01                Argentina         57.4
## 2983                  2015-01-01                Argentina         68.4
## 2984                  2010-01-01                Argentina         66.6
## 2985                  2005-01-01                Argentina         65.3
## 2986                  2000-01-01                Argentina         63.5
## 2987                  1995-01-01                Argentina         60.3
## 2988                  1990-01-01                Argentina         57.4
## 2989                  2015-01-01                Argentina         68.4
## 2990                  2010-01-01                Argentina         66.6
## 2991                  2005-01-01                Argentina         65.3
## 2992                  2000-01-01                Argentina         63.5
## 2993                  1995-01-01                Argentina         60.3
## 2994                  1990-01-01                Argentina         57.4
## 2995                  2015-01-01                Argentina         68.4
## 2996                  2010-01-01                Argentina         66.6
## 2997                  2005-01-01                Argentina         65.3
## 2998                  2000-01-01                Argentina         63.5
## 2999                  1995-01-01                Argentina         60.3
## 3000                  1990-01-01                Argentina         57.4
## 3001                  2015-01-01                Argentina         68.4
## 3002                  2010-01-01                Argentina         66.6
## 3003                  2005-01-01                Argentina         65.3
## 3004                  2000-01-01                Argentina         63.5
## 3005                  1995-01-01                Argentina         60.3
## 3006                  1990-01-01                Argentina         57.4
## 3007                  2015-01-01                Argentina         68.4
## 3008                  2010-01-01                Argentina         66.6
## 3009                  2005-01-01                Argentina         65.3
## 3010                  2000-01-01                Argentina         63.5
## 3011                  1995-01-01                Argentina         60.3
## 3012                  1990-01-01                Argentina         57.4
## 3013                  2015-01-01                Argentina         68.4
## 3014                  2010-01-01                Argentina         66.6
## 3015                  2005-01-01                Argentina         65.3
## 3016                  2000-01-01                Argentina         63.5
## 3017                  1995-01-01                Argentina         60.3
## 3018                  1990-01-01                Argentina         57.4
## 3019                  2015-01-01                Argentina         68.4
## 3020                  2010-01-01                Argentina         66.6
## 3021                  2005-01-01                Argentina         65.3
## 3022                  2000-01-01                Argentina         63.5
## 3023                  1995-01-01                Argentina         60.3
## 3024                  1990-01-01                Argentina         57.4
## 3025                  2015-01-01                Argentina         68.4
## 3026                  2010-01-01                Argentina         66.6
## 3027                  2005-01-01                Argentina         65.3
## 3028                  2000-01-01                Argentina         63.5
## 3029                  1995-01-01                Argentina         60.3
## 3030                  1990-01-01                Argentina         57.4
## 3031                  2015-01-01                Argentina         68.4
## 3032                  2010-01-01                Argentina         66.6
## 3033                  2005-01-01                Argentina         65.3
## 3034                  2000-01-01                Argentina         63.5
## 3035                  1995-01-01                Argentina         60.3
## 3036                  1990-01-01                Argentina         57.4
## 3037                  2015-01-01                Argentina         68.4
## 3038                  2010-01-01                Argentina         66.6
## 3039                  2005-01-01                Argentina         65.3
## 3040                  2000-01-01                Argentina         63.5
## 3041                  1995-01-01                Argentina         60.3
## 3042                  1990-01-01                Argentina         57.4
## 3043                  2015-01-01                Argentina         68.4
## 3044                  2010-01-01                Argentina         66.6
## 3045                  2005-01-01                Argentina         65.3
## 3046                  2000-01-01                Argentina         63.5
## 3047                  1995-01-01                Argentina         60.3
## 3048                  1990-01-01                Argentina         57.4
## 3049                  2015-01-01                Argentina         68.4
## 3050                  2010-01-01                Argentina         66.6
## 3051                  2005-01-01                Argentina         65.3
## 3052                  2000-01-01                Argentina         63.5
## 3053                  1995-01-01                Argentina         60.3
## 3054                  1990-01-01                Argentina         57.4
## 3055                  2015-01-01                Argentina         68.4
## 3056                  2010-01-01                Argentina         66.6
## 3057                  2005-01-01                Argentina         65.3
## 3058                  2000-01-01                Argentina         63.5
## 3059                  1995-01-01                Argentina         60.3
## 3060                  1990-01-01                Argentina         57.4
## 3061                  2015-01-01                Argentina         68.4
## 3062                  2010-01-01                Argentina         66.6
## 3063                  2005-01-01                Argentina         65.3
## 3064                  2000-01-01                Argentina         63.5
## 3065                  1995-01-01                Argentina         60.3
## 3066                  1990-01-01                Argentina         57.4
## 3067                  2015-01-01                Argentina         68.4
## 3068                  2010-01-01                Argentina         66.6
## 3069                  2005-01-01                Argentina         65.3
## 3070                  2000-01-01                Argentina         63.5
## 3071                  1995-01-01                Argentina         60.3
## 3072                  1990-01-01                Argentina         57.4
## 3073                  2015-01-01                Argentina         68.4
## 3074                  2010-01-01                Argentina         66.6
## 3075                  2005-01-01                Argentina         65.3
## 3076                  2000-01-01                Argentina         63.5
## 3077                  1995-01-01                Argentina         60.3
## 3078                  1990-01-01                Argentina         57.4
## 3079                  2015-01-01                Argentina         68.4
## 3080                  2010-01-01                Argentina         66.6
## 3081                  2005-01-01                Argentina         65.3
## 3082                  2000-01-01                Argentina         63.5
## 3083                  1995-01-01                Argentina         60.3
## 3084                  1990-01-01                Argentina         57.4
## 3085                  2015-01-01                Argentina         68.4
## 3086                  2010-01-01                Argentina         66.6
## 3087                  2005-01-01                Argentina         65.3
## 3088                  2000-01-01                Argentina         63.5
## 3089                  1995-01-01                Argentina         60.3
## 3090                  1990-01-01                Argentina         57.4
## 3091                  2015-01-01                  Armenia         67.5
## 3092                  2010-01-01                  Armenia         63.7
## 3093                  2005-01-01                  Armenia         60.0
## 3094                  2000-01-01                  Armenia         59.0
## 3095                  1995-01-01                  Armenia         55.6
## 3096                  1990-01-01                  Armenia         56.8
## 3097                  2015-01-01                  Armenia         67.5
## 3098                  2010-01-01                  Armenia         63.7
## 3099                  2005-01-01                  Armenia         60.0
## 3100                  2000-01-01                  Armenia         59.0
## 3101                  1995-01-01                  Armenia         55.6
## 3102                  1990-01-01                  Armenia         56.8
## 3103                  2015-01-01                  Armenia         67.5
## 3104                  2010-01-01                  Armenia         63.7
## 3105                  2005-01-01                  Armenia         60.0
## 3106                  2000-01-01                  Armenia         59.0
## 3107                  1995-01-01                  Armenia         55.6
## 3108                  1990-01-01                  Armenia         56.8
## 3109                  2015-01-01                  Armenia         67.5
## 3110                  2010-01-01                  Armenia         63.7
## 3111                  2005-01-01                  Armenia         60.0
## 3112                  2000-01-01                  Armenia         59.0
## 3113                  1995-01-01                  Armenia         55.6
## 3114                  1990-01-01                  Armenia         56.8
## 3115                  2015-01-01                  Armenia         67.5
## 3116                  2010-01-01                  Armenia         63.7
## 3117                  2005-01-01                  Armenia         60.0
## 3118                  2000-01-01                  Armenia         59.0
## 3119                  1995-01-01                  Armenia         55.6
## 3120                  1990-01-01                  Armenia         56.8
## 3121                  2015-01-01                  Armenia         67.5
## 3122                  2010-01-01                  Armenia         63.7
## 3123                  2005-01-01                  Armenia         60.0
## 3124                  2000-01-01                  Armenia         59.0
## 3125                  1995-01-01                  Armenia         55.6
## 3126                  1990-01-01                  Armenia         56.8
## 3127                  2015-01-01                  Armenia         67.5
## 3128                  2010-01-01                  Armenia         63.7
## 3129                  2005-01-01                  Armenia         60.0
## 3130                  2000-01-01                  Armenia         59.0
## 3131                  1995-01-01                  Armenia         55.6
## 3132                  1990-01-01                  Armenia         56.8
## 3133                  2015-01-01                  Armenia         67.5
## 3134                  2010-01-01                  Armenia         63.7
## 3135                  2005-01-01                  Armenia         60.0
## 3136                  2000-01-01                  Armenia         59.0
## 3137                  1995-01-01                  Armenia         55.6
## 3138                  1990-01-01                  Armenia         56.8
## 3139                  2015-01-01                  Armenia         67.5
## 3140                  2010-01-01                  Armenia         63.7
## 3141                  2005-01-01                  Armenia         60.0
## 3142                  2000-01-01                  Armenia         59.0
## 3143                  1995-01-01                  Armenia         55.6
## 3144                  1990-01-01                  Armenia         56.8
## 3145                  2015-01-01                  Armenia         67.5
## 3146                  2010-01-01                  Armenia         63.7
## 3147                  2005-01-01                  Armenia         60.0
## 3148                  2000-01-01                  Armenia         59.0
## 3149                  1995-01-01                  Armenia         55.6
## 3150                  1990-01-01                  Armenia         56.8
## 3151                  2015-01-01                  Armenia         67.5
## 3152                  2010-01-01                  Armenia         63.7
## 3153                  2005-01-01                  Armenia         60.0
## 3154                  2000-01-01                  Armenia         59.0
## 3155                  1995-01-01                  Armenia         55.6
## 3156                  1990-01-01                  Armenia         56.8
## 3157                  2015-01-01                  Armenia         67.5
## 3158                  2010-01-01                  Armenia         63.7
## 3159                  2005-01-01                  Armenia         60.0
## 3160                  2000-01-01                  Armenia         59.0
## 3161                  1995-01-01                  Armenia         55.6
## 3162                  1990-01-01                  Armenia         56.8
## 3163                  2015-01-01                  Armenia         67.5
## 3164                  2010-01-01                  Armenia         63.7
## 3165                  2005-01-01                  Armenia         60.0
## 3166                  2000-01-01                  Armenia         59.0
## 3167                  1995-01-01                  Armenia         55.6
## 3168                  1990-01-01                  Armenia         56.8
## 3169                  2015-01-01                  Armenia         67.5
## 3170                  2010-01-01                  Armenia         63.7
## 3171                  2005-01-01                  Armenia         60.0
## 3172                  2000-01-01                  Armenia         59.0
## 3173                  1995-01-01                  Armenia         55.6
## 3174                  1990-01-01                  Armenia         56.8
## 3175                  2015-01-01                  Armenia         67.5
## 3176                  2010-01-01                  Armenia         63.7
## 3177                  2005-01-01                  Armenia         60.0
## 3178                  2000-01-01                  Armenia         59.0
## 3179                  1995-01-01                  Armenia         55.6
## 3180                  1990-01-01                  Armenia         56.8
## 3181                  2015-01-01                  Armenia         67.5
## 3182                  2010-01-01                  Armenia         63.7
## 3183                  2005-01-01                  Armenia         60.0
## 3184                  2000-01-01                  Armenia         59.0
## 3185                  1995-01-01                  Armenia         55.6
## 3186                  1990-01-01                  Armenia         56.8
## 3187                  2015-01-01                  Armenia         67.5
## 3188                  2010-01-01                  Armenia         63.7
## 3189                  2005-01-01                  Armenia         60.0
## 3190                  2000-01-01                  Armenia         59.0
## 3191                  1995-01-01                  Armenia         55.6
## 3192                  1990-01-01                  Armenia         56.8
## 3193                  2015-01-01                  Armenia         67.5
## 3194                  2010-01-01                  Armenia         63.7
## 3195                  2005-01-01                  Armenia         60.0
## 3196                  2000-01-01                  Armenia         59.0
## 3197                  1995-01-01                  Armenia         55.6
## 3198                  1990-01-01                  Armenia         56.8
## 3199                  2015-01-01                  Armenia         67.5
## 3200                  2010-01-01                  Armenia         63.7
## 3201                  2005-01-01                  Armenia         60.0
## 3202                  2000-01-01                  Armenia         59.0
## 3203                  1995-01-01                  Armenia         55.6
## 3204                  1990-01-01                  Armenia         56.8
## 3205                  2015-01-01                  Armenia         67.5
## 3206                  2010-01-01                  Armenia         63.7
## 3207                  2005-01-01                  Armenia         60.0
## 3208                  2000-01-01                  Armenia         59.0
## 3209                  1995-01-01                  Armenia         55.6
## 3210                  1990-01-01                  Armenia         56.8
## 3211                  2015-01-01                  Armenia         67.5
## 3212                  2010-01-01                  Armenia         63.7
## 3213                  2005-01-01                  Armenia         60.0
## 3214                  2000-01-01                  Armenia         59.0
## 3215                  1995-01-01                  Armenia         55.6
## 3216                  1990-01-01                  Armenia         56.8
## 3217                  2015-01-01                  Armenia         67.5
## 3218                  2010-01-01                  Armenia         63.7
## 3219                  2005-01-01                  Armenia         60.0
## 3220                  2000-01-01                  Armenia         59.0
## 3221                  1995-01-01                  Armenia         55.6
## 3222                  1990-01-01                  Armenia         56.8
## 3223                  2015-01-01                  Armenia         67.5
## 3224                  2010-01-01                  Armenia         63.7
## 3225                  2005-01-01                  Armenia         60.0
## 3226                  2000-01-01                  Armenia         59.0
## 3227                  1995-01-01                  Armenia         55.6
## 3228                  1990-01-01                  Armenia         56.8
## 3229                  2015-01-01                  Armenia         67.5
## 3230                  2010-01-01                  Armenia         63.7
## 3231                  2005-01-01                  Armenia         60.0
## 3232                  2000-01-01                  Armenia         59.0
## 3233                  1995-01-01                  Armenia         55.6
## 3234                  1990-01-01                  Armenia         56.8
## 3235                  2015-01-01                  Armenia         67.5
## 3236                  2010-01-01                  Armenia         63.7
## 3237                  2005-01-01                  Armenia         60.0
## 3238                  2000-01-01                  Armenia         59.0
## 3239                  1995-01-01                  Armenia         55.6
## 3240                  1990-01-01                  Armenia         56.8
## 3241                  2015-01-01                  Armenia         67.5
## 3242                  2010-01-01                  Armenia         63.7
## 3243                  2005-01-01                  Armenia         60.0
## 3244                  2000-01-01                  Armenia         59.0
## 3245                  1995-01-01                  Armenia         55.6
## 3246                  1990-01-01                  Armenia         56.8
## 3247                  2015-01-01                  Armenia         67.5
## 3248                  2010-01-01                  Armenia         63.7
## 3249                  2005-01-01                  Armenia         60.0
## 3250                  2000-01-01                  Armenia         59.0
## 3251                  1995-01-01                  Armenia         55.6
## 3252                  1990-01-01                  Armenia         56.8
## 3253                  2015-01-01                  Armenia         67.5
## 3254                  2010-01-01                  Armenia         63.7
## 3255                  2005-01-01                  Armenia         60.0
## 3256                  2000-01-01                  Armenia         59.0
## 3257                  1995-01-01                  Armenia         55.6
## 3258                  1990-01-01                  Armenia         56.8
## 3259                  2015-01-01                  Armenia         67.5
## 3260                  2010-01-01                  Armenia         63.7
## 3261                  2005-01-01                  Armenia         60.0
## 3262                  2000-01-01                  Armenia         59.0
## 3263                  1995-01-01                  Armenia         55.6
## 3264                  1990-01-01                  Armenia         56.8
## 3265                  2015-01-01                  Armenia         67.5
## 3266                  2010-01-01                  Armenia         63.7
## 3267                  2005-01-01                  Armenia         60.0
## 3268                  2000-01-01                  Armenia         59.0
## 3269                  1995-01-01                  Armenia         55.6
## 3270                  1990-01-01                  Armenia         56.8
## 3271                  2015-01-01                  Armenia         67.5
## 3272                  2010-01-01                  Armenia         63.7
## 3273                  2005-01-01                  Armenia         60.0
## 3274                  2000-01-01                  Armenia         59.0
## 3275                  1995-01-01                  Armenia         55.6
## 3276                  1990-01-01                  Armenia         56.8
## 3277                  2015-01-01                  Armenia         67.5
## 3278                  2010-01-01                  Armenia         63.7
## 3279                  2005-01-01                  Armenia         60.0
## 3280                  2000-01-01                  Armenia         59.0
## 3281                  1995-01-01                  Armenia         55.6
## 3282                  1990-01-01                  Armenia         56.8
## 3283                  2015-01-01                  Armenia         67.5
## 3284                  2010-01-01                  Armenia         63.7
## 3285                  2005-01-01                  Armenia         60.0
## 3286                  2000-01-01                  Armenia         59.0
## 3287                  1995-01-01                  Armenia         55.6
## 3288                  1990-01-01                  Armenia         56.8
## 3289                  2015-01-01                  Armenia         67.5
## 3290                  2010-01-01                  Armenia         63.7
## 3291                  2005-01-01                  Armenia         60.0
## 3292                  2000-01-01                  Armenia         59.0
## 3293                  1995-01-01                  Armenia         55.6
## 3294                  1990-01-01                  Armenia         56.8
## 3295                  2015-01-01                  Armenia         67.5
## 3296                  2010-01-01                  Armenia         63.7
## 3297                  2005-01-01                  Armenia         60.0
## 3298                  2000-01-01                  Armenia         59.0
## 3299                  1995-01-01                  Armenia         55.6
## 3300                  1990-01-01                  Armenia         56.8
## 3301                  2015-01-01                  Armenia         67.5
## 3302                  2010-01-01                  Armenia         63.7
## 3303                  2005-01-01                  Armenia         60.0
## 3304                  2000-01-01                  Armenia         59.0
## 3305                  1995-01-01                  Armenia         55.6
## 3306                  1990-01-01                  Armenia         56.8
## 3307                  2015-01-01                  Armenia         67.5
## 3308                  2010-01-01                  Armenia         63.7
## 3309                  2005-01-01                  Armenia         60.0
## 3310                  2000-01-01                  Armenia         59.0
## 3311                  1995-01-01                  Armenia         55.6
## 3312                  1990-01-01                  Armenia         56.8
## 3313                  2015-01-01                  Armenia         67.5
## 3314                  2010-01-01                  Armenia         63.7
## 3315                  2005-01-01                  Armenia         60.0
## 3316                  2000-01-01                  Armenia         59.0
## 3317                  1995-01-01                  Armenia         55.6
## 3318                  1990-01-01                  Armenia         56.8
## 3319                  2015-01-01                  Armenia         67.5
## 3320                  2010-01-01                  Armenia         63.7
## 3321                  2005-01-01                  Armenia         60.0
## 3322                  2000-01-01                  Armenia         59.0
## 3323                  1995-01-01                  Armenia         55.6
## 3324                  1990-01-01                  Armenia         56.8
## 3325                  2015-01-01                  Armenia         67.5
## 3326                  2010-01-01                  Armenia         63.7
## 3327                  2005-01-01                  Armenia         60.0
## 3328                  2000-01-01                  Armenia         59.0
## 3329                  1995-01-01                  Armenia         55.6
## 3330                  1990-01-01                  Armenia         56.8
## 3331                  2015-01-01                  Armenia         67.5
## 3332                  2010-01-01                  Armenia         63.7
## 3333                  2005-01-01                  Armenia         60.0
## 3334                  2000-01-01                  Armenia         59.0
## 3335                  1995-01-01                  Armenia         55.6
## 3336                  1990-01-01                  Armenia         56.8
## 3337                  2015-01-01                  Armenia         67.5
## 3338                  2010-01-01                  Armenia         63.7
## 3339                  2005-01-01                  Armenia         60.0
## 3340                  2000-01-01                  Armenia         59.0
## 3341                  1995-01-01                  Armenia         55.6
## 3342                  1990-01-01                  Armenia         56.8
## 3343                  2015-01-01                  Armenia         67.5
## 3344                  2010-01-01                  Armenia         63.7
## 3345                  2005-01-01                  Armenia         60.0
## 3346                  2000-01-01                  Armenia         59.0
## 3347                  1995-01-01                  Armenia         55.6
## 3348                  1990-01-01                  Armenia         56.8
## 3349                  2015-01-01                Australia         89.8
## 3350                  2010-01-01                Australia         88.2
## 3351                  2005-01-01                Australia         86.2
## 3352                  2000-01-01                Australia         83.7
## 3353                  1995-01-01                Australia         80.8
## 3354                  1990-01-01                Australia         78.0
## 3355                  2015-01-01                Australia         89.8
## 3356                  2010-01-01                Australia         88.2
## 3357                  2005-01-01                Australia         86.2
## 3358                  2000-01-01                Australia         83.7
## 3359                  1995-01-01                Australia         80.8
## 3360                  1990-01-01                Australia         78.0
## 3361                  2015-01-01                Australia         89.8
## 3362                  2010-01-01                Australia         88.2
## 3363                  2005-01-01                Australia         86.2
## 3364                  2000-01-01                Australia         83.7
## 3365                  1995-01-01                Australia         80.8
## 3366                  1990-01-01                Australia         78.0
## 3367                  2015-01-01                Australia         89.8
## 3368                  2010-01-01                Australia         88.2
## 3369                  2005-01-01                Australia         86.2
## 3370                  2000-01-01                Australia         83.7
## 3371                  1995-01-01                Australia         80.8
## 3372                  1990-01-01                Australia         78.0
## 3373                  2015-01-01                Australia         89.8
## 3374                  2010-01-01                Australia         88.2
## 3375                  2005-01-01                Australia         86.2
## 3376                  2000-01-01                Australia         83.7
## 3377                  1995-01-01                Australia         80.8
## 3378                  1990-01-01                Australia         78.0
## 3379                  2015-01-01                Australia         89.8
## 3380                  2010-01-01                Australia         88.2
## 3381                  2005-01-01                Australia         86.2
## 3382                  2000-01-01                Australia         83.7
## 3383                  1995-01-01                Australia         80.8
## 3384                  1990-01-01                Australia         78.0
## 3385                  2015-01-01                Australia         89.8
## 3386                  2010-01-01                Australia         88.2
## 3387                  2005-01-01                Australia         86.2
## 3388                  2000-01-01                Australia         83.7
## 3389                  1995-01-01                Australia         80.8
## 3390                  1990-01-01                Australia         78.0
## 3391                  2015-01-01                Australia         89.8
## 3392                  2010-01-01                Australia         88.2
## 3393                  2005-01-01                Australia         86.2
## 3394                  2000-01-01                Australia         83.7
## 3395                  1995-01-01                Australia         80.8
## 3396                  1990-01-01                Australia         78.0
## 3397                  2015-01-01                Australia         89.8
## 3398                  2010-01-01                Australia         88.2
## 3399                  2005-01-01                Australia         86.2
## 3400                  2000-01-01                Australia         83.7
## 3401                  1995-01-01                Australia         80.8
## 3402                  1990-01-01                Australia         78.0
## 3403                  2015-01-01                Australia         89.8
## 3404                  2010-01-01                Australia         88.2
## 3405                  2005-01-01                Australia         86.2
## 3406                  2000-01-01                Australia         83.7
## 3407                  1995-01-01                Australia         80.8
## 3408                  1990-01-01                Australia         78.0
## 3409                  2015-01-01                Australia         89.8
## 3410                  2010-01-01                Australia         88.2
## 3411                  2005-01-01                Australia         86.2
## 3412                  2000-01-01                Australia         83.7
## 3413                  1995-01-01                Australia         80.8
## 3414                  1990-01-01                Australia         78.0
## 3415                  2015-01-01                Australia         89.8
## 3416                  2010-01-01                Australia         88.2
## 3417                  2005-01-01                Australia         86.2
## 3418                  2000-01-01                Australia         83.7
## 3419                  1995-01-01                Australia         80.8
## 3420                  1990-01-01                Australia         78.0
## 3421                  2015-01-01                Australia         89.8
## 3422                  2010-01-01                Australia         88.2
## 3423                  2005-01-01                Australia         86.2
## 3424                  2000-01-01                Australia         83.7
## 3425                  1995-01-01                Australia         80.8
## 3426                  1990-01-01                Australia         78.0
## 3427                  2015-01-01                Australia         89.8
## 3428                  2010-01-01                Australia         88.2
## 3429                  2005-01-01                Australia         86.2
## 3430                  2000-01-01                Australia         83.7
## 3431                  1995-01-01                Australia         80.8
## 3432                  1990-01-01                Australia         78.0
## 3433                  2015-01-01                Australia         89.8
## 3434                  2010-01-01                Australia         88.2
## 3435                  2005-01-01                Australia         86.2
## 3436                  2000-01-01                Australia         83.7
## 3437                  1995-01-01                Australia         80.8
## 3438                  1990-01-01                Australia         78.0
## 3439                  2015-01-01                Australia         89.8
## 3440                  2010-01-01                Australia         88.2
## 3441                  2005-01-01                Australia         86.2
## 3442                  2000-01-01                Australia         83.7
## 3443                  1995-01-01                Australia         80.8
## 3444                  1990-01-01                Australia         78.0
## 3445                  2015-01-01                Australia         89.8
## 3446                  2010-01-01                Australia         88.2
## 3447                  2005-01-01                Australia         86.2
## 3448                  2000-01-01                Australia         83.7
## 3449                  1995-01-01                Australia         80.8
## 3450                  1990-01-01                Australia         78.0
## 3451                  2015-01-01                Australia         89.8
## 3452                  2010-01-01                Australia         88.2
## 3453                  2005-01-01                Australia         86.2
## 3454                  2000-01-01                Australia         83.7
## 3455                  1995-01-01                Australia         80.8
## 3456                  1990-01-01                Australia         78.0
## 3457                  2015-01-01                Australia         89.8
## 3458                  2010-01-01                Australia         88.2
## 3459                  2005-01-01                Australia         86.2
## 3460                  2000-01-01                Australia         83.7
## 3461                  1995-01-01                Australia         80.8
## 3462                  1990-01-01                Australia         78.0
## 3463                  2015-01-01                Australia         89.8
## 3464                  2010-01-01                Australia         88.2
## 3465                  2005-01-01                Australia         86.2
## 3466                  2000-01-01                Australia         83.7
## 3467                  1995-01-01                Australia         80.8
## 3468                  1990-01-01                Australia         78.0
## 3469                  2015-01-01                Australia         89.8
## 3470                  2010-01-01                Australia         88.2
## 3471                  2005-01-01                Australia         86.2
## 3472                  2000-01-01                Australia         83.7
## 3473                  1995-01-01                Australia         80.8
## 3474                  1990-01-01                Australia         78.0
## 3475                  2015-01-01                Australia         89.8
## 3476                  2010-01-01                Australia         88.2
## 3477                  2005-01-01                Australia         86.2
## 3478                  2000-01-01                Australia         83.7
## 3479                  1995-01-01                Australia         80.8
## 3480                  1990-01-01                Australia         78.0
## 3481                  2015-01-01                Australia         89.8
## 3482                  2010-01-01                Australia         88.2
## 3483                  2005-01-01                Australia         86.2
## 3484                  2000-01-01                Australia         83.7
## 3485                  1995-01-01                Australia         80.8
## 3486                  1990-01-01                Australia         78.0
## 3487                  2015-01-01                Australia         89.8
## 3488                  2010-01-01                Australia         88.2
## 3489                  2005-01-01                Australia         86.2
## 3490                  2000-01-01                Australia         83.7
## 3491                  1995-01-01                Australia         80.8
## 3492                  1990-01-01                Australia         78.0
## 3493                  2015-01-01                Australia         89.8
## 3494                  2010-01-01                Australia         88.2
## 3495                  2005-01-01                Australia         86.2
## 3496                  2000-01-01                Australia         83.7
## 3497                  1995-01-01                Australia         80.8
## 3498                  1990-01-01                Australia         78.0
## 3499                  2015-01-01                Australia         89.8
## 3500                  2010-01-01                Australia         88.2
## 3501                  2005-01-01                Australia         86.2
## 3502                  2000-01-01                Australia         83.7
## 3503                  1995-01-01                Australia         80.8
## 3504                  1990-01-01                Australia         78.0
## 3505                  2015-01-01                Australia         89.8
## 3506                  2010-01-01                Australia         88.2
## 3507                  2005-01-01                Australia         86.2
## 3508                  2000-01-01                Australia         83.7
## 3509                  1995-01-01                Australia         80.8
## 3510                  1990-01-01                Australia         78.0
## 3511                  2015-01-01                Australia         89.8
## 3512                  2010-01-01                Australia         88.2
## 3513                  2005-01-01                Australia         86.2
## 3514                  2000-01-01                Australia         83.7
## 3515                  1995-01-01                Australia         80.8
## 3516                  1990-01-01                Australia         78.0
## 3517                  2015-01-01                Australia         89.8
## 3518                  2010-01-01                Australia         88.2
## 3519                  2005-01-01                Australia         86.2
## 3520                  2000-01-01                Australia         83.7
## 3521                  1995-01-01                Australia         80.8
## 3522                  1990-01-01                Australia         78.0
## 3523                  2015-01-01                Australia         89.8
## 3524                  2010-01-01                Australia         88.2
## 3525                  2005-01-01                Australia         86.2
## 3526                  2000-01-01                Australia         83.7
## 3527                  1995-01-01                Australia         80.8
## 3528                  1990-01-01                Australia         78.0
## 3529                  2015-01-01                Australia         89.8
## 3530                  2010-01-01                Australia         88.2
## 3531                  2005-01-01                Australia         86.2
## 3532                  2000-01-01                Australia         83.7
## 3533                  1995-01-01                Australia         80.8
## 3534                  1990-01-01                Australia         78.0
## 3535                  2015-01-01                Australia         89.8
## 3536                  2010-01-01                Australia         88.2
## 3537                  2005-01-01                Australia         86.2
## 3538                  2000-01-01                Australia         83.7
## 3539                  1995-01-01                Australia         80.8
## 3540                  1990-01-01                Australia         78.0
## 3541                  2015-01-01                Australia         89.8
## 3542                  2010-01-01                Australia         88.2
## 3543                  2005-01-01                Australia         86.2
## 3544                  2000-01-01                Australia         83.7
## 3545                  1995-01-01                Australia         80.8
## 3546                  1990-01-01                Australia         78.0
## 3547                  2015-01-01                Australia         89.8
## 3548                  2010-01-01                Australia         88.2
## 3549                  2005-01-01                Australia         86.2
## 3550                  2000-01-01                Australia         83.7
## 3551                  1995-01-01                Australia         80.8
## 3552                  1990-01-01                Australia         78.0
## 3553                  2015-01-01                Australia         89.8
## 3554                  2010-01-01                Australia         88.2
## 3555                  2005-01-01                Australia         86.2
## 3556                  2000-01-01                Australia         83.7
## 3557                  1995-01-01                Australia         80.8
## 3558                  1990-01-01                Australia         78.0
## 3559                  2015-01-01                Australia         89.8
## 3560                  2010-01-01                Australia         88.2
## 3561                  2005-01-01                Australia         86.2
## 3562                  2000-01-01                Australia         83.7
## 3563                  1995-01-01                Australia         80.8
## 3564                  1990-01-01                Australia         78.0
## 3565                  2015-01-01                Australia         89.8
## 3566                  2010-01-01                Australia         88.2
## 3567                  2005-01-01                Australia         86.2
## 3568                  2000-01-01                Australia         83.7
## 3569                  1995-01-01                Australia         80.8
## 3570                  1990-01-01                Australia         78.0
## 3571                  2015-01-01                Australia         89.8
## 3572                  2010-01-01                Australia         88.2
## 3573                  2005-01-01                Australia         86.2
## 3574                  2000-01-01                Australia         83.7
## 3575                  1995-01-01                Australia         80.8
## 3576                  1990-01-01                Australia         78.0
## 3577                  2015-01-01                Australia         89.8
## 3578                  2010-01-01                Australia         88.2
## 3579                  2005-01-01                Australia         86.2
## 3580                  2000-01-01                Australia         83.7
## 3581                  1995-01-01                Australia         80.8
## 3582                  1990-01-01                Australia         78.0
## 3583                  2015-01-01                Australia         89.8
## 3584                  2010-01-01                Australia         88.2
## 3585                  2005-01-01                Australia         86.2
## 3586                  2000-01-01                Australia         83.7
## 3587                  1995-01-01                Australia         80.8
## 3588                  1990-01-01                Australia         78.0
## 3589                  2015-01-01                Australia         89.8
## 3590                  2010-01-01                Australia         88.2
## 3591                  2005-01-01                Australia         86.2
## 3592                  2000-01-01                Australia         83.7
## 3593                  1995-01-01                Australia         80.8
## 3594                  1990-01-01                Australia         78.0
## 3595                  2015-01-01                Australia         89.8
## 3596                  2010-01-01                Australia         88.2
## 3597                  2005-01-01                Australia         86.2
## 3598                  2000-01-01                Australia         83.7
## 3599                  1995-01-01                Australia         80.8
## 3600                  1990-01-01                Australia         78.0
## 3601                  2015-01-01                Australia         89.8
## 3602                  2010-01-01                Australia         88.2
## 3603                  2005-01-01                Australia         86.2
## 3604                  2000-01-01                Australia         83.7
## 3605                  1995-01-01                Australia         80.8
## 3606                  1990-01-01                Australia         78.0
## 3607                  2015-01-01                Australia         89.8
## 3608                  2010-01-01                Australia         88.2
## 3609                  2005-01-01                Australia         86.2
## 3610                  2000-01-01                Australia         83.7
## 3611                  1995-01-01                Australia         80.8
## 3612                  1990-01-01                Australia         78.0
## 3613                  2015-01-01                Australia         89.8
## 3614                  2010-01-01                Australia         88.2
## 3615                  2005-01-01                Australia         86.2
## 3616                  2000-01-01                Australia         83.7
## 3617                  1995-01-01                Australia         80.8
## 3618                  1990-01-01                Australia         78.0
## 3619                  2015-01-01                Australia         89.8
## 3620                  2010-01-01                Australia         88.2
## 3621                  2005-01-01                Australia         86.2
## 3622                  2000-01-01                Australia         83.7
## 3623                  1995-01-01                Australia         80.8
## 3624                  1990-01-01                Australia         78.0
## 3625                  2015-01-01                Australia         89.8
## 3626                  2010-01-01                Australia         88.2
## 3627                  2005-01-01                Australia         86.2
## 3628                  2000-01-01                Australia         83.7
## 3629                  1995-01-01                Australia         80.8
## 3630                  1990-01-01                Australia         78.0
## 3631                  2015-01-01                Australia         89.8
## 3632                  2010-01-01                Australia         88.2
## 3633                  2005-01-01                Australia         86.2
## 3634                  2000-01-01                Australia         83.7
## 3635                  1995-01-01                Australia         80.8
## 3636                  1990-01-01                Australia         78.0
## 3637                  2015-01-01                Australia         89.8
## 3638                  2010-01-01                Australia         88.2
## 3639                  2005-01-01                Australia         86.2
## 3640                  2000-01-01                Australia         83.7
## 3641                  1995-01-01                Australia         80.8
## 3642                  1990-01-01                Australia         78.0
## 3643                  2015-01-01                Australia         89.8
## 3644                  2010-01-01                Australia         88.2
## 3645                  2005-01-01                Australia         86.2
## 3646                  2000-01-01                Australia         83.7
## 3647                  1995-01-01                Australia         80.8
## 3648                  1990-01-01                Australia         78.0
## 3649                  2015-01-01                Australia         89.8
## 3650                  2010-01-01                Australia         88.2
## 3651                  2005-01-01                Australia         86.2
## 3652                  2000-01-01                Australia         83.7
## 3653                  1995-01-01                Australia         80.8
## 3654                  1990-01-01                Australia         78.0
## 3655                  2015-01-01                Australia         89.8
## 3656                  2010-01-01                Australia         88.2
## 3657                  2005-01-01                Australia         86.2
## 3658                  2000-01-01                Australia         83.7
## 3659                  1995-01-01                Australia         80.8
## 3660                  1990-01-01                Australia         78.0
## 3661                  2015-01-01                Australia         89.8
## 3662                  2010-01-01                Australia         88.2
## 3663                  2005-01-01                Australia         86.2
## 3664                  2000-01-01                Australia         83.7
## 3665                  1995-01-01                Australia         80.8
## 3666                  1990-01-01                Australia         78.0
## 3667                  2015-01-01                Australia         89.8
## 3668                  2010-01-01                Australia         88.2
## 3669                  2005-01-01                Australia         86.2
## 3670                  2000-01-01                Australia         83.7
## 3671                  1995-01-01                Australia         80.8
## 3672                  1990-01-01                Australia         78.0
## 3673                  2015-01-01                Australia         89.8
## 3674                  2010-01-01                Australia         88.2
## 3675                  2005-01-01                Australia         86.2
## 3676                  2000-01-01                Australia         83.7
## 3677                  1995-01-01                Australia         80.8
## 3678                  1990-01-01                Australia         78.0
## 3679                  2015-01-01                Australia         89.8
## 3680                  2010-01-01                Australia         88.2
## 3681                  2005-01-01                Australia         86.2
## 3682                  2000-01-01                Australia         83.7
## 3683                  1995-01-01                Australia         80.8
## 3684                  1990-01-01                Australia         78.0
## 3685                  2015-01-01                Australia         89.8
## 3686                  2010-01-01                Australia         88.2
## 3687                  2005-01-01                Australia         86.2
## 3688                  2000-01-01                Australia         83.7
## 3689                  1995-01-01                Australia         80.8
## 3690                  1990-01-01                Australia         78.0
## 3691                  2015-01-01                Australia         89.8
## 3692                  2010-01-01                Australia         88.2
## 3693                  2005-01-01                Australia         86.2
## 3694                  2000-01-01                Australia         83.7
## 3695                  1995-01-01                Australia         80.8
## 3696                  1990-01-01                Australia         78.0
## 3697                  2015-01-01                Australia         89.8
## 3698                  2010-01-01                Australia         88.2
## 3699                  2005-01-01                Australia         86.2
## 3700                  2000-01-01                Australia         83.7
## 3701                  1995-01-01                Australia         80.8
## 3702                  1990-01-01                Australia         78.0
## 3703                  2015-01-01                Australia         89.8
## 3704                  2010-01-01                Australia         88.2
## 3705                  2005-01-01                Australia         86.2
## 3706                  2000-01-01                Australia         83.7
## 3707                  1995-01-01                Australia         80.8
## 3708                  1990-01-01                Australia         78.0
## 3709                  2015-01-01                Australia         89.8
## 3710                  2010-01-01                Australia         88.2
## 3711                  2005-01-01                Australia         86.2
## 3712                  2000-01-01                Australia         83.7
## 3713                  1995-01-01                Australia         80.8
## 3714                  1990-01-01                Australia         78.0
## 3715                  2015-01-01                Australia         89.8
## 3716                  2010-01-01                Australia         88.2
## 3717                  2005-01-01                Australia         86.2
## 3718                  2000-01-01                Australia         83.7
## 3719                  1995-01-01                Australia         80.8
## 3720                  1990-01-01                Australia         78.0
## 3721                  2015-01-01                Australia         89.8
## 3722                  2010-01-01                Australia         88.2
## 3723                  2005-01-01                Australia         86.2
## 3724                  2000-01-01                Australia         83.7
## 3725                  1995-01-01                Australia         80.8
## 3726                  1990-01-01                Australia         78.0
## 3727                  2015-01-01                Australia         89.8
## 3728                  2010-01-01                Australia         88.2
## 3729                  2005-01-01                Australia         86.2
## 3730                  2000-01-01                Australia         83.7
## 3731                  1995-01-01                Australia         80.8
## 3732                  1990-01-01                Australia         78.0
## 3733                  2015-01-01                Australia         89.8
## 3734                  2010-01-01                Australia         88.2
## 3735                  2005-01-01                Australia         86.2
## 3736                  2000-01-01                Australia         83.7
## 3737                  1995-01-01                Australia         80.8
## 3738                  1990-01-01                Australia         78.0
## 3739                  2015-01-01                Australia         89.8
## 3740                  2010-01-01                Australia         88.2
## 3741                  2005-01-01                Australia         86.2
## 3742                  2000-01-01                Australia         83.7
## 3743                  1995-01-01                Australia         80.8
## 3744                  1990-01-01                Australia         78.0
## 3745                  2015-01-01                Australia         89.8
## 3746                  2010-01-01                Australia         88.2
## 3747                  2005-01-01                Australia         86.2
## 3748                  2000-01-01                Australia         83.7
## 3749                  1995-01-01                Australia         80.8
## 3750                  1990-01-01                Australia         78.0
## 3751                  2015-01-01                Australia         89.8
## 3752                  2010-01-01                Australia         88.2
## 3753                  2005-01-01                Australia         86.2
## 3754                  2000-01-01                Australia         83.7
## 3755                  1995-01-01                Australia         80.8
## 3756                  1990-01-01                Australia         78.0
## 3757                  2015-01-01                Australia         89.8
## 3758                  2010-01-01                Australia         88.2
## 3759                  2005-01-01                Australia         86.2
## 3760                  2000-01-01                Australia         83.7
## 3761                  1995-01-01                Australia         80.8
## 3762                  1990-01-01                Australia         78.0
## 3763                  2015-01-01                Australia         89.8
## 3764                  2010-01-01                Australia         88.2
## 3765                  2005-01-01                Australia         86.2
## 3766                  2000-01-01                Australia         83.7
## 3767                  1995-01-01                Australia         80.8
## 3768                  1990-01-01                Australia         78.0
## 3769                  2015-01-01                Australia         89.8
## 3770                  2010-01-01                Australia         88.2
## 3771                  2005-01-01                Australia         86.2
## 3772                  2000-01-01                Australia         83.7
## 3773                  1995-01-01                Australia         80.8
## 3774                  1990-01-01                Australia         78.0
## 3775                  2015-01-01                Australia         89.8
## 3776                  2010-01-01                Australia         88.2
## 3777                  2005-01-01                Australia         86.2
## 3778                  2000-01-01                Australia         83.7
## 3779                  1995-01-01                Australia         80.8
## 3780                  1990-01-01                Australia         78.0
## 3781                  2015-01-01                Australia         89.8
## 3782                  2010-01-01                Australia         88.2
## 3783                  2005-01-01                Australia         86.2
## 3784                  2000-01-01                Australia         83.7
## 3785                  1995-01-01                Australia         80.8
## 3786                  1990-01-01                Australia         78.0
## 3787                  2015-01-01                Australia         89.8
## 3788                  2010-01-01                Australia         88.2
## 3789                  2005-01-01                Australia         86.2
## 3790                  2000-01-01                Australia         83.7
## 3791                  1995-01-01                Australia         80.8
## 3792                  1990-01-01                Australia         78.0
## 3793                  2015-01-01                Australia         89.8
## 3794                  2010-01-01                Australia         88.2
## 3795                  2005-01-01                Australia         86.2
## 3796                  2000-01-01                Australia         83.7
## 3797                  1995-01-01                Australia         80.8
## 3798                  1990-01-01                Australia         78.0
## 3799                  2015-01-01                Australia         89.8
## 3800                  2010-01-01                Australia         88.2
## 3801                  2005-01-01                Australia         86.2
## 3802                  2000-01-01                Australia         83.7
## 3803                  1995-01-01                Australia         80.8
## 3804                  1990-01-01                Australia         78.0
## 3805                  2015-01-01                Australia         89.8
## 3806                  2010-01-01                Australia         88.2
## 3807                  2005-01-01                Australia         86.2
## 3808                  2000-01-01                Australia         83.7
## 3809                  1995-01-01                Australia         80.8
## 3810                  1990-01-01                Australia         78.0
## 3811                  2015-01-01                Australia         89.8
## 3812                  2010-01-01                Australia         88.2
## 3813                  2005-01-01                Australia         86.2
## 3814                  2000-01-01                Australia         83.7
## 3815                  1995-01-01                Australia         80.8
## 3816                  1990-01-01                Australia         78.0
## 3817                  2015-01-01                Australia         89.8
## 3818                  2010-01-01                Australia         88.2
## 3819                  2005-01-01                Australia         86.2
## 3820                  2000-01-01                Australia         83.7
## 3821                  1995-01-01                Australia         80.8
## 3822                  1990-01-01                Australia         78.0
## 3823                  2015-01-01                Australia         89.8
## 3824                  2010-01-01                Australia         88.2
## 3825                  2005-01-01                Australia         86.2
## 3826                  2000-01-01                Australia         83.7
## 3827                  1995-01-01                Australia         80.8
## 3828                  1990-01-01                Australia         78.0
## 3829                  2015-01-01                Australia         89.8
## 3830                  2010-01-01                Australia         88.2
## 3831                  2005-01-01                Australia         86.2
## 3832                  2000-01-01                Australia         83.7
## 3833                  1995-01-01                Australia         80.8
## 3834                  1990-01-01                Australia         78.0
## 3835                  2015-01-01                Australia         89.8
## 3836                  2010-01-01                Australia         88.2
## 3837                  2005-01-01                Australia         86.2
## 3838                  2000-01-01                Australia         83.7
## 3839                  1995-01-01                Australia         80.8
## 3840                  1990-01-01                Australia         78.0
## 3841                  2015-01-01                Australia         89.8
## 3842                  2010-01-01                Australia         88.2
## 3843                  2005-01-01                Australia         86.2
## 3844                  2000-01-01                Australia         83.7
## 3845                  1995-01-01                Australia         80.8
## 3846                  1990-01-01                Australia         78.0
## 3847                  2015-01-01                Australia         89.8
## 3848                  2010-01-01                Australia         88.2
## 3849                  2005-01-01                Australia         86.2
## 3850                  2000-01-01                Australia         83.7
## 3851                  1995-01-01                Australia         80.8
## 3852                  1990-01-01                Australia         78.0
## 3853                  2015-01-01                Australia         89.8
## 3854                  2010-01-01                Australia         88.2
## 3855                  2005-01-01                Australia         86.2
## 3856                  2000-01-01                Australia         83.7
## 3857                  1995-01-01                Australia         80.8
## 3858                  1990-01-01                Australia         78.0
## 3859                  2015-01-01                Australia         89.8
## 3860                  2010-01-01                Australia         88.2
## 3861                  2005-01-01                Australia         86.2
## 3862                  2000-01-01                Australia         83.7
## 3863                  1995-01-01                Australia         80.8
## 3864                  1990-01-01                Australia         78.0
## 3865                  2015-01-01                Australia         89.8
## 3866                  2010-01-01                Australia         88.2
## 3867                  2005-01-01                Australia         86.2
## 3868                  2000-01-01                Australia         83.7
## 3869                  1995-01-01                Australia         80.8
## 3870                  1990-01-01                Australia         78.0
## 3871                  2015-01-01                Australia         89.8
## 3872                  2010-01-01                Australia         88.2
## 3873                  2005-01-01                Australia         86.2
## 3874                  2000-01-01                Australia         83.7
## 3875                  1995-01-01                Australia         80.8
## 3876                  1990-01-01                Australia         78.0
## 3877                  2015-01-01                Australia         89.8
## 3878                  2010-01-01                Australia         88.2
## 3879                  2005-01-01                Australia         86.2
## 3880                  2000-01-01                Australia         83.7
## 3881                  1995-01-01                Australia         80.8
## 3882                  1990-01-01                Australia         78.0
## 3883                  2015-01-01                Australia         89.8
## 3884                  2010-01-01                Australia         88.2
## 3885                  2005-01-01                Australia         86.2
## 3886                  2000-01-01                Australia         83.7
## 3887                  1995-01-01                Australia         80.8
## 3888                  1990-01-01                Australia         78.0
## 3889                  2015-01-01                Australia         89.8
## 3890                  2010-01-01                Australia         88.2
## 3891                  2005-01-01                Australia         86.2
## 3892                  2000-01-01                Australia         83.7
## 3893                  1995-01-01                Australia         80.8
## 3894                  1990-01-01                Australia         78.0
## 3895                  2015-01-01                Australia         89.8
## 3896                  2010-01-01                Australia         88.2
## 3897                  2005-01-01                Australia         86.2
## 3898                  2000-01-01                Australia         83.7
## 3899                  1995-01-01                Australia         80.8
## 3900                  1990-01-01                Australia         78.0
## 3901                  2015-01-01                Australia         89.8
## 3902                  2010-01-01                Australia         88.2
## 3903                  2005-01-01                Australia         86.2
## 3904                  2000-01-01                Australia         83.7
## 3905                  1995-01-01                Australia         80.8
## 3906                  1990-01-01                Australia         78.0
## 3907                  2015-01-01                Australia         89.8
## 3908                  2010-01-01                Australia         88.2
## 3909                  2005-01-01                Australia         86.2
## 3910                  2000-01-01                Australia         83.7
## 3911                  1995-01-01                Australia         80.8
## 3912                  1990-01-01                Australia         78.0
## 3913                  2015-01-01                Australia         89.8
## 3914                  2010-01-01                Australia         88.2
## 3915                  2005-01-01                Australia         86.2
## 3916                  2000-01-01                Australia         83.7
## 3917                  1995-01-01                Australia         80.8
## 3918                  1990-01-01                Australia         78.0
## 3919                  2015-01-01                Australia         89.8
## 3920                  2010-01-01                Australia         88.2
## 3921                  2005-01-01                Australia         86.2
## 3922                  2000-01-01                Australia         83.7
## 3923                  1995-01-01                Australia         80.8
## 3924                  1990-01-01                Australia         78.0
## 3925                  2015-01-01                Australia         89.8
## 3926                  2010-01-01                Australia         88.2
## 3927                  2005-01-01                Australia         86.2
## 3928                  2000-01-01                Australia         83.7
## 3929                  1995-01-01                Australia         80.8
## 3930                  1990-01-01                Australia         78.0
## 3931                  2015-01-01                Australia         89.8
## 3932                  2010-01-01                Australia         88.2
## 3933                  2005-01-01                Australia         86.2
## 3934                  2000-01-01                Australia         83.7
## 3935                  1995-01-01                Australia         80.8
## 3936                  1990-01-01                Australia         78.0
## 3937                  2015-01-01                Australia         89.8
## 3938                  2010-01-01                Australia         88.2
## 3939                  2005-01-01                Australia         86.2
## 3940                  2000-01-01                Australia         83.7
## 3941                  1995-01-01                Australia         80.8
## 3942                  1990-01-01                Australia         78.0
## 3943                  2015-01-01                Australia         89.8
## 3944                  2010-01-01                Australia         88.2
## 3945                  2005-01-01                Australia         86.2
## 3946                  2000-01-01                Australia         83.7
## 3947                  1995-01-01                Australia         80.8
## 3948                  1990-01-01                Australia         78.0
## 3949                  2015-01-01                Australia         89.8
## 3950                  2010-01-01                Australia         88.2
## 3951                  2005-01-01                Australia         86.2
## 3952                  2000-01-01                Australia         83.7
## 3953                  1995-01-01                Australia         80.8
## 3954                  1990-01-01                Australia         78.0
## 3955                  2015-01-01                Australia         89.8
## 3956                  2010-01-01                Australia         88.2
## 3957                  2005-01-01                Australia         86.2
## 3958                  2000-01-01                Australia         83.7
## 3959                  1995-01-01                Australia         80.8
## 3960                  1990-01-01                Australia         78.0
## 3961                  2015-01-01                Australia         89.8
## 3962                  2010-01-01                Australia         88.2
## 3963                  2005-01-01                Australia         86.2
## 3964                  2000-01-01                Australia         83.7
## 3965                  1995-01-01                Australia         80.8
## 3966                  1990-01-01                Australia         78.0
## 3967                  2015-01-01                Australia         89.8
## 3968                  2010-01-01                Australia         88.2
## 3969                  2005-01-01                Australia         86.2
## 3970                  2000-01-01                Australia         83.7
## 3971                  1995-01-01                Australia         80.8
## 3972                  1990-01-01                Australia         78.0
## 3973                  2015-01-01                Australia         89.8
## 3974                  2010-01-01                Australia         88.2
## 3975                  2005-01-01                Australia         86.2
## 3976                  2000-01-01                Australia         83.7
## 3977                  1995-01-01                Australia         80.8
## 3978                  1990-01-01                Australia         78.0
## 3979                  2015-01-01                Australia         89.8
## 3980                  2010-01-01                Australia         88.2
## 3981                  2005-01-01                Australia         86.2
## 3982                  2000-01-01                Australia         83.7
## 3983                  1995-01-01                Australia         80.8
## 3984                  1990-01-01                Australia         78.0
## 3985                  2015-01-01                Australia         89.8
## 3986                  2010-01-01                Australia         88.2
## 3987                  2005-01-01                Australia         86.2
## 3988                  2000-01-01                Australia         83.7
## 3989                  1995-01-01                Australia         80.8
## 3990                  1990-01-01                Australia         78.0
## 3991                  2015-01-01                Australia         89.8
## 3992                  2010-01-01                Australia         88.2
## 3993                  2005-01-01                Australia         86.2
## 3994                  2000-01-01                Australia         83.7
## 3995                  1995-01-01                Australia         80.8
## 3996                  1990-01-01                Australia         78.0
## 3997                  2015-01-01                Australia         89.8
## 3998                  2010-01-01                Australia         88.2
## 3999                  2005-01-01                Australia         86.2
## 4000                  2000-01-01                Australia         83.7
## 4001                  1995-01-01                Australia         80.8
## 4002                  1990-01-01                Australia         78.0
## 4003                  2015-01-01                Australia         89.8
## 4004                  2010-01-01                Australia         88.2
## 4005                  2005-01-01                Australia         86.2
## 4006                  2000-01-01                Australia         83.7
## 4007                  1995-01-01                Australia         80.8
## 4008                  1990-01-01                Australia         78.0
## 4009                  2015-01-01                Australia         89.8
## 4010                  2010-01-01                Australia         88.2
## 4011                  2005-01-01                Australia         86.2
## 4012                  2000-01-01                Australia         83.7
## 4013                  1995-01-01                Australia         80.8
## 4014                  1990-01-01                Australia         78.0
## 4015                  2015-01-01                Australia         89.8
## 4016                  2010-01-01                Australia         88.2
## 4017                  2005-01-01                Australia         86.2
## 4018                  2000-01-01                Australia         83.7
## 4019                  1995-01-01                Australia         80.8
## 4020                  1990-01-01                Australia         78.0
## 4021                  2015-01-01                Australia         89.8
## 4022                  2010-01-01                Australia         88.2
## 4023                  2005-01-01                Australia         86.2
## 4024                  2000-01-01                Australia         83.7
## 4025                  1995-01-01                Australia         80.8
## 4026                  1990-01-01                Australia         78.0
## 4027                  2015-01-01                Australia         89.8
## 4028                  2010-01-01                Australia         88.2
## 4029                  2005-01-01                Australia         86.2
## 4030                  2000-01-01                Australia         83.7
## 4031                  1995-01-01                Australia         80.8
## 4032                  1990-01-01                Australia         78.0
## 4033                  2015-01-01                Australia         89.8
## 4034                  2010-01-01                Australia         88.2
## 4035                  2005-01-01                Australia         86.2
## 4036                  2000-01-01                Australia         83.7
## 4037                  1995-01-01                Australia         80.8
## 4038                  1990-01-01                Australia         78.0
## 4039                  2015-01-01                Australia         89.8
## 4040                  2010-01-01                Australia         88.2
## 4041                  2005-01-01                Australia         86.2
## 4042                  2000-01-01                Australia         83.7
## 4043                  1995-01-01                Australia         80.8
## 4044                  1990-01-01                Australia         78.0
## 4045                  2015-01-01                Australia         89.8
## 4046                  2010-01-01                Australia         88.2
## 4047                  2005-01-01                Australia         86.2
## 4048                  2000-01-01                Australia         83.7
## 4049                  1995-01-01                Australia         80.8
## 4050                  1990-01-01                Australia         78.0
## 4051                  2015-01-01                Australia         89.8
## 4052                  2010-01-01                Australia         88.2
## 4053                  2005-01-01                Australia         86.2
## 4054                  2000-01-01                Australia         83.7
## 4055                  1995-01-01                Australia         80.8
## 4056                  1990-01-01                Australia         78.0
## 4057                  2015-01-01                Australia         89.8
## 4058                  2010-01-01                Australia         88.2
## 4059                  2005-01-01                Australia         86.2
## 4060                  2000-01-01                Australia         83.7
## 4061                  1995-01-01                Australia         80.8
## 4062                  1990-01-01                Australia         78.0
## 4063                  2015-01-01                Australia         89.8
## 4064                  2010-01-01                Australia         88.2
## 4065                  2005-01-01                Australia         86.2
## 4066                  2000-01-01                Australia         83.7
## 4067                  1995-01-01                Australia         80.8
## 4068                  1990-01-01                Australia         78.0
## 4069                  2015-01-01                Australia         89.8
## 4070                  2010-01-01                Australia         88.2
## 4071                  2005-01-01                Australia         86.2
## 4072                  2000-01-01                Australia         83.7
## 4073                  1995-01-01                Australia         80.8
## 4074                  1990-01-01                Australia         78.0
## 4075                  2015-01-01                Australia         89.8
## 4076                  2010-01-01                Australia         88.2
## 4077                  2005-01-01                Australia         86.2
## 4078                  2000-01-01                Australia         83.7
## 4079                  1995-01-01                Australia         80.8
## 4080                  1990-01-01                Australia         78.0
## 4081                  2015-01-01                Australia         89.8
## 4082                  2010-01-01                Australia         88.2
## 4083                  2005-01-01                Australia         86.2
## 4084                  2000-01-01                Australia         83.7
## 4085                  1995-01-01                Australia         80.8
## 4086                  1990-01-01                Australia         78.0
## 4087                  2015-01-01                Australia         89.8
## 4088                  2010-01-01                Australia         88.2
## 4089                  2005-01-01                Australia         86.2
## 4090                  2000-01-01                Australia         83.7
## 4091                  1995-01-01                Australia         80.8
## 4092                  1990-01-01                Australia         78.0
## 4093                  2015-01-01                Australia         89.8
## 4094                  2010-01-01                Australia         88.2
## 4095                  2005-01-01                Australia         86.2
## 4096                  2000-01-01                Australia         83.7
## 4097                  1995-01-01                Australia         80.8
## 4098                  1990-01-01                Australia         78.0
## 4099                  2015-01-01                Australia         89.8
## 4100                  2010-01-01                Australia         88.2
## 4101                  2005-01-01                Australia         86.2
## 4102                  2000-01-01                Australia         83.7
## 4103                  1995-01-01                Australia         80.8
## 4104                  1990-01-01                Australia         78.0
## 4105                  2015-01-01                Australia         89.8
## 4106                  2010-01-01                Australia         88.2
## 4107                  2005-01-01                Australia         86.2
## 4108                  2000-01-01                Australia         83.7
## 4109                  1995-01-01                Australia         80.8
## 4110                  1990-01-01                Australia         78.0
## 4111                  2015-01-01                Australia         89.8
## 4112                  2010-01-01                Australia         88.2
## 4113                  2005-01-01                Australia         86.2
## 4114                  2000-01-01                Australia         83.7
## 4115                  1995-01-01                Australia         80.8
## 4116                  1990-01-01                Australia         78.0
## 4117                  2015-01-01                Australia         89.8
## 4118                  2010-01-01                Australia         88.2
## 4119                  2005-01-01                Australia         86.2
## 4120                  2000-01-01                Australia         83.7
## 4121                  1995-01-01                Australia         80.8
## 4122                  1990-01-01                Australia         78.0
## 4123                  2015-01-01                Australia         89.8
## 4124                  2010-01-01                Australia         88.2
## 4125                  2005-01-01                Australia         86.2
## 4126                  2000-01-01                Australia         83.7
## 4127                  1995-01-01                Australia         80.8
## 4128                  1990-01-01                Australia         78.0
## 4129                  2015-01-01                Australia         89.8
## 4130                  2010-01-01                Australia         88.2
## 4131                  2005-01-01                Australia         86.2
## 4132                  2000-01-01                Australia         83.7
## 4133                  1995-01-01                Australia         80.8
## 4134                  1990-01-01                Australia         78.0
## 4135                  2015-01-01                Australia         89.8
## 4136                  2010-01-01                Australia         88.2
## 4137                  2005-01-01                Australia         86.2
## 4138                  2000-01-01                Australia         83.7
## 4139                  1995-01-01                Australia         80.8
## 4140                  1990-01-01                Australia         78.0
## 4141                  2015-01-01                Australia         89.8
## 4142                  2010-01-01                Australia         88.2
## 4143                  2005-01-01                Australia         86.2
## 4144                  2000-01-01                Australia         83.7
## 4145                  1995-01-01                Australia         80.8
## 4146                  1990-01-01                Australia         78.0
## 4147                  2015-01-01                Australia         89.8
## 4148                  2010-01-01                Australia         88.2
## 4149                  2005-01-01                Australia         86.2
## 4150                  2000-01-01                Australia         83.7
## 4151                  1995-01-01                Australia         80.8
## 4152                  1990-01-01                Australia         78.0
## 4153                  2015-01-01                Australia         89.8
## 4154                  2010-01-01                Australia         88.2
## 4155                  2005-01-01                Australia         86.2
## 4156                  2000-01-01                Australia         83.7
## 4157                  1995-01-01                Australia         80.8
## 4158                  1990-01-01                Australia         78.0
## 4159                  2015-01-01                Australia         89.8
## 4160                  2010-01-01                Australia         88.2
## 4161                  2005-01-01                Australia         86.2
## 4162                  2000-01-01                Australia         83.7
## 4163                  1995-01-01                Australia         80.8
## 4164                  1990-01-01                Australia         78.0
## 4165                  2015-01-01                Australia         89.8
## 4166                  2010-01-01                Australia         88.2
## 4167                  2005-01-01                Australia         86.2
## 4168                  2000-01-01                Australia         83.7
## 4169                  1995-01-01                Australia         80.8
## 4170                  1990-01-01                Australia         78.0
## 4171                  2015-01-01                Australia         89.8
## 4172                  2010-01-01                Australia         88.2
## 4173                  2005-01-01                Australia         86.2
## 4174                  2000-01-01                Australia         83.7
## 4175                  1995-01-01                Australia         80.8
## 4176                  1990-01-01                Australia         78.0
## 4177                  2015-01-01                Australia         89.8
## 4178                  2010-01-01                Australia         88.2
## 4179                  2005-01-01                Australia         86.2
## 4180                  2000-01-01                Australia         83.7
## 4181                  1995-01-01                Australia         80.8
## 4182                  1990-01-01                Australia         78.0
## 4183                  2015-01-01                Australia         89.8
## 4184                  2010-01-01                Australia         88.2
## 4185                  2005-01-01                Australia         86.2
## 4186                  2000-01-01                Australia         83.7
## 4187                  1995-01-01                Australia         80.8
## 4188                  1990-01-01                Australia         78.0
## 4189                  2015-01-01                Australia         89.8
## 4190                  2010-01-01                Australia         88.2
## 4191                  2005-01-01                Australia         86.2
## 4192                  2000-01-01                Australia         83.7
## 4193                  1995-01-01                Australia         80.8
## 4194                  1990-01-01                Australia         78.0
## 4195                  2015-01-01                Australia         89.8
## 4196                  2010-01-01                Australia         88.2
## 4197                  2005-01-01                Australia         86.2
## 4198                  2000-01-01                Australia         83.7
## 4199                  1995-01-01                Australia         80.8
## 4200                  1990-01-01                Australia         78.0
## 4201                  2015-01-01                Australia         89.8
## 4202                  2010-01-01                Australia         88.2
## 4203                  2005-01-01                Australia         86.2
## 4204                  2000-01-01                Australia         83.7
## 4205                  1995-01-01                Australia         80.8
## 4206                  1990-01-01                Australia         78.0
## 4207                  2015-01-01                Australia         89.8
## 4208                  2010-01-01                Australia         88.2
## 4209                  2005-01-01                Australia         86.2
## 4210                  2000-01-01                Australia         83.7
## 4211                  1995-01-01                Australia         80.8
## 4212                  1990-01-01                Australia         78.0
## 4213                  2015-01-01                Australia         89.8
## 4214                  2010-01-01                Australia         88.2
## 4215                  2005-01-01                Australia         86.2
## 4216                  2000-01-01                Australia         83.7
## 4217                  1995-01-01                Australia         80.8
## 4218                  1990-01-01                Australia         78.0
## 4219                  2015-01-01                Australia         89.8
## 4220                  2010-01-01                Australia         88.2
## 4221                  2005-01-01                Australia         86.2
## 4222                  2000-01-01                Australia         83.7
## 4223                  1995-01-01                Australia         80.8
## 4224                  1990-01-01                Australia         78.0
## 4225                  2015-01-01                Australia         89.8
## 4226                  2010-01-01                Australia         88.2
## 4227                  2005-01-01                Australia         86.2
## 4228                  2000-01-01                Australia         83.7
## 4229                  1995-01-01                Australia         80.8
## 4230                  1990-01-01                Australia         78.0
## 4231                  2015-01-01                Australia         89.8
## 4232                  2010-01-01                Australia         88.2
## 4233                  2005-01-01                Australia         86.2
## 4234                  2000-01-01                Australia         83.7
## 4235                  1995-01-01                Australia         80.8
## 4236                  1990-01-01                Australia         78.0
## 4237                  2015-01-01                Australia         89.8
## 4238                  2010-01-01                Australia         88.2
## 4239                  2005-01-01                Australia         86.2
## 4240                  2000-01-01                Australia         83.7
## 4241                  1995-01-01                Australia         80.8
## 4242                  1990-01-01                Australia         78.0
## 4243                  2015-01-01                Australia         89.8
## 4244                  2010-01-01                Australia         88.2
## 4245                  2005-01-01                Australia         86.2
## 4246                  2000-01-01                Australia         83.7
## 4247                  1995-01-01                Australia         80.8
## 4248                  1990-01-01                Australia         78.0
## 4249                  2015-01-01                Australia         89.8
## 4250                  2010-01-01                Australia         88.2
## 4251                  2005-01-01                Australia         86.2
## 4252                  2000-01-01                Australia         83.7
## 4253                  1995-01-01                Australia         80.8
## 4254                  1990-01-01                Australia         78.0
## 4255                  2015-01-01                Australia         89.8
## 4256                  2010-01-01                Australia         88.2
## 4257                  2005-01-01                Australia         86.2
## 4258                  2000-01-01                Australia         83.7
## 4259                  1995-01-01                Australia         80.8
## 4260                  1990-01-01                Australia         78.0
## 4261                  2015-01-01                Australia         89.8
## 4262                  2010-01-01                Australia         88.2
## 4263                  2005-01-01                Australia         86.2
## 4264                  2000-01-01                Australia         83.7
## 4265                  1995-01-01                Australia         80.8
## 4266                  1990-01-01                Australia         78.0
## 4267                  2015-01-01                Australia         89.8
## 4268                  2010-01-01                Australia         88.2
## 4269                  2005-01-01                Australia         86.2
## 4270                  2000-01-01                Australia         83.7
## 4271                  1995-01-01                Australia         80.8
## 4272                  1990-01-01                Australia         78.0
## 4273                  2015-01-01                Australia         89.8
## 4274                  2010-01-01                Australia         88.2
## 4275                  2005-01-01                Australia         86.2
## 4276                  2000-01-01                Australia         83.7
## 4277                  1995-01-01                Australia         80.8
## 4278                  1990-01-01                Australia         78.0
## 4279                  2015-01-01                Australia         89.8
## 4280                  2010-01-01                Australia         88.2
## 4281                  2005-01-01                Australia         86.2
## 4282                  2000-01-01                Australia         83.7
## 4283                  1995-01-01                Australia         80.8
## 4284                  1990-01-01                Australia         78.0
## 4285                  2015-01-01                Australia         89.8
## 4286                  2010-01-01                Australia         88.2
## 4287                  2005-01-01                Australia         86.2
## 4288                  2000-01-01                Australia         83.7
## 4289                  1995-01-01                Australia         80.8
## 4290                  1990-01-01                Australia         78.0
## 4291                  2015-01-01                Australia         89.8
## 4292                  2010-01-01                Australia         88.2
## 4293                  2005-01-01                Australia         86.2
## 4294                  2000-01-01                Australia         83.7
## 4295                  1995-01-01                Australia         80.8
## 4296                  1990-01-01                Australia         78.0
## 4297                  2015-01-01                Australia         89.8
## 4298                  2010-01-01                Australia         88.2
## 4299                  2005-01-01                Australia         86.2
## 4300                  2000-01-01                Australia         83.7
## 4301                  1995-01-01                Australia         80.8
## 4302                  1990-01-01                Australia         78.0
## 4303                  2015-01-01                Australia         89.8
## 4304                  2010-01-01                Australia         88.2
## 4305                  2005-01-01                Australia         86.2
## 4306                  2000-01-01                Australia         83.7
## 4307                  1995-01-01                Australia         80.8
## 4308                  1990-01-01                Australia         78.0
## 4309                  2015-01-01                Australia         89.8
## 4310                  2010-01-01                Australia         88.2
## 4311                  2005-01-01                Australia         86.2
## 4312                  2000-01-01                Australia         83.7
## 4313                  1995-01-01                Australia         80.8
## 4314                  1990-01-01                Australia         78.0
## 4315                  2015-01-01                Australia         89.8
## 4316                  2010-01-01                Australia         88.2
## 4317                  2005-01-01                Australia         86.2
## 4318                  2000-01-01                Australia         83.7
## 4319                  1995-01-01                Australia         80.8
## 4320                  1990-01-01                Australia         78.0
## 4321                  2015-01-01                Australia         89.8
## 4322                  2010-01-01                Australia         88.2
## 4323                  2005-01-01                Australia         86.2
## 4324                  2000-01-01                Australia         83.7
## 4325                  1995-01-01                Australia         80.8
## 4326                  1990-01-01                Australia         78.0
## 4327                  2015-01-01                Australia         89.8
## 4328                  2010-01-01                Australia         88.2
## 4329                  2005-01-01                Australia         86.2
## 4330                  2000-01-01                Australia         83.7
## 4331                  1995-01-01                Australia         80.8
## 4332                  1990-01-01                Australia         78.0
## 4333                  2015-01-01                Australia         89.8
## 4334                  2010-01-01                Australia         88.2
## 4335                  2005-01-01                Australia         86.2
## 4336                  2000-01-01                Australia         83.7
## 4337                  1995-01-01                Australia         80.8
## 4338                  1990-01-01                Australia         78.0
## 4339                  2015-01-01                Australia         89.8
## 4340                  2010-01-01                Australia         88.2
## 4341                  2005-01-01                Australia         86.2
## 4342                  2000-01-01                Australia         83.7
## 4343                  1995-01-01                Australia         80.8
## 4344                  1990-01-01                Australia         78.0
## 4345                  2015-01-01                Australia         89.8
## 4346                  2010-01-01                Australia         88.2
## 4347                  2005-01-01                Australia         86.2
## 4348                  2000-01-01                Australia         83.7
## 4349                  1995-01-01                Australia         80.8
## 4350                  1990-01-01                Australia         78.0
## 4351                  2015-01-01                Australia         89.8
## 4352                  2010-01-01                Australia         88.2
## 4353                  2005-01-01                Australia         86.2
## 4354                  2000-01-01                Australia         83.7
## 4355                  1995-01-01                Australia         80.8
## 4356                  1990-01-01                Australia         78.0
## 4357                  2015-01-01                Australia         89.8
## 4358                  2010-01-01                Australia         88.2
## 4359                  2005-01-01                Australia         86.2
## 4360                  2000-01-01                Australia         83.7
## 4361                  1995-01-01                Australia         80.8
## 4362                  1990-01-01                Australia         78.0
## 4363                  2015-01-01                Australia         89.8
## 4364                  2010-01-01                Australia         88.2
## 4365                  2005-01-01                Australia         86.2
## 4366                  2000-01-01                Australia         83.7
## 4367                  1995-01-01                Australia         80.8
## 4368                  1990-01-01                Australia         78.0
## 4369                  2015-01-01                Australia         89.8
## 4370                  2010-01-01                Australia         88.2
## 4371                  2005-01-01                Australia         86.2
## 4372                  2000-01-01                Australia         83.7
## 4373                  1995-01-01                Australia         80.8
## 4374                  1990-01-01                Australia         78.0
## 4375                  2015-01-01                Australia         89.8
## 4376                  2010-01-01                Australia         88.2
## 4377                  2005-01-01                Australia         86.2
## 4378                  2000-01-01                Australia         83.7
## 4379                  1995-01-01                Australia         80.8
## 4380                  1990-01-01                Australia         78.0
## 4381                  2015-01-01                Australia         89.8
## 4382                  2010-01-01                Australia         88.2
## 4383                  2005-01-01                Australia         86.2
## 4384                  2000-01-01                Australia         83.7
## 4385                  1995-01-01                Australia         80.8
## 4386                  1990-01-01                Australia         78.0
## 4387                  2015-01-01                Australia         89.8
## 4388                  2010-01-01                Australia         88.2
## 4389                  2005-01-01                Australia         86.2
## 4390                  2000-01-01                Australia         83.7
## 4391                  1995-01-01                Australia         80.8
## 4392                  1990-01-01                Australia         78.0
## 4393                  2015-01-01                Australia         89.8
## 4394                  2010-01-01                Australia         88.2
## 4395                  2005-01-01                Australia         86.2
## 4396                  2000-01-01                Australia         83.7
## 4397                  1995-01-01                Australia         80.8
## 4398                  1990-01-01                Australia         78.0
## 4399                  2015-01-01                Australia         89.8
## 4400                  2010-01-01                Australia         88.2
## 4401                  2005-01-01                Australia         86.2
## 4402                  2000-01-01                Australia         83.7
## 4403                  1995-01-01                Australia         80.8
## 4404                  1990-01-01                Australia         78.0
## 4405                  2015-01-01                Australia         89.8
## 4406                  2010-01-01                Australia         88.2
## 4407                  2005-01-01                Australia         86.2
## 4408                  2000-01-01                Australia         83.7
## 4409                  1995-01-01                Australia         80.8
## 4410                  1990-01-01                Australia         78.0
## 4411                  2015-01-01                Australia         89.8
## 4412                  2010-01-01                Australia         88.2
## 4413                  2005-01-01                Australia         86.2
## 4414                  2000-01-01                Australia         83.7
## 4415                  1995-01-01                Australia         80.8
## 4416                  1990-01-01                Australia         78.0
## 4417                  2015-01-01                Australia         89.8
## 4418                  2010-01-01                Australia         88.2
## 4419                  2005-01-01                Australia         86.2
## 4420                  2000-01-01                Australia         83.7
## 4421                  1995-01-01                Australia         80.8
## 4422                  1990-01-01                Australia         78.0
## 4423                  2015-01-01                Australia         89.8
## 4424                  2010-01-01                Australia         88.2
## 4425                  2005-01-01                Australia         86.2
## 4426                  2000-01-01                Australia         83.7
## 4427                  1995-01-01                Australia         80.8
## 4428                  1990-01-01                Australia         78.0
## 4429                  2015-01-01                Australia         89.8
## 4430                  2010-01-01                Australia         88.2
## 4431                  2005-01-01                Australia         86.2
## 4432                  2000-01-01                Australia         83.7
## 4433                  1995-01-01                Australia         80.8
## 4434                  1990-01-01                Australia         78.0
## 4435                  2015-01-01                Australia         89.8
## 4436                  2010-01-01                Australia         88.2
## 4437                  2005-01-01                Australia         86.2
## 4438                  2000-01-01                Australia         83.7
## 4439                  1995-01-01                Australia         80.8
## 4440                  1990-01-01                Australia         78.0
## 4441                  2015-01-01                Australia         89.8
## 4442                  2010-01-01                Australia         88.2
## 4443                  2005-01-01                Australia         86.2
## 4444                  2000-01-01                Australia         83.7
## 4445                  1995-01-01                Australia         80.8
## 4446                  1990-01-01                Australia         78.0
## 4447                  2015-01-01                Australia         89.8
## 4448                  2010-01-01                Australia         88.2
## 4449                  2005-01-01                Australia         86.2
## 4450                  2000-01-01                Australia         83.7
## 4451                  1995-01-01                Australia         80.8
## 4452                  1990-01-01                Australia         78.0
## 4453                  2015-01-01                Australia         89.8
## 4454                  2010-01-01                Australia         88.2
## 4455                  2005-01-01                Australia         86.2
## 4456                  2000-01-01                Australia         83.7
## 4457                  1995-01-01                Australia         80.8
## 4458                  1990-01-01                Australia         78.0
## 4459                  2015-01-01                Australia         89.8
## 4460                  2010-01-01                Australia         88.2
## 4461                  2005-01-01                Australia         86.2
## 4462                  2000-01-01                Australia         83.7
## 4463                  1995-01-01                Australia         80.8
## 4464                  1990-01-01                Australia         78.0
## 4465                  2015-01-01                Australia         89.8
## 4466                  2010-01-01                Australia         88.2
## 4467                  2005-01-01                Australia         86.2
## 4468                  2000-01-01                Australia         83.7
## 4469                  1995-01-01                Australia         80.8
## 4470                  1990-01-01                Australia         78.0
## 4471                  2015-01-01                Australia         89.8
## 4472                  2010-01-01                Australia         88.2
## 4473                  2005-01-01                Australia         86.2
## 4474                  2000-01-01                Australia         83.7
## 4475                  1995-01-01                Australia         80.8
## 4476                  1990-01-01                Australia         78.0
## 4477                  2015-01-01                Australia         89.8
## 4478                  2010-01-01                Australia         88.2
## 4479                  2005-01-01                Australia         86.2
## 4480                  2000-01-01                Australia         83.7
## 4481                  1995-01-01                Australia         80.8
## 4482                  1990-01-01                Australia         78.0
## 4483                  2015-01-01                Australia         89.8
## 4484                  2010-01-01                Australia         88.2
## 4485                  2005-01-01                Australia         86.2
## 4486                  2000-01-01                Australia         83.7
## 4487                  1995-01-01                Australia         80.8
## 4488                  1990-01-01                Australia         78.0
## 4489                  2015-01-01                Australia         89.8
## 4490                  2010-01-01                Australia         88.2
## 4491                  2005-01-01                Australia         86.2
## 4492                  2000-01-01                Australia         83.7
## 4493                  1995-01-01                Australia         80.8
## 4494                  1990-01-01                Australia         78.0
## 4495                  2015-01-01                Australia         89.8
## 4496                  2010-01-01                Australia         88.2
## 4497                  2005-01-01                Australia         86.2
## 4498                  2000-01-01                Australia         83.7
## 4499                  1995-01-01                Australia         80.8
## 4500                  1990-01-01                Australia         78.0
## 4501                  2015-01-01                Australia         89.8
## 4502                  2010-01-01                Australia         88.2
## 4503                  2005-01-01                Australia         86.2
## 4504                  2000-01-01                Australia         83.7
## 4505                  1995-01-01                Australia         80.8
## 4506                  1990-01-01                Australia         78.0
## 4507                  2015-01-01                Australia         89.8
## 4508                  2010-01-01                Australia         88.2
## 4509                  2005-01-01                Australia         86.2
## 4510                  2000-01-01                Australia         83.7
## 4511                  1995-01-01                Australia         80.8
## 4512                  1990-01-01                Australia         78.0
## 4513                  2015-01-01                Australia         89.8
## 4514                  2010-01-01                Australia         88.2
## 4515                  2005-01-01                Australia         86.2
## 4516                  2000-01-01                Australia         83.7
## 4517                  1995-01-01                Australia         80.8
## 4518                  1990-01-01                Australia         78.0
## 4519                  2015-01-01                Australia         89.8
## 4520                  2010-01-01                Australia         88.2
## 4521                  2005-01-01                Australia         86.2
## 4522                  2000-01-01                Australia         83.7
## 4523                  1995-01-01                Australia         80.8
## 4524                  1990-01-01                Australia         78.0
## 4525                  2015-01-01                Australia         89.8
## 4526                  2010-01-01                Australia         88.2
## 4527                  2005-01-01                Australia         86.2
## 4528                  2000-01-01                Australia         83.7
## 4529                  1995-01-01                Australia         80.8
## 4530                  1990-01-01                Australia         78.0
## 4531                  2015-01-01                Australia         89.8
## 4532                  2010-01-01                Australia         88.2
## 4533                  2005-01-01                Australia         86.2
## 4534                  2000-01-01                Australia         83.7
## 4535                  1995-01-01                Australia         80.8
## 4536                  1990-01-01                Australia         78.0
## 4537                  2015-01-01                Australia         89.8
## 4538                  2010-01-01                Australia         88.2
## 4539                  2005-01-01                Australia         86.2
## 4540                  2000-01-01                Australia         83.7
## 4541                  1995-01-01                Australia         80.8
## 4542                  1990-01-01                Australia         78.0
## 4543                  2015-01-01                Australia         89.8
## 4544                  2010-01-01                Australia         88.2
## 4545                  2005-01-01                Australia         86.2
## 4546                  2000-01-01                Australia         83.7
## 4547                  1995-01-01                Australia         80.8
## 4548                  1990-01-01                Australia         78.0
## 4549                  2015-01-01                Australia         89.8
## 4550                  2010-01-01                Australia         88.2
## 4551                  2005-01-01                Australia         86.2
## 4552                  2000-01-01                Australia         83.7
## 4553                  1995-01-01                Australia         80.8
## 4554                  1990-01-01                Australia         78.0
## 4555                  2015-01-01                Australia         89.8
## 4556                  2010-01-01                Australia         88.2
## 4557                  2005-01-01                Australia         86.2
## 4558                  2000-01-01                Australia         83.7
## 4559                  1995-01-01                Australia         80.8
## 4560                  1990-01-01                Australia         78.0
## 4561                  2015-01-01                Australia         89.8
## 4562                  2010-01-01                Australia         88.2
## 4563                  2005-01-01                Australia         86.2
## 4564                  2000-01-01                Australia         83.7
## 4565                  1995-01-01                Australia         80.8
## 4566                  1990-01-01                Australia         78.0
## 4567                  2015-01-01                Australia         89.8
## 4568                  2010-01-01                Australia         88.2
## 4569                  2005-01-01                Australia         86.2
## 4570                  2000-01-01                Australia         83.7
## 4571                  1995-01-01                Australia         80.8
## 4572                  1990-01-01                Australia         78.0
## 4573                  2015-01-01                Australia         89.8
## 4574                  2010-01-01                Australia         88.2
## 4575                  2005-01-01                Australia         86.2
## 4576                  2000-01-01                Australia         83.7
## 4577                  1995-01-01                Australia         80.8
## 4578                  1990-01-01                Australia         78.0
## 4579                  2015-01-01                Australia         89.8
## 4580                  2010-01-01                Australia         88.2
## 4581                  2005-01-01                Australia         86.2
## 4582                  2000-01-01                Australia         83.7
## 4583                  1995-01-01                Australia         80.8
## 4584                  1990-01-01                Australia         78.0
## 4585                  2015-01-01                Australia         89.8
## 4586                  2010-01-01                Australia         88.2
## 4587                  2005-01-01                Australia         86.2
## 4588                  2000-01-01                Australia         83.7
## 4589                  1995-01-01                Australia         80.8
## 4590                  1990-01-01                Australia         78.0
## 4591                  2015-01-01                Australia         89.8
## 4592                  2010-01-01                Australia         88.2
## 4593                  2005-01-01                Australia         86.2
## 4594                  2000-01-01                Australia         83.7
## 4595                  1995-01-01                Australia         80.8
## 4596                  1990-01-01                Australia         78.0
## 4597                  2015-01-01                Australia         89.8
## 4598                  2010-01-01                Australia         88.2
## 4599                  2005-01-01                Australia         86.2
## 4600                  2000-01-01                Australia         83.7
## 4601                  1995-01-01                Australia         80.8
## 4602                  1990-01-01                Australia         78.0
## 4603                  2015-01-01                Australia         89.8
## 4604                  2010-01-01                Australia         88.2
## 4605                  2005-01-01                Australia         86.2
## 4606                  2000-01-01                Australia         83.7
## 4607                  1995-01-01                Australia         80.8
## 4608                  1990-01-01                Australia         78.0
## 4609                  2015-01-01                Australia         89.8
## 4610                  2010-01-01                Australia         88.2
## 4611                  2005-01-01                Australia         86.2
## 4612                  2000-01-01                Australia         83.7
## 4613                  1995-01-01                Australia         80.8
## 4614                  1990-01-01                Australia         78.0
## 4615                  2015-01-01                Australia         89.8
## 4616                  2010-01-01                Australia         88.2
## 4617                  2005-01-01                Australia         86.2
## 4618                  2000-01-01                Australia         83.7
## 4619                  1995-01-01                Australia         80.8
## 4620                  1990-01-01                Australia         78.0
## 4621                  2015-01-01                Australia         89.8
## 4622                  2010-01-01                Australia         88.2
## 4623                  2005-01-01                Australia         86.2
## 4624                  2000-01-01                Australia         83.7
## 4625                  1995-01-01                Australia         80.8
## 4626                  1990-01-01                Australia         78.0
## 4627                  2015-01-01                Australia         89.8
## 4628                  2010-01-01                Australia         88.2
## 4629                  2005-01-01                Australia         86.2
## 4630                  2000-01-01                Australia         83.7
## 4631                  1995-01-01                Australia         80.8
## 4632                  1990-01-01                Australia         78.0
## 4633                  2015-01-01                Australia         89.8
## 4634                  2010-01-01                Australia         88.2
## 4635                  2005-01-01                Australia         86.2
## 4636                  2000-01-01                Australia         83.7
## 4637                  1995-01-01                Australia         80.8
## 4638                  1990-01-01                Australia         78.0
## 4639                  2015-01-01                Australia         89.8
## 4640                  2010-01-01                Australia         88.2
## 4641                  2005-01-01                Australia         86.2
## 4642                  2000-01-01                Australia         83.7
## 4643                  1995-01-01                Australia         80.8
## 4644                  1990-01-01                Australia         78.0
## 4645                  2015-01-01                Australia         89.8
## 4646                  2010-01-01                Australia         88.2
## 4647                  2005-01-01                Australia         86.2
## 4648                  2000-01-01                Australia         83.7
## 4649                  1995-01-01                Australia         80.8
## 4650                  1990-01-01                Australia         78.0
## 4651                  2015-01-01                Australia         89.8
## 4652                  2010-01-01                Australia         88.2
## 4653                  2005-01-01                Australia         86.2
## 4654                  2000-01-01                Australia         83.7
## 4655                  1995-01-01                Australia         80.8
## 4656                  1990-01-01                Australia         78.0
## 4657                  2015-01-01                Australia         89.8
## 4658                  2010-01-01                Australia         88.2
## 4659                  2005-01-01                Australia         86.2
## 4660                  2000-01-01                Australia         83.7
## 4661                  1995-01-01                Australia         80.8
## 4662                  1990-01-01                Australia         78.0
## 4663                  2015-01-01                Australia         89.8
## 4664                  2010-01-01                Australia         88.2
## 4665                  2005-01-01                Australia         86.2
## 4666                  2000-01-01                Australia         83.7
## 4667                  1995-01-01                Australia         80.8
## 4668                  1990-01-01                Australia         78.0
## 4669                  2015-01-01                Australia         89.8
## 4670                  2010-01-01                Australia         88.2
## 4671                  2005-01-01                Australia         86.2
## 4672                  2000-01-01                Australia         83.7
## 4673                  1995-01-01                Australia         80.8
## 4674                  1990-01-01                Australia         78.0
## 4675                  2015-01-01                Australia         89.8
## 4676                  2010-01-01                Australia         88.2
## 4677                  2005-01-01                Australia         86.2
## 4678                  2000-01-01                Australia         83.7
## 4679                  1995-01-01                Australia         80.8
## 4680                  1990-01-01                Australia         78.0
## 4681                  2015-01-01                Australia         89.8
## 4682                  2010-01-01                Australia         88.2
## 4683                  2005-01-01                Australia         86.2
## 4684                  2000-01-01                Australia         83.7
## 4685                  1995-01-01                Australia         80.8
## 4686                  1990-01-01                Australia         78.0
## 4687                  2015-01-01                Australia         89.8
## 4688                  2010-01-01                Australia         88.2
## 4689                  2005-01-01                Australia         86.2
## 4690                  2000-01-01                Australia         83.7
## 4691                  1995-01-01                Australia         80.8
## 4692                  1990-01-01                Australia         78.0
## 4693                  2015-01-01                Australia         89.8
## 4694                  2010-01-01                Australia         88.2
## 4695                  2005-01-01                Australia         86.2
## 4696                  2000-01-01                Australia         83.7
## 4697                  1995-01-01                Australia         80.8
## 4698                  1990-01-01                Australia         78.0
## 4699                  2015-01-01                Australia         89.8
## 4700                  2010-01-01                Australia         88.2
## 4701                  2005-01-01                Australia         86.2
## 4702                  2000-01-01                Australia         83.7
## 4703                  1995-01-01                Australia         80.8
## 4704                  1990-01-01                Australia         78.0
## 4705                  2015-01-01                Australia         89.8
## 4706                  2010-01-01                Australia         88.2
## 4707                  2005-01-01                Australia         86.2
## 4708                  2000-01-01                Australia         83.7
## 4709                  1995-01-01                Australia         80.8
## 4710                  1990-01-01                Australia         78.0
## 4711                  2015-01-01                Australia         89.8
## 4712                  2010-01-01                Australia         88.2
## 4713                  2005-01-01                Australia         86.2
## 4714                  2000-01-01                Australia         83.7
## 4715                  1995-01-01                Australia         80.8
## 4716                  1990-01-01                Australia         78.0
## 4717                  2015-01-01                Australia         89.8
## 4718                  2010-01-01                Australia         88.2
## 4719                  2005-01-01                Australia         86.2
## 4720                  2000-01-01                Australia         83.7
## 4721                  1995-01-01                Australia         80.8
## 4722                  1990-01-01                Australia         78.0
## 4723                  2015-01-01                Australia         89.8
## 4724                  2010-01-01                Australia         88.2
## 4725                  2005-01-01                Australia         86.2
## 4726                  2000-01-01                Australia         83.7
## 4727                  1995-01-01                Australia         80.8
## 4728                  1990-01-01                Australia         78.0
## 4729                  2015-01-01                Australia         89.8
## 4730                  2010-01-01                Australia         88.2
## 4731                  2005-01-01                Australia         86.2
## 4732                  2000-01-01                Australia         83.7
## 4733                  1995-01-01                Australia         80.8
## 4734                  1990-01-01                Australia         78.0
## 4735                  2015-01-01                Australia         89.8
## 4736                  2010-01-01                Australia         88.2
## 4737                  2005-01-01                Australia         86.2
## 4738                  2000-01-01                Australia         83.7
## 4739                  1995-01-01                Australia         80.8
## 4740                  1990-01-01                Australia         78.0
## 4741                  2015-01-01                Australia         89.8
## 4742                  2010-01-01                Australia         88.2
## 4743                  2005-01-01                Australia         86.2
## 4744                  2000-01-01                Australia         83.7
## 4745                  1995-01-01                Australia         80.8
## 4746                  1990-01-01                Australia         78.0
## 4747                  2015-01-01                Australia         89.8
## 4748                  2010-01-01                Australia         88.2
## 4749                  2005-01-01                Australia         86.2
## 4750                  2000-01-01                Australia         83.7
## 4751                  1995-01-01                Australia         80.8
## 4752                  1990-01-01                Australia         78.0
## 4753                  2015-01-01                Australia         89.8
## 4754                  2010-01-01                Australia         88.2
## 4755                  2005-01-01                Australia         86.2
## 4756                  2000-01-01                Australia         83.7
## 4757                  1995-01-01                Australia         80.8
## 4758                  1990-01-01                Australia         78.0
## 4759                  2015-01-01                Australia         89.8
## 4760                  2010-01-01                Australia         88.2
## 4761                  2005-01-01                Australia         86.2
## 4762                  2000-01-01                Australia         83.7
## 4763                  1995-01-01                Australia         80.8
## 4764                  1990-01-01                Australia         78.0
## 4765                  2015-01-01                Australia         89.8
## 4766                  2010-01-01                Australia         88.2
## 4767                  2005-01-01                Australia         86.2
## 4768                  2000-01-01                Australia         83.7
## 4769                  1995-01-01                Australia         80.8
## 4770                  1990-01-01                Australia         78.0
## 4771                  2015-01-01                Australia         89.8
## 4772                  2010-01-01                Australia         88.2
## 4773                  2005-01-01                Australia         86.2
## 4774                  2000-01-01                Australia         83.7
## 4775                  1995-01-01                Australia         80.8
## 4776                  1990-01-01                Australia         78.0
## 4777                  2015-01-01                Australia         89.8
## 4778                  2010-01-01                Australia         88.2
## 4779                  2005-01-01                Australia         86.2
## 4780                  2000-01-01                Australia         83.7
## 4781                  1995-01-01                Australia         80.8
## 4782                  1990-01-01                Australia         78.0
## 4783                  2015-01-01                Australia         89.8
## 4784                  2010-01-01                Australia         88.2
## 4785                  2005-01-01                Australia         86.2
## 4786                  2000-01-01                Australia         83.7
## 4787                  1995-01-01                Australia         80.8
## 4788                  1990-01-01                Australia         78.0
## 4789                  2015-01-01                Australia         89.8
## 4790                  2010-01-01                Australia         88.2
## 4791                  2005-01-01                Australia         86.2
## 4792                  2000-01-01                Australia         83.7
## 4793                  1995-01-01                Australia         80.8
## 4794                  1990-01-01                Australia         78.0
## 4795                  2015-01-01                Australia         89.8
## 4796                  2010-01-01                Australia         88.2
## 4797                  2005-01-01                Australia         86.2
## 4798                  2000-01-01                Australia         83.7
## 4799                  1995-01-01                Australia         80.8
## 4800                  1990-01-01                Australia         78.0
## 4801                  2015-01-01                Australia         89.8
## 4802                  2010-01-01                Australia         88.2
## 4803                  2005-01-01                Australia         86.2
## 4804                  2000-01-01                Australia         83.7
## 4805                  1995-01-01                Australia         80.8
## 4806                  1990-01-01                Australia         78.0
## 4807                  2015-01-01                Australia         89.8
## 4808                  2010-01-01                Australia         88.2
## 4809                  2005-01-01                Australia         86.2
## 4810                  2000-01-01                Australia         83.7
## 4811                  1995-01-01                Australia         80.8
## 4812                  1990-01-01                Australia         78.0
## 4813                  2015-01-01                Australia         89.8
## 4814                  2010-01-01                Australia         88.2
## 4815                  2005-01-01                Australia         86.2
## 4816                  2000-01-01                Australia         83.7
## 4817                  1995-01-01                Australia         80.8
## 4818                  1990-01-01                Australia         78.0
## 4819                  2015-01-01                Australia         89.8
## 4820                  2010-01-01                Australia         88.2
## 4821                  2005-01-01                Australia         86.2
## 4822                  2000-01-01                Australia         83.7
## 4823                  1995-01-01                Australia         80.8
## 4824                  1990-01-01                Australia         78.0
## 4825                  2015-01-01                Australia         89.8
## 4826                  2010-01-01                Australia         88.2
## 4827                  2005-01-01                Australia         86.2
## 4828                  2000-01-01                Australia         83.7
## 4829                  1995-01-01                Australia         80.8
## 4830                  1990-01-01                Australia         78.0
## 4831                  2015-01-01                Australia         89.8
## 4832                  2010-01-01                Australia         88.2
## 4833                  2005-01-01                Australia         86.2
## 4834                  2000-01-01                Australia         83.7
## 4835                  1995-01-01                Australia         80.8
## 4836                  1990-01-01                Australia         78.0
## 4837                  2015-01-01                Australia         89.8
## 4838                  2010-01-01                Australia         88.2
## 4839                  2005-01-01                Australia         86.2
## 4840                  2000-01-01                Australia         83.7
## 4841                  1995-01-01                Australia         80.8
## 4842                  1990-01-01                Australia         78.0
## 4843                  2015-01-01                Australia         89.8
## 4844                  2010-01-01                Australia         88.2
## 4845                  2005-01-01                Australia         86.2
## 4846                  2000-01-01                Australia         83.7
## 4847                  1995-01-01                Australia         80.8
## 4848                  1990-01-01                Australia         78.0
## 4849                  2015-01-01                Australia         89.8
## 4850                  2010-01-01                Australia         88.2
## 4851                  2005-01-01                Australia         86.2
## 4852                  2000-01-01                Australia         83.7
## 4853                  1995-01-01                Australia         80.8
## 4854                  1990-01-01                Australia         78.0
## 4855                  2015-01-01                Australia         89.8
## 4856                  2010-01-01                Australia         88.2
## 4857                  2005-01-01                Australia         86.2
## 4858                  2000-01-01                Australia         83.7
## 4859                  1995-01-01                Australia         80.8
## 4860                  1990-01-01                Australia         78.0
## 4861                  2015-01-01                Australia         89.8
## 4862                  2010-01-01                Australia         88.2
## 4863                  2005-01-01                Australia         86.2
## 4864                  2000-01-01                Australia         83.7
## 4865                  1995-01-01                Australia         80.8
## 4866                  1990-01-01                Australia         78.0
## 4867                  2015-01-01                Australia         89.8
## 4868                  2010-01-01                Australia         88.2
## 4869                  2005-01-01                Australia         86.2
## 4870                  2000-01-01                Australia         83.7
## 4871                  1995-01-01                Australia         80.8
## 4872                  1990-01-01                Australia         78.0
## 4873                  2015-01-01                Australia         89.8
## 4874                  2010-01-01                Australia         88.2
## 4875                  2005-01-01                Australia         86.2
## 4876                  2000-01-01                Australia         83.7
## 4877                  1995-01-01                Australia         80.8
## 4878                  1990-01-01                Australia         78.0
## 4879                  2015-01-01                Australia         89.8
## 4880                  2010-01-01                Australia         88.2
## 4881                  2005-01-01                Australia         86.2
## 4882                  2000-01-01                Australia         83.7
## 4883                  1995-01-01                Australia         80.8
## 4884                  1990-01-01                Australia         78.0
## 4885                  2015-01-01                Australia         89.8
## 4886                  2010-01-01                Australia         88.2
## 4887                  2005-01-01                Australia         86.2
## 4888                  2000-01-01                Australia         83.7
## 4889                  1995-01-01                Australia         80.8
## 4890                  1990-01-01                Australia         78.0
## 4891                  2015-01-01                  Austria         88.2
## 4892                  2010-01-01                  Austria         86.1
## 4893                  2005-01-01                  Austria         84.2
## 4894                  2000-01-01                  Austria         81.6
## 4895                  1995-01-01                  Austria         78.2
## 4896                  1990-01-01                  Austria         74.4
## 4897                  2015-01-01                  Austria         88.2
## 4898                  2010-01-01                  Austria         86.1
## 4899                  2005-01-01                  Austria         84.2
## 4900                  2000-01-01                  Austria         81.6
## 4901                  1995-01-01                  Austria         78.2
## 4902                  1990-01-01                  Austria         74.4
## 4903                  2015-01-01                  Austria         88.2
## 4904                  2010-01-01                  Austria         86.1
## 4905                  2005-01-01                  Austria         84.2
## 4906                  2000-01-01                  Austria         81.6
## 4907                  1995-01-01                  Austria         78.2
## 4908                  1990-01-01                  Austria         74.4
## 4909                  2015-01-01                  Austria         88.2
## 4910                  2010-01-01                  Austria         86.1
## 4911                  2005-01-01                  Austria         84.2
## 4912                  2000-01-01                  Austria         81.6
## 4913                  1995-01-01                  Austria         78.2
## 4914                  1990-01-01                  Austria         74.4
## 4915                  2015-01-01                  Austria         88.2
## 4916                  2010-01-01                  Austria         86.1
## 4917                  2005-01-01                  Austria         84.2
## 4918                  2000-01-01                  Austria         81.6
## 4919                  1995-01-01                  Austria         78.2
## 4920                  1990-01-01                  Austria         74.4
## 4921                  2015-01-01                  Austria         88.2
## 4922                  2010-01-01                  Austria         86.1
## 4923                  2005-01-01                  Austria         84.2
## 4924                  2000-01-01                  Austria         81.6
## 4925                  1995-01-01                  Austria         78.2
## 4926                  1990-01-01                  Austria         74.4
## 4927                  2015-01-01                  Austria         88.2
## 4928                  2010-01-01                  Austria         86.1
## 4929                  2005-01-01                  Austria         84.2
## 4930                  2000-01-01                  Austria         81.6
## 4931                  1995-01-01                  Austria         78.2
## 4932                  1990-01-01                  Austria         74.4
## 4933                  2015-01-01                  Austria         88.2
## 4934                  2010-01-01                  Austria         86.1
## 4935                  2005-01-01                  Austria         84.2
## 4936                  2000-01-01                  Austria         81.6
## 4937                  1995-01-01                  Austria         78.2
## 4938                  1990-01-01                  Austria         74.4
## 4939                  2015-01-01                  Austria         88.2
## 4940                  2010-01-01                  Austria         86.1
## 4941                  2005-01-01                  Austria         84.2
## 4942                  2000-01-01                  Austria         81.6
## 4943                  1995-01-01                  Austria         78.2
## 4944                  1990-01-01                  Austria         74.4
## 4945                  2015-01-01                  Austria         88.2
## 4946                  2010-01-01                  Austria         86.1
## 4947                  2005-01-01                  Austria         84.2
## 4948                  2000-01-01                  Austria         81.6
## 4949                  1995-01-01                  Austria         78.2
## 4950                  1990-01-01                  Austria         74.4
## 4951                  2015-01-01                  Austria         88.2
## 4952                  2010-01-01                  Austria         86.1
## 4953                  2005-01-01                  Austria         84.2
## 4954                  2000-01-01                  Austria         81.6
## 4955                  1995-01-01                  Austria         78.2
## 4956                  1990-01-01                  Austria         74.4
## 4957                  2015-01-01                  Austria         88.2
## 4958                  2010-01-01                  Austria         86.1
## 4959                  2005-01-01                  Austria         84.2
## 4960                  2000-01-01                  Austria         81.6
## 4961                  1995-01-01                  Austria         78.2
## 4962                  1990-01-01                  Austria         74.4
## 4963                  2015-01-01                  Austria         88.2
## 4964                  2010-01-01                  Austria         86.1
## 4965                  2005-01-01                  Austria         84.2
## 4966                  2000-01-01                  Austria         81.6
## 4967                  1995-01-01                  Austria         78.2
## 4968                  1990-01-01                  Austria         74.4
## 4969                  2015-01-01                  Austria         88.2
## 4970                  2010-01-01                  Austria         86.1
## 4971                  2005-01-01                  Austria         84.2
## 4972                  2000-01-01                  Austria         81.6
## 4973                  1995-01-01                  Austria         78.2
## 4974                  1990-01-01                  Austria         74.4
## 4975                  2015-01-01                  Austria         88.2
## 4976                  2010-01-01                  Austria         86.1
## 4977                  2005-01-01                  Austria         84.2
## 4978                  2000-01-01                  Austria         81.6
## 4979                  1995-01-01                  Austria         78.2
## 4980                  1990-01-01                  Austria         74.4
## 4981                  2015-01-01                  Austria         88.2
## 4982                  2010-01-01                  Austria         86.1
## 4983                  2005-01-01                  Austria         84.2
## 4984                  2000-01-01                  Austria         81.6
## 4985                  1995-01-01                  Austria         78.2
## 4986                  1990-01-01                  Austria         74.4
## 4987                  2015-01-01                  Austria         88.2
## 4988                  2010-01-01                  Austria         86.1
## 4989                  2005-01-01                  Austria         84.2
## 4990                  2000-01-01                  Austria         81.6
## 4991                  1995-01-01                  Austria         78.2
## 4992                  1990-01-01                  Austria         74.4
## 4993                  2015-01-01                  Austria         88.2
## 4994                  2010-01-01                  Austria         86.1
## 4995                  2005-01-01                  Austria         84.2
## 4996                  2000-01-01                  Austria         81.6
## 4997                  1995-01-01                  Austria         78.2
## 4998                  1990-01-01                  Austria         74.4
## 4999                  2015-01-01                  Austria         88.2
## 5000                  2010-01-01                  Austria         86.1
## 5001                  2005-01-01                  Austria         84.2
## 5002                  2000-01-01                  Austria         81.6
## 5003                  1995-01-01                  Austria         78.2
## 5004                  1990-01-01                  Austria         74.4
## 5005                  2015-01-01                  Austria         88.2
## 5006                  2010-01-01                  Austria         86.1
## 5007                  2005-01-01                  Austria         84.2
## 5008                  2000-01-01                  Austria         81.6
## 5009                  1995-01-01                  Austria         78.2
## 5010                  1990-01-01                  Austria         74.4
## 5011                  2015-01-01                  Austria         88.2
## 5012                  2010-01-01                  Austria         86.1
## 5013                  2005-01-01                  Austria         84.2
## 5014                  2000-01-01                  Austria         81.6
## 5015                  1995-01-01                  Austria         78.2
## 5016                  1990-01-01                  Austria         74.4
## 5017                  2015-01-01                  Austria         88.2
## 5018                  2010-01-01                  Austria         86.1
## 5019                  2005-01-01                  Austria         84.2
## 5020                  2000-01-01                  Austria         81.6
## 5021                  1995-01-01                  Austria         78.2
## 5022                  1990-01-01                  Austria         74.4
## 5023                  2015-01-01                  Austria         88.2
## 5024                  2010-01-01                  Austria         86.1
## 5025                  2005-01-01                  Austria         84.2
## 5026                  2000-01-01                  Austria         81.6
## 5027                  1995-01-01                  Austria         78.2
## 5028                  1990-01-01                  Austria         74.4
## 5029                  2015-01-01                  Austria         88.2
## 5030                  2010-01-01                  Austria         86.1
## 5031                  2005-01-01                  Austria         84.2
## 5032                  2000-01-01                  Austria         81.6
## 5033                  1995-01-01                  Austria         78.2
## 5034                  1990-01-01                  Austria         74.4
## 5035                  2015-01-01                  Austria         88.2
## 5036                  2010-01-01                  Austria         86.1
## 5037                  2005-01-01                  Austria         84.2
## 5038                  2000-01-01                  Austria         81.6
## 5039                  1995-01-01                  Austria         78.2
## 5040                  1990-01-01                  Austria         74.4
## 5041                  2015-01-01                  Austria         88.2
## 5042                  2010-01-01                  Austria         86.1
## 5043                  2005-01-01                  Austria         84.2
## 5044                  2000-01-01                  Austria         81.6
## 5045                  1995-01-01                  Austria         78.2
## 5046                  1990-01-01                  Austria         74.4
## 5047                  2015-01-01                  Austria         88.2
## 5048                  2010-01-01                  Austria         86.1
## 5049                  2005-01-01                  Austria         84.2
## 5050                  2000-01-01                  Austria         81.6
## 5051                  1995-01-01                  Austria         78.2
## 5052                  1990-01-01                  Austria         74.4
## 5053                  2015-01-01                  Austria         88.2
## 5054                  2010-01-01                  Austria         86.1
## 5055                  2005-01-01                  Austria         84.2
## 5056                  2000-01-01                  Austria         81.6
## 5057                  1995-01-01                  Austria         78.2
## 5058                  1990-01-01                  Austria         74.4
## 5059                  2015-01-01                  Austria         88.2
## 5060                  2010-01-01                  Austria         86.1
## 5061                  2005-01-01                  Austria         84.2
## 5062                  2000-01-01                  Austria         81.6
## 5063                  1995-01-01                  Austria         78.2
## 5064                  1990-01-01                  Austria         74.4
## 5065                  2015-01-01                  Austria         88.2
## 5066                  2010-01-01                  Austria         86.1
## 5067                  2005-01-01                  Austria         84.2
## 5068                  2000-01-01                  Austria         81.6
## 5069                  1995-01-01                  Austria         78.2
## 5070                  1990-01-01                  Austria         74.4
## 5071                  2015-01-01                  Austria         88.2
## 5072                  2010-01-01                  Austria         86.1
## 5073                  2005-01-01                  Austria         84.2
## 5074                  2000-01-01                  Austria         81.6
## 5075                  1995-01-01                  Austria         78.2
## 5076                  1990-01-01                  Austria         74.4
## 5077                  2015-01-01                  Austria         88.2
## 5078                  2010-01-01                  Austria         86.1
## 5079                  2005-01-01                  Austria         84.2
## 5080                  2000-01-01                  Austria         81.6
## 5081                  1995-01-01                  Austria         78.2
## 5082                  1990-01-01                  Austria         74.4
## 5083                  2015-01-01                  Austria         88.2
## 5084                  2010-01-01                  Austria         86.1
## 5085                  2005-01-01                  Austria         84.2
## 5086                  2000-01-01                  Austria         81.6
## 5087                  1995-01-01                  Austria         78.2
## 5088                  1990-01-01                  Austria         74.4
## 5089                  2015-01-01                  Austria         88.2
## 5090                  2010-01-01                  Austria         86.1
## 5091                  2005-01-01                  Austria         84.2
## 5092                  2000-01-01                  Austria         81.6
## 5093                  1995-01-01                  Austria         78.2
## 5094                  1990-01-01                  Austria         74.4
## 5095                  2015-01-01                  Austria         88.2
## 5096                  2010-01-01                  Austria         86.1
## 5097                  2005-01-01                  Austria         84.2
## 5098                  2000-01-01                  Austria         81.6
## 5099                  1995-01-01                  Austria         78.2
## 5100                  1990-01-01                  Austria         74.4
## 5101                  2015-01-01                  Austria         88.2
## 5102                  2010-01-01                  Austria         86.1
## 5103                  2005-01-01                  Austria         84.2
## 5104                  2000-01-01                  Austria         81.6
## 5105                  1995-01-01                  Austria         78.2
## 5106                  1990-01-01                  Austria         74.4
## 5107                  2015-01-01                  Austria         88.2
## 5108                  2010-01-01                  Austria         86.1
## 5109                  2005-01-01                  Austria         84.2
## 5110                  2000-01-01                  Austria         81.6
## 5111                  1995-01-01                  Austria         78.2
## 5112                  1990-01-01                  Austria         74.4
## 5113                  2015-01-01                  Austria         88.2
## 5114                  2010-01-01                  Austria         86.1
## 5115                  2005-01-01                  Austria         84.2
## 5116                  2000-01-01                  Austria         81.6
## 5117                  1995-01-01                  Austria         78.2
## 5118                  1990-01-01                  Austria         74.4
## 5119                  2015-01-01                  Austria         88.2
## 5120                  2010-01-01                  Austria         86.1
## 5121                  2005-01-01                  Austria         84.2
## 5122                  2000-01-01                  Austria         81.6
## 5123                  1995-01-01                  Austria         78.2
## 5124                  1990-01-01                  Austria         74.4
## 5125                  2015-01-01                  Austria         88.2
## 5126                  2010-01-01                  Austria         86.1
## 5127                  2005-01-01                  Austria         84.2
## 5128                  2000-01-01                  Austria         81.6
## 5129                  1995-01-01                  Austria         78.2
## 5130                  1990-01-01                  Austria         74.4
## 5131                  2015-01-01                  Austria         88.2
## 5132                  2010-01-01                  Austria         86.1
## 5133                  2005-01-01                  Austria         84.2
## 5134                  2000-01-01                  Austria         81.6
## 5135                  1995-01-01                  Austria         78.2
## 5136                  1990-01-01                  Austria         74.4
## 5137                  2015-01-01                  Austria         88.2
## 5138                  2010-01-01                  Austria         86.1
## 5139                  2005-01-01                  Austria         84.2
## 5140                  2000-01-01                  Austria         81.6
## 5141                  1995-01-01                  Austria         78.2
## 5142                  1990-01-01                  Austria         74.4
## 5143                  2015-01-01                  Austria         88.2
## 5144                  2010-01-01                  Austria         86.1
## 5145                  2005-01-01                  Austria         84.2
## 5146                  2000-01-01                  Austria         81.6
## 5147                  1995-01-01                  Austria         78.2
## 5148                  1990-01-01                  Austria         74.4
## 5149                  2015-01-01                  Austria         88.2
## 5150                  2010-01-01                  Austria         86.1
## 5151                  2005-01-01                  Austria         84.2
## 5152                  2000-01-01                  Austria         81.6
## 5153                  1995-01-01                  Austria         78.2
## 5154                  1990-01-01                  Austria         74.4
## 5155                  2015-01-01                  Austria         88.2
## 5156                  2010-01-01                  Austria         86.1
## 5157                  2005-01-01                  Austria         84.2
## 5158                  2000-01-01                  Austria         81.6
## 5159                  1995-01-01                  Austria         78.2
## 5160                  1990-01-01                  Austria         74.4
## 5161                  2015-01-01                  Austria         88.2
## 5162                  2010-01-01                  Austria         86.1
## 5163                  2005-01-01                  Austria         84.2
## 5164                  2000-01-01                  Austria         81.6
## 5165                  1995-01-01                  Austria         78.2
## 5166                  1990-01-01                  Austria         74.4
## 5167                  2015-01-01                  Austria         88.2
## 5168                  2010-01-01                  Austria         86.1
## 5169                  2005-01-01                  Austria         84.2
## 5170                  2000-01-01                  Austria         81.6
## 5171                  1995-01-01                  Austria         78.2
## 5172                  1990-01-01                  Austria         74.4
## 5173                  2015-01-01                  Austria         88.2
## 5174                  2010-01-01                  Austria         86.1
## 5175                  2005-01-01                  Austria         84.2
## 5176                  2000-01-01                  Austria         81.6
## 5177                  1995-01-01                  Austria         78.2
## 5178                  1990-01-01                  Austria         74.4
## 5179                  2015-01-01                  Austria         88.2
## 5180                  2010-01-01                  Austria         86.1
## 5181                  2005-01-01                  Austria         84.2
## 5182                  2000-01-01                  Austria         81.6
## 5183                  1995-01-01                  Austria         78.2
## 5184                  1990-01-01                  Austria         74.4
## 5185                  2015-01-01                  Austria         88.2
## 5186                  2010-01-01                  Austria         86.1
## 5187                  2005-01-01                  Austria         84.2
## 5188                  2000-01-01                  Austria         81.6
## 5189                  1995-01-01                  Austria         78.2
## 5190                  1990-01-01                  Austria         74.4
## 5191                  2015-01-01                  Austria         88.2
## 5192                  2010-01-01                  Austria         86.1
## 5193                  2005-01-01                  Austria         84.2
## 5194                  2000-01-01                  Austria         81.6
## 5195                  1995-01-01                  Austria         78.2
## 5196                  1990-01-01                  Austria         74.4
## 5197                  2015-01-01                  Austria         88.2
## 5198                  2010-01-01                  Austria         86.1
## 5199                  2005-01-01                  Austria         84.2
## 5200                  2000-01-01                  Austria         81.6
## 5201                  1995-01-01                  Austria         78.2
## 5202                  1990-01-01                  Austria         74.4
## 5203                  2015-01-01                  Austria         88.2
## 5204                  2010-01-01                  Austria         86.1
## 5205                  2005-01-01                  Austria         84.2
## 5206                  2000-01-01                  Austria         81.6
## 5207                  1995-01-01                  Austria         78.2
## 5208                  1990-01-01                  Austria         74.4
## 5209                  2015-01-01                  Austria         88.2
## 5210                  2010-01-01                  Austria         86.1
## 5211                  2005-01-01                  Austria         84.2
## 5212                  2000-01-01                  Austria         81.6
## 5213                  1995-01-01                  Austria         78.2
## 5214                  1990-01-01                  Austria         74.4
## 5215                  2015-01-01                  Austria         88.2
## 5216                  2010-01-01                  Austria         86.1
## 5217                  2005-01-01                  Austria         84.2
## 5218                  2000-01-01                  Austria         81.6
## 5219                  1995-01-01                  Austria         78.2
## 5220                  1990-01-01                  Austria         74.4
## 5221                  2015-01-01                  Austria         88.2
## 5222                  2010-01-01                  Austria         86.1
## 5223                  2005-01-01                  Austria         84.2
## 5224                  2000-01-01                  Austria         81.6
## 5225                  1995-01-01                  Austria         78.2
## 5226                  1990-01-01                  Austria         74.4
## 5227                  2015-01-01                  Austria         88.2
## 5228                  2010-01-01                  Austria         86.1
## 5229                  2005-01-01                  Austria         84.2
## 5230                  2000-01-01                  Austria         81.6
## 5231                  1995-01-01                  Austria         78.2
## 5232                  1990-01-01                  Austria         74.4
## 5233                  2015-01-01                  Austria         88.2
## 5234                  2010-01-01                  Austria         86.1
## 5235                  2005-01-01                  Austria         84.2
## 5236                  2000-01-01                  Austria         81.6
## 5237                  1995-01-01                  Austria         78.2
## 5238                  1990-01-01                  Austria         74.4
## 5239                  2015-01-01                  Austria         88.2
## 5240                  2010-01-01                  Austria         86.1
## 5241                  2005-01-01                  Austria         84.2
## 5242                  2000-01-01                  Austria         81.6
## 5243                  1995-01-01                  Austria         78.2
## 5244                  1990-01-01                  Austria         74.4
## 5245                  2015-01-01                  Austria         88.2
## 5246                  2010-01-01                  Austria         86.1
## 5247                  2005-01-01                  Austria         84.2
## 5248                  2000-01-01                  Austria         81.6
## 5249                  1995-01-01                  Austria         78.2
## 5250                  1990-01-01                  Austria         74.4
## 5251                  2015-01-01                  Austria         88.2
## 5252                  2010-01-01                  Austria         86.1
## 5253                  2005-01-01                  Austria         84.2
## 5254                  2000-01-01                  Austria         81.6
## 5255                  1995-01-01                  Austria         78.2
## 5256                  1990-01-01                  Austria         74.4
## 5257                  2015-01-01                  Austria         88.2
## 5258                  2010-01-01                  Austria         86.1
## 5259                  2005-01-01                  Austria         84.2
## 5260                  2000-01-01                  Austria         81.6
## 5261                  1995-01-01                  Austria         78.2
## 5262                  1990-01-01                  Austria         74.4
## 5263                  2015-01-01                  Austria         88.2
## 5264                  2010-01-01                  Austria         86.1
## 5265                  2005-01-01                  Austria         84.2
## 5266                  2000-01-01                  Austria         81.6
## 5267                  1995-01-01                  Austria         78.2
## 5268                  1990-01-01                  Austria         74.4
## 5269                  2015-01-01                  Austria         88.2
## 5270                  2010-01-01                  Austria         86.1
## 5271                  2005-01-01                  Austria         84.2
## 5272                  2000-01-01                  Austria         81.6
## 5273                  1995-01-01                  Austria         78.2
## 5274                  1990-01-01                  Austria         74.4
## 5275                  2015-01-01                  Austria         88.2
## 5276                  2010-01-01                  Austria         86.1
## 5277                  2005-01-01                  Austria         84.2
## 5278                  2000-01-01                  Austria         81.6
## 5279                  1995-01-01                  Austria         78.2
## 5280                  1990-01-01                  Austria         74.4
## 5281                  2015-01-01                  Austria         88.2
## 5282                  2010-01-01                  Austria         86.1
## 5283                  2005-01-01                  Austria         84.2
## 5284                  2000-01-01                  Austria         81.6
## 5285                  1995-01-01                  Austria         78.2
## 5286                  1990-01-01                  Austria         74.4
## 5287                  2015-01-01                  Austria         88.2
## 5288                  2010-01-01                  Austria         86.1
## 5289                  2005-01-01                  Austria         84.2
## 5290                  2000-01-01                  Austria         81.6
## 5291                  1995-01-01                  Austria         78.2
## 5292                  1990-01-01                  Austria         74.4
## 5293                  2015-01-01                  Austria         88.2
## 5294                  2010-01-01                  Austria         86.1
## 5295                  2005-01-01                  Austria         84.2
## 5296                  2000-01-01                  Austria         81.6
## 5297                  1995-01-01                  Austria         78.2
## 5298                  1990-01-01                  Austria         74.4
## 5299                  2015-01-01                  Austria         88.2
## 5300                  2010-01-01                  Austria         86.1
## 5301                  2005-01-01                  Austria         84.2
## 5302                  2000-01-01                  Austria         81.6
## 5303                  1995-01-01                  Austria         78.2
## 5304                  1990-01-01                  Austria         74.4
## 5305                  2015-01-01                  Austria         88.2
## 5306                  2010-01-01                  Austria         86.1
## 5307                  2005-01-01                  Austria         84.2
## 5308                  2000-01-01                  Austria         81.6
## 5309                  1995-01-01                  Austria         78.2
## 5310                  1990-01-01                  Austria         74.4
## 5311                  2015-01-01                  Austria         88.2
## 5312                  2010-01-01                  Austria         86.1
## 5313                  2005-01-01                  Austria         84.2
## 5314                  2000-01-01                  Austria         81.6
## 5315                  1995-01-01                  Austria         78.2
## 5316                  1990-01-01                  Austria         74.4
## 5317                  2015-01-01                  Austria         88.2
## 5318                  2010-01-01                  Austria         86.1
## 5319                  2005-01-01                  Austria         84.2
## 5320                  2000-01-01                  Austria         81.6
## 5321                  1995-01-01                  Austria         78.2
## 5322                  1990-01-01                  Austria         74.4
## 5323                  2015-01-01                  Austria         88.2
## 5324                  2010-01-01                  Austria         86.1
## 5325                  2005-01-01                  Austria         84.2
## 5326                  2000-01-01                  Austria         81.6
## 5327                  1995-01-01                  Austria         78.2
## 5328                  1990-01-01                  Austria         74.4
## 5329                  2015-01-01                  Austria         88.2
## 5330                  2010-01-01                  Austria         86.1
## 5331                  2005-01-01                  Austria         84.2
## 5332                  2000-01-01                  Austria         81.6
## 5333                  1995-01-01                  Austria         78.2
## 5334                  1990-01-01                  Austria         74.4
## 5335                  2015-01-01                  Austria         88.2
## 5336                  2010-01-01                  Austria         86.1
## 5337                  2005-01-01                  Austria         84.2
## 5338                  2000-01-01                  Austria         81.6
## 5339                  1995-01-01                  Austria         78.2
## 5340                  1990-01-01                  Austria         74.4
## 5341                  2015-01-01                  Austria         88.2
## 5342                  2010-01-01                  Austria         86.1
## 5343                  2005-01-01                  Austria         84.2
## 5344                  2000-01-01                  Austria         81.6
## 5345                  1995-01-01                  Austria         78.2
## 5346                  1990-01-01                  Austria         74.4
## 5347                  2015-01-01                  Austria         88.2
## 5348                  2010-01-01                  Austria         86.1
## 5349                  2005-01-01                  Austria         84.2
## 5350                  2000-01-01                  Austria         81.6
## 5351                  1995-01-01                  Austria         78.2
## 5352                  1990-01-01                  Austria         74.4
## 5353                  2015-01-01                  Austria         88.2
## 5354                  2010-01-01                  Austria         86.1
## 5355                  2005-01-01                  Austria         84.2
## 5356                  2000-01-01                  Austria         81.6
## 5357                  1995-01-01                  Austria         78.2
## 5358                  1990-01-01                  Austria         74.4
## 5359                  2015-01-01                  Austria         88.2
## 5360                  2010-01-01                  Austria         86.1
## 5361                  2005-01-01                  Austria         84.2
## 5362                  2000-01-01                  Austria         81.6
## 5363                  1995-01-01                  Austria         78.2
## 5364                  1990-01-01                  Austria         74.4
## 5365                  2015-01-01                  Austria         88.2
## 5366                  2010-01-01                  Austria         86.1
## 5367                  2005-01-01                  Austria         84.2
## 5368                  2000-01-01                  Austria         81.6
## 5369                  1995-01-01                  Austria         78.2
## 5370                  1990-01-01                  Austria         74.4
## 5371                  2015-01-01                  Austria         88.2
## 5372                  2010-01-01                  Austria         86.1
## 5373                  2005-01-01                  Austria         84.2
## 5374                  2000-01-01                  Austria         81.6
## 5375                  1995-01-01                  Austria         78.2
## 5376                  1990-01-01                  Austria         74.4
## 5377                  2015-01-01                  Austria         88.2
## 5378                  2010-01-01                  Austria         86.1
## 5379                  2005-01-01                  Austria         84.2
## 5380                  2000-01-01                  Austria         81.6
## 5381                  1995-01-01                  Austria         78.2
## 5382                  1990-01-01                  Austria         74.4
## 5383                  2015-01-01                  Austria         88.2
## 5384                  2010-01-01                  Austria         86.1
## 5385                  2005-01-01                  Austria         84.2
## 5386                  2000-01-01                  Austria         81.6
## 5387                  1995-01-01                  Austria         78.2
## 5388                  1990-01-01                  Austria         74.4
## 5389                  2015-01-01                  Austria         88.2
## 5390                  2010-01-01                  Austria         86.1
## 5391                  2005-01-01                  Austria         84.2
## 5392                  2000-01-01                  Austria         81.6
## 5393                  1995-01-01                  Austria         78.2
## 5394                  1990-01-01                  Austria         74.4
## 5395                  2015-01-01                  Austria         88.2
## 5396                  2010-01-01                  Austria         86.1
## 5397                  2005-01-01                  Austria         84.2
## 5398                  2000-01-01                  Austria         81.6
## 5399                  1995-01-01                  Austria         78.2
## 5400                  1990-01-01                  Austria         74.4
## 5401                  2015-01-01                  Austria         88.2
## 5402                  2010-01-01                  Austria         86.1
## 5403                  2005-01-01                  Austria         84.2
## 5404                  2000-01-01                  Austria         81.6
## 5405                  1995-01-01                  Austria         78.2
## 5406                  1990-01-01                  Austria         74.4
## 5407                  2015-01-01                  Austria         88.2
## 5408                  2010-01-01                  Austria         86.1
## 5409                  2005-01-01                  Austria         84.2
## 5410                  2000-01-01                  Austria         81.6
## 5411                  1995-01-01                  Austria         78.2
## 5412                  1990-01-01                  Austria         74.4
## 5413                  2015-01-01                  Austria         88.2
## 5414                  2010-01-01                  Austria         86.1
## 5415                  2005-01-01                  Austria         84.2
## 5416                  2000-01-01                  Austria         81.6
## 5417                  1995-01-01                  Austria         78.2
## 5418                  1990-01-01                  Austria         74.4
## 5419                  2015-01-01                  Austria         88.2
## 5420                  2010-01-01                  Austria         86.1
## 5421                  2005-01-01                  Austria         84.2
## 5422                  2000-01-01                  Austria         81.6
## 5423                  1995-01-01                  Austria         78.2
## 5424                  1990-01-01                  Austria         74.4
## 5425                  2015-01-01                  Austria         88.2
## 5426                  2010-01-01                  Austria         86.1
## 5427                  2005-01-01                  Austria         84.2
## 5428                  2000-01-01                  Austria         81.6
## 5429                  1995-01-01                  Austria         78.2
## 5430                  1990-01-01                  Austria         74.4
## 5431                  2015-01-01                  Austria         88.2
## 5432                  2010-01-01                  Austria         86.1
## 5433                  2005-01-01                  Austria         84.2
## 5434                  2000-01-01                  Austria         81.6
## 5435                  1995-01-01                  Austria         78.2
## 5436                  1990-01-01                  Austria         74.4
## 5437                  2015-01-01                  Austria         88.2
## 5438                  2010-01-01                  Austria         86.1
## 5439                  2005-01-01                  Austria         84.2
## 5440                  2000-01-01                  Austria         81.6
## 5441                  1995-01-01                  Austria         78.2
## 5442                  1990-01-01                  Austria         74.4
## 5443                  2015-01-01                  Austria         88.2
## 5444                  2010-01-01                  Austria         86.1
## 5445                  2005-01-01                  Austria         84.2
## 5446                  2000-01-01                  Austria         81.6
## 5447                  1995-01-01                  Austria         78.2
## 5448                  1990-01-01                  Austria         74.4
## 5449                  2015-01-01                  Austria         88.2
## 5450                  2010-01-01                  Austria         86.1
## 5451                  2005-01-01                  Austria         84.2
## 5452                  2000-01-01                  Austria         81.6
## 5453                  1995-01-01                  Austria         78.2
## 5454                  1990-01-01                  Austria         74.4
## 5455                  2015-01-01                  Austria         88.2
## 5456                  2010-01-01                  Austria         86.1
## 5457                  2005-01-01                  Austria         84.2
## 5458                  2000-01-01                  Austria         81.6
## 5459                  1995-01-01                  Austria         78.2
## 5460                  1990-01-01                  Austria         74.4
## 5461                  2015-01-01                  Austria         88.2
## 5462                  2010-01-01                  Austria         86.1
## 5463                  2005-01-01                  Austria         84.2
## 5464                  2000-01-01                  Austria         81.6
## 5465                  1995-01-01                  Austria         78.2
## 5466                  1990-01-01                  Austria         74.4
## 5467                  2015-01-01                  Austria         88.2
## 5468                  2010-01-01                  Austria         86.1
## 5469                  2005-01-01                  Austria         84.2
## 5470                  2000-01-01                  Austria         81.6
## 5471                  1995-01-01                  Austria         78.2
## 5472                  1990-01-01                  Austria         74.4
## 5473                  2015-01-01                  Austria         88.2
## 5474                  2010-01-01                  Austria         86.1
## 5475                  2005-01-01                  Austria         84.2
## 5476                  2000-01-01                  Austria         81.6
## 5477                  1995-01-01                  Austria         78.2
## 5478                  1990-01-01                  Austria         74.4
## 5479                  2015-01-01                  Austria         88.2
## 5480                  2010-01-01                  Austria         86.1
## 5481                  2005-01-01                  Austria         84.2
## 5482                  2000-01-01                  Austria         81.6
## 5483                  1995-01-01                  Austria         78.2
## 5484                  1990-01-01                  Austria         74.4
## 5485                  2015-01-01                  Austria         88.2
## 5486                  2010-01-01                  Austria         86.1
## 5487                  2005-01-01                  Austria         84.2
## 5488                  2000-01-01                  Austria         81.6
## 5489                  1995-01-01                  Austria         78.2
## 5490                  1990-01-01                  Austria         74.4
## 5491                  2015-01-01                  Austria         88.2
## 5492                  2010-01-01                  Austria         86.1
## 5493                  2005-01-01                  Austria         84.2
## 5494                  2000-01-01                  Austria         81.6
## 5495                  1995-01-01                  Austria         78.2
## 5496                  1990-01-01                  Austria         74.4
## 5497                  2015-01-01                  Austria         88.2
## 5498                  2010-01-01                  Austria         86.1
## 5499                  2005-01-01                  Austria         84.2
## 5500                  2000-01-01                  Austria         81.6
## 5501                  1995-01-01                  Austria         78.2
## 5502                  1990-01-01                  Austria         74.4
## 5503                  2015-01-01                  Austria         88.2
## 5504                  2010-01-01                  Austria         86.1
## 5505                  2005-01-01                  Austria         84.2
## 5506                  2000-01-01                  Austria         81.6
## 5507                  1995-01-01                  Austria         78.2
## 5508                  1990-01-01                  Austria         74.4
## 5509                  2015-01-01                  Austria         88.2
## 5510                  2010-01-01                  Austria         86.1
## 5511                  2005-01-01                  Austria         84.2
## 5512                  2000-01-01                  Austria         81.6
## 5513                  1995-01-01                  Austria         78.2
## 5514                  1990-01-01                  Austria         74.4
## 5515                  2015-01-01                  Austria         88.2
## 5516                  2010-01-01                  Austria         86.1
## 5517                  2005-01-01                  Austria         84.2
## 5518                  2000-01-01                  Austria         81.6
## 5519                  1995-01-01                  Austria         78.2
## 5520                  1990-01-01                  Austria         74.4
## 5521                  2015-01-01                  Austria         88.2
## 5522                  2010-01-01                  Austria         86.1
## 5523                  2005-01-01                  Austria         84.2
## 5524                  2000-01-01                  Austria         81.6
## 5525                  1995-01-01                  Austria         78.2
## 5526                  1990-01-01                  Austria         74.4
## 5527                  2015-01-01                  Austria         88.2
## 5528                  2010-01-01                  Austria         86.1
## 5529                  2005-01-01                  Austria         84.2
## 5530                  2000-01-01                  Austria         81.6
## 5531                  1995-01-01                  Austria         78.2
## 5532                  1990-01-01                  Austria         74.4
## 5533                  2015-01-01                  Austria         88.2
## 5534                  2010-01-01                  Austria         86.1
## 5535                  2005-01-01                  Austria         84.2
## 5536                  2000-01-01                  Austria         81.6
## 5537                  1995-01-01                  Austria         78.2
## 5538                  1990-01-01                  Austria         74.4
## 5539                  2015-01-01                  Austria         88.2
## 5540                  2010-01-01                  Austria         86.1
## 5541                  2005-01-01                  Austria         84.2
## 5542                  2000-01-01                  Austria         81.6
## 5543                  1995-01-01                  Austria         78.2
## 5544                  1990-01-01                  Austria         74.4
## 5545                  2015-01-01                  Austria         88.2
## 5546                  2010-01-01                  Austria         86.1
## 5547                  2005-01-01                  Austria         84.2
## 5548                  2000-01-01                  Austria         81.6
## 5549                  1995-01-01                  Austria         78.2
## 5550                  1990-01-01                  Austria         74.4
## 5551                  2015-01-01                  Austria         88.2
## 5552                  2010-01-01                  Austria         86.1
## 5553                  2005-01-01                  Austria         84.2
## 5554                  2000-01-01                  Austria         81.6
## 5555                  1995-01-01                  Austria         78.2
## 5556                  1990-01-01                  Austria         74.4
## 5557                  2015-01-01                  Austria         88.2
## 5558                  2010-01-01                  Austria         86.1
## 5559                  2005-01-01                  Austria         84.2
## 5560                  2000-01-01                  Austria         81.6
## 5561                  1995-01-01                  Austria         78.2
## 5562                  1990-01-01                  Austria         74.4
## 5563                  2015-01-01                  Austria         88.2
## 5564                  2010-01-01                  Austria         86.1
## 5565                  2005-01-01                  Austria         84.2
## 5566                  2000-01-01                  Austria         81.6
## 5567                  1995-01-01                  Austria         78.2
## 5568                  1990-01-01                  Austria         74.4
## 5569                  2015-01-01                  Austria         88.2
## 5570                  2010-01-01                  Austria         86.1
## 5571                  2005-01-01                  Austria         84.2
## 5572                  2000-01-01                  Austria         81.6
## 5573                  1995-01-01                  Austria         78.2
## 5574                  1990-01-01                  Austria         74.4
## 5575                  2015-01-01                  Austria         88.2
## 5576                  2010-01-01                  Austria         86.1
## 5577                  2005-01-01                  Austria         84.2
## 5578                  2000-01-01                  Austria         81.6
## 5579                  1995-01-01                  Austria         78.2
## 5580                  1990-01-01                  Austria         74.4
## 5581                  2015-01-01                  Austria         88.2
## 5582                  2010-01-01                  Austria         86.1
## 5583                  2005-01-01                  Austria         84.2
## 5584                  2000-01-01                  Austria         81.6
## 5585                  1995-01-01                  Austria         78.2
## 5586                  1990-01-01                  Austria         74.4
## 5587                  2015-01-01                  Austria         88.2
## 5588                  2010-01-01                  Austria         86.1
## 5589                  2005-01-01                  Austria         84.2
## 5590                  2000-01-01                  Austria         81.6
## 5591                  1995-01-01                  Austria         78.2
## 5592                  1990-01-01                  Austria         74.4
## 5593                  2015-01-01                  Austria         88.2
## 5594                  2010-01-01                  Austria         86.1
## 5595                  2005-01-01                  Austria         84.2
## 5596                  2000-01-01                  Austria         81.6
## 5597                  1995-01-01                  Austria         78.2
## 5598                  1990-01-01                  Austria         74.4
## 5599                  2015-01-01                  Austria         88.2
## 5600                  2010-01-01                  Austria         86.1
## 5601                  2005-01-01                  Austria         84.2
## 5602                  2000-01-01                  Austria         81.6
## 5603                  1995-01-01                  Austria         78.2
## 5604                  1990-01-01                  Austria         74.4
## 5605                  2015-01-01                  Austria         88.2
## 5606                  2010-01-01                  Austria         86.1
## 5607                  2005-01-01                  Austria         84.2
## 5608                  2000-01-01                  Austria         81.6
## 5609                  1995-01-01                  Austria         78.2
## 5610                  1990-01-01                  Austria         74.4
## 5611                  2015-01-01                  Austria         88.2
## 5612                  2010-01-01                  Austria         86.1
## 5613                  2005-01-01                  Austria         84.2
## 5614                  2000-01-01                  Austria         81.6
## 5615                  1995-01-01                  Austria         78.2
## 5616                  1990-01-01                  Austria         74.4
## 5617                  2015-01-01                  Austria         88.2
## 5618                  2010-01-01                  Austria         86.1
## 5619                  2005-01-01                  Austria         84.2
## 5620                  2000-01-01                  Austria         81.6
## 5621                  1995-01-01                  Austria         78.2
## 5622                  1990-01-01                  Austria         74.4
## 5623                  2015-01-01                  Austria         88.2
## 5624                  2010-01-01                  Austria         86.1
## 5625                  2005-01-01                  Austria         84.2
## 5626                  2000-01-01                  Austria         81.6
## 5627                  1995-01-01                  Austria         78.2
## 5628                  1990-01-01                  Austria         74.4
## 5629                  2015-01-01                  Austria         88.2
## 5630                  2010-01-01                  Austria         86.1
## 5631                  2005-01-01                  Austria         84.2
## 5632                  2000-01-01                  Austria         81.6
## 5633                  1995-01-01                  Austria         78.2
## 5634                  1990-01-01                  Austria         74.4
## 5635                  2015-01-01                  Austria         88.2
## 5636                  2010-01-01                  Austria         86.1
## 5637                  2005-01-01                  Austria         84.2
## 5638                  2000-01-01                  Austria         81.6
## 5639                  1995-01-01                  Austria         78.2
## 5640                  1990-01-01                  Austria         74.4
## 5641                  2015-01-01                  Austria         88.2
## 5642                  2010-01-01                  Austria         86.1
## 5643                  2005-01-01                  Austria         84.2
## 5644                  2000-01-01                  Austria         81.6
## 5645                  1995-01-01                  Austria         78.2
## 5646                  1990-01-01                  Austria         74.4
## 5647                  2015-01-01                  Austria         88.2
## 5648                  2010-01-01                  Austria         86.1
## 5649                  2005-01-01                  Austria         84.2
## 5650                  2000-01-01                  Austria         81.6
## 5651                  1995-01-01                  Austria         78.2
## 5652                  1990-01-01                  Austria         74.4
## 5653                  2015-01-01                  Austria         88.2
## 5654                  2010-01-01                  Austria         86.1
## 5655                  2005-01-01                  Austria         84.2
## 5656                  2000-01-01                  Austria         81.6
## 5657                  1995-01-01                  Austria         78.2
## 5658                  1990-01-01                  Austria         74.4
## 5659                  2015-01-01                  Austria         88.2
## 5660                  2010-01-01                  Austria         86.1
## 5661                  2005-01-01                  Austria         84.2
## 5662                  2000-01-01                  Austria         81.6
## 5663                  1995-01-01                  Austria         78.2
## 5664                  1990-01-01                  Austria         74.4
## 5665                  2015-01-01                  Austria         88.2
## 5666                  2010-01-01                  Austria         86.1
## 5667                  2005-01-01                  Austria         84.2
## 5668                  2000-01-01                  Austria         81.6
## 5669                  1995-01-01                  Austria         78.2
## 5670                  1990-01-01                  Austria         74.4
## 5671                  2015-01-01                  Austria         88.2
## 5672                  2010-01-01                  Austria         86.1
## 5673                  2005-01-01                  Austria         84.2
## 5674                  2000-01-01                  Austria         81.6
## 5675                  1995-01-01                  Austria         78.2
## 5676                  1990-01-01                  Austria         74.4
## 5677                  2015-01-01                  Austria         88.2
## 5678                  2010-01-01                  Austria         86.1
## 5679                  2005-01-01                  Austria         84.2
## 5680                  2000-01-01                  Austria         81.6
## 5681                  1995-01-01                  Austria         78.2
## 5682                  1990-01-01                  Austria         74.4
## 5683                  2015-01-01                  Austria         88.2
## 5684                  2010-01-01                  Austria         86.1
## 5685                  2005-01-01                  Austria         84.2
## 5686                  2000-01-01                  Austria         81.6
## 5687                  1995-01-01                  Austria         78.2
## 5688                  1990-01-01                  Austria         74.4
## 5689                  2015-01-01                  Austria         88.2
## 5690                  2010-01-01                  Austria         86.1
## 5691                  2005-01-01                  Austria         84.2
## 5692                  2000-01-01                  Austria         81.6
## 5693                  1995-01-01                  Austria         78.2
## 5694                  1990-01-01                  Austria         74.4
## 5695                  2015-01-01                  Austria         88.2
## 5696                  2010-01-01                  Austria         86.1
## 5697                  2005-01-01                  Austria         84.2
## 5698                  2000-01-01                  Austria         81.6
## 5699                  1995-01-01                  Austria         78.2
## 5700                  1990-01-01                  Austria         74.4
## 5701                  2015-01-01                  Austria         88.2
## 5702                  2010-01-01                  Austria         86.1
## 5703                  2005-01-01                  Austria         84.2
## 5704                  2000-01-01                  Austria         81.6
## 5705                  1995-01-01                  Austria         78.2
## 5706                  1990-01-01                  Austria         74.4
## 5707                  2015-01-01                  Austria         88.2
## 5708                  2010-01-01                  Austria         86.1
## 5709                  2005-01-01                  Austria         84.2
## 5710                  2000-01-01                  Austria         81.6
## 5711                  1995-01-01                  Austria         78.2
## 5712                  1990-01-01                  Austria         74.4
## 5713                  2015-01-01                  Austria         88.2
## 5714                  2010-01-01                  Austria         86.1
## 5715                  2005-01-01                  Austria         84.2
## 5716                  2000-01-01                  Austria         81.6
## 5717                  1995-01-01                  Austria         78.2
## 5718                  1990-01-01                  Austria         74.4
## 5719                  2015-01-01                  Austria         88.2
## 5720                  2010-01-01                  Austria         86.1
## 5721                  2005-01-01                  Austria         84.2
## 5722                  2000-01-01                  Austria         81.6
## 5723                  1995-01-01                  Austria         78.2
## 5724                  1990-01-01                  Austria         74.4
## 5725                  2015-01-01                  Austria         88.2
## 5726                  2010-01-01                  Austria         86.1
## 5727                  2005-01-01                  Austria         84.2
## 5728                  2000-01-01                  Austria         81.6
## 5729                  1995-01-01                  Austria         78.2
## 5730                  1990-01-01                  Austria         74.4
## 5731                  2015-01-01                  Austria         88.2
## 5732                  2010-01-01                  Austria         86.1
## 5733                  2005-01-01                  Austria         84.2
## 5734                  2000-01-01                  Austria         81.6
## 5735                  1995-01-01                  Austria         78.2
## 5736                  1990-01-01                  Austria         74.4
## 5737                  2015-01-01                  Austria         88.2
## 5738                  2010-01-01                  Austria         86.1
## 5739                  2005-01-01                  Austria         84.2
## 5740                  2000-01-01                  Austria         81.6
## 5741                  1995-01-01                  Austria         78.2
## 5742                  1990-01-01                  Austria         74.4
## 5743                  2015-01-01                  Austria         88.2
## 5744                  2010-01-01                  Austria         86.1
## 5745                  2005-01-01                  Austria         84.2
## 5746                  2000-01-01                  Austria         81.6
## 5747                  1995-01-01                  Austria         78.2
## 5748                  1990-01-01                  Austria         74.4
## 5749                  2015-01-01                  Austria         88.2
## 5750                  2010-01-01                  Austria         86.1
## 5751                  2005-01-01                  Austria         84.2
## 5752                  2000-01-01                  Austria         81.6
## 5753                  1995-01-01                  Austria         78.2
## 5754                  1990-01-01                  Austria         74.4
## 5755                  2015-01-01                  Austria         88.2
## 5756                  2010-01-01                  Austria         86.1
## 5757                  2005-01-01                  Austria         84.2
## 5758                  2000-01-01                  Austria         81.6
## 5759                  1995-01-01                  Austria         78.2
## 5760                  1990-01-01                  Austria         74.4
## 5761                  2015-01-01                  Austria         88.2
## 5762                  2010-01-01                  Austria         86.1
## 5763                  2005-01-01                  Austria         84.2
## 5764                  2000-01-01                  Austria         81.6
## 5765                  1995-01-01                  Austria         78.2
## 5766                  1990-01-01                  Austria         74.4
## 5767                  2015-01-01                  Austria         88.2
## 5768                  2010-01-01                  Austria         86.1
## 5769                  2005-01-01                  Austria         84.2
## 5770                  2000-01-01                  Austria         81.6
## 5771                  1995-01-01                  Austria         78.2
## 5772                  1990-01-01                  Austria         74.4
## 5773                  2015-01-01                  Austria         88.2
## 5774                  2010-01-01                  Austria         86.1
## 5775                  2005-01-01                  Austria         84.2
## 5776                  2000-01-01                  Austria         81.6
## 5777                  1995-01-01                  Austria         78.2
## 5778                  1990-01-01                  Austria         74.4
## 5779                  2015-01-01                  Austria         88.2
## 5780                  2010-01-01                  Austria         86.1
## 5781                  2005-01-01                  Austria         84.2
## 5782                  2000-01-01                  Austria         81.6
## 5783                  1995-01-01                  Austria         78.2
## 5784                  1990-01-01                  Austria         74.4
## 5785                  2015-01-01                  Austria         88.2
## 5786                  2010-01-01                  Austria         86.1
## 5787                  2005-01-01                  Austria         84.2
## 5788                  2000-01-01                  Austria         81.6
## 5789                  1995-01-01                  Austria         78.2
## 5790                  1990-01-01                  Austria         74.4
## 5791                  2015-01-01                  Austria         88.2
## 5792                  2010-01-01                  Austria         86.1
## 5793                  2005-01-01                  Austria         84.2
## 5794                  2000-01-01                  Austria         81.6
## 5795                  1995-01-01                  Austria         78.2
## 5796                  1990-01-01                  Austria         74.4
## 5797                  2015-01-01                  Austria         88.2
## 5798                  2010-01-01                  Austria         86.1
## 5799                  2005-01-01                  Austria         84.2
## 5800                  2000-01-01                  Austria         81.6
## 5801                  1995-01-01                  Austria         78.2
## 5802                  1990-01-01                  Austria         74.4
## 5803                  2015-01-01                  Austria         88.2
## 5804                  2010-01-01                  Austria         86.1
## 5805                  2005-01-01                  Austria         84.2
## 5806                  2000-01-01                  Austria         81.6
## 5807                  1995-01-01                  Austria         78.2
## 5808                  1990-01-01                  Austria         74.4
## 5809                  2015-01-01                  Austria         88.2
## 5810                  2010-01-01                  Austria         86.1
## 5811                  2005-01-01                  Austria         84.2
## 5812                  2000-01-01                  Austria         81.6
## 5813                  1995-01-01                  Austria         78.2
## 5814                  1990-01-01                  Austria         74.4
## 5815                  2015-01-01                  Austria         88.2
## 5816                  2010-01-01                  Austria         86.1
## 5817                  2005-01-01                  Austria         84.2
## 5818                  2000-01-01                  Austria         81.6
## 5819                  1995-01-01                  Austria         78.2
## 5820                  1990-01-01                  Austria         74.4
## 5821                  2015-01-01                  Austria         88.2
## 5822                  2010-01-01                  Austria         86.1
## 5823                  2005-01-01                  Austria         84.2
## 5824                  2000-01-01                  Austria         81.6
## 5825                  1995-01-01                  Austria         78.2
## 5826                  1990-01-01                  Austria         74.4
## 5827                  2015-01-01                  Austria         88.2
## 5828                  2010-01-01                  Austria         86.1
## 5829                  2005-01-01                  Austria         84.2
## 5830                  2000-01-01                  Austria         81.6
## 5831                  1995-01-01                  Austria         78.2
## 5832                  1990-01-01                  Austria         74.4
## 5833                  2015-01-01                  Austria         88.2
## 5834                  2010-01-01                  Austria         86.1
## 5835                  2005-01-01                  Austria         84.2
## 5836                  2000-01-01                  Austria         81.6
## 5837                  1995-01-01                  Austria         78.2
## 5838                  1990-01-01                  Austria         74.4
## 5839                  2015-01-01                  Austria         88.2
## 5840                  2010-01-01                  Austria         86.1
## 5841                  2005-01-01                  Austria         84.2
## 5842                  2000-01-01                  Austria         81.6
## 5843                  1995-01-01                  Austria         78.2
## 5844                  1990-01-01                  Austria         74.4
## 5845                  2015-01-01                  Austria         88.2
## 5846                  2010-01-01                  Austria         86.1
## 5847                  2005-01-01                  Austria         84.2
## 5848                  2000-01-01                  Austria         81.6
## 5849                  1995-01-01                  Austria         78.2
## 5850                  1990-01-01                  Austria         74.4
## 5851                  2015-01-01                  Austria         88.2
## 5852                  2010-01-01                  Austria         86.1
## 5853                  2005-01-01                  Austria         84.2
## 5854                  2000-01-01                  Austria         81.6
## 5855                  1995-01-01                  Austria         78.2
## 5856                  1990-01-01                  Austria         74.4
## 5857                  2015-01-01                  Austria         88.2
## 5858                  2010-01-01                  Austria         86.1
## 5859                  2005-01-01                  Austria         84.2
## 5860                  2000-01-01                  Austria         81.6
## 5861                  1995-01-01                  Austria         78.2
## 5862                  1990-01-01                  Austria         74.4
## 5863                  2015-01-01                  Austria         88.2
## 5864                  2010-01-01                  Austria         86.1
## 5865                  2005-01-01                  Austria         84.2
## 5866                  2000-01-01                  Austria         81.6
## 5867                  1995-01-01                  Austria         78.2
## 5868                  1990-01-01                  Austria         74.4
## 5869                  2015-01-01                  Austria         88.2
## 5870                  2010-01-01                  Austria         86.1
## 5871                  2005-01-01                  Austria         84.2
## 5872                  2000-01-01                  Austria         81.6
## 5873                  1995-01-01                  Austria         78.2
## 5874                  1990-01-01                  Austria         74.4
## 5875                  2015-01-01                  Austria         88.2
## 5876                  2010-01-01                  Austria         86.1
## 5877                  2005-01-01                  Austria         84.2
## 5878                  2000-01-01                  Austria         81.6
## 5879                  1995-01-01                  Austria         78.2
## 5880                  1990-01-01                  Austria         74.4
## 5881                  2015-01-01                  Austria         88.2
## 5882                  2010-01-01                  Austria         86.1
## 5883                  2005-01-01                  Austria         84.2
## 5884                  2000-01-01                  Austria         81.6
## 5885                  1995-01-01                  Austria         78.2
## 5886                  1990-01-01                  Austria         74.4
## 5887                  2015-01-01                  Austria         88.2
## 5888                  2010-01-01                  Austria         86.1
## 5889                  2005-01-01                  Austria         84.2
## 5890                  2000-01-01                  Austria         81.6
## 5891                  1995-01-01                  Austria         78.2
## 5892                  1990-01-01                  Austria         74.4
## 5893                  2015-01-01                  Austria         88.2
## 5894                  2010-01-01                  Austria         86.1
## 5895                  2005-01-01                  Austria         84.2
## 5896                  2000-01-01                  Austria         81.6
## 5897                  1995-01-01                  Austria         78.2
## 5898                  1990-01-01                  Austria         74.4
## 5899                  2015-01-01                  Austria         88.2
## 5900                  2010-01-01                  Austria         86.1
## 5901                  2005-01-01                  Austria         84.2
## 5902                  2000-01-01                  Austria         81.6
## 5903                  1995-01-01                  Austria         78.2
## 5904                  1990-01-01                  Austria         74.4
## 5905                  2015-01-01                  Austria         88.2
## 5906                  2010-01-01                  Austria         86.1
## 5907                  2005-01-01                  Austria         84.2
## 5908                  2000-01-01                  Austria         81.6
## 5909                  1995-01-01                  Austria         78.2
## 5910                  1990-01-01                  Austria         74.4
## 5911                  2015-01-01                  Austria         88.2
## 5912                  2010-01-01                  Austria         86.1
## 5913                  2005-01-01                  Austria         84.2
## 5914                  2000-01-01                  Austria         81.6
## 5915                  1995-01-01                  Austria         78.2
## 5916                  1990-01-01                  Austria         74.4
## 5917                  2015-01-01                  Austria         88.2
## 5918                  2010-01-01                  Austria         86.1
## 5919                  2005-01-01                  Austria         84.2
## 5920                  2000-01-01                  Austria         81.6
## 5921                  1995-01-01                  Austria         78.2
## 5922                  1990-01-01                  Austria         74.4
## 5923                  2015-01-01                  Austria         88.2
## 5924                  2010-01-01                  Austria         86.1
## 5925                  2005-01-01                  Austria         84.2
## 5926                  2000-01-01                  Austria         81.6
## 5927                  1995-01-01                  Austria         78.2
## 5928                  1990-01-01                  Austria         74.4
## 5929                  2015-01-01                  Austria         88.2
## 5930                  2010-01-01                  Austria         86.1
## 5931                  2005-01-01                  Austria         84.2
## 5932                  2000-01-01                  Austria         81.6
## 5933                  1995-01-01                  Austria         78.2
## 5934                  1990-01-01                  Austria         74.4
## 5935                  2015-01-01                  Austria         88.2
## 5936                  2010-01-01                  Austria         86.1
## 5937                  2005-01-01                  Austria         84.2
## 5938                  2000-01-01                  Austria         81.6
## 5939                  1995-01-01                  Austria         78.2
## 5940                  1990-01-01                  Austria         74.4
## 5941                  2015-01-01                  Austria         88.2
## 5942                  2010-01-01                  Austria         86.1
## 5943                  2005-01-01                  Austria         84.2
## 5944                  2000-01-01                  Austria         81.6
## 5945                  1995-01-01                  Austria         78.2
## 5946                  1990-01-01                  Austria         74.4
## 5947                  2015-01-01                  Austria         88.2
## 5948                  2010-01-01                  Austria         86.1
## 5949                  2005-01-01                  Austria         84.2
## 5950                  2000-01-01                  Austria         81.6
## 5951                  1995-01-01                  Austria         78.2
## 5952                  1990-01-01                  Austria         74.4
## 5953                  2015-01-01                  Austria         88.2
## 5954                  2010-01-01                  Austria         86.1
## 5955                  2005-01-01                  Austria         84.2
## 5956                  2000-01-01                  Austria         81.6
## 5957                  1995-01-01                  Austria         78.2
## 5958                  1990-01-01                  Austria         74.4
## 5959                  2015-01-01                  Austria         88.2
## 5960                  2010-01-01                  Austria         86.1
## 5961                  2005-01-01                  Austria         84.2
## 5962                  2000-01-01                  Austria         81.6
## 5963                  1995-01-01                  Austria         78.2
## 5964                  1990-01-01                  Austria         74.4
## 5965                  2015-01-01                  Austria         88.2
## 5966                  2010-01-01                  Austria         86.1
## 5967                  2005-01-01                  Austria         84.2
## 5968                  2000-01-01                  Austria         81.6
## 5969                  1995-01-01                  Austria         78.2
## 5970                  1990-01-01                  Austria         74.4
## 5971                  2015-01-01                  Austria         88.2
## 5972                  2010-01-01                  Austria         86.1
## 5973                  2005-01-01                  Austria         84.2
## 5974                  2000-01-01                  Austria         81.6
## 5975                  1995-01-01                  Austria         78.2
## 5976                  1990-01-01                  Austria         74.4
## 5977                  2015-01-01                  Austria         88.2
## 5978                  2010-01-01                  Austria         86.1
## 5979                  2005-01-01                  Austria         84.2
## 5980                  2000-01-01                  Austria         81.6
## 5981                  1995-01-01                  Austria         78.2
## 5982                  1990-01-01                  Austria         74.4
## 5983                  2015-01-01                  Austria         88.2
## 5984                  2010-01-01                  Austria         86.1
## 5985                  2005-01-01                  Austria         84.2
## 5986                  2000-01-01                  Austria         81.6
## 5987                  1995-01-01                  Austria         78.2
## 5988                  1990-01-01                  Austria         74.4
## 5989                  2015-01-01                  Austria         88.2
## 5990                  2010-01-01                  Austria         86.1
## 5991                  2005-01-01                  Austria         84.2
## 5992                  2000-01-01                  Austria         81.6
## 5993                  1995-01-01                  Austria         78.2
## 5994                  1990-01-01                  Austria         74.4
## 5995                  2015-01-01                  Austria         88.2
## 5996                  2010-01-01                  Austria         86.1
## 5997                  2005-01-01                  Austria         84.2
## 5998                  2000-01-01                  Austria         81.6
## 5999                  1995-01-01                  Austria         78.2
## 6000                  1990-01-01                  Austria         74.4
## 6001                  2015-01-01                  Austria         88.2
## 6002                  2010-01-01                  Austria         86.1
## 6003                  2005-01-01                  Austria         84.2
## 6004                  2000-01-01                  Austria         81.6
## 6005                  1995-01-01                  Austria         78.2
## 6006                  1990-01-01                  Austria         74.4
## 6007                  2015-01-01                  Austria         88.2
## 6008                  2010-01-01                  Austria         86.1
## 6009                  2005-01-01                  Austria         84.2
## 6010                  2000-01-01                  Austria         81.6
## 6011                  1995-01-01                  Austria         78.2
## 6012                  1990-01-01                  Austria         74.4
## 6013                  2015-01-01                  Austria         88.2
## 6014                  2010-01-01                  Austria         86.1
## 6015                  2005-01-01                  Austria         84.2
## 6016                  2000-01-01                  Austria         81.6
## 6017                  1995-01-01                  Austria         78.2
## 6018                  1990-01-01                  Austria         74.4
## 6019                  2015-01-01                  Austria         88.2
## 6020                  2010-01-01                  Austria         86.1
## 6021                  2005-01-01                  Austria         84.2
## 6022                  2000-01-01                  Austria         81.6
## 6023                  1995-01-01                  Austria         78.2
## 6024                  1990-01-01                  Austria         74.4
## 6025                  2015-01-01                  Austria         88.2
## 6026                  2010-01-01                  Austria         86.1
## 6027                  2005-01-01                  Austria         84.2
## 6028                  2000-01-01                  Austria         81.6
## 6029                  1995-01-01                  Austria         78.2
## 6030                  1990-01-01                  Austria         74.4
## 6031                  2015-01-01               Azerbaijan         64.5
## 6032                  2010-01-01               Azerbaijan         59.9
## 6033                  2005-01-01               Azerbaijan         55.4
## 6034                  2000-01-01               Azerbaijan         53.6
## 6035                  1995-01-01               Azerbaijan         51.8
## 6036                  1990-01-01               Azerbaijan         52.9
## 6037                  2015-01-01               Azerbaijan         64.5
## 6038                  2010-01-01               Azerbaijan         59.9
## 6039                  2005-01-01               Azerbaijan         55.4
## 6040                  2000-01-01               Azerbaijan         53.6
## 6041                  1995-01-01               Azerbaijan         51.8
## 6042                  1990-01-01               Azerbaijan         52.9
## 6043                  2015-01-01               Azerbaijan         64.5
## 6044                  2010-01-01               Azerbaijan         59.9
## 6045                  2005-01-01               Azerbaijan         55.4
## 6046                  2000-01-01               Azerbaijan         53.6
## 6047                  1995-01-01               Azerbaijan         51.8
## 6048                  1990-01-01               Azerbaijan         52.9
## 6049                  2015-01-01               Azerbaijan         64.5
## 6050                  2010-01-01               Azerbaijan         59.9
## 6051                  2005-01-01               Azerbaijan         55.4
## 6052                  2000-01-01               Azerbaijan         53.6
## 6053                  1995-01-01               Azerbaijan         51.8
## 6054                  1990-01-01               Azerbaijan         52.9
## 6055                  2015-01-01               Azerbaijan         64.5
## 6056                  2010-01-01               Azerbaijan         59.9
## 6057                  2005-01-01               Azerbaijan         55.4
## 6058                  2000-01-01               Azerbaijan         53.6
## 6059                  1995-01-01               Azerbaijan         51.8
## 6060                  1990-01-01               Azerbaijan         52.9
## 6061                  2015-01-01               Azerbaijan         64.5
## 6062                  2010-01-01               Azerbaijan         59.9
## 6063                  2005-01-01               Azerbaijan         55.4
## 6064                  2000-01-01               Azerbaijan         53.6
## 6065                  1995-01-01               Azerbaijan         51.8
## 6066                  1990-01-01               Azerbaijan         52.9
## 6067                  2015-01-01               Azerbaijan         64.5
## 6068                  2010-01-01               Azerbaijan         59.9
## 6069                  2005-01-01               Azerbaijan         55.4
## 6070                  2000-01-01               Azerbaijan         53.6
## 6071                  1995-01-01               Azerbaijan         51.8
## 6072                  1990-01-01               Azerbaijan         52.9
## 6073                  2015-01-01               Azerbaijan         64.5
## 6074                  2010-01-01               Azerbaijan         59.9
## 6075                  2005-01-01               Azerbaijan         55.4
## 6076                  2000-01-01               Azerbaijan         53.6
## 6077                  1995-01-01               Azerbaijan         51.8
## 6078                  1990-01-01               Azerbaijan         52.9
## 6079                  2015-01-01               Azerbaijan         64.5
## 6080                  2010-01-01               Azerbaijan         59.9
## 6081                  2005-01-01               Azerbaijan         55.4
## 6082                  2000-01-01               Azerbaijan         53.6
## 6083                  1995-01-01               Azerbaijan         51.8
## 6084                  1990-01-01               Azerbaijan         52.9
## 6085                  2015-01-01               Azerbaijan         64.5
## 6086                  2010-01-01               Azerbaijan         59.9
## 6087                  2005-01-01               Azerbaijan         55.4
## 6088                  2000-01-01               Azerbaijan         53.6
## 6089                  1995-01-01               Azerbaijan         51.8
## 6090                  1990-01-01               Azerbaijan         52.9
## 6091                  2015-01-01               Azerbaijan         64.5
## 6092                  2010-01-01               Azerbaijan         59.9
## 6093                  2005-01-01               Azerbaijan         55.4
## 6094                  2000-01-01               Azerbaijan         53.6
## 6095                  1995-01-01               Azerbaijan         51.8
## 6096                  1990-01-01               Azerbaijan         52.9
## 6097                  2015-01-01               Azerbaijan         64.5
## 6098                  2010-01-01               Azerbaijan         59.9
## 6099                  2005-01-01               Azerbaijan         55.4
## 6100                  2000-01-01               Azerbaijan         53.6
## 6101                  1995-01-01               Azerbaijan         51.8
## 6102                  1990-01-01               Azerbaijan         52.9
## 6103                  2015-01-01               Azerbaijan         64.5
## 6104                  2010-01-01               Azerbaijan         59.9
## 6105                  2005-01-01               Azerbaijan         55.4
## 6106                  2000-01-01               Azerbaijan         53.6
## 6107                  1995-01-01               Azerbaijan         51.8
## 6108                  1990-01-01               Azerbaijan         52.9
## 6109                  2015-01-01               Azerbaijan         64.5
## 6110                  2010-01-01               Azerbaijan         59.9
## 6111                  2005-01-01               Azerbaijan         55.4
## 6112                  2000-01-01               Azerbaijan         53.6
## 6113                  1995-01-01               Azerbaijan         51.8
## 6114                  1990-01-01               Azerbaijan         52.9
## 6115                  2015-01-01               Azerbaijan         64.5
## 6116                  2010-01-01               Azerbaijan         59.9
## 6117                  2005-01-01               Azerbaijan         55.4
## 6118                  2000-01-01               Azerbaijan         53.6
## 6119                  1995-01-01               Azerbaijan         51.8
## 6120                  1990-01-01               Azerbaijan         52.9
## 6121                  2015-01-01               Azerbaijan         64.5
## 6122                  2010-01-01               Azerbaijan         59.9
## 6123                  2005-01-01               Azerbaijan         55.4
## 6124                  2000-01-01               Azerbaijan         53.6
## 6125                  1995-01-01               Azerbaijan         51.8
## 6126                  1990-01-01               Azerbaijan         52.9
## 6127                  2015-01-01               Azerbaijan         64.5
## 6128                  2010-01-01               Azerbaijan         59.9
## 6129                  2005-01-01               Azerbaijan         55.4
## 6130                  2000-01-01               Azerbaijan         53.6
## 6131                  1995-01-01               Azerbaijan         51.8
## 6132                  1990-01-01               Azerbaijan         52.9
## 6133                  2015-01-01               Azerbaijan         64.5
## 6134                  2010-01-01               Azerbaijan         59.9
## 6135                  2005-01-01               Azerbaijan         55.4
## 6136                  2000-01-01               Azerbaijan         53.6
## 6137                  1995-01-01               Azerbaijan         51.8
## 6138                  1990-01-01               Azerbaijan         52.9
## 6139                  2015-01-01               Azerbaijan         64.5
## 6140                  2010-01-01               Azerbaijan         59.9
## 6141                  2005-01-01               Azerbaijan         55.4
## 6142                  2000-01-01               Azerbaijan         53.6
## 6143                  1995-01-01               Azerbaijan         51.8
## 6144                  1990-01-01               Azerbaijan         52.9
## 6145                  2015-01-01               Azerbaijan         64.5
## 6146                  2010-01-01               Azerbaijan         59.9
## 6147                  2005-01-01               Azerbaijan         55.4
## 6148                  2000-01-01               Azerbaijan         53.6
## 6149                  1995-01-01               Azerbaijan         51.8
## 6150                  1990-01-01               Azerbaijan         52.9
## 6151                  2015-01-01               Azerbaijan         64.5
## 6152                  2010-01-01               Azerbaijan         59.9
## 6153                  2005-01-01               Azerbaijan         55.4
## 6154                  2000-01-01               Azerbaijan         53.6
## 6155                  1995-01-01               Azerbaijan         51.8
## 6156                  1990-01-01               Azerbaijan         52.9
## 6157                  2015-01-01               Azerbaijan         64.5
## 6158                  2010-01-01               Azerbaijan         59.9
## 6159                  2005-01-01               Azerbaijan         55.4
## 6160                  2000-01-01               Azerbaijan         53.6
## 6161                  1995-01-01               Azerbaijan         51.8
## 6162                  1990-01-01               Azerbaijan         52.9
## 6163                  2015-01-01               Azerbaijan         64.5
## 6164                  2010-01-01               Azerbaijan         59.9
## 6165                  2005-01-01               Azerbaijan         55.4
## 6166                  2000-01-01               Azerbaijan         53.6
## 6167                  1995-01-01               Azerbaijan         51.8
## 6168                  1990-01-01               Azerbaijan         52.9
## 6169                  2015-01-01               Azerbaijan         64.5
## 6170                  2010-01-01               Azerbaijan         59.9
## 6171                  2005-01-01               Azerbaijan         55.4
## 6172                  2000-01-01               Azerbaijan         53.6
## 6173                  1995-01-01               Azerbaijan         51.8
## 6174                  1990-01-01               Azerbaijan         52.9
## 6175                  2015-01-01               Azerbaijan         64.5
## 6176                  2010-01-01               Azerbaijan         59.9
## 6177                  2005-01-01               Azerbaijan         55.4
## 6178                  2000-01-01               Azerbaijan         53.6
## 6179                  1995-01-01               Azerbaijan         51.8
## 6180                  1990-01-01               Azerbaijan         52.9
## 6181                  2015-01-01               Azerbaijan         64.5
## 6182                  2010-01-01               Azerbaijan         59.9
## 6183                  2005-01-01               Azerbaijan         55.4
## 6184                  2000-01-01               Azerbaijan         53.6
## 6185                  1995-01-01               Azerbaijan         51.8
## 6186                  1990-01-01               Azerbaijan         52.9
## 6187                  2015-01-01               Azerbaijan         64.5
## 6188                  2010-01-01               Azerbaijan         59.9
## 6189                  2005-01-01               Azerbaijan         55.4
## 6190                  2000-01-01               Azerbaijan         53.6
## 6191                  1995-01-01               Azerbaijan         51.8
## 6192                  1990-01-01               Azerbaijan         52.9
## 6193                  2015-01-01               Azerbaijan         64.5
## 6194                  2010-01-01               Azerbaijan         59.9
## 6195                  2005-01-01               Azerbaijan         55.4
## 6196                  2000-01-01               Azerbaijan         53.6
## 6197                  1995-01-01               Azerbaijan         51.8
## 6198                  1990-01-01               Azerbaijan         52.9
## 6199                  2015-01-01               Azerbaijan         64.5
## 6200                  2010-01-01               Azerbaijan         59.9
## 6201                  2005-01-01               Azerbaijan         55.4
## 6202                  2000-01-01               Azerbaijan         53.6
## 6203                  1995-01-01               Azerbaijan         51.8
## 6204                  1990-01-01               Azerbaijan         52.9
## 6205                  2015-01-01               Azerbaijan         64.5
## 6206                  2010-01-01               Azerbaijan         59.9
## 6207                  2005-01-01               Azerbaijan         55.4
## 6208                  2000-01-01               Azerbaijan         53.6
## 6209                  1995-01-01               Azerbaijan         51.8
## 6210                  1990-01-01               Azerbaijan         52.9
## 6211                  2015-01-01               Azerbaijan         64.5
## 6212                  2010-01-01               Azerbaijan         59.9
## 6213                  2005-01-01               Azerbaijan         55.4
## 6214                  2000-01-01               Azerbaijan         53.6
## 6215                  1995-01-01               Azerbaijan         51.8
## 6216                  1990-01-01               Azerbaijan         52.9
## 6217                  2015-01-01               Azerbaijan         64.5
## 6218                  2010-01-01               Azerbaijan         59.9
## 6219                  2005-01-01               Azerbaijan         55.4
## 6220                  2000-01-01               Azerbaijan         53.6
## 6221                  1995-01-01               Azerbaijan         51.8
## 6222                  1990-01-01               Azerbaijan         52.9
## 6223                  2015-01-01               Azerbaijan         64.5
## 6224                  2010-01-01               Azerbaijan         59.9
## 6225                  2005-01-01               Azerbaijan         55.4
## 6226                  2000-01-01               Azerbaijan         53.6
## 6227                  1995-01-01               Azerbaijan         51.8
## 6228                  1990-01-01               Azerbaijan         52.9
## 6229                  2015-01-01               Azerbaijan         64.5
## 6230                  2010-01-01               Azerbaijan         59.9
## 6231                  2005-01-01               Azerbaijan         55.4
## 6232                  2000-01-01               Azerbaijan         53.6
## 6233                  1995-01-01               Azerbaijan         51.8
## 6234                  1990-01-01               Azerbaijan         52.9
## 6235                  2015-01-01               Azerbaijan         64.5
## 6236                  2010-01-01               Azerbaijan         59.9
## 6237                  2005-01-01               Azerbaijan         55.4
## 6238                  2000-01-01               Azerbaijan         53.6
## 6239                  1995-01-01               Azerbaijan         51.8
## 6240                  1990-01-01               Azerbaijan         52.9
## 6241                  2015-01-01               Azerbaijan         64.5
## 6242                  2010-01-01               Azerbaijan         59.9
## 6243                  2005-01-01               Azerbaijan         55.4
## 6244                  2000-01-01               Azerbaijan         53.6
## 6245                  1995-01-01               Azerbaijan         51.8
## 6246                  1990-01-01               Azerbaijan         52.9
## 6247                  2015-01-01               Azerbaijan         64.5
## 6248                  2010-01-01               Azerbaijan         59.9
## 6249                  2005-01-01               Azerbaijan         55.4
## 6250                  2000-01-01               Azerbaijan         53.6
## 6251                  1995-01-01               Azerbaijan         51.8
## 6252                  1990-01-01               Azerbaijan         52.9
## 6253                  2015-01-01               Azerbaijan         64.5
## 6254                  2010-01-01               Azerbaijan         59.9
## 6255                  2005-01-01               Azerbaijan         55.4
## 6256                  2000-01-01               Azerbaijan         53.6
## 6257                  1995-01-01               Azerbaijan         51.8
## 6258                  1990-01-01               Azerbaijan         52.9
## 6259                  2015-01-01               Azerbaijan         64.5
## 6260                  2010-01-01               Azerbaijan         59.9
## 6261                  2005-01-01               Azerbaijan         55.4
## 6262                  2000-01-01               Azerbaijan         53.6
## 6263                  1995-01-01               Azerbaijan         51.8
## 6264                  1990-01-01               Azerbaijan         52.9
## 6265                  2015-01-01               Azerbaijan         64.5
## 6266                  2010-01-01               Azerbaijan         59.9
## 6267                  2005-01-01               Azerbaijan         55.4
## 6268                  2000-01-01               Azerbaijan         53.6
## 6269                  1995-01-01               Azerbaijan         51.8
## 6270                  1990-01-01               Azerbaijan         52.9
## 6271                  2015-01-01               Azerbaijan         64.5
## 6272                  2010-01-01               Azerbaijan         59.9
## 6273                  2005-01-01               Azerbaijan         55.4
## 6274                  2000-01-01               Azerbaijan         53.6
## 6275                  1995-01-01               Azerbaijan         51.8
## 6276                  1990-01-01               Azerbaijan         52.9
## 6277                  2015-01-01               Azerbaijan         64.5
## 6278                  2010-01-01               Azerbaijan         59.9
## 6279                  2005-01-01               Azerbaijan         55.4
## 6280                  2000-01-01               Azerbaijan         53.6
## 6281                  1995-01-01               Azerbaijan         51.8
## 6282                  1990-01-01               Azerbaijan         52.9
## 6283                  2015-01-01               Azerbaijan         64.5
## 6284                  2010-01-01               Azerbaijan         59.9
## 6285                  2005-01-01               Azerbaijan         55.4
## 6286                  2000-01-01               Azerbaijan         53.6
## 6287                  1995-01-01               Azerbaijan         51.8
## 6288                  1990-01-01               Azerbaijan         52.9
## 6289                  2015-01-01               Azerbaijan         64.5
## 6290                  2010-01-01               Azerbaijan         59.9
## 6291                  2005-01-01               Azerbaijan         55.4
## 6292                  2000-01-01               Azerbaijan         53.6
## 6293                  1995-01-01               Azerbaijan         51.8
## 6294                  1990-01-01               Azerbaijan         52.9
## 6295                  2015-01-01               Azerbaijan         64.5
## 6296                  2010-01-01               Azerbaijan         59.9
## 6297                  2005-01-01               Azerbaijan         55.4
## 6298                  2000-01-01               Azerbaijan         53.6
## 6299                  1995-01-01               Azerbaijan         51.8
## 6300                  1990-01-01               Azerbaijan         52.9
## 6301                  2015-01-01               Azerbaijan         64.5
## 6302                  2010-01-01               Azerbaijan         59.9
## 6303                  2005-01-01               Azerbaijan         55.4
## 6304                  2000-01-01               Azerbaijan         53.6
## 6305                  1995-01-01               Azerbaijan         51.8
## 6306                  1990-01-01               Azerbaijan         52.9
## 6307                  2015-01-01               Azerbaijan         64.5
## 6308                  2010-01-01               Azerbaijan         59.9
## 6309                  2005-01-01               Azerbaijan         55.4
## 6310                  2000-01-01               Azerbaijan         53.6
## 6311                  1995-01-01               Azerbaijan         51.8
## 6312                  1990-01-01               Azerbaijan         52.9
## 6313                  2015-01-01               Azerbaijan         64.5
## 6314                  2010-01-01               Azerbaijan         59.9
## 6315                  2005-01-01               Azerbaijan         55.4
## 6316                  2000-01-01               Azerbaijan         53.6
## 6317                  1995-01-01               Azerbaijan         51.8
## 6318                  1990-01-01               Azerbaijan         52.9
## 6319                  2015-01-01               Azerbaijan         64.5
## 6320                  2010-01-01               Azerbaijan         59.9
## 6321                  2005-01-01               Azerbaijan         55.4
## 6322                  2000-01-01               Azerbaijan         53.6
## 6323                  1995-01-01               Azerbaijan         51.8
## 6324                  1990-01-01               Azerbaijan         52.9
## 6325                  2015-01-01               Azerbaijan         64.5
## 6326                  2010-01-01               Azerbaijan         59.9
## 6327                  2005-01-01               Azerbaijan         55.4
## 6328                  2000-01-01               Azerbaijan         53.6
## 6329                  1995-01-01               Azerbaijan         51.8
## 6330                  1990-01-01               Azerbaijan         52.9
## 6331                  2015-01-01               Azerbaijan         64.5
## 6332                  2010-01-01               Azerbaijan         59.9
## 6333                  2005-01-01               Azerbaijan         55.4
## 6334                  2000-01-01               Azerbaijan         53.6
## 6335                  1995-01-01               Azerbaijan         51.8
## 6336                  1990-01-01               Azerbaijan         52.9
## 6337                  2015-01-01               Azerbaijan         64.5
## 6338                  2010-01-01               Azerbaijan         59.9
## 6339                  2005-01-01               Azerbaijan         55.4
## 6340                  2000-01-01               Azerbaijan         53.6
## 6341                  1995-01-01               Azerbaijan         51.8
## 6342                  1990-01-01               Azerbaijan         52.9
## 6343                  2015-01-01               Azerbaijan         64.5
## 6344                  2010-01-01               Azerbaijan         59.9
## 6345                  2005-01-01               Azerbaijan         55.4
## 6346                  2000-01-01               Azerbaijan         53.6
## 6347                  1995-01-01               Azerbaijan         51.8
## 6348                  1990-01-01               Azerbaijan         52.9
## 6349                  2015-01-01               Azerbaijan         64.5
## 6350                  2010-01-01               Azerbaijan         59.9
## 6351                  2005-01-01               Azerbaijan         55.4
## 6352                  2000-01-01               Azerbaijan         53.6
## 6353                  1995-01-01               Azerbaijan         51.8
## 6354                  1990-01-01               Azerbaijan         52.9
## 6355                  2015-01-01                  Bahrain         79.0
## 6356                  2010-01-01                  Bahrain         77.2
## 6357                  2005-01-01                  Bahrain         71.3
## 6358                  2000-01-01                  Bahrain         67.3
## 6359                  1995-01-01                  Bahrain         63.2
## 6360                  1990-01-01                  Bahrain         59.7
## 6361                  2015-01-01                  Bahrain         79.0
## 6362                  2010-01-01                  Bahrain         77.2
## 6363                  2005-01-01                  Bahrain         71.3
## 6364                  2000-01-01                  Bahrain         67.3
## 6365                  1995-01-01                  Bahrain         63.2
## 6366                  1990-01-01                  Bahrain         59.7
## 6367                  2015-01-01                  Bahrain         79.0
## 6368                  2010-01-01                  Bahrain         77.2
## 6369                  2005-01-01                  Bahrain         71.3
## 6370                  2000-01-01                  Bahrain         67.3
## 6371                  1995-01-01                  Bahrain         63.2
## 6372                  1990-01-01                  Bahrain         59.7
## 6373                  2015-01-01                  Bahrain         79.0
## 6374                  2010-01-01                  Bahrain         77.2
## 6375                  2005-01-01                  Bahrain         71.3
## 6376                  2000-01-01                  Bahrain         67.3
## 6377                  1995-01-01                  Bahrain         63.2
## 6378                  1990-01-01                  Bahrain         59.7
## 6379                  2015-01-01                  Bahrain         79.0
## 6380                  2010-01-01                  Bahrain         77.2
## 6381                  2005-01-01                  Bahrain         71.3
## 6382                  2000-01-01                  Bahrain         67.3
## 6383                  1995-01-01                  Bahrain         63.2
## 6384                  1990-01-01                  Bahrain         59.7
## 6385                  2015-01-01                  Bahrain         79.0
## 6386                  2010-01-01                  Bahrain         77.2
## 6387                  2005-01-01                  Bahrain         71.3
## 6388                  2000-01-01                  Bahrain         67.3
## 6389                  1995-01-01                  Bahrain         63.2
## 6390                  1990-01-01                  Bahrain         59.7
## 6391                  2015-01-01                  Bahrain         79.0
## 6392                  2010-01-01                  Bahrain         77.2
## 6393                  2005-01-01                  Bahrain         71.3
## 6394                  2000-01-01                  Bahrain         67.3
## 6395                  1995-01-01                  Bahrain         63.2
## 6396                  1990-01-01                  Bahrain         59.7
## 6397                  2015-01-01                  Bahrain         79.0
## 6398                  2010-01-01                  Bahrain         77.2
## 6399                  2005-01-01                  Bahrain         71.3
## 6400                  2000-01-01                  Bahrain         67.3
## 6401                  1995-01-01                  Bahrain         63.2
## 6402                  1990-01-01                  Bahrain         59.7
## 6403                  2015-01-01                  Bahrain         79.0
## 6404                  2010-01-01                  Bahrain         77.2
## 6405                  2005-01-01                  Bahrain         71.3
## 6406                  2000-01-01                  Bahrain         67.3
## 6407                  1995-01-01                  Bahrain         63.2
## 6408                  1990-01-01                  Bahrain         59.7
## 6409                  2015-01-01                  Bahrain         79.0
## 6410                  2010-01-01                  Bahrain         77.2
## 6411                  2005-01-01                  Bahrain         71.3
## 6412                  2000-01-01                  Bahrain         67.3
## 6413                  1995-01-01                  Bahrain         63.2
## 6414                  1990-01-01                  Bahrain         59.7
## 6415                  2015-01-01                  Bahrain         79.0
## 6416                  2010-01-01                  Bahrain         77.2
## 6417                  2005-01-01                  Bahrain         71.3
## 6418                  2000-01-01                  Bahrain         67.3
## 6419                  1995-01-01                  Bahrain         63.2
## 6420                  1990-01-01                  Bahrain         59.7
## 6421                  2015-01-01                  Bahrain         79.0
## 6422                  2010-01-01                  Bahrain         77.2
## 6423                  2005-01-01                  Bahrain         71.3
## 6424                  2000-01-01                  Bahrain         67.3
## 6425                  1995-01-01                  Bahrain         63.2
## 6426                  1990-01-01                  Bahrain         59.7
## 6427                  2015-01-01                  Bahrain         79.0
## 6428                  2010-01-01                  Bahrain         77.2
## 6429                  2005-01-01                  Bahrain         71.3
## 6430                  2000-01-01                  Bahrain         67.3
## 6431                  1995-01-01                  Bahrain         63.2
## 6432                  1990-01-01                  Bahrain         59.7
## 6433                  2015-01-01                  Bahrain         79.0
## 6434                  2010-01-01                  Bahrain         77.2
## 6435                  2005-01-01                  Bahrain         71.3
## 6436                  2000-01-01                  Bahrain         67.3
## 6437                  1995-01-01                  Bahrain         63.2
## 6438                  1990-01-01                  Bahrain         59.7
## 6439                  2015-01-01                  Bahrain         79.0
## 6440                  2010-01-01                  Bahrain         77.2
## 6441                  2005-01-01                  Bahrain         71.3
## 6442                  2000-01-01                  Bahrain         67.3
## 6443                  1995-01-01                  Bahrain         63.2
## 6444                  1990-01-01                  Bahrain         59.7
## 6445                  2015-01-01                  Bahrain         79.0
## 6446                  2010-01-01                  Bahrain         77.2
## 6447                  2005-01-01                  Bahrain         71.3
## 6448                  2000-01-01                  Bahrain         67.3
## 6449                  1995-01-01                  Bahrain         63.2
## 6450                  1990-01-01                  Bahrain         59.7
## 6451                  2015-01-01                  Bahrain         79.0
## 6452                  2010-01-01                  Bahrain         77.2
## 6453                  2005-01-01                  Bahrain         71.3
## 6454                  2000-01-01                  Bahrain         67.3
## 6455                  1995-01-01                  Bahrain         63.2
## 6456                  1990-01-01                  Bahrain         59.7
## 6457                  2015-01-01                  Bahrain         79.0
## 6458                  2010-01-01                  Bahrain         77.2
## 6459                  2005-01-01                  Bahrain         71.3
## 6460                  2000-01-01                  Bahrain         67.3
## 6461                  1995-01-01                  Bahrain         63.2
## 6462                  1990-01-01                  Bahrain         59.7
## 6463                  2015-01-01                  Bahrain         79.0
## 6464                  2010-01-01                  Bahrain         77.2
## 6465                  2005-01-01                  Bahrain         71.3
## 6466                  2000-01-01                  Bahrain         67.3
## 6467                  1995-01-01                  Bahrain         63.2
## 6468                  1990-01-01                  Bahrain         59.7
## 6469                  2015-01-01                  Bahrain         79.0
## 6470                  2010-01-01                  Bahrain         77.2
## 6471                  2005-01-01                  Bahrain         71.3
## 6472                  2000-01-01                  Bahrain         67.3
## 6473                  1995-01-01                  Bahrain         63.2
## 6474                  1990-01-01                  Bahrain         59.7
## 6475                  2015-01-01                  Bahrain         79.0
## 6476                  2010-01-01                  Bahrain         77.2
## 6477                  2005-01-01                  Bahrain         71.3
## 6478                  2000-01-01                  Bahrain         67.3
## 6479                  1995-01-01                  Bahrain         63.2
## 6480                  1990-01-01                  Bahrain         59.7
## 6481                  2015-01-01                  Bahrain         79.0
## 6482                  2010-01-01                  Bahrain         77.2
## 6483                  2005-01-01                  Bahrain         71.3
## 6484                  2000-01-01                  Bahrain         67.3
## 6485                  1995-01-01                  Bahrain         63.2
## 6486                  1990-01-01                  Bahrain         59.7
## 6487                  2015-01-01                  Bahrain         79.0
## 6488                  2010-01-01                  Bahrain         77.2
## 6489                  2005-01-01                  Bahrain         71.3
## 6490                  2000-01-01                  Bahrain         67.3
## 6491                  1995-01-01                  Bahrain         63.2
## 6492                  1990-01-01                  Bahrain         59.7
## 6493                  2015-01-01                  Bahrain         79.0
## 6494                  2010-01-01                  Bahrain         77.2
## 6495                  2005-01-01                  Bahrain         71.3
## 6496                  2000-01-01                  Bahrain         67.3
## 6497                  1995-01-01                  Bahrain         63.2
## 6498                  1990-01-01                  Bahrain         59.7
## 6499                  2015-01-01                  Bahrain         79.0
## 6500                  2010-01-01                  Bahrain         77.2
## 6501                  2005-01-01                  Bahrain         71.3
## 6502                  2000-01-01                  Bahrain         67.3
## 6503                  1995-01-01                  Bahrain         63.2
## 6504                  1990-01-01                  Bahrain         59.7
## 6505                  2015-01-01                  Bahrain         79.0
## 6506                  2010-01-01                  Bahrain         77.2
## 6507                  2005-01-01                  Bahrain         71.3
## 6508                  2000-01-01                  Bahrain         67.3
## 6509                  1995-01-01                  Bahrain         63.2
## 6510                  1990-01-01                  Bahrain         59.7
## 6511                  2015-01-01                  Bahrain         79.0
## 6512                  2010-01-01                  Bahrain         77.2
## 6513                  2005-01-01                  Bahrain         71.3
## 6514                  2000-01-01                  Bahrain         67.3
## 6515                  1995-01-01                  Bahrain         63.2
## 6516                  1990-01-01                  Bahrain         59.7
## 6517                  2015-01-01               Bangladesh         51.7
## 6518                  2010-01-01               Bangladesh         48.7
## 6519                  2005-01-01               Bangladesh         44.3
## 6520                  2000-01-01               Bangladesh         39.6
## 6521                  1995-01-01               Bangladesh         35.8
## 6522                  1990-01-01               Bangladesh         32.6
## 6523                  2015-01-01               Bangladesh         51.7
## 6524                  2010-01-01               Bangladesh         48.7
## 6525                  2005-01-01               Bangladesh         44.3
## 6526                  2000-01-01               Bangladesh         39.6
## 6527                  1995-01-01               Bangladesh         35.8
## 6528                  1990-01-01               Bangladesh         32.6
## 6529                  2015-01-01               Bangladesh         51.7
## 6530                  2010-01-01               Bangladesh         48.7
## 6531                  2005-01-01               Bangladesh         44.3
## 6532                  2000-01-01               Bangladesh         39.6
## 6533                  1995-01-01               Bangladesh         35.8
## 6534                  1990-01-01               Bangladesh         32.6
## 6535                  2015-01-01               Bangladesh         51.7
## 6536                  2010-01-01               Bangladesh         48.7
## 6537                  2005-01-01               Bangladesh         44.3
## 6538                  2000-01-01               Bangladesh         39.6
## 6539                  1995-01-01               Bangladesh         35.8
## 6540                  1990-01-01               Bangladesh         32.6
## 6541                  2015-01-01               Bangladesh         51.7
## 6542                  2010-01-01               Bangladesh         48.7
## 6543                  2005-01-01               Bangladesh         44.3
## 6544                  2000-01-01               Bangladesh         39.6
## 6545                  1995-01-01               Bangladesh         35.8
## 6546                  1990-01-01               Bangladesh         32.6
## 6547                  2015-01-01               Bangladesh         51.7
## 6548                  2010-01-01               Bangladesh         48.7
## 6549                  2005-01-01               Bangladesh         44.3
## 6550                  2000-01-01               Bangladesh         39.6
## 6551                  1995-01-01               Bangladesh         35.8
## 6552                  1990-01-01               Bangladesh         32.6
## 6553                  2015-01-01               Bangladesh         51.7
## 6554                  2010-01-01               Bangladesh         48.7
## 6555                  2005-01-01               Bangladesh         44.3
## 6556                  2000-01-01               Bangladesh         39.6
## 6557                  1995-01-01               Bangladesh         35.8
## 6558                  1990-01-01               Bangladesh         32.6
## 6559                  2015-01-01               Bangladesh         51.7
## 6560                  2010-01-01               Bangladesh         48.7
## 6561                  2005-01-01               Bangladesh         44.3
## 6562                  2000-01-01               Bangladesh         39.6
## 6563                  1995-01-01               Bangladesh         35.8
## 6564                  1990-01-01               Bangladesh         32.6
## 6565                  2015-01-01               Bangladesh         51.7
## 6566                  2010-01-01               Bangladesh         48.7
## 6567                  2005-01-01               Bangladesh         44.3
## 6568                  2000-01-01               Bangladesh         39.6
## 6569                  1995-01-01               Bangladesh         35.8
## 6570                  1990-01-01               Bangladesh         32.6
## 6571                  2015-01-01               Bangladesh         51.7
## 6572                  2010-01-01               Bangladesh         48.7
## 6573                  2005-01-01               Bangladesh         44.3
## 6574                  2000-01-01               Bangladesh         39.6
## 6575                  1995-01-01               Bangladesh         35.8
## 6576                  1990-01-01               Bangladesh         32.6
## 6577                  2015-01-01               Bangladesh         51.7
## 6578                  2010-01-01               Bangladesh         48.7
## 6579                  2005-01-01               Bangladesh         44.3
## 6580                  2000-01-01               Bangladesh         39.6
## 6581                  1995-01-01               Bangladesh         35.8
## 6582                  1990-01-01               Bangladesh         32.6
## 6583                  2015-01-01               Bangladesh         51.7
## 6584                  2010-01-01               Bangladesh         48.7
## 6585                  2005-01-01               Bangladesh         44.3
## 6586                  2000-01-01               Bangladesh         39.6
## 6587                  1995-01-01               Bangladesh         35.8
## 6588                  1990-01-01               Bangladesh         32.6
## 6589                  2015-01-01               Bangladesh         51.7
## 6590                  2010-01-01               Bangladesh         48.7
## 6591                  2005-01-01               Bangladesh         44.3
## 6592                  2000-01-01               Bangladesh         39.6
## 6593                  1995-01-01               Bangladesh         35.8
## 6594                  1990-01-01               Bangladesh         32.6
## 6595                  2015-01-01               Bangladesh         51.7
## 6596                  2010-01-01               Bangladesh         48.7
## 6597                  2005-01-01               Bangladesh         44.3
## 6598                  2000-01-01               Bangladesh         39.6
## 6599                  1995-01-01               Bangladesh         35.8
## 6600                  1990-01-01               Bangladesh         32.6
## 6601                  2015-01-01               Bangladesh         51.7
## 6602                  2010-01-01               Bangladesh         48.7
## 6603                  2005-01-01               Bangladesh         44.3
## 6604                  2000-01-01               Bangladesh         39.6
## 6605                  1995-01-01               Bangladesh         35.8
## 6606                  1990-01-01               Bangladesh         32.6
## 6607                  2015-01-01               Bangladesh         51.7
## 6608                  2010-01-01               Bangladesh         48.7
## 6609                  2005-01-01               Bangladesh         44.3
## 6610                  2000-01-01               Bangladesh         39.6
## 6611                  1995-01-01               Bangladesh         35.8
## 6612                  1990-01-01               Bangladesh         32.6
## 6613                  2015-01-01               Bangladesh         51.7
## 6614                  2010-01-01               Bangladesh         48.7
## 6615                  2005-01-01               Bangladesh         44.3
## 6616                  2000-01-01               Bangladesh         39.6
## 6617                  1995-01-01               Bangladesh         35.8
## 6618                  1990-01-01               Bangladesh         32.6
## 6619                  2015-01-01               Bangladesh         51.7
## 6620                  2010-01-01               Bangladesh         48.7
## 6621                  2005-01-01               Bangladesh         44.3
## 6622                  2000-01-01               Bangladesh         39.6
## 6623                  1995-01-01               Bangladesh         35.8
## 6624                  1990-01-01               Bangladesh         32.6
## 6625                  2015-01-01               Bangladesh         51.7
## 6626                  2010-01-01               Bangladesh         48.7
## 6627                  2005-01-01               Bangladesh         44.3
## 6628                  2000-01-01               Bangladesh         39.6
## 6629                  1995-01-01               Bangladesh         35.8
## 6630                  1990-01-01               Bangladesh         32.6
## 6631                  2015-01-01               Bangladesh         51.7
## 6632                  2010-01-01               Bangladesh         48.7
## 6633                  2005-01-01               Bangladesh         44.3
## 6634                  2000-01-01               Bangladesh         39.6
## 6635                  1995-01-01               Bangladesh         35.8
## 6636                  1990-01-01               Bangladesh         32.6
## 6637                  2015-01-01               Bangladesh         51.7
## 6638                  2010-01-01               Bangladesh         48.7
## 6639                  2005-01-01               Bangladesh         44.3
## 6640                  2000-01-01               Bangladesh         39.6
## 6641                  1995-01-01               Bangladesh         35.8
## 6642                  1990-01-01               Bangladesh         32.6
## 6643                  2015-01-01               Bangladesh         51.7
## 6644                  2010-01-01               Bangladesh         48.7
## 6645                  2005-01-01               Bangladesh         44.3
## 6646                  2000-01-01               Bangladesh         39.6
## 6647                  1995-01-01               Bangladesh         35.8
## 6648                  1990-01-01               Bangladesh         32.6
## 6649                  2015-01-01               Bangladesh         51.7
## 6650                  2010-01-01               Bangladesh         48.7
## 6651                  2005-01-01               Bangladesh         44.3
## 6652                  2000-01-01               Bangladesh         39.6
## 6653                  1995-01-01               Bangladesh         35.8
## 6654                  1990-01-01               Bangladesh         32.6
## 6655                  2015-01-01               Bangladesh         51.7
## 6656                  2010-01-01               Bangladesh         48.7
## 6657                  2005-01-01               Bangladesh         44.3
## 6658                  2000-01-01               Bangladesh         39.6
## 6659                  1995-01-01               Bangladesh         35.8
## 6660                  1990-01-01               Bangladesh         32.6
## 6661                  2015-01-01               Bangladesh         51.7
## 6662                  2010-01-01               Bangladesh         48.7
## 6663                  2005-01-01               Bangladesh         44.3
## 6664                  2000-01-01               Bangladesh         39.6
## 6665                  1995-01-01               Bangladesh         35.8
## 6666                  1990-01-01               Bangladesh         32.6
## 6667                  2015-01-01               Bangladesh         51.7
## 6668                  2010-01-01               Bangladesh         48.7
## 6669                  2005-01-01               Bangladesh         44.3
## 6670                  2000-01-01               Bangladesh         39.6
## 6671                  1995-01-01               Bangladesh         35.8
## 6672                  1990-01-01               Bangladesh         32.6
## 6673                  2015-01-01               Bangladesh         51.7
## 6674                  2010-01-01               Bangladesh         48.7
## 6675                  2005-01-01               Bangladesh         44.3
## 6676                  2000-01-01               Bangladesh         39.6
## 6677                  1995-01-01               Bangladesh         35.8
## 6678                  1990-01-01               Bangladesh         32.6
## 6679                  2015-01-01               Bangladesh         51.7
## 6680                  2010-01-01               Bangladesh         48.7
## 6681                  2005-01-01               Bangladesh         44.3
## 6682                  2000-01-01               Bangladesh         39.6
## 6683                  1995-01-01               Bangladesh         35.8
## 6684                  1990-01-01               Bangladesh         32.6
## 6685                  2015-01-01               Bangladesh         51.7
## 6686                  2010-01-01               Bangladesh         48.7
## 6687                  2005-01-01               Bangladesh         44.3
## 6688                  2000-01-01               Bangladesh         39.6
## 6689                  1995-01-01               Bangladesh         35.8
## 6690                  1990-01-01               Bangladesh         32.6
## 6691                  2015-01-01               Bangladesh         51.7
## 6692                  2010-01-01               Bangladesh         48.7
## 6693                  2005-01-01               Bangladesh         44.3
## 6694                  2000-01-01               Bangladesh         39.6
## 6695                  1995-01-01               Bangladesh         35.8
## 6696                  1990-01-01               Bangladesh         32.6
## 6697                  2015-01-01               Bangladesh         51.7
## 6698                  2010-01-01               Bangladesh         48.7
## 6699                  2005-01-01               Bangladesh         44.3
## 6700                  2000-01-01               Bangladesh         39.6
## 6701                  1995-01-01               Bangladesh         35.8
## 6702                  1990-01-01               Bangladesh         32.6
## 6703                  2015-01-01               Bangladesh         51.7
## 6704                  2010-01-01               Bangladesh         48.7
## 6705                  2005-01-01               Bangladesh         44.3
## 6706                  2000-01-01               Bangladesh         39.6
## 6707                  1995-01-01               Bangladesh         35.8
## 6708                  1990-01-01               Bangladesh         32.6
## 6709                  2015-01-01               Bangladesh         51.7
## 6710                  2010-01-01               Bangladesh         48.7
## 6711                  2005-01-01               Bangladesh         44.3
## 6712                  2000-01-01               Bangladesh         39.6
## 6713                  1995-01-01               Bangladesh         35.8
## 6714                  1990-01-01               Bangladesh         32.6
## 6715                  2015-01-01               Bangladesh         51.7
## 6716                  2010-01-01               Bangladesh         48.7
## 6717                  2005-01-01               Bangladesh         44.3
## 6718                  2000-01-01               Bangladesh         39.6
## 6719                  1995-01-01               Bangladesh         35.8
## 6720                  1990-01-01               Bangladesh         32.6
## 6721                  2015-01-01               Bangladesh         51.7
## 6722                  2010-01-01               Bangladesh         48.7
## 6723                  2005-01-01               Bangladesh         44.3
## 6724                  2000-01-01               Bangladesh         39.6
## 6725                  1995-01-01               Bangladesh         35.8
## 6726                  1990-01-01               Bangladesh         32.6
## 6727                  2015-01-01               Bangladesh         51.7
## 6728                  2010-01-01               Bangladesh         48.7
## 6729                  2005-01-01               Bangladesh         44.3
## 6730                  2000-01-01               Bangladesh         39.6
## 6731                  1995-01-01               Bangladesh         35.8
## 6732                  1990-01-01               Bangladesh         32.6
## 6733                  2015-01-01               Bangladesh         51.7
## 6734                  2010-01-01               Bangladesh         48.7
## 6735                  2005-01-01               Bangladesh         44.3
## 6736                  2000-01-01               Bangladesh         39.6
## 6737                  1995-01-01               Bangladesh         35.8
## 6738                  1990-01-01               Bangladesh         32.6
## 6739                  2015-01-01               Bangladesh         51.7
## 6740                  2010-01-01               Bangladesh         48.7
## 6741                  2005-01-01               Bangladesh         44.3
## 6742                  2000-01-01               Bangladesh         39.6
## 6743                  1995-01-01               Bangladesh         35.8
## 6744                  1990-01-01               Bangladesh         32.6
## 6745                  2015-01-01                 Barbados         66.8
## 6746                  2010-01-01                 Barbados         65.5
## 6747                  2005-01-01                 Barbados         64.3
## 6748                  2000-01-01                 Barbados         62.6
## 6749                  1995-01-01                 Barbados         59.5
## 6750                  1990-01-01                 Barbados         55.9
## 6751                  2015-01-01                 Barbados         66.8
## 6752                  2010-01-01                 Barbados         65.5
## 6753                  2005-01-01                 Barbados         64.3
## 6754                  2000-01-01                 Barbados         62.6
## 6755                  1995-01-01                 Barbados         59.5
## 6756                  1990-01-01                 Barbados         55.9
## 6757                  2015-01-01                 Barbados         66.8
## 6758                  2010-01-01                 Barbados         65.5
## 6759                  2005-01-01                 Barbados         64.3
## 6760                  2000-01-01                 Barbados         62.6
## 6761                  1995-01-01                 Barbados         59.5
## 6762                  1990-01-01                 Barbados         55.9
## 6763                  2015-01-01                 Barbados         66.8
## 6764                  2010-01-01                 Barbados         65.5
## 6765                  2005-01-01                 Barbados         64.3
## 6766                  2000-01-01                 Barbados         62.6
## 6767                  1995-01-01                 Barbados         59.5
## 6768                  1990-01-01                 Barbados         55.9
## 6769                  2015-01-01                 Barbados         66.8
## 6770                  2010-01-01                 Barbados         65.5
## 6771                  2005-01-01                 Barbados         64.3
## 6772                  2000-01-01                 Barbados         62.6
## 6773                  1995-01-01                 Barbados         59.5
## 6774                  1990-01-01                 Barbados         55.9
## 6775                  2015-01-01                 Barbados         66.8
## 6776                  2010-01-01                 Barbados         65.5
## 6777                  2005-01-01                 Barbados         64.3
## 6778                  2000-01-01                 Barbados         62.6
## 6779                  1995-01-01                 Barbados         59.5
## 6780                  1990-01-01                 Barbados         55.9
## 6781                  2015-01-01                 Barbados         66.8
## 6782                  2010-01-01                 Barbados         65.5
## 6783                  2005-01-01                 Barbados         64.3
## 6784                  2000-01-01                 Barbados         62.6
## 6785                  1995-01-01                 Barbados         59.5
## 6786                  1990-01-01                 Barbados         55.9
## 6787                  2015-01-01                 Barbados         66.8
## 6788                  2010-01-01                 Barbados         65.5
## 6789                  2005-01-01                 Barbados         64.3
## 6790                  2000-01-01                 Barbados         62.6
## 6791                  1995-01-01                 Barbados         59.5
## 6792                  1990-01-01                 Barbados         55.9
## 6793                  2015-01-01                 Barbados         66.8
## 6794                  2010-01-01                 Barbados         65.5
## 6795                  2005-01-01                 Barbados         64.3
## 6796                  2000-01-01                 Barbados         62.6
## 6797                  1995-01-01                 Barbados         59.5
## 6798                  1990-01-01                 Barbados         55.9
## 6799                  2015-01-01                 Barbados         66.8
## 6800                  2010-01-01                 Barbados         65.5
## 6801                  2005-01-01                 Barbados         64.3
## 6802                  2000-01-01                 Barbados         62.6
## 6803                  1995-01-01                 Barbados         59.5
## 6804                  1990-01-01                 Barbados         55.9
## 6805                  2015-01-01                 Barbados         66.8
## 6806                  2010-01-01                 Barbados         65.5
## 6807                  2005-01-01                 Barbados         64.3
## 6808                  2000-01-01                 Barbados         62.6
## 6809                  1995-01-01                 Barbados         59.5
## 6810                  1990-01-01                 Barbados         55.9
## 6811                  2015-01-01                 Barbados         66.8
## 6812                  2010-01-01                 Barbados         65.5
## 6813                  2005-01-01                 Barbados         64.3
## 6814                  2000-01-01                 Barbados         62.6
## 6815                  1995-01-01                 Barbados         59.5
## 6816                  1990-01-01                 Barbados         55.9
## 6817                  2015-01-01                 Barbados         66.8
## 6818                  2010-01-01                 Barbados         65.5
## 6819                  2005-01-01                 Barbados         64.3
## 6820                  2000-01-01                 Barbados         62.6
## 6821                  1995-01-01                 Barbados         59.5
## 6822                  1990-01-01                 Barbados         55.9
## 6823                  2015-01-01                 Barbados         66.8
## 6824                  2010-01-01                 Barbados         65.5
## 6825                  2005-01-01                 Barbados         64.3
## 6826                  2000-01-01                 Barbados         62.6
## 6827                  1995-01-01                 Barbados         59.5
## 6828                  1990-01-01                 Barbados         55.9
## 6829                  2015-01-01                 Barbados         66.8
## 6830                  2010-01-01                 Barbados         65.5
## 6831                  2005-01-01                 Barbados         64.3
## 6832                  2000-01-01                 Barbados         62.6
## 6833                  1995-01-01                 Barbados         59.5
## 6834                  1990-01-01                 Barbados         55.9
## 6835                  2015-01-01                 Barbados         66.8
## 6836                  2010-01-01                 Barbados         65.5
## 6837                  2005-01-01                 Barbados         64.3
## 6838                  2000-01-01                 Barbados         62.6
## 6839                  1995-01-01                 Barbados         59.5
## 6840                  1990-01-01                 Barbados         55.9
## 6841                  2015-01-01                 Barbados         66.8
## 6842                  2010-01-01                 Barbados         65.5
## 6843                  2005-01-01                 Barbados         64.3
## 6844                  2000-01-01                 Barbados         62.6
## 6845                  1995-01-01                 Barbados         59.5
## 6846                  1990-01-01                 Barbados         55.9
## 6847                  2015-01-01                 Barbados         66.8
## 6848                  2010-01-01                 Barbados         65.5
## 6849                  2005-01-01                 Barbados         64.3
## 6850                  2000-01-01                 Barbados         62.6
## 6851                  1995-01-01                 Barbados         59.5
## 6852                  1990-01-01                 Barbados         55.9
## 6853                  2015-01-01                 Barbados         66.8
## 6854                  2010-01-01                 Barbados         65.5
## 6855                  2005-01-01                 Barbados         64.3
## 6856                  2000-01-01                 Barbados         62.6
## 6857                  1995-01-01                 Barbados         59.5
## 6858                  1990-01-01                 Barbados         55.9
## 6859                  2015-01-01                 Barbados         66.8
## 6860                  2010-01-01                 Barbados         65.5
## 6861                  2005-01-01                 Barbados         64.3
## 6862                  2000-01-01                 Barbados         62.6
## 6863                  1995-01-01                 Barbados         59.5
## 6864                  1990-01-01                 Barbados         55.9
## 6865                  2015-01-01                 Barbados         66.8
## 6866                  2010-01-01                 Barbados         65.5
## 6867                  2005-01-01                 Barbados         64.3
## 6868                  2000-01-01                 Barbados         62.6
## 6869                  1995-01-01                 Barbados         59.5
## 6870                  1990-01-01                 Barbados         55.9
## 6871                  2015-01-01                 Barbados         66.8
## 6872                  2010-01-01                 Barbados         65.5
## 6873                  2005-01-01                 Barbados         64.3
## 6874                  2000-01-01                 Barbados         62.6
## 6875                  1995-01-01                 Barbados         59.5
## 6876                  1990-01-01                 Barbados         55.9
## 6877                  2015-01-01                 Barbados         66.8
## 6878                  2010-01-01                 Barbados         65.5
## 6879                  2005-01-01                 Barbados         64.3
## 6880                  2000-01-01                 Barbados         62.6
## 6881                  1995-01-01                 Barbados         59.5
## 6882                  1990-01-01                 Barbados         55.9
## 6883                  2015-01-01                 Barbados         66.8
## 6884                  2010-01-01                 Barbados         65.5
## 6885                  2005-01-01                 Barbados         64.3
## 6886                  2000-01-01                 Barbados         62.6
## 6887                  1995-01-01                 Barbados         59.5
## 6888                  1990-01-01                 Barbados         55.9
## 6889                  2015-01-01                 Barbados         66.8
## 6890                  2010-01-01                 Barbados         65.5
## 6891                  2005-01-01                 Barbados         64.3
## 6892                  2000-01-01                 Barbados         62.6
## 6893                  1995-01-01                 Barbados         59.5
## 6894                  1990-01-01                 Barbados         55.9
## 6895                  2015-01-01                 Barbados         66.8
## 6896                  2010-01-01                 Barbados         65.5
## 6897                  2005-01-01                 Barbados         64.3
## 6898                  2000-01-01                 Barbados         62.6
## 6899                  1995-01-01                 Barbados         59.5
## 6900                  1990-01-01                 Barbados         55.9
## 6901                  2015-01-01                 Barbados         66.8
## 6902                  2010-01-01                 Barbados         65.5
## 6903                  2005-01-01                 Barbados         64.3
## 6904                  2000-01-01                 Barbados         62.6
## 6905                  1995-01-01                 Barbados         59.5
## 6906                  1990-01-01                 Barbados         55.9
## 6907                  2015-01-01                 Barbados         66.8
## 6908                  2010-01-01                 Barbados         65.5
## 6909                  2005-01-01                 Barbados         64.3
## 6910                  2000-01-01                 Barbados         62.6
## 6911                  1995-01-01                 Barbados         59.5
## 6912                  1990-01-01                 Barbados         55.9
## 6913                  2015-01-01                 Barbados         66.8
## 6914                  2010-01-01                 Barbados         65.5
## 6915                  2005-01-01                 Barbados         64.3
## 6916                  2000-01-01                 Barbados         62.6
## 6917                  1995-01-01                 Barbados         59.5
## 6918                  1990-01-01                 Barbados         55.9
## 6919                  2015-01-01                 Barbados         66.8
## 6920                  2010-01-01                 Barbados         65.5
## 6921                  2005-01-01                 Barbados         64.3
## 6922                  2000-01-01                 Barbados         62.6
## 6923                  1995-01-01                 Barbados         59.5
## 6924                  1990-01-01                 Barbados         55.9
## 6925                  2015-01-01                 Barbados         66.8
## 6926                  2010-01-01                 Barbados         65.5
## 6927                  2005-01-01                 Barbados         64.3
## 6928                  2000-01-01                 Barbados         62.6
## 6929                  1995-01-01                 Barbados         59.5
## 6930                  1990-01-01                 Barbados         55.9
## 6931                  2015-01-01                 Barbados         66.8
## 6932                  2010-01-01                 Barbados         65.5
## 6933                  2005-01-01                 Barbados         64.3
## 6934                  2000-01-01                 Barbados         62.6
## 6935                  1995-01-01                 Barbados         59.5
## 6936                  1990-01-01                 Barbados         55.9
## 6937                  2015-01-01                 Barbados         66.8
## 6938                  2010-01-01                 Barbados         65.5
## 6939                  2005-01-01                 Barbados         64.3
## 6940                  2000-01-01                 Barbados         62.6
## 6941                  1995-01-01                 Barbados         59.5
## 6942                  1990-01-01                 Barbados         55.9
## 6943                  2015-01-01                 Barbados         66.8
## 6944                  2010-01-01                 Barbados         65.5
## 6945                  2005-01-01                 Barbados         64.3
## 6946                  2000-01-01                 Barbados         62.6
## 6947                  1995-01-01                 Barbados         59.5
## 6948                  1990-01-01                 Barbados         55.9
## 6949                  2015-01-01                 Barbados         66.8
## 6950                  2010-01-01                 Barbados         65.5
## 6951                  2005-01-01                 Barbados         64.3
## 6952                  2000-01-01                 Barbados         62.6
## 6953                  1995-01-01                 Barbados         59.5
## 6954                  1990-01-01                 Barbados         55.9
## 6955                  2015-01-01                 Barbados         66.8
## 6956                  2010-01-01                 Barbados         65.5
## 6957                  2005-01-01                 Barbados         64.3
## 6958                  2000-01-01                 Barbados         62.6
## 6959                  1995-01-01                 Barbados         59.5
## 6960                  1990-01-01                 Barbados         55.9
## 6961                  2015-01-01                 Barbados         66.8
## 6962                  2010-01-01                 Barbados         65.5
## 6963                  2005-01-01                 Barbados         64.3
## 6964                  2000-01-01                 Barbados         62.6
## 6965                  1995-01-01                 Barbados         59.5
## 6966                  1990-01-01                 Barbados         55.9
## 6967                  2015-01-01                 Barbados         66.8
## 6968                  2010-01-01                 Barbados         65.5
## 6969                  2005-01-01                 Barbados         64.3
## 6970                  2000-01-01                 Barbados         62.6
## 6971                  1995-01-01                 Barbados         59.5
## 6972                  1990-01-01                 Barbados         55.9
## 6973                  2015-01-01                 Barbados         66.8
## 6974                  2010-01-01                 Barbados         65.5
## 6975                  2005-01-01                 Barbados         64.3
## 6976                  2000-01-01                 Barbados         62.6
## 6977                  1995-01-01                 Barbados         59.5
## 6978                  1990-01-01                 Barbados         55.9
## 6979                  2015-01-01                 Barbados         66.8
## 6980                  2010-01-01                 Barbados         65.5
## 6981                  2005-01-01                 Barbados         64.3
## 6982                  2000-01-01                 Barbados         62.6
## 6983                  1995-01-01                 Barbados         59.5
## 6984                  1990-01-01                 Barbados         55.9
## 6985                  2015-01-01                 Barbados         66.8
## 6986                  2010-01-01                 Barbados         65.5
## 6987                  2005-01-01                 Barbados         64.3
## 6988                  2000-01-01                 Barbados         62.6
## 6989                  1995-01-01                 Barbados         59.5
## 6990                  1990-01-01                 Barbados         55.9
## 6991                  2015-01-01                 Barbados         66.8
## 6992                  2010-01-01                 Barbados         65.5
## 6993                  2005-01-01                 Barbados         64.3
## 6994                  2000-01-01                 Barbados         62.6
## 6995                  1995-01-01                 Barbados         59.5
## 6996                  1990-01-01                 Barbados         55.9
## 6997                  2015-01-01                 Barbados         66.8
## 6998                  2010-01-01                 Barbados         65.5
## 6999                  2005-01-01                 Barbados         64.3
## 7000                  2000-01-01                 Barbados         62.6
## 7001                  1995-01-01                 Barbados         59.5
## 7002                  1990-01-01                 Barbados         55.9
## 7003                  2015-01-01                 Barbados         66.8
## 7004                  2010-01-01                 Barbados         65.5
## 7005                  2005-01-01                 Barbados         64.3
## 7006                  2000-01-01                 Barbados         62.6
## 7007                  1995-01-01                 Barbados         59.5
## 7008                  1990-01-01                 Barbados         55.9
## 7009                  2015-01-01                 Barbados         66.8
## 7010                  2010-01-01                 Barbados         65.5
## 7011                  2005-01-01                 Barbados         64.3
## 7012                  2000-01-01                 Barbados         62.6
## 7013                  1995-01-01                 Barbados         59.5
## 7014                  1990-01-01                 Barbados         55.9
## 7015                  2015-01-01                 Barbados         66.8
## 7016                  2010-01-01                 Barbados         65.5
## 7017                  2005-01-01                 Barbados         64.3
## 7018                  2000-01-01                 Barbados         62.6
## 7019                  1995-01-01                 Barbados         59.5
## 7020                  1990-01-01                 Barbados         55.9
## 7021                  2015-01-01                 Barbados         66.8
## 7022                  2010-01-01                 Barbados         65.5
## 7023                  2005-01-01                 Barbados         64.3
## 7024                  2000-01-01                 Barbados         62.6
## 7025                  1995-01-01                 Barbados         59.5
## 7026                  1990-01-01                 Barbados         55.9
## 7027                  2015-01-01                 Barbados         66.8
## 7028                  2010-01-01                 Barbados         65.5
## 7029                  2005-01-01                 Barbados         64.3
## 7030                  2000-01-01                 Barbados         62.6
## 7031                  1995-01-01                 Barbados         59.5
## 7032                  1990-01-01                 Barbados         55.9
## 7033                  2015-01-01                 Barbados         66.8
## 7034                  2010-01-01                 Barbados         65.5
## 7035                  2005-01-01                 Barbados         64.3
## 7036                  2000-01-01                 Barbados         62.6
## 7037                  1995-01-01                 Barbados         59.5
## 7038                  1990-01-01                 Barbados         55.9
## 7039                  2015-01-01                 Barbados         66.8
## 7040                  2010-01-01                 Barbados         65.5
## 7041                  2005-01-01                 Barbados         64.3
## 7042                  2000-01-01                 Barbados         62.6
## 7043                  1995-01-01                 Barbados         59.5
## 7044                  1990-01-01                 Barbados         55.9
## 7045                  2015-01-01                 Barbados         66.8
## 7046                  2010-01-01                 Barbados         65.5
## 7047                  2005-01-01                 Barbados         64.3
## 7048                  2000-01-01                 Barbados         62.6
## 7049                  1995-01-01                 Barbados         59.5
## 7050                  1990-01-01                 Barbados         55.9
## 7051                  2015-01-01                 Barbados         66.8
## 7052                  2010-01-01                 Barbados         65.5
## 7053                  2005-01-01                 Barbados         64.3
## 7054                  2000-01-01                 Barbados         62.6
## 7055                  1995-01-01                 Barbados         59.5
## 7056                  1990-01-01                 Barbados         55.9
## 7057                  2015-01-01                 Barbados         66.8
## 7058                  2010-01-01                 Barbados         65.5
## 7059                  2005-01-01                 Barbados         64.3
## 7060                  2000-01-01                 Barbados         62.6
## 7061                  1995-01-01                 Barbados         59.5
## 7062                  1990-01-01                 Barbados         55.9
## 7063                  2015-01-01                 Barbados         66.8
## 7064                  2010-01-01                 Barbados         65.5
## 7065                  2005-01-01                 Barbados         64.3
## 7066                  2000-01-01                 Barbados         62.6
## 7067                  1995-01-01                 Barbados         59.5
## 7068                  1990-01-01                 Barbados         55.9
## 7069                  2015-01-01                 Barbados         66.8
## 7070                  2010-01-01                 Barbados         65.5
## 7071                  2005-01-01                 Barbados         64.3
## 7072                  2000-01-01                 Barbados         62.6
## 7073                  1995-01-01                 Barbados         59.5
## 7074                  1990-01-01                 Barbados         55.9
## 7075                  2015-01-01                 Barbados         66.8
## 7076                  2010-01-01                 Barbados         65.5
## 7077                  2005-01-01                 Barbados         64.3
## 7078                  2000-01-01                 Barbados         62.6
## 7079                  1995-01-01                 Barbados         59.5
## 7080                  1990-01-01                 Barbados         55.9
## 7081                  2015-01-01                 Barbados         66.8
## 7082                  2010-01-01                 Barbados         65.5
## 7083                  2005-01-01                 Barbados         64.3
## 7084                  2000-01-01                 Barbados         62.6
## 7085                  1995-01-01                 Barbados         59.5
## 7086                  1990-01-01                 Barbados         55.9
## 7087                  2015-01-01                 Barbados         66.8
## 7088                  2010-01-01                 Barbados         65.5
## 7089                  2005-01-01                 Barbados         64.3
## 7090                  2000-01-01                 Barbados         62.6
## 7091                  1995-01-01                 Barbados         59.5
## 7092                  1990-01-01                 Barbados         55.9
## 7093                  2015-01-01                 Barbados         66.8
## 7094                  2010-01-01                 Barbados         65.5
## 7095                  2005-01-01                 Barbados         64.3
## 7096                  2000-01-01                 Barbados         62.6
## 7097                  1995-01-01                 Barbados         59.5
## 7098                  1990-01-01                 Barbados         55.9
## 7099                  2015-01-01                 Barbados         66.8
## 7100                  2010-01-01                 Barbados         65.5
## 7101                  2005-01-01                 Barbados         64.3
## 7102                  2000-01-01                 Barbados         62.6
## 7103                  1995-01-01                 Barbados         59.5
## 7104                  1990-01-01                 Barbados         55.9
## 7105                  2015-01-01                 Barbados         66.8
## 7106                  2010-01-01                 Barbados         65.5
## 7107                  2005-01-01                 Barbados         64.3
## 7108                  2000-01-01                 Barbados         62.6
## 7109                  1995-01-01                 Barbados         59.5
## 7110                  1990-01-01                 Barbados         55.9
## 7111                  2015-01-01                 Barbados         66.8
## 7112                  2010-01-01                 Barbados         65.5
## 7113                  2005-01-01                 Barbados         64.3
## 7114                  2000-01-01                 Barbados         62.6
## 7115                  1995-01-01                 Barbados         59.5
## 7116                  1990-01-01                 Barbados         55.9
## 7117                  2015-01-01                 Barbados         66.8
## 7118                  2010-01-01                 Barbados         65.5
## 7119                  2005-01-01                 Barbados         64.3
## 7120                  2000-01-01                 Barbados         62.6
## 7121                  1995-01-01                 Barbados         59.5
## 7122                  1990-01-01                 Barbados         55.9
## 7123                  2015-01-01                 Barbados         66.8
## 7124                  2010-01-01                 Barbados         65.5
## 7125                  2005-01-01                 Barbados         64.3
## 7126                  2000-01-01                 Barbados         62.6
## 7127                  1995-01-01                 Barbados         59.5
## 7128                  1990-01-01                 Barbados         55.9
## 7129                  2015-01-01                 Barbados         66.8
## 7130                  2010-01-01                 Barbados         65.5
## 7131                  2005-01-01                 Barbados         64.3
## 7132                  2000-01-01                 Barbados         62.6
## 7133                  1995-01-01                 Barbados         59.5
## 7134                  1990-01-01                 Barbados         55.9
## 7135                  2015-01-01                 Barbados         66.8
## 7136                  2010-01-01                 Barbados         65.5
## 7137                  2005-01-01                 Barbados         64.3
## 7138                  2000-01-01                 Barbados         62.6
## 7139                  1995-01-01                 Barbados         59.5
## 7140                  1990-01-01                 Barbados         55.9
## 7141                  2015-01-01                 Barbados         66.8
## 7142                  2010-01-01                 Barbados         65.5
## 7143                  2005-01-01                 Barbados         64.3
## 7144                  2000-01-01                 Barbados         62.6
## 7145                  1995-01-01                 Barbados         59.5
## 7146                  1990-01-01                 Barbados         55.9
## 7147                  2015-01-01                 Barbados         66.8
## 7148                  2010-01-01                 Barbados         65.5
## 7149                  2005-01-01                 Barbados         64.3
## 7150                  2000-01-01                 Barbados         62.6
## 7151                  1995-01-01                 Barbados         59.5
## 7152                  1990-01-01                 Barbados         55.9
## 7153                  2015-01-01                 Barbados         66.8
## 7154                  2010-01-01                 Barbados         65.5
## 7155                  2005-01-01                 Barbados         64.3
## 7156                  2000-01-01                 Barbados         62.6
## 7157                  1995-01-01                 Barbados         59.5
## 7158                  1990-01-01                 Barbados         55.9
## 7159                  2015-01-01                 Barbados         66.8
## 7160                  2010-01-01                 Barbados         65.5
## 7161                  2005-01-01                 Barbados         64.3
## 7162                  2000-01-01                 Barbados         62.6
## 7163                  1995-01-01                 Barbados         59.5
## 7164                  1990-01-01                 Barbados         55.9
## 7165                  2015-01-01                 Barbados         66.8
## 7166                  2010-01-01                 Barbados         65.5
## 7167                  2005-01-01                 Barbados         64.3
## 7168                  2000-01-01                 Barbados         62.6
## 7169                  1995-01-01                 Barbados         59.5
## 7170                  1990-01-01                 Barbados         55.9
## 7171                  2015-01-01                 Barbados         66.8
## 7172                  2010-01-01                 Barbados         65.5
## 7173                  2005-01-01                 Barbados         64.3
## 7174                  2000-01-01                 Barbados         62.6
## 7175                  1995-01-01                 Barbados         59.5
## 7176                  1990-01-01                 Barbados         55.9
## 7177                  2015-01-01                 Barbados         66.8
## 7178                  2010-01-01                 Barbados         65.5
## 7179                  2005-01-01                 Barbados         64.3
## 7180                  2000-01-01                 Barbados         62.6
## 7181                  1995-01-01                 Barbados         59.5
## 7182                  1990-01-01                 Barbados         55.9
## 7183                  2015-01-01                 Barbados         66.8
## 7184                  2010-01-01                 Barbados         65.5
## 7185                  2005-01-01                 Barbados         64.3
## 7186                  2000-01-01                 Barbados         62.6
## 7187                  1995-01-01                 Barbados         59.5
## 7188                  1990-01-01                 Barbados         55.9
## 7189                  2015-01-01                 Barbados         66.8
## 7190                  2010-01-01                 Barbados         65.5
## 7191                  2005-01-01                 Barbados         64.3
## 7192                  2000-01-01                 Barbados         62.6
## 7193                  1995-01-01                 Barbados         59.5
## 7194                  1990-01-01                 Barbados         55.9
## 7195                  2015-01-01                 Barbados         66.8
## 7196                  2010-01-01                 Barbados         65.5
## 7197                  2005-01-01                 Barbados         64.3
## 7198                  2000-01-01                 Barbados         62.6
## 7199                  1995-01-01                 Barbados         59.5
## 7200                  1990-01-01                 Barbados         55.9
## 7201                  2015-01-01                 Barbados         66.8
## 7202                  2010-01-01                 Barbados         65.5
## 7203                  2005-01-01                 Barbados         64.3
## 7204                  2000-01-01                 Barbados         62.6
## 7205                  1995-01-01                 Barbados         59.5
## 7206                  1990-01-01                 Barbados         55.9
## 7207                  2015-01-01                 Barbados         66.8
## 7208                  2010-01-01                 Barbados         65.5
## 7209                  2005-01-01                 Barbados         64.3
## 7210                  2000-01-01                 Barbados         62.6
## 7211                  1995-01-01                 Barbados         59.5
## 7212                  1990-01-01                 Barbados         55.9
## 7213                  2015-01-01                 Barbados         66.8
## 7214                  2010-01-01                 Barbados         65.5
## 7215                  2005-01-01                 Barbados         64.3
## 7216                  2000-01-01                 Barbados         62.6
## 7217                  1995-01-01                 Barbados         59.5
## 7218                  1990-01-01                 Barbados         55.9
## 7219                  2015-01-01                 Barbados         66.8
## 7220                  2010-01-01                 Barbados         65.5
## 7221                  2005-01-01                 Barbados         64.3
## 7222                  2000-01-01                 Barbados         62.6
## 7223                  1995-01-01                 Barbados         59.5
## 7224                  1990-01-01                 Barbados         55.9
## 7225                  2015-01-01                 Barbados         66.8
## 7226                  2010-01-01                 Barbados         65.5
## 7227                  2005-01-01                 Barbados         64.3
## 7228                  2000-01-01                 Barbados         62.6
## 7229                  1995-01-01                 Barbados         59.5
## 7230                  1990-01-01                 Barbados         55.9
## 7231                  2015-01-01                 Barbados         66.8
## 7232                  2010-01-01                 Barbados         65.5
## 7233                  2005-01-01                 Barbados         64.3
## 7234                  2000-01-01                 Barbados         62.6
## 7235                  1995-01-01                 Barbados         59.5
## 7236                  1990-01-01                 Barbados         55.9
## 7237                  2015-01-01                 Barbados         66.8
## 7238                  2010-01-01                 Barbados         65.5
## 7239                  2005-01-01                 Barbados         64.3
## 7240                  2000-01-01                 Barbados         62.6
## 7241                  1995-01-01                 Barbados         59.5
## 7242                  1990-01-01                 Barbados         55.9
## 7243                  2015-01-01                 Barbados         66.8
## 7244                  2010-01-01                 Barbados         65.5
## 7245                  2005-01-01                 Barbados         64.3
## 7246                  2000-01-01                 Barbados         62.6
## 7247                  1995-01-01                 Barbados         59.5
## 7248                  1990-01-01                 Barbados         55.9
## 7249                  2015-01-01                 Barbados         66.8
## 7250                  2010-01-01                 Barbados         65.5
## 7251                  2005-01-01                 Barbados         64.3
## 7252                  2000-01-01                 Barbados         62.6
## 7253                  1995-01-01                 Barbados         59.5
## 7254                  1990-01-01                 Barbados         55.9
## 7255                  2015-01-01                 Barbados         66.8
## 7256                  2010-01-01                 Barbados         65.5
## 7257                  2005-01-01                 Barbados         64.3
## 7258                  2000-01-01                 Barbados         62.6
## 7259                  1995-01-01                 Barbados         59.5
## 7260                  1990-01-01                 Barbados         55.9
## 7261                  2015-01-01                 Barbados         66.8
## 7262                  2010-01-01                 Barbados         65.5
## 7263                  2005-01-01                 Barbados         64.3
## 7264                  2000-01-01                 Barbados         62.6
## 7265                  1995-01-01                 Barbados         59.5
## 7266                  1990-01-01                 Barbados         55.9
## 7267                  2015-01-01                 Barbados         66.8
## 7268                  2010-01-01                 Barbados         65.5
## 7269                  2005-01-01                 Barbados         64.3
## 7270                  2000-01-01                 Barbados         62.6
## 7271                  1995-01-01                 Barbados         59.5
## 7272                  1990-01-01                 Barbados         55.9
## 7273                  2015-01-01                 Barbados         66.8
## 7274                  2010-01-01                 Barbados         65.5
## 7275                  2005-01-01                 Barbados         64.3
## 7276                  2000-01-01                 Barbados         62.6
## 7277                  1995-01-01                 Barbados         59.5
## 7278                  1990-01-01                 Barbados         55.9
## 7279                  2015-01-01                 Barbados         66.8
## 7280                  2010-01-01                 Barbados         65.5
## 7281                  2005-01-01                 Barbados         64.3
## 7282                  2000-01-01                 Barbados         62.6
## 7283                  1995-01-01                 Barbados         59.5
## 7284                  1990-01-01                 Barbados         55.9
## 7285                  2015-01-01                 Barbados         66.8
## 7286                  2010-01-01                 Barbados         65.5
## 7287                  2005-01-01                 Barbados         64.3
## 7288                  2000-01-01                 Barbados         62.6
## 7289                  1995-01-01                 Barbados         59.5
## 7290                  1990-01-01                 Barbados         55.9
## 7291                  2015-01-01                 Barbados         66.8
## 7292                  2010-01-01                 Barbados         65.5
## 7293                  2005-01-01                 Barbados         64.3
## 7294                  2000-01-01                 Barbados         62.6
## 7295                  1995-01-01                 Barbados         59.5
## 7296                  1990-01-01                 Barbados         55.9
## 7297                  2015-01-01                 Barbados         66.8
## 7298                  2010-01-01                 Barbados         65.5
## 7299                  2005-01-01                 Barbados         64.3
## 7300                  2000-01-01                 Barbados         62.6
## 7301                  1995-01-01                 Barbados         59.5
## 7302                  1990-01-01                 Barbados         55.9
## 7303                  2015-01-01                 Barbados         66.8
## 7304                  2010-01-01                 Barbados         65.5
## 7305                  2005-01-01                 Barbados         64.3
## 7306                  2000-01-01                 Barbados         62.6
## 7307                  1995-01-01                 Barbados         59.5
## 7308                  1990-01-01                 Barbados         55.9
## 7309                  2015-01-01                 Barbados         66.8
## 7310                  2010-01-01                 Barbados         65.5
## 7311                  2005-01-01                 Barbados         64.3
## 7312                  2000-01-01                 Barbados         62.6
## 7313                  1995-01-01                 Barbados         59.5
## 7314                  1990-01-01                 Barbados         55.9
## 7315                  2015-01-01                 Barbados         66.8
## 7316                  2010-01-01                 Barbados         65.5
## 7317                  2005-01-01                 Barbados         64.3
## 7318                  2000-01-01                 Barbados         62.6
## 7319                  1995-01-01                 Barbados         59.5
## 7320                  1990-01-01                 Barbados         55.9
## 7321                  2015-01-01                 Barbados         66.8
## 7322                  2010-01-01                 Barbados         65.5
## 7323                  2005-01-01                 Barbados         64.3
## 7324                  2000-01-01                 Barbados         62.6
## 7325                  1995-01-01                 Barbados         59.5
## 7326                  1990-01-01                 Barbados         55.9
## 7327                  2015-01-01                 Barbados         66.8
## 7328                  2010-01-01                 Barbados         65.5
## 7329                  2005-01-01                 Barbados         64.3
## 7330                  2000-01-01                 Barbados         62.6
## 7331                  1995-01-01                 Barbados         59.5
## 7332                  1990-01-01                 Barbados         55.9
## 7333                  2015-01-01                 Barbados         66.8
## 7334                  2010-01-01                 Barbados         65.5
## 7335                  2005-01-01                 Barbados         64.3
## 7336                  2000-01-01                 Barbados         62.6
## 7337                  1995-01-01                 Barbados         59.5
## 7338                  1990-01-01                 Barbados         55.9
## 7339                  2015-01-01                 Barbados         66.8
## 7340                  2010-01-01                 Barbados         65.5
## 7341                  2005-01-01                 Barbados         64.3
## 7342                  2000-01-01                 Barbados         62.6
## 7343                  1995-01-01                 Barbados         59.5
## 7344                  1990-01-01                 Barbados         55.9
## 7345                  2015-01-01                 Barbados         66.8
## 7346                  2010-01-01                 Barbados         65.5
## 7347                  2005-01-01                 Barbados         64.3
## 7348                  2000-01-01                 Barbados         62.6
## 7349                  1995-01-01                 Barbados         59.5
## 7350                  1990-01-01                 Barbados         55.9
## 7351                  2015-01-01                 Barbados         66.8
## 7352                  2010-01-01                 Barbados         65.5
## 7353                  2005-01-01                 Barbados         64.3
## 7354                  2000-01-01                 Barbados         62.6
## 7355                  1995-01-01                 Barbados         59.5
## 7356                  1990-01-01                 Barbados         55.9
## 7357                  2015-01-01                 Barbados         66.8
## 7358                  2010-01-01                 Barbados         65.5
## 7359                  2005-01-01                 Barbados         64.3
## 7360                  2000-01-01                 Barbados         62.6
## 7361                  1995-01-01                 Barbados         59.5
## 7362                  1990-01-01                 Barbados         55.9
## 7363                  2015-01-01                 Barbados         66.8
## 7364                  2010-01-01                 Barbados         65.5
## 7365                  2005-01-01                 Barbados         64.3
## 7366                  2000-01-01                 Barbados         62.6
## 7367                  1995-01-01                 Barbados         59.5
## 7368                  1990-01-01                 Barbados         55.9
## 7369                  2015-01-01                 Barbados         66.8
## 7370                  2010-01-01                 Barbados         65.5
## 7371                  2005-01-01                 Barbados         64.3
## 7372                  2000-01-01                 Barbados         62.6
## 7373                  1995-01-01                 Barbados         59.5
## 7374                  1990-01-01                 Barbados         55.9
## 7375                  2015-01-01                 Barbados         66.8
## 7376                  2010-01-01                 Barbados         65.5
## 7377                  2005-01-01                 Barbados         64.3
## 7378                  2000-01-01                 Barbados         62.6
## 7379                  1995-01-01                 Barbados         59.5
## 7380                  1990-01-01                 Barbados         55.9
## 7381                  2015-01-01                 Barbados         66.8
## 7382                  2010-01-01                 Barbados         65.5
## 7383                  2005-01-01                 Barbados         64.3
## 7384                  2000-01-01                 Barbados         62.6
## 7385                  1995-01-01                 Barbados         59.5
## 7386                  1990-01-01                 Barbados         55.9
## 7387                  2015-01-01                 Barbados         66.8
## 7388                  2010-01-01                 Barbados         65.5
## 7389                  2005-01-01                 Barbados         64.3
## 7390                  2000-01-01                 Barbados         62.6
## 7391                  1995-01-01                 Barbados         59.5
## 7392                  1990-01-01                 Barbados         55.9
## 7393                  2015-01-01                 Barbados         66.8
## 7394                  2010-01-01                 Barbados         65.5
## 7395                  2005-01-01                 Barbados         64.3
## 7396                  2000-01-01                 Barbados         62.6
## 7397                  1995-01-01                 Barbados         59.5
## 7398                  1990-01-01                 Barbados         55.9
## 7399                  2015-01-01                 Barbados         66.8
## 7400                  2010-01-01                 Barbados         65.5
## 7401                  2005-01-01                 Barbados         64.3
## 7402                  2000-01-01                 Barbados         62.6
## 7403                  1995-01-01                 Barbados         59.5
## 7404                  1990-01-01                 Barbados         55.9
## 7405                  2015-01-01                 Barbados         66.8
## 7406                  2010-01-01                 Barbados         65.5
## 7407                  2005-01-01                 Barbados         64.3
## 7408                  2000-01-01                 Barbados         62.6
## 7409                  1995-01-01                 Barbados         59.5
## 7410                  1990-01-01                 Barbados         55.9
## 7411                  2015-01-01                 Barbados         66.8
## 7412                  2010-01-01                 Barbados         65.5
## 7413                  2005-01-01                 Barbados         64.3
## 7414                  2000-01-01                 Barbados         62.6
## 7415                  1995-01-01                 Barbados         59.5
## 7416                  1990-01-01                 Barbados         55.9
## 7417                  2015-01-01                 Barbados         66.8
## 7418                  2010-01-01                 Barbados         65.5
## 7419                  2005-01-01                 Barbados         64.3
## 7420                  2000-01-01                 Barbados         62.6
## 7421                  1995-01-01                 Barbados         59.5
## 7422                  1990-01-01                 Barbados         55.9
## 7423                  2015-01-01                 Barbados         66.8
## 7424                  2010-01-01                 Barbados         65.5
## 7425                  2005-01-01                 Barbados         64.3
## 7426                  2000-01-01                 Barbados         62.6
## 7427                  1995-01-01                 Barbados         59.5
## 7428                  1990-01-01                 Barbados         55.9
## 7429                  2015-01-01                 Barbados         66.8
## 7430                  2010-01-01                 Barbados         65.5
## 7431                  2005-01-01                 Barbados         64.3
## 7432                  2000-01-01                 Barbados         62.6
## 7433                  1995-01-01                 Barbados         59.5
## 7434                  1990-01-01                 Barbados         55.9
## 7435                  2015-01-01                 Barbados         66.8
## 7436                  2010-01-01                 Barbados         65.5
## 7437                  2005-01-01                 Barbados         64.3
## 7438                  2000-01-01                 Barbados         62.6
## 7439                  1995-01-01                 Barbados         59.5
## 7440                  1990-01-01                 Barbados         55.9
## 7441                  2015-01-01                 Barbados         66.8
## 7442                  2010-01-01                 Barbados         65.5
## 7443                  2005-01-01                 Barbados         64.3
## 7444                  2000-01-01                 Barbados         62.6
## 7445                  1995-01-01                 Barbados         59.5
## 7446                  1990-01-01                 Barbados         55.9
## 7447                  2015-01-01                 Barbados         66.8
## 7448                  2010-01-01                 Barbados         65.5
## 7449                  2005-01-01                 Barbados         64.3
## 7450                  2000-01-01                 Barbados         62.6
## 7451                  1995-01-01                 Barbados         59.5
## 7452                  1990-01-01                 Barbados         55.9
## 7453                  2015-01-01                 Barbados         66.8
## 7454                  2010-01-01                 Barbados         65.5
## 7455                  2005-01-01                 Barbados         64.3
## 7456                  2000-01-01                 Barbados         62.6
## 7457                  1995-01-01                 Barbados         59.5
## 7458                  1990-01-01                 Barbados         55.9
## 7459                  2015-01-01                 Barbados         66.8
## 7460                  2010-01-01                 Barbados         65.5
## 7461                  2005-01-01                 Barbados         64.3
## 7462                  2000-01-01                 Barbados         62.6
## 7463                  1995-01-01                 Barbados         59.5
## 7464                  1990-01-01                 Barbados         55.9
## 7465                  2015-01-01                 Barbados         66.8
## 7466                  2010-01-01                 Barbados         65.5
## 7467                  2005-01-01                 Barbados         64.3
## 7468                  2000-01-01                 Barbados         62.6
## 7469                  1995-01-01                 Barbados         59.5
## 7470                  1990-01-01                 Barbados         55.9
## 7471                  2015-01-01                 Barbados         66.8
## 7472                  2010-01-01                 Barbados         65.5
## 7473                  2005-01-01                 Barbados         64.3
## 7474                  2000-01-01                 Barbados         62.6
## 7475                  1995-01-01                 Barbados         59.5
## 7476                  1990-01-01                 Barbados         55.9
## 7477                  2015-01-01                 Barbados         66.8
## 7478                  2010-01-01                 Barbados         65.5
## 7479                  2005-01-01                 Barbados         64.3
## 7480                  2000-01-01                 Barbados         62.6
## 7481                  1995-01-01                 Barbados         59.5
## 7482                  1990-01-01                 Barbados         55.9
## 7483                  2015-01-01                 Barbados         66.8
## 7484                  2010-01-01                 Barbados         65.5
## 7485                  2005-01-01                 Barbados         64.3
## 7486                  2000-01-01                 Barbados         62.6
## 7487                  1995-01-01                 Barbados         59.5
## 7488                  1990-01-01                 Barbados         55.9
## 7489                  2015-01-01                 Barbados         66.8
## 7490                  2010-01-01                 Barbados         65.5
## 7491                  2005-01-01                 Barbados         64.3
## 7492                  2000-01-01                 Barbados         62.6
## 7493                  1995-01-01                 Barbados         59.5
## 7494                  1990-01-01                 Barbados         55.9
## 7495                  2015-01-01                 Barbados         66.8
## 7496                  2010-01-01                 Barbados         65.5
## 7497                  2005-01-01                 Barbados         64.3
## 7498                  2000-01-01                 Barbados         62.6
## 7499                  1995-01-01                 Barbados         59.5
## 7500                  1990-01-01                 Barbados         55.9
## 7501                  2015-01-01                 Barbados         66.8
## 7502                  2010-01-01                 Barbados         65.5
## 7503                  2005-01-01                 Barbados         64.3
## 7504                  2000-01-01                 Barbados         62.6
## 7505                  1995-01-01                 Barbados         59.5
## 7506                  1990-01-01                 Barbados         55.9
## 7507                  2015-01-01                 Barbados         66.8
## 7508                  2010-01-01                 Barbados         65.5
## 7509                  2005-01-01                 Barbados         64.3
## 7510                  2000-01-01                 Barbados         62.6
## 7511                  1995-01-01                 Barbados         59.5
## 7512                  1990-01-01                 Barbados         55.9
## 7513                  2015-01-01                 Barbados         66.8
## 7514                  2010-01-01                 Barbados         65.5
## 7515                  2005-01-01                 Barbados         64.3
## 7516                  2000-01-01                 Barbados         62.6
## 7517                  1995-01-01                 Barbados         59.5
## 7518                  1990-01-01                 Barbados         55.9
## 7519                  2015-01-01                 Barbados         66.8
## 7520                  2010-01-01                 Barbados         65.5
## 7521                  2005-01-01                 Barbados         64.3
## 7522                  2000-01-01                 Barbados         62.6
## 7523                  1995-01-01                 Barbados         59.5
## 7524                  1990-01-01                 Barbados         55.9
## 7525                  2015-01-01                 Barbados         66.8
## 7526                  2010-01-01                 Barbados         65.5
## 7527                  2005-01-01                 Barbados         64.3
## 7528                  2000-01-01                 Barbados         62.6
## 7529                  1995-01-01                 Barbados         59.5
## 7530                  1990-01-01                 Barbados         55.9
## 7531                  2015-01-01                 Barbados         66.8
## 7532                  2010-01-01                 Barbados         65.5
## 7533                  2005-01-01                 Barbados         64.3
## 7534                  2000-01-01                 Barbados         62.6
## 7535                  1995-01-01                 Barbados         59.5
## 7536                  1990-01-01                 Barbados         55.9
## 7537                  2015-01-01                 Barbados         66.8
## 7538                  2010-01-01                 Barbados         65.5
## 7539                  2005-01-01                 Barbados         64.3
## 7540                  2000-01-01                 Barbados         62.6
## 7541                  1995-01-01                 Barbados         59.5
## 7542                  1990-01-01                 Barbados         55.9
## 7543                  2015-01-01                 Barbados         66.8
## 7544                  2010-01-01                 Barbados         65.5
## 7545                  2005-01-01                 Barbados         64.3
## 7546                  2000-01-01                 Barbados         62.6
## 7547                  1995-01-01                 Barbados         59.5
## 7548                  1990-01-01                 Barbados         55.9
## 7549                  2015-01-01                 Barbados         66.8
## 7550                  2010-01-01                 Barbados         65.5
## 7551                  2005-01-01                 Barbados         64.3
## 7552                  2000-01-01                 Barbados         62.6
## 7553                  1995-01-01                 Barbados         59.5
## 7554                  1990-01-01                 Barbados         55.9
## 7555                  2015-01-01                 Barbados         66.8
## 7556                  2010-01-01                 Barbados         65.5
## 7557                  2005-01-01                 Barbados         64.3
## 7558                  2000-01-01                 Barbados         62.6
## 7559                  1995-01-01                 Barbados         59.5
## 7560                  1990-01-01                 Barbados         55.9
## 7561                  2015-01-01                 Barbados         66.8
## 7562                  2010-01-01                 Barbados         65.5
## 7563                  2005-01-01                 Barbados         64.3
## 7564                  2000-01-01                 Barbados         62.6
## 7565                  1995-01-01                 Barbados         59.5
## 7566                  1990-01-01                 Barbados         55.9
## 7567                  2015-01-01                 Barbados         66.8
## 7568                  2010-01-01                 Barbados         65.5
## 7569                  2005-01-01                 Barbados         64.3
## 7570                  2000-01-01                 Barbados         62.6
## 7571                  1995-01-01                 Barbados         59.5
## 7572                  1990-01-01                 Barbados         55.9
## 7573                  2015-01-01                 Barbados         66.8
## 7574                  2010-01-01                 Barbados         65.5
## 7575                  2005-01-01                 Barbados         64.3
## 7576                  2000-01-01                 Barbados         62.6
## 7577                  1995-01-01                 Barbados         59.5
## 7578                  1990-01-01                 Barbados         55.9
## 7579                  2015-01-01                 Barbados         66.8
## 7580                  2010-01-01                 Barbados         65.5
## 7581                  2005-01-01                 Barbados         64.3
## 7582                  2000-01-01                 Barbados         62.6
## 7583                  1995-01-01                 Barbados         59.5
## 7584                  1990-01-01                 Barbados         55.9
## 7585                  2015-01-01                 Barbados         66.8
## 7586                  2010-01-01                 Barbados         65.5
## 7587                  2005-01-01                 Barbados         64.3
## 7588                  2000-01-01                 Barbados         62.6
## 7589                  1995-01-01                 Barbados         59.5
## 7590                  1990-01-01                 Barbados         55.9
## 7591                  2015-01-01                 Barbados         66.8
## 7592                  2010-01-01                 Barbados         65.5
## 7593                  2005-01-01                 Barbados         64.3
## 7594                  2000-01-01                 Barbados         62.6
## 7595                  1995-01-01                 Barbados         59.5
## 7596                  1990-01-01                 Barbados         55.9
## 7597                  2015-01-01                 Barbados         66.8
## 7598                  2010-01-01                 Barbados         65.5
## 7599                  2005-01-01                 Barbados         64.3
## 7600                  2000-01-01                 Barbados         62.6
## 7601                  1995-01-01                 Barbados         59.5
## 7602                  1990-01-01                 Barbados         55.9
## 7603                  2015-01-01                 Barbados         66.8
## 7604                  2010-01-01                 Barbados         65.5
## 7605                  2005-01-01                 Barbados         64.3
## 7606                  2000-01-01                 Barbados         62.6
## 7607                  1995-01-01                 Barbados         59.5
## 7608                  1990-01-01                 Barbados         55.9
## 7609                  2015-01-01                 Barbados         66.8
## 7610                  2010-01-01                 Barbados         65.5
## 7611                  2005-01-01                 Barbados         64.3
## 7612                  2000-01-01                 Barbados         62.6
## 7613                  1995-01-01                 Barbados         59.5
## 7614                  1990-01-01                 Barbados         55.9
## 7615                  2015-01-01                 Barbados         66.8
## 7616                  2010-01-01                 Barbados         65.5
## 7617                  2005-01-01                 Barbados         64.3
## 7618                  2000-01-01                 Barbados         62.6
## 7619                  1995-01-01                 Barbados         59.5
## 7620                  1990-01-01                 Barbados         55.9
## 7621                  2015-01-01                 Barbados         66.8
## 7622                  2010-01-01                 Barbados         65.5
## 7623                  2005-01-01                 Barbados         64.3
## 7624                  2000-01-01                 Barbados         62.6
## 7625                  1995-01-01                 Barbados         59.5
## 7626                  1990-01-01                 Barbados         55.9
## 7627                  2015-01-01                 Barbados         66.8
## 7628                  2010-01-01                 Barbados         65.5
## 7629                  2005-01-01                 Barbados         64.3
## 7630                  2000-01-01                 Barbados         62.6
## 7631                  1995-01-01                 Barbados         59.5
## 7632                  1990-01-01                 Barbados         55.9
## 7633                  2015-01-01                 Barbados         66.8
## 7634                  2010-01-01                 Barbados         65.5
## 7635                  2005-01-01                 Barbados         64.3
## 7636                  2000-01-01                 Barbados         62.6
## 7637                  1995-01-01                 Barbados         59.5
## 7638                  1990-01-01                 Barbados         55.9
## 7639                  2015-01-01                 Barbados         66.8
## 7640                  2010-01-01                 Barbados         65.5
## 7641                  2005-01-01                 Barbados         64.3
## 7642                  2000-01-01                 Barbados         62.6
## 7643                  1995-01-01                 Barbados         59.5
## 7644                  1990-01-01                 Barbados         55.9
## 7645                  2015-01-01                 Barbados         66.8
## 7646                  2010-01-01                 Barbados         65.5
## 7647                  2005-01-01                 Barbados         64.3
## 7648                  2000-01-01                 Barbados         62.6
## 7649                  1995-01-01                 Barbados         59.5
## 7650                  1990-01-01                 Barbados         55.9
## 7651                  2015-01-01                 Barbados         66.8
## 7652                  2010-01-01                 Barbados         65.5
## 7653                  2005-01-01                 Barbados         64.3
## 7654                  2000-01-01                 Barbados         62.6
## 7655                  1995-01-01                 Barbados         59.5
## 7656                  1990-01-01                 Barbados         55.9
## 7657                  2015-01-01                 Barbados         66.8
## 7658                  2010-01-01                 Barbados         65.5
## 7659                  2005-01-01                 Barbados         64.3
## 7660                  2000-01-01                 Barbados         62.6
## 7661                  1995-01-01                 Barbados         59.5
## 7662                  1990-01-01                 Barbados         55.9
## 7663                  2015-01-01                 Barbados         66.8
## 7664                  2010-01-01                 Barbados         65.5
## 7665                  2005-01-01                 Barbados         64.3
## 7666                  2000-01-01                 Barbados         62.6
## 7667                  1995-01-01                 Barbados         59.5
## 7668                  1990-01-01                 Barbados         55.9
## 7669                  2015-01-01                 Barbados         66.8
## 7670                  2010-01-01                 Barbados         65.5
## 7671                  2005-01-01                 Barbados         64.3
## 7672                  2000-01-01                 Barbados         62.6
## 7673                  1995-01-01                 Barbados         59.5
## 7674                  1990-01-01                 Barbados         55.9
## 7675                  2015-01-01                 Barbados         66.8
## 7676                  2010-01-01                 Barbados         65.5
## 7677                  2005-01-01                 Barbados         64.3
## 7678                  2000-01-01                 Barbados         62.6
## 7679                  1995-01-01                 Barbados         59.5
## 7680                  1990-01-01                 Barbados         55.9
## 7681                  2015-01-01                 Barbados         66.8
## 7682                  2010-01-01                 Barbados         65.5
## 7683                  2005-01-01                 Barbados         64.3
## 7684                  2000-01-01                 Barbados         62.6
## 7685                  1995-01-01                 Barbados         59.5
## 7686                  1990-01-01                 Barbados         55.9
## 7687                  2015-01-01                 Barbados         66.8
## 7688                  2010-01-01                 Barbados         65.5
## 7689                  2005-01-01                 Barbados         64.3
## 7690                  2000-01-01                 Barbados         62.6
## 7691                  1995-01-01                 Barbados         59.5
## 7692                  1990-01-01                 Barbados         55.9
## 7693                  2015-01-01                 Barbados         66.8
## 7694                  2010-01-01                 Barbados         65.5
## 7695                  2005-01-01                 Barbados         64.3
## 7696                  2000-01-01                 Barbados         62.6
## 7697                  1995-01-01                 Barbados         59.5
## 7698                  1990-01-01                 Barbados         55.9
## 7699                  2015-01-01                  Belarus         74.4
## 7700                  2010-01-01                  Belarus         71.7
## 7701                  2005-01-01                  Belarus         68.0
## 7702                  2000-01-01                  Belarus         65.6
## 7703                  1995-01-01                  Belarus         63.2
## 7704                  1990-01-01                  Belarus         63.9
## 7705                  2015-01-01                  Belarus         74.4
## 7706                  2010-01-01                  Belarus         71.7
## 7707                  2005-01-01                  Belarus         68.0
## 7708                  2000-01-01                  Belarus         65.6
## 7709                  1995-01-01                  Belarus         63.2
## 7710                  1990-01-01                  Belarus         63.9
## 7711                  2015-01-01                  Belarus         74.4
## 7712                  2010-01-01                  Belarus         71.7
## 7713                  2005-01-01                  Belarus         68.0
## 7714                  2000-01-01                  Belarus         65.6
## 7715                  1995-01-01                  Belarus         63.2
## 7716                  1990-01-01                  Belarus         63.9
## 7717                  2015-01-01                  Belarus         74.4
## 7718                  2010-01-01                  Belarus         71.7
## 7719                  2005-01-01                  Belarus         68.0
## 7720                  2000-01-01                  Belarus         65.6
## 7721                  1995-01-01                  Belarus         63.2
## 7722                  1990-01-01                  Belarus         63.9
## 7723                  2015-01-01                  Belarus         74.4
## 7724                  2010-01-01                  Belarus         71.7
## 7725                  2005-01-01                  Belarus         68.0
## 7726                  2000-01-01                  Belarus         65.6
## 7727                  1995-01-01                  Belarus         63.2
## 7728                  1990-01-01                  Belarus         63.9
## 7729                  2015-01-01                  Belarus         74.4
## 7730                  2010-01-01                  Belarus         71.7
## 7731                  2005-01-01                  Belarus         68.0
## 7732                  2000-01-01                  Belarus         65.6
## 7733                  1995-01-01                  Belarus         63.2
## 7734                  1990-01-01                  Belarus         63.9
## 7735                  2015-01-01                  Belarus         74.4
## 7736                  2010-01-01                  Belarus         71.7
## 7737                  2005-01-01                  Belarus         68.0
## 7738                  2000-01-01                  Belarus         65.6
## 7739                  1995-01-01                  Belarus         63.2
## 7740                  1990-01-01                  Belarus         63.9
## 7741                  2015-01-01                  Belarus         74.4
## 7742                  2010-01-01                  Belarus         71.7
## 7743                  2005-01-01                  Belarus         68.0
## 7744                  2000-01-01                  Belarus         65.6
## 7745                  1995-01-01                  Belarus         63.2
## 7746                  1990-01-01                  Belarus         63.9
## 7747                  2015-01-01                  Belarus         74.4
## 7748                  2010-01-01                  Belarus         71.7
## 7749                  2005-01-01                  Belarus         68.0
## 7750                  2000-01-01                  Belarus         65.6
## 7751                  1995-01-01                  Belarus         63.2
## 7752                  1990-01-01                  Belarus         63.9
## 7753                  2015-01-01                  Belarus         74.4
## 7754                  2010-01-01                  Belarus         71.7
## 7755                  2005-01-01                  Belarus         68.0
## 7756                  2000-01-01                  Belarus         65.6
## 7757                  1995-01-01                  Belarus         63.2
## 7758                  1990-01-01                  Belarus         63.9
## 7759                  2015-01-01                  Belarus         74.4
## 7760                  2010-01-01                  Belarus         71.7
## 7761                  2005-01-01                  Belarus         68.0
## 7762                  2000-01-01                  Belarus         65.6
## 7763                  1995-01-01                  Belarus         63.2
## 7764                  1990-01-01                  Belarus         63.9
## 7765                  2015-01-01                  Belarus         74.4
## 7766                  2010-01-01                  Belarus         71.7
## 7767                  2005-01-01                  Belarus         68.0
## 7768                  2000-01-01                  Belarus         65.6
## 7769                  1995-01-01                  Belarus         63.2
## 7770                  1990-01-01                  Belarus         63.9
## 7771                  2015-01-01                  Belarus         74.4
## 7772                  2010-01-01                  Belarus         71.7
## 7773                  2005-01-01                  Belarus         68.0
## 7774                  2000-01-01                  Belarus         65.6
## 7775                  1995-01-01                  Belarus         63.2
## 7776                  1990-01-01                  Belarus         63.9
## 7777                  2015-01-01                  Belarus         74.4
## 7778                  2010-01-01                  Belarus         71.7
## 7779                  2005-01-01                  Belarus         68.0
## 7780                  2000-01-01                  Belarus         65.6
## 7781                  1995-01-01                  Belarus         63.2
## 7782                  1990-01-01                  Belarus         63.9
## 7783                  2015-01-01                  Belarus         74.4
## 7784                  2010-01-01                  Belarus         71.7
## 7785                  2005-01-01                  Belarus         68.0
## 7786                  2000-01-01                  Belarus         65.6
## 7787                  1995-01-01                  Belarus         63.2
## 7788                  1990-01-01                  Belarus         63.9
## 7789                  2015-01-01                  Belarus         74.4
## 7790                  2010-01-01                  Belarus         71.7
## 7791                  2005-01-01                  Belarus         68.0
## 7792                  2000-01-01                  Belarus         65.6
## 7793                  1995-01-01                  Belarus         63.2
## 7794                  1990-01-01                  Belarus         63.9
## 7795                  2015-01-01                  Belarus         74.4
## 7796                  2010-01-01                  Belarus         71.7
## 7797                  2005-01-01                  Belarus         68.0
## 7798                  2000-01-01                  Belarus         65.6
## 7799                  1995-01-01                  Belarus         63.2
## 7800                  1990-01-01                  Belarus         63.9
## 7801                  2015-01-01                  Belarus         74.4
## 7802                  2010-01-01                  Belarus         71.7
## 7803                  2005-01-01                  Belarus         68.0
## 7804                  2000-01-01                  Belarus         65.6
## 7805                  1995-01-01                  Belarus         63.2
## 7806                  1990-01-01                  Belarus         63.9
## 7807                  2015-01-01                  Belarus         74.4
## 7808                  2010-01-01                  Belarus         71.7
## 7809                  2005-01-01                  Belarus         68.0
## 7810                  2000-01-01                  Belarus         65.6
## 7811                  1995-01-01                  Belarus         63.2
## 7812                  1990-01-01                  Belarus         63.9
## 7813                  2015-01-01                  Belarus         74.4
## 7814                  2010-01-01                  Belarus         71.7
## 7815                  2005-01-01                  Belarus         68.0
## 7816                  2000-01-01                  Belarus         65.6
## 7817                  1995-01-01                  Belarus         63.2
## 7818                  1990-01-01                  Belarus         63.9
## 7819                  2015-01-01                  Belarus         74.4
## 7820                  2010-01-01                  Belarus         71.7
## 7821                  2005-01-01                  Belarus         68.0
## 7822                  2000-01-01                  Belarus         65.6
## 7823                  1995-01-01                  Belarus         63.2
## 7824                  1990-01-01                  Belarus         63.9
## 7825                  2015-01-01                  Belarus         74.4
## 7826                  2010-01-01                  Belarus         71.7
## 7827                  2005-01-01                  Belarus         68.0
## 7828                  2000-01-01                  Belarus         65.6
## 7829                  1995-01-01                  Belarus         63.2
## 7830                  1990-01-01                  Belarus         63.9
## 7831                  2015-01-01                  Belarus         74.4
## 7832                  2010-01-01                  Belarus         71.7
## 7833                  2005-01-01                  Belarus         68.0
## 7834                  2000-01-01                  Belarus         65.6
## 7835                  1995-01-01                  Belarus         63.2
## 7836                  1990-01-01                  Belarus         63.9
## 7837                  2015-01-01                  Belarus         74.4
## 7838                  2010-01-01                  Belarus         71.7
## 7839                  2005-01-01                  Belarus         68.0
## 7840                  2000-01-01                  Belarus         65.6
## 7841                  1995-01-01                  Belarus         63.2
## 7842                  1990-01-01                  Belarus         63.9
## 7843                  2015-01-01                  Belarus         74.4
## 7844                  2010-01-01                  Belarus         71.7
## 7845                  2005-01-01                  Belarus         68.0
## 7846                  2000-01-01                  Belarus         65.6
## 7847                  1995-01-01                  Belarus         63.2
## 7848                  1990-01-01                  Belarus         63.9
## 7849                  2015-01-01                  Belarus         74.4
## 7850                  2010-01-01                  Belarus         71.7
## 7851                  2005-01-01                  Belarus         68.0
## 7852                  2000-01-01                  Belarus         65.6
## 7853                  1995-01-01                  Belarus         63.2
## 7854                  1990-01-01                  Belarus         63.9
## 7855                  2015-01-01                  Belarus         74.4
## 7856                  2010-01-01                  Belarus         71.7
## 7857                  2005-01-01                  Belarus         68.0
## 7858                  2000-01-01                  Belarus         65.6
## 7859                  1995-01-01                  Belarus         63.2
## 7860                  1990-01-01                  Belarus         63.9
## 7861                  2015-01-01                  Belarus         74.4
## 7862                  2010-01-01                  Belarus         71.7
## 7863                  2005-01-01                  Belarus         68.0
## 7864                  2000-01-01                  Belarus         65.6
## 7865                  1995-01-01                  Belarus         63.2
## 7866                  1990-01-01                  Belarus         63.9
## 7867                  2015-01-01                  Belarus         74.4
## 7868                  2010-01-01                  Belarus         71.7
## 7869                  2005-01-01                  Belarus         68.0
## 7870                  2000-01-01                  Belarus         65.6
## 7871                  1995-01-01                  Belarus         63.2
## 7872                  1990-01-01                  Belarus         63.9
## 7873                  2015-01-01                  Belarus         74.4
## 7874                  2010-01-01                  Belarus         71.7
## 7875                  2005-01-01                  Belarus         68.0
## 7876                  2000-01-01                  Belarus         65.6
## 7877                  1995-01-01                  Belarus         63.2
## 7878                  1990-01-01                  Belarus         63.9
## 7879                  2015-01-01                  Belarus         74.4
## 7880                  2010-01-01                  Belarus         71.7
## 7881                  2005-01-01                  Belarus         68.0
## 7882                  2000-01-01                  Belarus         65.6
## 7883                  1995-01-01                  Belarus         63.2
## 7884                  1990-01-01                  Belarus         63.9
## 7885                  2015-01-01                  Belarus         74.4
## 7886                  2010-01-01                  Belarus         71.7
## 7887                  2005-01-01                  Belarus         68.0
## 7888                  2000-01-01                  Belarus         65.6
## 7889                  1995-01-01                  Belarus         63.2
## 7890                  1990-01-01                  Belarus         63.9
## 7891                  2015-01-01                  Belarus         74.4
## 7892                  2010-01-01                  Belarus         71.7
## 7893                  2005-01-01                  Belarus         68.0
## 7894                  2000-01-01                  Belarus         65.6
## 7895                  1995-01-01                  Belarus         63.2
## 7896                  1990-01-01                  Belarus         63.9
## 7897                  2015-01-01                  Belarus         74.4
## 7898                  2010-01-01                  Belarus         71.7
## 7899                  2005-01-01                  Belarus         68.0
## 7900                  2000-01-01                  Belarus         65.6
## 7901                  1995-01-01                  Belarus         63.2
## 7902                  1990-01-01                  Belarus         63.9
## 7903                  2015-01-01                  Belarus         74.4
## 7904                  2010-01-01                  Belarus         71.7
## 7905                  2005-01-01                  Belarus         68.0
## 7906                  2000-01-01                  Belarus         65.6
## 7907                  1995-01-01                  Belarus         63.2
## 7908                  1990-01-01                  Belarus         63.9
## 7909                  2015-01-01                  Belarus         74.4
## 7910                  2010-01-01                  Belarus         71.7
## 7911                  2005-01-01                  Belarus         68.0
## 7912                  2000-01-01                  Belarus         65.6
## 7913                  1995-01-01                  Belarus         63.2
## 7914                  1990-01-01                  Belarus         63.9
## 7915                  2015-01-01                  Belarus         74.4
## 7916                  2010-01-01                  Belarus         71.7
## 7917                  2005-01-01                  Belarus         68.0
## 7918                  2000-01-01                  Belarus         65.6
## 7919                  1995-01-01                  Belarus         63.2
## 7920                  1990-01-01                  Belarus         63.9
## 7921                  2015-01-01                  Belarus         74.4
## 7922                  2010-01-01                  Belarus         71.7
## 7923                  2005-01-01                  Belarus         68.0
## 7924                  2000-01-01                  Belarus         65.6
## 7925                  1995-01-01                  Belarus         63.2
## 7926                  1990-01-01                  Belarus         63.9
## 7927                  2015-01-01                  Belgium         87.9
## 7928                  2010-01-01                  Belgium         86.3
## 7929                  2005-01-01                  Belgium         84.6
## 7930                  2000-01-01                  Belgium         81.6
## 7931                  1995-01-01                  Belgium         78.8
## 7932                  1990-01-01                  Belgium         75.4
## 7933                  2015-01-01                  Belgium         87.9
## 7934                  2010-01-01                  Belgium         86.3
## 7935                  2005-01-01                  Belgium         84.6
## 7936                  2000-01-01                  Belgium         81.6
## 7937                  1995-01-01                  Belgium         78.8
## 7938                  1990-01-01                  Belgium         75.4
## 7939                  2015-01-01                  Belgium         87.9
## 7940                  2010-01-01                  Belgium         86.3
## 7941                  2005-01-01                  Belgium         84.6
## 7942                  2000-01-01                  Belgium         81.6
## 7943                  1995-01-01                  Belgium         78.8
## 7944                  1990-01-01                  Belgium         75.4
## 7945                  2015-01-01                  Belgium         87.9
## 7946                  2010-01-01                  Belgium         86.3
## 7947                  2005-01-01                  Belgium         84.6
## 7948                  2000-01-01                  Belgium         81.6
## 7949                  1995-01-01                  Belgium         78.8
## 7950                  1990-01-01                  Belgium         75.4
## 7951                  2015-01-01                  Belgium         87.9
## 7952                  2010-01-01                  Belgium         86.3
## 7953                  2005-01-01                  Belgium         84.6
## 7954                  2000-01-01                  Belgium         81.6
## 7955                  1995-01-01                  Belgium         78.8
## 7956                  1990-01-01                  Belgium         75.4
## 7957                  2015-01-01                  Belgium         87.9
## 7958                  2010-01-01                  Belgium         86.3
## 7959                  2005-01-01                  Belgium         84.6
## 7960                  2000-01-01                  Belgium         81.6
## 7961                  1995-01-01                  Belgium         78.8
## 7962                  1990-01-01                  Belgium         75.4
## 7963                  2015-01-01                  Belgium         87.9
## 7964                  2010-01-01                  Belgium         86.3
## 7965                  2005-01-01                  Belgium         84.6
## 7966                  2000-01-01                  Belgium         81.6
## 7967                  1995-01-01                  Belgium         78.8
## 7968                  1990-01-01                  Belgium         75.4
## 7969                  2015-01-01                  Belgium         87.9
## 7970                  2010-01-01                  Belgium         86.3
## 7971                  2005-01-01                  Belgium         84.6
## 7972                  2000-01-01                  Belgium         81.6
## 7973                  1995-01-01                  Belgium         78.8
## 7974                  1990-01-01                  Belgium         75.4
## 7975                  2015-01-01                  Belgium         87.9
## 7976                  2010-01-01                  Belgium         86.3
## 7977                  2005-01-01                  Belgium         84.6
## 7978                  2000-01-01                  Belgium         81.6
## 7979                  1995-01-01                  Belgium         78.8
## 7980                  1990-01-01                  Belgium         75.4
## 7981                  2015-01-01                  Belgium         87.9
## 7982                  2010-01-01                  Belgium         86.3
## 7983                  2005-01-01                  Belgium         84.6
## 7984                  2000-01-01                  Belgium         81.6
## 7985                  1995-01-01                  Belgium         78.8
## 7986                  1990-01-01                  Belgium         75.4
## 7987                  2015-01-01                  Belgium         87.9
## 7988                  2010-01-01                  Belgium         86.3
## 7989                  2005-01-01                  Belgium         84.6
## 7990                  2000-01-01                  Belgium         81.6
## 7991                  1995-01-01                  Belgium         78.8
## 7992                  1990-01-01                  Belgium         75.4
## 7993                  2015-01-01                  Belgium         87.9
## 7994                  2010-01-01                  Belgium         86.3
## 7995                  2005-01-01                  Belgium         84.6
## 7996                  2000-01-01                  Belgium         81.6
## 7997                  1995-01-01                  Belgium         78.8
## 7998                  1990-01-01                  Belgium         75.4
## 7999                  2015-01-01                  Belgium         87.9
## 8000                  2010-01-01                  Belgium         86.3
## 8001                  2005-01-01                  Belgium         84.6
## 8002                  2000-01-01                  Belgium         81.6
## 8003                  1995-01-01                  Belgium         78.8
## 8004                  1990-01-01                  Belgium         75.4
## 8005                  2015-01-01                  Belgium         87.9
## 8006                  2010-01-01                  Belgium         86.3
## 8007                  2005-01-01                  Belgium         84.6
## 8008                  2000-01-01                  Belgium         81.6
## 8009                  1995-01-01                  Belgium         78.8
## 8010                  1990-01-01                  Belgium         75.4
## 8011                  2015-01-01                  Belgium         87.9
## 8012                  2010-01-01                  Belgium         86.3
## 8013                  2005-01-01                  Belgium         84.6
## 8014                  2000-01-01                  Belgium         81.6
## 8015                  1995-01-01                  Belgium         78.8
## 8016                  1990-01-01                  Belgium         75.4
## 8017                  2015-01-01                  Belgium         87.9
## 8018                  2010-01-01                  Belgium         86.3
## 8019                  2005-01-01                  Belgium         84.6
## 8020                  2000-01-01                  Belgium         81.6
## 8021                  1995-01-01                  Belgium         78.8
## 8022                  1990-01-01                  Belgium         75.4
## 8023                  2015-01-01                  Belgium         87.9
## 8024                  2010-01-01                  Belgium         86.3
## 8025                  2005-01-01                  Belgium         84.6
## 8026                  2000-01-01                  Belgium         81.6
## 8027                  1995-01-01                  Belgium         78.8
## 8028                  1990-01-01                  Belgium         75.4
## 8029                  2015-01-01                  Belgium         87.9
## 8030                  2010-01-01                  Belgium         86.3
## 8031                  2005-01-01                  Belgium         84.6
## 8032                  2000-01-01                  Belgium         81.6
## 8033                  1995-01-01                  Belgium         78.8
## 8034                  1990-01-01                  Belgium         75.4
## 8035                  2015-01-01                  Belgium         87.9
## 8036                  2010-01-01                  Belgium         86.3
## 8037                  2005-01-01                  Belgium         84.6
## 8038                  2000-01-01                  Belgium         81.6
## 8039                  1995-01-01                  Belgium         78.8
## 8040                  1990-01-01                  Belgium         75.4
## 8041                  2015-01-01                  Belgium         87.9
## 8042                  2010-01-01                  Belgium         86.3
## 8043                  2005-01-01                  Belgium         84.6
## 8044                  2000-01-01                  Belgium         81.6
## 8045                  1995-01-01                  Belgium         78.8
## 8046                  1990-01-01                  Belgium         75.4
## 8047                  2015-01-01                  Belgium         87.9
## 8048                  2010-01-01                  Belgium         86.3
## 8049                  2005-01-01                  Belgium         84.6
## 8050                  2000-01-01                  Belgium         81.6
## 8051                  1995-01-01                  Belgium         78.8
## 8052                  1990-01-01                  Belgium         75.4
## 8053                  2015-01-01                  Belgium         87.9
## 8054                  2010-01-01                  Belgium         86.3
## 8055                  2005-01-01                  Belgium         84.6
## 8056                  2000-01-01                  Belgium         81.6
## 8057                  1995-01-01                  Belgium         78.8
## 8058                  1990-01-01                  Belgium         75.4
## 8059                  2015-01-01                  Belgium         87.9
## 8060                  2010-01-01                  Belgium         86.3
## 8061                  2005-01-01                  Belgium         84.6
## 8062                  2000-01-01                  Belgium         81.6
## 8063                  1995-01-01                  Belgium         78.8
## 8064                  1990-01-01                  Belgium         75.4
## 8065                  2015-01-01                  Belgium         87.9
## 8066                  2010-01-01                  Belgium         86.3
## 8067                  2005-01-01                  Belgium         84.6
## 8068                  2000-01-01                  Belgium         81.6
## 8069                  1995-01-01                  Belgium         78.8
## 8070                  1990-01-01                  Belgium         75.4
## 8071                  2015-01-01                  Belgium         87.9
## 8072                  2010-01-01                  Belgium         86.3
## 8073                  2005-01-01                  Belgium         84.6
## 8074                  2000-01-01                  Belgium         81.6
## 8075                  1995-01-01                  Belgium         78.8
## 8076                  1990-01-01                  Belgium         75.4
## 8077                  2015-01-01                  Belgium         87.9
## 8078                  2010-01-01                  Belgium         86.3
## 8079                  2005-01-01                  Belgium         84.6
## 8080                  2000-01-01                  Belgium         81.6
## 8081                  1995-01-01                  Belgium         78.8
## 8082                  1990-01-01                  Belgium         75.4
## 8083                  2015-01-01                  Belgium         87.9
## 8084                  2010-01-01                  Belgium         86.3
## 8085                  2005-01-01                  Belgium         84.6
## 8086                  2000-01-01                  Belgium         81.6
## 8087                  1995-01-01                  Belgium         78.8
## 8088                  1990-01-01                  Belgium         75.4
## 8089                  2015-01-01                  Belgium         87.9
## 8090                  2010-01-01                  Belgium         86.3
## 8091                  2005-01-01                  Belgium         84.6
## 8092                  2000-01-01                  Belgium         81.6
## 8093                  1995-01-01                  Belgium         78.8
## 8094                  1990-01-01                  Belgium         75.4
## 8095                  2015-01-01                  Belgium         87.9
## 8096                  2010-01-01                  Belgium         86.3
## 8097                  2005-01-01                  Belgium         84.6
## 8098                  2000-01-01                  Belgium         81.6
## 8099                  1995-01-01                  Belgium         78.8
## 8100                  1990-01-01                  Belgium         75.4
## 8101                  2015-01-01                  Belgium         87.9
## 8102                  2010-01-01                  Belgium         86.3
## 8103                  2005-01-01                  Belgium         84.6
## 8104                  2000-01-01                  Belgium         81.6
## 8105                  1995-01-01                  Belgium         78.8
## 8106                  1990-01-01                  Belgium         75.4
## 8107                  2015-01-01                  Belgium         87.9
## 8108                  2010-01-01                  Belgium         86.3
## 8109                  2005-01-01                  Belgium         84.6
## 8110                  2000-01-01                  Belgium         81.6
## 8111                  1995-01-01                  Belgium         78.8
## 8112                  1990-01-01                  Belgium         75.4
## 8113                  2015-01-01                  Belgium         87.9
## 8114                  2010-01-01                  Belgium         86.3
## 8115                  2005-01-01                  Belgium         84.6
## 8116                  2000-01-01                  Belgium         81.6
## 8117                  1995-01-01                  Belgium         78.8
## 8118                  1990-01-01                  Belgium         75.4
## 8119                  2015-01-01                  Belgium         87.9
## 8120                  2010-01-01                  Belgium         86.3
## 8121                  2005-01-01                  Belgium         84.6
## 8122                  2000-01-01                  Belgium         81.6
## 8123                  1995-01-01                  Belgium         78.8
## 8124                  1990-01-01                  Belgium         75.4
## 8125                  2015-01-01                  Belgium         87.9
## 8126                  2010-01-01                  Belgium         86.3
## 8127                  2005-01-01                  Belgium         84.6
## 8128                  2000-01-01                  Belgium         81.6
## 8129                  1995-01-01                  Belgium         78.8
## 8130                  1990-01-01                  Belgium         75.4
## 8131                  2015-01-01                  Belgium         87.9
## 8132                  2010-01-01                  Belgium         86.3
## 8133                  2005-01-01                  Belgium         84.6
## 8134                  2000-01-01                  Belgium         81.6
## 8135                  1995-01-01                  Belgium         78.8
## 8136                  1990-01-01                  Belgium         75.4
## 8137                  2015-01-01                  Belgium         87.9
## 8138                  2010-01-01                  Belgium         86.3
## 8139                  2005-01-01                  Belgium         84.6
## 8140                  2000-01-01                  Belgium         81.6
## 8141                  1995-01-01                  Belgium         78.8
## 8142                  1990-01-01                  Belgium         75.4
## 8143                  2015-01-01                  Belgium         87.9
## 8144                  2010-01-01                  Belgium         86.3
## 8145                  2005-01-01                  Belgium         84.6
## 8146                  2000-01-01                  Belgium         81.6
## 8147                  1995-01-01                  Belgium         78.8
## 8148                  1990-01-01                  Belgium         75.4
## 8149                  2015-01-01                  Belgium         87.9
## 8150                  2010-01-01                  Belgium         86.3
## 8151                  2005-01-01                  Belgium         84.6
## 8152                  2000-01-01                  Belgium         81.6
## 8153                  1995-01-01                  Belgium         78.8
## 8154                  1990-01-01                  Belgium         75.4
## 8155                  2015-01-01                  Belgium         87.9
## 8156                  2010-01-01                  Belgium         86.3
## 8157                  2005-01-01                  Belgium         84.6
## 8158                  2000-01-01                  Belgium         81.6
## 8159                  1995-01-01                  Belgium         78.8
## 8160                  1990-01-01                  Belgium         75.4
## 8161                  2015-01-01                  Belgium         87.9
## 8162                  2010-01-01                  Belgium         86.3
## 8163                  2005-01-01                  Belgium         84.6
## 8164                  2000-01-01                  Belgium         81.6
## 8165                  1995-01-01                  Belgium         78.8
## 8166                  1990-01-01                  Belgium         75.4
## 8167                  2015-01-01                  Belgium         87.9
## 8168                  2010-01-01                  Belgium         86.3
## 8169                  2005-01-01                  Belgium         84.6
## 8170                  2000-01-01                  Belgium         81.6
## 8171                  1995-01-01                  Belgium         78.8
## 8172                  1990-01-01                  Belgium         75.4
## 8173                  2015-01-01                  Belgium         87.9
## 8174                  2010-01-01                  Belgium         86.3
## 8175                  2005-01-01                  Belgium         84.6
## 8176                  2000-01-01                  Belgium         81.6
## 8177                  1995-01-01                  Belgium         78.8
## 8178                  1990-01-01                  Belgium         75.4
## 8179                  2015-01-01                  Belgium         87.9
## 8180                  2010-01-01                  Belgium         86.3
## 8181                  2005-01-01                  Belgium         84.6
## 8182                  2000-01-01                  Belgium         81.6
## 8183                  1995-01-01                  Belgium         78.8
## 8184                  1990-01-01                  Belgium         75.4
## 8185                  2015-01-01                  Belgium         87.9
## 8186                  2010-01-01                  Belgium         86.3
## 8187                  2005-01-01                  Belgium         84.6
## 8188                  2000-01-01                  Belgium         81.6
## 8189                  1995-01-01                  Belgium         78.8
## 8190                  1990-01-01                  Belgium         75.4
## 8191                  2015-01-01                  Belgium         87.9
## 8192                  2010-01-01                  Belgium         86.3
## 8193                  2005-01-01                  Belgium         84.6
## 8194                  2000-01-01                  Belgium         81.6
## 8195                  1995-01-01                  Belgium         78.8
## 8196                  1990-01-01                  Belgium         75.4
## 8197                  2015-01-01                  Belgium         87.9
## 8198                  2010-01-01                  Belgium         86.3
## 8199                  2005-01-01                  Belgium         84.6
## 8200                  2000-01-01                  Belgium         81.6
## 8201                  1995-01-01                  Belgium         78.8
## 8202                  1990-01-01                  Belgium         75.4
## 8203                  2015-01-01                  Belgium         87.9
## 8204                  2010-01-01                  Belgium         86.3
## 8205                  2005-01-01                  Belgium         84.6
## 8206                  2000-01-01                  Belgium         81.6
## 8207                  1995-01-01                  Belgium         78.8
## 8208                  1990-01-01                  Belgium         75.4
## 8209                  2015-01-01                  Belgium         87.9
## 8210                  2010-01-01                  Belgium         86.3
## 8211                  2005-01-01                  Belgium         84.6
## 8212                  2000-01-01                  Belgium         81.6
## 8213                  1995-01-01                  Belgium         78.8
## 8214                  1990-01-01                  Belgium         75.4
## 8215                  2015-01-01                  Belgium         87.9
## 8216                  2010-01-01                  Belgium         86.3
## 8217                  2005-01-01                  Belgium         84.6
## 8218                  2000-01-01                  Belgium         81.6
## 8219                  1995-01-01                  Belgium         78.8
## 8220                  1990-01-01                  Belgium         75.4
## 8221                  2015-01-01                  Belgium         87.9
## 8222                  2010-01-01                  Belgium         86.3
## 8223                  2005-01-01                  Belgium         84.6
## 8224                  2000-01-01                  Belgium         81.6
## 8225                  1995-01-01                  Belgium         78.8
## 8226                  1990-01-01                  Belgium         75.4
## 8227                  2015-01-01                  Belgium         87.9
## 8228                  2010-01-01                  Belgium         86.3
## 8229                  2005-01-01                  Belgium         84.6
## 8230                  2000-01-01                  Belgium         81.6
## 8231                  1995-01-01                  Belgium         78.8
## 8232                  1990-01-01                  Belgium         75.4
## 8233                  2015-01-01                  Belgium         87.9
## 8234                  2010-01-01                  Belgium         86.3
## 8235                  2005-01-01                  Belgium         84.6
## 8236                  2000-01-01                  Belgium         81.6
## 8237                  1995-01-01                  Belgium         78.8
## 8238                  1990-01-01                  Belgium         75.4
## 8239                  2015-01-01                  Belgium         87.9
## 8240                  2010-01-01                  Belgium         86.3
## 8241                  2005-01-01                  Belgium         84.6
## 8242                  2000-01-01                  Belgium         81.6
## 8243                  1995-01-01                  Belgium         78.8
## 8244                  1990-01-01                  Belgium         75.4
## 8245                  2015-01-01                  Belgium         87.9
## 8246                  2010-01-01                  Belgium         86.3
## 8247                  2005-01-01                  Belgium         84.6
## 8248                  2000-01-01                  Belgium         81.6
## 8249                  1995-01-01                  Belgium         78.8
## 8250                  1990-01-01                  Belgium         75.4
## 8251                  2015-01-01                  Belgium         87.9
## 8252                  2010-01-01                  Belgium         86.3
## 8253                  2005-01-01                  Belgium         84.6
## 8254                  2000-01-01                  Belgium         81.6
## 8255                  1995-01-01                  Belgium         78.8
## 8256                  1990-01-01                  Belgium         75.4
## 8257                  2015-01-01                  Belgium         87.9
## 8258                  2010-01-01                  Belgium         86.3
## 8259                  2005-01-01                  Belgium         84.6
## 8260                  2000-01-01                  Belgium         81.6
## 8261                  1995-01-01                  Belgium         78.8
## 8262                  1990-01-01                  Belgium         75.4
## 8263                  2015-01-01                  Belgium         87.9
## 8264                  2010-01-01                  Belgium         86.3
## 8265                  2005-01-01                  Belgium         84.6
## 8266                  2000-01-01                  Belgium         81.6
## 8267                  1995-01-01                  Belgium         78.8
## 8268                  1990-01-01                  Belgium         75.4
## 8269                  2015-01-01                  Belgium         87.9
## 8270                  2010-01-01                  Belgium         86.3
## 8271                  2005-01-01                  Belgium         84.6
## 8272                  2000-01-01                  Belgium         81.6
## 8273                  1995-01-01                  Belgium         78.8
## 8274                  1990-01-01                  Belgium         75.4
## 8275                  2015-01-01                  Belgium         87.9
## 8276                  2010-01-01                  Belgium         86.3
## 8277                  2005-01-01                  Belgium         84.6
## 8278                  2000-01-01                  Belgium         81.6
## 8279                  1995-01-01                  Belgium         78.8
## 8280                  1990-01-01                  Belgium         75.4
## 8281                  2015-01-01                  Belgium         87.9
## 8282                  2010-01-01                  Belgium         86.3
## 8283                  2005-01-01                  Belgium         84.6
## 8284                  2000-01-01                  Belgium         81.6
## 8285                  1995-01-01                  Belgium         78.8
## 8286                  1990-01-01                  Belgium         75.4
## 8287                  2015-01-01                  Belgium         87.9
## 8288                  2010-01-01                  Belgium         86.3
## 8289                  2005-01-01                  Belgium         84.6
## 8290                  2000-01-01                  Belgium         81.6
## 8291                  1995-01-01                  Belgium         78.8
## 8292                  1990-01-01                  Belgium         75.4
## 8293                  2015-01-01                  Belgium         87.9
## 8294                  2010-01-01                  Belgium         86.3
## 8295                  2005-01-01                  Belgium         84.6
## 8296                  2000-01-01                  Belgium         81.6
## 8297                  1995-01-01                  Belgium         78.8
## 8298                  1990-01-01                  Belgium         75.4
## 8299                  2015-01-01                  Belgium         87.9
## 8300                  2010-01-01                  Belgium         86.3
## 8301                  2005-01-01                  Belgium         84.6
## 8302                  2000-01-01                  Belgium         81.6
## 8303                  1995-01-01                  Belgium         78.8
## 8304                  1990-01-01                  Belgium         75.4
## 8305                  2015-01-01                  Belgium         87.9
## 8306                  2010-01-01                  Belgium         86.3
## 8307                  2005-01-01                  Belgium         84.6
## 8308                  2000-01-01                  Belgium         81.6
## 8309                  1995-01-01                  Belgium         78.8
## 8310                  1990-01-01                  Belgium         75.4
## 8311                  2015-01-01                  Belgium         87.9
## 8312                  2010-01-01                  Belgium         86.3
## 8313                  2005-01-01                  Belgium         84.6
## 8314                  2000-01-01                  Belgium         81.6
## 8315                  1995-01-01                  Belgium         78.8
## 8316                  1990-01-01                  Belgium         75.4
## 8317                  2015-01-01                  Belgium         87.9
## 8318                  2010-01-01                  Belgium         86.3
## 8319                  2005-01-01                  Belgium         84.6
## 8320                  2000-01-01                  Belgium         81.6
## 8321                  1995-01-01                  Belgium         78.8
## 8322                  1990-01-01                  Belgium         75.4
## 8323                  2015-01-01                  Belgium         87.9
## 8324                  2010-01-01                  Belgium         86.3
## 8325                  2005-01-01                  Belgium         84.6
## 8326                  2000-01-01                  Belgium         81.6
## 8327                  1995-01-01                  Belgium         78.8
## 8328                  1990-01-01                  Belgium         75.4
## 8329                  2015-01-01                  Belgium         87.9
## 8330                  2010-01-01                  Belgium         86.3
## 8331                  2005-01-01                  Belgium         84.6
## 8332                  2000-01-01                  Belgium         81.6
## 8333                  1995-01-01                  Belgium         78.8
## 8334                  1990-01-01                  Belgium         75.4
## 8335                  2015-01-01                  Belgium         87.9
## 8336                  2010-01-01                  Belgium         86.3
## 8337                  2005-01-01                  Belgium         84.6
## 8338                  2000-01-01                  Belgium         81.6
## 8339                  1995-01-01                  Belgium         78.8
## 8340                  1990-01-01                  Belgium         75.4
## 8341                  2015-01-01                  Belgium         87.9
## 8342                  2010-01-01                  Belgium         86.3
## 8343                  2005-01-01                  Belgium         84.6
## 8344                  2000-01-01                  Belgium         81.6
## 8345                  1995-01-01                  Belgium         78.8
## 8346                  1990-01-01                  Belgium         75.4
## 8347                  2015-01-01                  Belgium         87.9
## 8348                  2010-01-01                  Belgium         86.3
## 8349                  2005-01-01                  Belgium         84.6
## 8350                  2000-01-01                  Belgium         81.6
## 8351                  1995-01-01                  Belgium         78.8
## 8352                  1990-01-01                  Belgium         75.4
## 8353                  2015-01-01                  Belgium         87.9
## 8354                  2010-01-01                  Belgium         86.3
## 8355                  2005-01-01                  Belgium         84.6
## 8356                  2000-01-01                  Belgium         81.6
## 8357                  1995-01-01                  Belgium         78.8
## 8358                  1990-01-01                  Belgium         75.4
## 8359                  2015-01-01                  Belgium         87.9
## 8360                  2010-01-01                  Belgium         86.3
## 8361                  2005-01-01                  Belgium         84.6
## 8362                  2000-01-01                  Belgium         81.6
## 8363                  1995-01-01                  Belgium         78.8
## 8364                  1990-01-01                  Belgium         75.4
## 8365                  2015-01-01                  Belgium         87.9
## 8366                  2010-01-01                  Belgium         86.3
## 8367                  2005-01-01                  Belgium         84.6
## 8368                  2000-01-01                  Belgium         81.6
## 8369                  1995-01-01                  Belgium         78.8
## 8370                  1990-01-01                  Belgium         75.4
## 8371                  2015-01-01                  Belgium         87.9
## 8372                  2010-01-01                  Belgium         86.3
## 8373                  2005-01-01                  Belgium         84.6
## 8374                  2000-01-01                  Belgium         81.6
## 8375                  1995-01-01                  Belgium         78.8
## 8376                  1990-01-01                  Belgium         75.4
## 8377                  2015-01-01                  Belgium         87.9
## 8378                  2010-01-01                  Belgium         86.3
## 8379                  2005-01-01                  Belgium         84.6
## 8380                  2000-01-01                  Belgium         81.6
## 8381                  1995-01-01                  Belgium         78.8
## 8382                  1990-01-01                  Belgium         75.4
## 8383                  2015-01-01                  Belgium         87.9
## 8384                  2010-01-01                  Belgium         86.3
## 8385                  2005-01-01                  Belgium         84.6
## 8386                  2000-01-01                  Belgium         81.6
## 8387                  1995-01-01                  Belgium         78.8
## 8388                  1990-01-01                  Belgium         75.4
## 8389                  2015-01-01                  Belgium         87.9
## 8390                  2010-01-01                  Belgium         86.3
## 8391                  2005-01-01                  Belgium         84.6
## 8392                  2000-01-01                  Belgium         81.6
## 8393                  1995-01-01                  Belgium         78.8
## 8394                  1990-01-01                  Belgium         75.4
## 8395                  2015-01-01                  Belgium         87.9
## 8396                  2010-01-01                  Belgium         86.3
## 8397                  2005-01-01                  Belgium         84.6
## 8398                  2000-01-01                  Belgium         81.6
## 8399                  1995-01-01                  Belgium         78.8
## 8400                  1990-01-01                  Belgium         75.4
## 8401                  2015-01-01                  Belgium         87.9
## 8402                  2010-01-01                  Belgium         86.3
## 8403                  2005-01-01                  Belgium         84.6
## 8404                  2000-01-01                  Belgium         81.6
## 8405                  1995-01-01                  Belgium         78.8
## 8406                  1990-01-01                  Belgium         75.4
## 8407                  2015-01-01                  Belgium         87.9
## 8408                  2010-01-01                  Belgium         86.3
## 8409                  2005-01-01                  Belgium         84.6
## 8410                  2000-01-01                  Belgium         81.6
## 8411                  1995-01-01                  Belgium         78.8
## 8412                  1990-01-01                  Belgium         75.4
## 8413                  2015-01-01                  Belgium         87.9
## 8414                  2010-01-01                  Belgium         86.3
## 8415                  2005-01-01                  Belgium         84.6
## 8416                  2000-01-01                  Belgium         81.6
## 8417                  1995-01-01                  Belgium         78.8
## 8418                  1990-01-01                  Belgium         75.4
## 8419                  2015-01-01                  Belgium         87.9
## 8420                  2010-01-01                  Belgium         86.3
## 8421                  2005-01-01                  Belgium         84.6
## 8422                  2000-01-01                  Belgium         81.6
## 8423                  1995-01-01                  Belgium         78.8
## 8424                  1990-01-01                  Belgium         75.4
## 8425                  2015-01-01                  Belgium         87.9
## 8426                  2010-01-01                  Belgium         86.3
## 8427                  2005-01-01                  Belgium         84.6
## 8428                  2000-01-01                  Belgium         81.6
## 8429                  1995-01-01                  Belgium         78.8
## 8430                  1990-01-01                  Belgium         75.4
## 8431                  2015-01-01                  Belgium         87.9
## 8432                  2010-01-01                  Belgium         86.3
## 8433                  2005-01-01                  Belgium         84.6
## 8434                  2000-01-01                  Belgium         81.6
## 8435                  1995-01-01                  Belgium         78.8
## 8436                  1990-01-01                  Belgium         75.4
## 8437                  2015-01-01                  Belgium         87.9
## 8438                  2010-01-01                  Belgium         86.3
## 8439                  2005-01-01                  Belgium         84.6
## 8440                  2000-01-01                  Belgium         81.6
## 8441                  1995-01-01                  Belgium         78.8
## 8442                  1990-01-01                  Belgium         75.4
## 8443                  2015-01-01                  Belgium         87.9
## 8444                  2010-01-01                  Belgium         86.3
## 8445                  2005-01-01                  Belgium         84.6
## 8446                  2000-01-01                  Belgium         81.6
## 8447                  1995-01-01                  Belgium         78.8
## 8448                  1990-01-01                  Belgium         75.4
## 8449                  2015-01-01                  Belgium         87.9
## 8450                  2010-01-01                  Belgium         86.3
## 8451                  2005-01-01                  Belgium         84.6
## 8452                  2000-01-01                  Belgium         81.6
## 8453                  1995-01-01                  Belgium         78.8
## 8454                  1990-01-01                  Belgium         75.4
## 8455                  2015-01-01                  Belgium         87.9
## 8456                  2010-01-01                  Belgium         86.3
## 8457                  2005-01-01                  Belgium         84.6
## 8458                  2000-01-01                  Belgium         81.6
## 8459                  1995-01-01                  Belgium         78.8
## 8460                  1990-01-01                  Belgium         75.4
## 8461                  2015-01-01                  Belgium         87.9
## 8462                  2010-01-01                  Belgium         86.3
## 8463                  2005-01-01                  Belgium         84.6
## 8464                  2000-01-01                  Belgium         81.6
## 8465                  1995-01-01                  Belgium         78.8
## 8466                  1990-01-01                  Belgium         75.4
## 8467                  2015-01-01                  Belgium         87.9
## 8468                  2010-01-01                  Belgium         86.3
## 8469                  2005-01-01                  Belgium         84.6
## 8470                  2000-01-01                  Belgium         81.6
## 8471                  1995-01-01                  Belgium         78.8
## 8472                  1990-01-01                  Belgium         75.4
## 8473                  2015-01-01                  Belgium         87.9
## 8474                  2010-01-01                  Belgium         86.3
## 8475                  2005-01-01                  Belgium         84.6
## 8476                  2000-01-01                  Belgium         81.6
## 8477                  1995-01-01                  Belgium         78.8
## 8478                  1990-01-01                  Belgium         75.4
## 8479                  2015-01-01                  Belgium         87.9
## 8480                  2010-01-01                  Belgium         86.3
## 8481                  2005-01-01                  Belgium         84.6
## 8482                  2000-01-01                  Belgium         81.6
## 8483                  1995-01-01                  Belgium         78.8
## 8484                  1990-01-01                  Belgium         75.4
## 8485                  2015-01-01                  Belgium         87.9
## 8486                  2010-01-01                  Belgium         86.3
## 8487                  2005-01-01                  Belgium         84.6
## 8488                  2000-01-01                  Belgium         81.6
## 8489                  1995-01-01                  Belgium         78.8
## 8490                  1990-01-01                  Belgium         75.4
## 8491                  2015-01-01                  Belgium         87.9
## 8492                  2010-01-01                  Belgium         86.3
## 8493                  2005-01-01                  Belgium         84.6
## 8494                  2000-01-01                  Belgium         81.6
## 8495                  1995-01-01                  Belgium         78.8
## 8496                  1990-01-01                  Belgium         75.4
## 8497                  2015-01-01                  Belgium         87.9
## 8498                  2010-01-01                  Belgium         86.3
## 8499                  2005-01-01                  Belgium         84.6
## 8500                  2000-01-01                  Belgium         81.6
## 8501                  1995-01-01                  Belgium         78.8
## 8502                  1990-01-01                  Belgium         75.4
## 8503                  2015-01-01                  Belgium         87.9
## 8504                  2010-01-01                  Belgium         86.3
## 8505                  2005-01-01                  Belgium         84.6
## 8506                  2000-01-01                  Belgium         81.6
## 8507                  1995-01-01                  Belgium         78.8
## 8508                  1990-01-01                  Belgium         75.4
## 8509                  2015-01-01                  Belgium         87.9
## 8510                  2010-01-01                  Belgium         86.3
## 8511                  2005-01-01                  Belgium         84.6
## 8512                  2000-01-01                  Belgium         81.6
## 8513                  1995-01-01                  Belgium         78.8
## 8514                  1990-01-01                  Belgium         75.4
## 8515                  2015-01-01                  Belgium         87.9
## 8516                  2010-01-01                  Belgium         86.3
## 8517                  2005-01-01                  Belgium         84.6
## 8518                  2000-01-01                  Belgium         81.6
## 8519                  1995-01-01                  Belgium         78.8
## 8520                  1990-01-01                  Belgium         75.4
## 8521                  2015-01-01                  Belgium         87.9
## 8522                  2010-01-01                  Belgium         86.3
## 8523                  2005-01-01                  Belgium         84.6
## 8524                  2000-01-01                  Belgium         81.6
## 8525                  1995-01-01                  Belgium         78.8
## 8526                  1990-01-01                  Belgium         75.4
## 8527                  2015-01-01                  Belgium         87.9
## 8528                  2010-01-01                  Belgium         86.3
## 8529                  2005-01-01                  Belgium         84.6
## 8530                  2000-01-01                  Belgium         81.6
## 8531                  1995-01-01                  Belgium         78.8
## 8532                  1990-01-01                  Belgium         75.4
## 8533                  2015-01-01                  Belgium         87.9
## 8534                  2010-01-01                  Belgium         86.3
## 8535                  2005-01-01                  Belgium         84.6
## 8536                  2000-01-01                  Belgium         81.6
## 8537                  1995-01-01                  Belgium         78.8
## 8538                  1990-01-01                  Belgium         75.4
## 8539                  2015-01-01                  Belgium         87.9
## 8540                  2010-01-01                  Belgium         86.3
## 8541                  2005-01-01                  Belgium         84.6
## 8542                  2000-01-01                  Belgium         81.6
## 8543                  1995-01-01                  Belgium         78.8
## 8544                  1990-01-01                  Belgium         75.4
## 8545                  2015-01-01                  Belgium         87.9
## 8546                  2010-01-01                  Belgium         86.3
## 8547                  2005-01-01                  Belgium         84.6
## 8548                  2000-01-01                  Belgium         81.6
## 8549                  1995-01-01                  Belgium         78.8
## 8550                  1990-01-01                  Belgium         75.4
## 8551                  2015-01-01                  Belgium         87.9
## 8552                  2010-01-01                  Belgium         86.3
## 8553                  2005-01-01                  Belgium         84.6
## 8554                  2000-01-01                  Belgium         81.6
## 8555                  1995-01-01                  Belgium         78.8
## 8556                  1990-01-01                  Belgium         75.4
## 8557                  2015-01-01                  Belgium         87.9
## 8558                  2010-01-01                  Belgium         86.3
## 8559                  2005-01-01                  Belgium         84.6
## 8560                  2000-01-01                  Belgium         81.6
## 8561                  1995-01-01                  Belgium         78.8
## 8562                  1990-01-01                  Belgium         75.4
## 8563                  2015-01-01                  Belgium         87.9
## 8564                  2010-01-01                  Belgium         86.3
## 8565                  2005-01-01                  Belgium         84.6
## 8566                  2000-01-01                  Belgium         81.6
## 8567                  1995-01-01                  Belgium         78.8
## 8568                  1990-01-01                  Belgium         75.4
## 8569                  2015-01-01                  Belgium         87.9
## 8570                  2010-01-01                  Belgium         86.3
## 8571                  2005-01-01                  Belgium         84.6
## 8572                  2000-01-01                  Belgium         81.6
## 8573                  1995-01-01                  Belgium         78.8
## 8574                  1990-01-01                  Belgium         75.4
## 8575                  2015-01-01                  Belgium         87.9
## 8576                  2010-01-01                  Belgium         86.3
## 8577                  2005-01-01                  Belgium         84.6
## 8578                  2000-01-01                  Belgium         81.6
## 8579                  1995-01-01                  Belgium         78.8
## 8580                  1990-01-01                  Belgium         75.4
## 8581                  2015-01-01                  Belgium         87.9
## 8582                  2010-01-01                  Belgium         86.3
## 8583                  2005-01-01                  Belgium         84.6
## 8584                  2000-01-01                  Belgium         81.6
## 8585                  1995-01-01                  Belgium         78.8
## 8586                  1990-01-01                  Belgium         75.4
## 8587                  2015-01-01                  Belgium         87.9
## 8588                  2010-01-01                  Belgium         86.3
## 8589                  2005-01-01                  Belgium         84.6
## 8590                  2000-01-01                  Belgium         81.6
## 8591                  1995-01-01                  Belgium         78.8
## 8592                  1990-01-01                  Belgium         75.4
## 8593                  2015-01-01                  Belgium         87.9
## 8594                  2010-01-01                  Belgium         86.3
## 8595                  2005-01-01                  Belgium         84.6
## 8596                  2000-01-01                  Belgium         81.6
## 8597                  1995-01-01                  Belgium         78.8
## 8598                  1990-01-01                  Belgium         75.4
## 8599                  2015-01-01                  Belgium         87.9
## 8600                  2010-01-01                  Belgium         86.3
## 8601                  2005-01-01                  Belgium         84.6
## 8602                  2000-01-01                  Belgium         81.6
## 8603                  1995-01-01                  Belgium         78.8
## 8604                  1990-01-01                  Belgium         75.4
## 8605                  2015-01-01                  Belgium         87.9
## 8606                  2010-01-01                  Belgium         86.3
## 8607                  2005-01-01                  Belgium         84.6
## 8608                  2000-01-01                  Belgium         81.6
## 8609                  1995-01-01                  Belgium         78.8
## 8610                  1990-01-01                  Belgium         75.4
## 8611                  2015-01-01                  Belgium         87.9
## 8612                  2010-01-01                  Belgium         86.3
## 8613                  2005-01-01                  Belgium         84.6
## 8614                  2000-01-01                  Belgium         81.6
## 8615                  1995-01-01                  Belgium         78.8
## 8616                  1990-01-01                  Belgium         75.4
## 8617                  2015-01-01                  Belgium         87.9
## 8618                  2010-01-01                  Belgium         86.3
## 8619                  2005-01-01                  Belgium         84.6
## 8620                  2000-01-01                  Belgium         81.6
## 8621                  1995-01-01                  Belgium         78.8
## 8622                  1990-01-01                  Belgium         75.4
## 8623                  2015-01-01                  Belgium         87.9
## 8624                  2010-01-01                  Belgium         86.3
## 8625                  2005-01-01                  Belgium         84.6
## 8626                  2000-01-01                  Belgium         81.6
## 8627                  1995-01-01                  Belgium         78.8
## 8628                  1990-01-01                  Belgium         75.4
## 8629                  2015-01-01                  Belgium         87.9
## 8630                  2010-01-01                  Belgium         86.3
## 8631                  2005-01-01                  Belgium         84.6
## 8632                  2000-01-01                  Belgium         81.6
## 8633                  1995-01-01                  Belgium         78.8
## 8634                  1990-01-01                  Belgium         75.4
## 8635                  2015-01-01                  Belgium         87.9
## 8636                  2010-01-01                  Belgium         86.3
## 8637                  2005-01-01                  Belgium         84.6
## 8638                  2000-01-01                  Belgium         81.6
## 8639                  1995-01-01                  Belgium         78.8
## 8640                  1990-01-01                  Belgium         75.4
## 8641                  2015-01-01                  Belgium         87.9
## 8642                  2010-01-01                  Belgium         86.3
## 8643                  2005-01-01                  Belgium         84.6
## 8644                  2000-01-01                  Belgium         81.6
## 8645                  1995-01-01                  Belgium         78.8
## 8646                  1990-01-01                  Belgium         75.4
## 8647                  2015-01-01                  Belgium         87.9
## 8648                  2010-01-01                  Belgium         86.3
## 8649                  2005-01-01                  Belgium         84.6
## 8650                  2000-01-01                  Belgium         81.6
## 8651                  1995-01-01                  Belgium         78.8
## 8652                  1990-01-01                  Belgium         75.4
## 8653                  2015-01-01                  Belgium         87.9
## 8654                  2010-01-01                  Belgium         86.3
## 8655                  2005-01-01                  Belgium         84.6
## 8656                  2000-01-01                  Belgium         81.6
## 8657                  1995-01-01                  Belgium         78.8
## 8658                  1990-01-01                  Belgium         75.4
## 8659                  2015-01-01                  Belgium         87.9
## 8660                  2010-01-01                  Belgium         86.3
## 8661                  2005-01-01                  Belgium         84.6
## 8662                  2000-01-01                  Belgium         81.6
## 8663                  1995-01-01                  Belgium         78.8
## 8664                  1990-01-01                  Belgium         75.4
## 8665                  2015-01-01                  Belgium         87.9
## 8666                  2010-01-01                  Belgium         86.3
## 8667                  2005-01-01                  Belgium         84.6
## 8668                  2000-01-01                  Belgium         81.6
## 8669                  1995-01-01                  Belgium         78.8
## 8670                  1990-01-01                  Belgium         75.4
## 8671                  2015-01-01                  Belgium         87.9
## 8672                  2010-01-01                  Belgium         86.3
## 8673                  2005-01-01                  Belgium         84.6
## 8674                  2000-01-01                  Belgium         81.6
## 8675                  1995-01-01                  Belgium         78.8
## 8676                  1990-01-01                  Belgium         75.4
## 8677                  2015-01-01                  Belgium         87.9
## 8678                  2010-01-01                  Belgium         86.3
## 8679                  2005-01-01                  Belgium         84.6
## 8680                  2000-01-01                  Belgium         81.6
## 8681                  1995-01-01                  Belgium         78.8
## 8682                  1990-01-01                  Belgium         75.4
## 8683                  2015-01-01                  Belgium         87.9
## 8684                  2010-01-01                  Belgium         86.3
## 8685                  2005-01-01                  Belgium         84.6
## 8686                  2000-01-01                  Belgium         81.6
## 8687                  1995-01-01                  Belgium         78.8
## 8688                  1990-01-01                  Belgium         75.4
## 8689                  2015-01-01                  Belgium         87.9
## 8690                  2010-01-01                  Belgium         86.3
## 8691                  2005-01-01                  Belgium         84.6
## 8692                  2000-01-01                  Belgium         81.6
## 8693                  1995-01-01                  Belgium         78.8
## 8694                  1990-01-01                  Belgium         75.4
## 8695                  2015-01-01                  Belgium         87.9
## 8696                  2010-01-01                  Belgium         86.3
## 8697                  2005-01-01                  Belgium         84.6
## 8698                  2000-01-01                  Belgium         81.6
## 8699                  1995-01-01                  Belgium         78.8
## 8700                  1990-01-01                  Belgium         75.4
## 8701                  2015-01-01                  Belgium         87.9
## 8702                  2010-01-01                  Belgium         86.3
## 8703                  2005-01-01                  Belgium         84.6
## 8704                  2000-01-01                  Belgium         81.6
## 8705                  1995-01-01                  Belgium         78.8
## 8706                  1990-01-01                  Belgium         75.4
## 8707                  2015-01-01                  Belgium         87.9
## 8708                  2010-01-01                  Belgium         86.3
## 8709                  2005-01-01                  Belgium         84.6
## 8710                  2000-01-01                  Belgium         81.6
## 8711                  1995-01-01                  Belgium         78.8
## 8712                  1990-01-01                  Belgium         75.4
## 8713                  2015-01-01                  Belgium         87.9
## 8714                  2010-01-01                  Belgium         86.3
## 8715                  2005-01-01                  Belgium         84.6
## 8716                  2000-01-01                  Belgium         81.6
## 8717                  1995-01-01                  Belgium         78.8
## 8718                  1990-01-01                  Belgium         75.4
## 8719                  2015-01-01                  Belgium         87.9
## 8720                  2010-01-01                  Belgium         86.3
## 8721                  2005-01-01                  Belgium         84.6
## 8722                  2000-01-01                  Belgium         81.6
## 8723                  1995-01-01                  Belgium         78.8
## 8724                  1990-01-01                  Belgium         75.4
## 8725                  2015-01-01                  Belgium         87.9
## 8726                  2010-01-01                  Belgium         86.3
## 8727                  2005-01-01                  Belgium         84.6
## 8728                  2000-01-01                  Belgium         81.6
## 8729                  1995-01-01                  Belgium         78.8
## 8730                  1990-01-01                  Belgium         75.4
## 8731                  2015-01-01                  Belgium         87.9
## 8732                  2010-01-01                  Belgium         86.3
## 8733                  2005-01-01                  Belgium         84.6
## 8734                  2000-01-01                  Belgium         81.6
## 8735                  1995-01-01                  Belgium         78.8
## 8736                  1990-01-01                  Belgium         75.4
## 8737                  2015-01-01                  Belgium         87.9
## 8738                  2010-01-01                  Belgium         86.3
## 8739                  2005-01-01                  Belgium         84.6
## 8740                  2000-01-01                  Belgium         81.6
## 8741                  1995-01-01                  Belgium         78.8
## 8742                  1990-01-01                  Belgium         75.4
## 8743                  2015-01-01                  Belgium         87.9
## 8744                  2010-01-01                  Belgium         86.3
## 8745                  2005-01-01                  Belgium         84.6
## 8746                  2000-01-01                  Belgium         81.6
## 8747                  1995-01-01                  Belgium         78.8
## 8748                  1990-01-01                  Belgium         75.4
## 8749                  2015-01-01                  Belgium         87.9
## 8750                  2010-01-01                  Belgium         86.3
## 8751                  2005-01-01                  Belgium         84.6
## 8752                  2000-01-01                  Belgium         81.6
## 8753                  1995-01-01                  Belgium         78.8
## 8754                  1990-01-01                  Belgium         75.4
## 8755                  2015-01-01                  Belgium         87.9
## 8756                  2010-01-01                  Belgium         86.3
## 8757                  2005-01-01                  Belgium         84.6
## 8758                  2000-01-01                  Belgium         81.6
## 8759                  1995-01-01                  Belgium         78.8
## 8760                  1990-01-01                  Belgium         75.4
## 8761                  2015-01-01                  Belgium         87.9
## 8762                  2010-01-01                  Belgium         86.3
## 8763                  2005-01-01                  Belgium         84.6
## 8764                  2000-01-01                  Belgium         81.6
## 8765                  1995-01-01                  Belgium         78.8
## 8766                  1990-01-01                  Belgium         75.4
## 8767                  2015-01-01                  Belgium         87.9
## 8768                  2010-01-01                  Belgium         86.3
## 8769                  2005-01-01                  Belgium         84.6
## 8770                  2000-01-01                  Belgium         81.6
## 8771                  1995-01-01                  Belgium         78.8
## 8772                  1990-01-01                  Belgium         75.4
## 8773                  2015-01-01                  Belgium         87.9
## 8774                  2010-01-01                  Belgium         86.3
## 8775                  2005-01-01                  Belgium         84.6
## 8776                  2000-01-01                  Belgium         81.6
## 8777                  1995-01-01                  Belgium         78.8
## 8778                  1990-01-01                  Belgium         75.4
## 8779                  2015-01-01                  Belgium         87.9
## 8780                  2010-01-01                  Belgium         86.3
## 8781                  2005-01-01                  Belgium         84.6
## 8782                  2000-01-01                  Belgium         81.6
## 8783                  1995-01-01                  Belgium         78.8
## 8784                  1990-01-01                  Belgium         75.4
## 8785                  2015-01-01                  Belgium         87.9
## 8786                  2010-01-01                  Belgium         86.3
## 8787                  2005-01-01                  Belgium         84.6
## 8788                  2000-01-01                  Belgium         81.6
## 8789                  1995-01-01                  Belgium         78.8
## 8790                  1990-01-01                  Belgium         75.4
## 8791                  2015-01-01                  Belgium         87.9
## 8792                  2010-01-01                  Belgium         86.3
## 8793                  2005-01-01                  Belgium         84.6
## 8794                  2000-01-01                  Belgium         81.6
## 8795                  1995-01-01                  Belgium         78.8
## 8796                  1990-01-01                  Belgium         75.4
## 8797                  2015-01-01                  Belgium         87.9
## 8798                  2010-01-01                  Belgium         86.3
## 8799                  2005-01-01                  Belgium         84.6
## 8800                  2000-01-01                  Belgium         81.6
## 8801                  1995-01-01                  Belgium         78.8
## 8802                  1990-01-01                  Belgium         75.4
## 8803                  2015-01-01                  Belgium         87.9
## 8804                  2010-01-01                  Belgium         86.3
## 8805                  2005-01-01                  Belgium         84.6
## 8806                  2000-01-01                  Belgium         81.6
## 8807                  1995-01-01                  Belgium         78.8
## 8808                  1990-01-01                  Belgium         75.4
## 8809                  2015-01-01                  Belgium         87.9
## 8810                  2010-01-01                  Belgium         86.3
## 8811                  2005-01-01                  Belgium         84.6
## 8812                  2000-01-01                  Belgium         81.6
## 8813                  1995-01-01                  Belgium         78.8
## 8814                  1990-01-01                  Belgium         75.4
## 8815                  2015-01-01                  Belgium         87.9
## 8816                  2010-01-01                  Belgium         86.3
## 8817                  2005-01-01                  Belgium         84.6
## 8818                  2000-01-01                  Belgium         81.6
## 8819                  1995-01-01                  Belgium         78.8
## 8820                  1990-01-01                  Belgium         75.4
## 8821                  2015-01-01                  Belgium         87.9
## 8822                  2010-01-01                  Belgium         86.3
## 8823                  2005-01-01                  Belgium         84.6
## 8824                  2000-01-01                  Belgium         81.6
## 8825                  1995-01-01                  Belgium         78.8
## 8826                  1990-01-01                  Belgium         75.4
## 8827                  2015-01-01                  Belgium         87.9
## 8828                  2010-01-01                  Belgium         86.3
## 8829                  2005-01-01                  Belgium         84.6
## 8830                  2000-01-01                  Belgium         81.6
## 8831                  1995-01-01                  Belgium         78.8
## 8832                  1990-01-01                  Belgium         75.4
## 8833                  2015-01-01                  Belgium         87.9
## 8834                  2010-01-01                  Belgium         86.3
## 8835                  2005-01-01                  Belgium         84.6
## 8836                  2000-01-01                  Belgium         81.6
## 8837                  1995-01-01                  Belgium         78.8
## 8838                  1990-01-01                  Belgium         75.4
## 8839                  2015-01-01                  Belgium         87.9
## 8840                  2010-01-01                  Belgium         86.3
## 8841                  2005-01-01                  Belgium         84.6
## 8842                  2000-01-01                  Belgium         81.6
## 8843                  1995-01-01                  Belgium         78.8
## 8844                  1990-01-01                  Belgium         75.4
## 8845                  2015-01-01                  Belgium         87.9
## 8846                  2010-01-01                  Belgium         86.3
## 8847                  2005-01-01                  Belgium         84.6
## 8848                  2000-01-01                  Belgium         81.6
## 8849                  1995-01-01                  Belgium         78.8
## 8850                  1990-01-01                  Belgium         75.4
## 8851                  2015-01-01                  Belgium         87.9
## 8852                  2010-01-01                  Belgium         86.3
## 8853                  2005-01-01                  Belgium         84.6
## 8854                  2000-01-01                  Belgium         81.6
## 8855                  1995-01-01                  Belgium         78.8
## 8856                  1990-01-01                  Belgium         75.4
## 8857                  2015-01-01                  Belgium         87.9
## 8858                  2010-01-01                  Belgium         86.3
## 8859                  2005-01-01                  Belgium         84.6
## 8860                  2000-01-01                  Belgium         81.6
## 8861                  1995-01-01                  Belgium         78.8
## 8862                  1990-01-01                  Belgium         75.4
## 8863                  2015-01-01                  Belgium         87.9
## 8864                  2010-01-01                  Belgium         86.3
## 8865                  2005-01-01                  Belgium         84.6
## 8866                  2000-01-01                  Belgium         81.6
## 8867                  1995-01-01                  Belgium         78.8
## 8868                  1990-01-01                  Belgium         75.4
## 8869                  2015-01-01                  Belgium         87.9
## 8870                  2010-01-01                  Belgium         86.3
## 8871                  2005-01-01                  Belgium         84.6
## 8872                  2000-01-01                  Belgium         81.6
## 8873                  1995-01-01                  Belgium         78.8
## 8874                  1990-01-01                  Belgium         75.4
## 8875                  2015-01-01                  Belgium         87.9
## 8876                  2010-01-01                  Belgium         86.3
## 8877                  2005-01-01                  Belgium         84.6
## 8878                  2000-01-01                  Belgium         81.6
## 8879                  1995-01-01                  Belgium         78.8
## 8880                  1990-01-01                  Belgium         75.4
## 8881                  2015-01-01                  Belgium         87.9
## 8882                  2010-01-01                  Belgium         86.3
## 8883                  2005-01-01                  Belgium         84.6
## 8884                  2000-01-01                  Belgium         81.6
## 8885                  1995-01-01                  Belgium         78.8
## 8886                  1990-01-01                  Belgium         75.4
## 8887                  2015-01-01                  Belgium         87.9
## 8888                  2010-01-01                  Belgium         86.3
## 8889                  2005-01-01                  Belgium         84.6
## 8890                  2000-01-01                  Belgium         81.6
## 8891                  1995-01-01                  Belgium         78.8
## 8892                  1990-01-01                  Belgium         75.4
## 8893                  2015-01-01                  Belgium         87.9
## 8894                  2010-01-01                  Belgium         86.3
## 8895                  2005-01-01                  Belgium         84.6
## 8896                  2000-01-01                  Belgium         81.6
## 8897                  1995-01-01                  Belgium         78.8
## 8898                  1990-01-01                  Belgium         75.4
## 8899                  2015-01-01                  Belgium         87.9
## 8900                  2010-01-01                  Belgium         86.3
## 8901                  2005-01-01                  Belgium         84.6
## 8902                  2000-01-01                  Belgium         81.6
## 8903                  1995-01-01                  Belgium         78.8
## 8904                  1990-01-01                  Belgium         75.4
## 8905                  2015-01-01                  Belgium         87.9
## 8906                  2010-01-01                  Belgium         86.3
## 8907                  2005-01-01                  Belgium         84.6
## 8908                  2000-01-01                  Belgium         81.6
## 8909                  1995-01-01                  Belgium         78.8
## 8910                  1990-01-01                  Belgium         75.4
## 8911                  2015-01-01                  Belgium         87.9
## 8912                  2010-01-01                  Belgium         86.3
## 8913                  2005-01-01                  Belgium         84.6
## 8914                  2000-01-01                  Belgium         81.6
## 8915                  1995-01-01                  Belgium         78.8
## 8916                  1990-01-01                  Belgium         75.4
## 8917                  2015-01-01                  Belgium         87.9
## 8918                  2010-01-01                  Belgium         86.3
## 8919                  2005-01-01                  Belgium         84.6
## 8920                  2000-01-01                  Belgium         81.6
## 8921                  1995-01-01                  Belgium         78.8
## 8922                  1990-01-01                  Belgium         75.4
## 8923                  2015-01-01                  Belgium         87.9
## 8924                  2010-01-01                  Belgium         86.3
## 8925                  2005-01-01                  Belgium         84.6
## 8926                  2000-01-01                  Belgium         81.6
## 8927                  1995-01-01                  Belgium         78.8
## 8928                  1990-01-01                  Belgium         75.4
## 8929                  2015-01-01                  Belgium         87.9
## 8930                  2010-01-01                  Belgium         86.3
## 8931                  2005-01-01                  Belgium         84.6
## 8932                  2000-01-01                  Belgium         81.6
## 8933                  1995-01-01                  Belgium         78.8
## 8934                  1990-01-01                  Belgium         75.4
## 8935                  2015-01-01                  Belgium         87.9
## 8936                  2010-01-01                  Belgium         86.3
## 8937                  2005-01-01                  Belgium         84.6
## 8938                  2000-01-01                  Belgium         81.6
## 8939                  1995-01-01                  Belgium         78.8
## 8940                  1990-01-01                  Belgium         75.4
## 8941                  2015-01-01                  Belgium         87.9
## 8942                  2010-01-01                  Belgium         86.3
## 8943                  2005-01-01                  Belgium         84.6
## 8944                  2000-01-01                  Belgium         81.6
## 8945                  1995-01-01                  Belgium         78.8
## 8946                  1990-01-01                  Belgium         75.4
## 8947                  2015-01-01                  Belgium         87.9
## 8948                  2010-01-01                  Belgium         86.3
## 8949                  2005-01-01                  Belgium         84.6
## 8950                  2000-01-01                  Belgium         81.6
## 8951                  1995-01-01                  Belgium         78.8
## 8952                  1990-01-01                  Belgium         75.4
## 8953                  2015-01-01                  Belgium         87.9
## 8954                  2010-01-01                  Belgium         86.3
## 8955                  2005-01-01                  Belgium         84.6
## 8956                  2000-01-01                  Belgium         81.6
## 8957                  1995-01-01                  Belgium         78.8
## 8958                  1990-01-01                  Belgium         75.4
## 8959                  2015-01-01                  Belgium         87.9
## 8960                  2010-01-01                  Belgium         86.3
## 8961                  2005-01-01                  Belgium         84.6
## 8962                  2000-01-01                  Belgium         81.6
## 8963                  1995-01-01                  Belgium         78.8
## 8964                  1990-01-01                  Belgium         75.4
## 8965                  2015-01-01                  Belgium         87.9
## 8966                  2010-01-01                  Belgium         86.3
## 8967                  2005-01-01                  Belgium         84.6
## 8968                  2000-01-01                  Belgium         81.6
## 8969                  1995-01-01                  Belgium         78.8
## 8970                  1990-01-01                  Belgium         75.4
## 8971                  2015-01-01                  Belgium         87.9
## 8972                  2010-01-01                  Belgium         86.3
## 8973                  2005-01-01                  Belgium         84.6
## 8974                  2000-01-01                  Belgium         81.6
## 8975                  1995-01-01                  Belgium         78.8
## 8976                  1990-01-01                  Belgium         75.4
## 8977                  2015-01-01                  Belgium         87.9
## 8978                  2010-01-01                  Belgium         86.3
## 8979                  2005-01-01                  Belgium         84.6
## 8980                  2000-01-01                  Belgium         81.6
## 8981                  1995-01-01                  Belgium         78.8
## 8982                  1990-01-01                  Belgium         75.4
## 8983                  2015-01-01                  Belgium         87.9
## 8984                  2010-01-01                  Belgium         86.3
## 8985                  2005-01-01                  Belgium         84.6
## 8986                  2000-01-01                  Belgium         81.6
## 8987                  1995-01-01                  Belgium         78.8
## 8988                  1990-01-01                  Belgium         75.4
## 8989                  2015-01-01                  Belgium         87.9
## 8990                  2010-01-01                  Belgium         86.3
## 8991                  2005-01-01                  Belgium         84.6
## 8992                  2000-01-01                  Belgium         81.6
## 8993                  1995-01-01                  Belgium         78.8
## 8994                  1990-01-01                  Belgium         75.4
## 8995                  2015-01-01                  Belgium         87.9
## 8996                  2010-01-01                  Belgium         86.3
## 8997                  2005-01-01                  Belgium         84.6
## 8998                  2000-01-01                  Belgium         81.6
## 8999                  1995-01-01                  Belgium         78.8
## 9000                  1990-01-01                  Belgium         75.4
## 9001                  2015-01-01                   Belize         58.3
## 9002                  2010-01-01                   Belize         56.3
## 9003                  2005-01-01                   Belize         53.7
## 9004                  2000-01-01                   Belize         50.6
## 9005                  1995-01-01                   Belize         50.5
## 9006                  1990-01-01                   Belize         49.7
## 9007                  2015-01-01                   Belize         58.3
## 9008                  2010-01-01                   Belize         56.3
## 9009                  2005-01-01                   Belize         53.7
## 9010                  2000-01-01                   Belize         50.6
## 9011                  1995-01-01                   Belize         50.5
## 9012                  1990-01-01                   Belize         49.7
## 9013                  2015-01-01                   Belize         58.3
## 9014                  2010-01-01                   Belize         56.3
## 9015                  2005-01-01                   Belize         53.7
## 9016                  2000-01-01                   Belize         50.6
## 9017                  1995-01-01                   Belize         50.5
## 9018                  1990-01-01                   Belize         49.7
## 9019                  2015-01-01                   Belize         58.3
## 9020                  2010-01-01                   Belize         56.3
## 9021                  2005-01-01                   Belize         53.7
## 9022                  2000-01-01                   Belize         50.6
## 9023                  1995-01-01                   Belize         50.5
## 9024                  1990-01-01                   Belize         49.7
## 9025                  2015-01-01                   Belize         58.3
## 9026                  2010-01-01                   Belize         56.3
## 9027                  2005-01-01                   Belize         53.7
## 9028                  2000-01-01                   Belize         50.6
## 9029                  1995-01-01                   Belize         50.5
## 9030                  1990-01-01                   Belize         49.7
## 9031                  2015-01-01                   Belize         58.3
## 9032                  2010-01-01                   Belize         56.3
## 9033                  2005-01-01                   Belize         53.7
## 9034                  2000-01-01                   Belize         50.6
## 9035                  1995-01-01                   Belize         50.5
## 9036                  1990-01-01                   Belize         49.7
## 9037                  2015-01-01                   Belize         58.3
## 9038                  2010-01-01                   Belize         56.3
## 9039                  2005-01-01                   Belize         53.7
## 9040                  2000-01-01                   Belize         50.6
## 9041                  1995-01-01                   Belize         50.5
## 9042                  1990-01-01                   Belize         49.7
## 9043                  2015-01-01                   Belize         58.3
## 9044                  2010-01-01                   Belize         56.3
## 9045                  2005-01-01                   Belize         53.7
## 9046                  2000-01-01                   Belize         50.6
## 9047                  1995-01-01                   Belize         50.5
## 9048                  1990-01-01                   Belize         49.7
## 9049                  2015-01-01                   Belize         58.3
## 9050                  2010-01-01                   Belize         56.3
## 9051                  2005-01-01                   Belize         53.7
## 9052                  2000-01-01                   Belize         50.6
## 9053                  1995-01-01                   Belize         50.5
## 9054                  1990-01-01                   Belize         49.7
## 9055                  2015-01-01                   Belize         58.3
## 9056                  2010-01-01                   Belize         56.3
## 9057                  2005-01-01                   Belize         53.7
## 9058                  2000-01-01                   Belize         50.6
## 9059                  1995-01-01                   Belize         50.5
## 9060                  1990-01-01                   Belize         49.7
## 9061                  2015-01-01                   Belize         58.3
## 9062                  2010-01-01                   Belize         56.3
## 9063                  2005-01-01                   Belize         53.7
## 9064                  2000-01-01                   Belize         50.6
## 9065                  1995-01-01                   Belize         50.5
## 9066                  1990-01-01                   Belize         49.7
## 9067                  2015-01-01                   Belize         58.3
## 9068                  2010-01-01                   Belize         56.3
## 9069                  2005-01-01                   Belize         53.7
## 9070                  2000-01-01                   Belize         50.6
## 9071                  1995-01-01                   Belize         50.5
## 9072                  1990-01-01                   Belize         49.7
## 9073                  2015-01-01                   Belize         58.3
## 9074                  2010-01-01                   Belize         56.3
## 9075                  2005-01-01                   Belize         53.7
## 9076                  2000-01-01                   Belize         50.6
## 9077                  1995-01-01                   Belize         50.5
## 9078                  1990-01-01                   Belize         49.7
## 9079                  2015-01-01                   Belize         58.3
## 9080                  2010-01-01                   Belize         56.3
## 9081                  2005-01-01                   Belize         53.7
## 9082                  2000-01-01                   Belize         50.6
## 9083                  1995-01-01                   Belize         50.5
## 9084                  1990-01-01                   Belize         49.7
## 9085                  2015-01-01                   Belize         58.3
## 9086                  2010-01-01                   Belize         56.3
## 9087                  2005-01-01                   Belize         53.7
## 9088                  2000-01-01                   Belize         50.6
## 9089                  1995-01-01                   Belize         50.5
## 9090                  1990-01-01                   Belize         49.7
## 9091                  2015-01-01                   Belize         58.3
## 9092                  2010-01-01                   Belize         56.3
## 9093                  2005-01-01                   Belize         53.7
## 9094                  2000-01-01                   Belize         50.6
## 9095                  1995-01-01                   Belize         50.5
## 9096                  1990-01-01                   Belize         49.7
## 9097                  2015-01-01                   Belize         58.3
## 9098                  2010-01-01                   Belize         56.3
## 9099                  2005-01-01                   Belize         53.7
## 9100                  2000-01-01                   Belize         50.6
## 9101                  1995-01-01                   Belize         50.5
## 9102                  1990-01-01                   Belize         49.7
## 9103                  2015-01-01                   Belize         58.3
## 9104                  2010-01-01                   Belize         56.3
## 9105                  2005-01-01                   Belize         53.7
## 9106                  2000-01-01                   Belize         50.6
## 9107                  1995-01-01                   Belize         50.5
## 9108                  1990-01-01                   Belize         49.7
## 9109                  2015-01-01                   Belize         58.3
## 9110                  2010-01-01                   Belize         56.3
## 9111                  2005-01-01                   Belize         53.7
## 9112                  2000-01-01                   Belize         50.6
## 9113                  1995-01-01                   Belize         50.5
## 9114                  1990-01-01                   Belize         49.7
## 9115                  2015-01-01                   Belize         58.3
## 9116                  2010-01-01                   Belize         56.3
## 9117                  2005-01-01                   Belize         53.7
## 9118                  2000-01-01                   Belize         50.6
## 9119                  1995-01-01                   Belize         50.5
## 9120                  1990-01-01                   Belize         49.7
## 9121                  2015-01-01                   Belize         58.3
## 9122                  2010-01-01                   Belize         56.3
## 9123                  2005-01-01                   Belize         53.7
## 9124                  2000-01-01                   Belize         50.6
## 9125                  1995-01-01                   Belize         50.5
## 9126                  1990-01-01                   Belize         49.7
## 9127                  2015-01-01                   Belize         58.3
## 9128                  2010-01-01                   Belize         56.3
## 9129                  2005-01-01                   Belize         53.7
## 9130                  2000-01-01                   Belize         50.6
## 9131                  1995-01-01                   Belize         50.5
## 9132                  1990-01-01                   Belize         49.7
## 9133                  2015-01-01                   Belize         58.3
## 9134                  2010-01-01                   Belize         56.3
## 9135                  2005-01-01                   Belize         53.7
## 9136                  2000-01-01                   Belize         50.6
## 9137                  1995-01-01                   Belize         50.5
## 9138                  1990-01-01                   Belize         49.7
## 9139                  2015-01-01                   Belize         58.3
## 9140                  2010-01-01                   Belize         56.3
## 9141                  2005-01-01                   Belize         53.7
## 9142                  2000-01-01                   Belize         50.6
## 9143                  1995-01-01                   Belize         50.5
## 9144                  1990-01-01                   Belize         49.7
## 9145                  2015-01-01                   Belize         58.3
## 9146                  2010-01-01                   Belize         56.3
## 9147                  2005-01-01                   Belize         53.7
## 9148                  2000-01-01                   Belize         50.6
## 9149                  1995-01-01                   Belize         50.5
## 9150                  1990-01-01                   Belize         49.7
## 9151                  2015-01-01                   Belize         58.3
## 9152                  2010-01-01                   Belize         56.3
## 9153                  2005-01-01                   Belize         53.7
## 9154                  2000-01-01                   Belize         50.6
## 9155                  1995-01-01                   Belize         50.5
## 9156                  1990-01-01                   Belize         49.7
## 9157                  2015-01-01                   Belize         58.3
## 9158                  2010-01-01                   Belize         56.3
## 9159                  2005-01-01                   Belize         53.7
## 9160                  2000-01-01                   Belize         50.6
## 9161                  1995-01-01                   Belize         50.5
## 9162                  1990-01-01                   Belize         49.7
## 9163                  2015-01-01                   Belize         58.3
## 9164                  2010-01-01                   Belize         56.3
## 9165                  2005-01-01                   Belize         53.7
## 9166                  2000-01-01                   Belize         50.6
## 9167                  1995-01-01                   Belize         50.5
## 9168                  1990-01-01                   Belize         49.7
## 9169                  2015-01-01                   Belize         58.3
## 9170                  2010-01-01                   Belize         56.3
## 9171                  2005-01-01                   Belize         53.7
## 9172                  2000-01-01                   Belize         50.6
## 9173                  1995-01-01                   Belize         50.5
## 9174                  1990-01-01                   Belize         49.7
## 9175                  2015-01-01                   Belize         58.3
## 9176                  2010-01-01                   Belize         56.3
## 9177                  2005-01-01                   Belize         53.7
## 9178                  2000-01-01                   Belize         50.6
## 9179                  1995-01-01                   Belize         50.5
## 9180                  1990-01-01                   Belize         49.7
## 9181                  2015-01-01                   Belize         58.3
## 9182                  2010-01-01                   Belize         56.3
## 9183                  2005-01-01                   Belize         53.7
## 9184                  2000-01-01                   Belize         50.6
## 9185                  1995-01-01                   Belize         50.5
## 9186                  1990-01-01                   Belize         49.7
## 9187                  2015-01-01                   Belize         58.3
## 9188                  2010-01-01                   Belize         56.3
## 9189                  2005-01-01                   Belize         53.7
## 9190                  2000-01-01                   Belize         50.6
## 9191                  1995-01-01                   Belize         50.5
## 9192                  1990-01-01                   Belize         49.7
## 9193                  2015-01-01                   Belize         58.3
## 9194                  2010-01-01                   Belize         56.3
## 9195                  2005-01-01                   Belize         53.7
## 9196                  2000-01-01                   Belize         50.6
## 9197                  1995-01-01                   Belize         50.5
## 9198                  1990-01-01                   Belize         49.7
## 9199                  2015-01-01                   Belize         58.3
## 9200                  2010-01-01                   Belize         56.3
## 9201                  2005-01-01                   Belize         53.7
## 9202                  2000-01-01                   Belize         50.6
## 9203                  1995-01-01                   Belize         50.5
## 9204                  1990-01-01                   Belize         49.7
## 9205                  2015-01-01                   Belize         58.3
## 9206                  2010-01-01                   Belize         56.3
## 9207                  2005-01-01                   Belize         53.7
## 9208                  2000-01-01                   Belize         50.6
## 9209                  1995-01-01                   Belize         50.5
## 9210                  1990-01-01                   Belize         49.7
## 9211                  2015-01-01                   Belize         58.3
## 9212                  2010-01-01                   Belize         56.3
## 9213                  2005-01-01                   Belize         53.7
## 9214                  2000-01-01                   Belize         50.6
## 9215                  1995-01-01                   Belize         50.5
## 9216                  1990-01-01                   Belize         49.7
## 9217                  2015-01-01                   Belize         58.3
## 9218                  2010-01-01                   Belize         56.3
## 9219                  2005-01-01                   Belize         53.7
## 9220                  2000-01-01                   Belize         50.6
## 9221                  1995-01-01                   Belize         50.5
## 9222                  1990-01-01                   Belize         49.7
## 9223                  2015-01-01                   Belize         58.3
## 9224                  2010-01-01                   Belize         56.3
## 9225                  2005-01-01                   Belize         53.7
## 9226                  2000-01-01                   Belize         50.6
## 9227                  1995-01-01                   Belize         50.5
## 9228                  1990-01-01                   Belize         49.7
## 9229                  2015-01-01                   Belize         58.3
## 9230                  2010-01-01                   Belize         56.3
## 9231                  2005-01-01                   Belize         53.7
## 9232                  2000-01-01                   Belize         50.6
## 9233                  1995-01-01                   Belize         50.5
## 9234                  1990-01-01                   Belize         49.7
## 9235                  2015-01-01                   Belize         58.3
## 9236                  2010-01-01                   Belize         56.3
## 9237                  2005-01-01                   Belize         53.7
## 9238                  2000-01-01                   Belize         50.6
## 9239                  1995-01-01                   Belize         50.5
## 9240                  1990-01-01                   Belize         49.7
## 9241                  2015-01-01                   Belize         58.3
## 9242                  2010-01-01                   Belize         56.3
## 9243                  2005-01-01                   Belize         53.7
## 9244                  2000-01-01                   Belize         50.6
## 9245                  1995-01-01                   Belize         50.5
## 9246                  1990-01-01                   Belize         49.7
## 9247                  2015-01-01                   Belize         58.3
## 9248                  2010-01-01                   Belize         56.3
## 9249                  2005-01-01                   Belize         53.7
## 9250                  2000-01-01                   Belize         50.6
## 9251                  1995-01-01                   Belize         50.5
## 9252                  1990-01-01                   Belize         49.7
## 9253                  2015-01-01                   Belize         58.3
## 9254                  2010-01-01                   Belize         56.3
## 9255                  2005-01-01                   Belize         53.7
## 9256                  2000-01-01                   Belize         50.6
## 9257                  1995-01-01                   Belize         50.5
## 9258                  1990-01-01                   Belize         49.7
## 9259                  2015-01-01                   Belize         58.3
## 9260                  2010-01-01                   Belize         56.3
## 9261                  2005-01-01                   Belize         53.7
## 9262                  2000-01-01                   Belize         50.6
## 9263                  1995-01-01                   Belize         50.5
## 9264                  1990-01-01                   Belize         49.7
## 9265                  2015-01-01                   Belize         58.3
## 9266                  2010-01-01                   Belize         56.3
## 9267                  2005-01-01                   Belize         53.7
## 9268                  2000-01-01                   Belize         50.6
## 9269                  1995-01-01                   Belize         50.5
## 9270                  1990-01-01                   Belize         49.7
## 9271                  2015-01-01                   Belize         58.3
## 9272                  2010-01-01                   Belize         56.3
## 9273                  2005-01-01                   Belize         53.7
## 9274                  2000-01-01                   Belize         50.6
## 9275                  1995-01-01                   Belize         50.5
## 9276                  1990-01-01                   Belize         49.7
## 9277                  2015-01-01                   Belize         58.3
## 9278                  2010-01-01                   Belize         56.3
## 9279                  2005-01-01                   Belize         53.7
## 9280                  2000-01-01                   Belize         50.6
## 9281                  1995-01-01                   Belize         50.5
## 9282                  1990-01-01                   Belize         49.7
## 9283                  2015-01-01                   Belize         58.3
## 9284                  2010-01-01                   Belize         56.3
## 9285                  2005-01-01                   Belize         53.7
## 9286                  2000-01-01                   Belize         50.6
## 9287                  1995-01-01                   Belize         50.5
## 9288                  1990-01-01                   Belize         49.7
## 9289                  2015-01-01                   Belize         58.3
## 9290                  2010-01-01                   Belize         56.3
## 9291                  2005-01-01                   Belize         53.7
## 9292                  2000-01-01                   Belize         50.6
## 9293                  1995-01-01                   Belize         50.5
## 9294                  1990-01-01                   Belize         49.7
## 9295                  2015-01-01                   Belize         58.3
## 9296                  2010-01-01                   Belize         56.3
## 9297                  2005-01-01                   Belize         53.7
## 9298                  2000-01-01                   Belize         50.6
## 9299                  1995-01-01                   Belize         50.5
## 9300                  1990-01-01                   Belize         49.7
## 9301                  2015-01-01                   Belize         58.3
## 9302                  2010-01-01                   Belize         56.3
## 9303                  2005-01-01                   Belize         53.7
## 9304                  2000-01-01                   Belize         50.6
## 9305                  1995-01-01                   Belize         50.5
## 9306                  1990-01-01                   Belize         49.7
## 9307                  2015-01-01                   Belize         58.3
## 9308                  2010-01-01                   Belize         56.3
## 9309                  2005-01-01                   Belize         53.7
## 9310                  2000-01-01                   Belize         50.6
## 9311                  1995-01-01                   Belize         50.5
## 9312                  1990-01-01                   Belize         49.7
## 9313                  2015-01-01                   Belize         58.3
## 9314                  2010-01-01                   Belize         56.3
## 9315                  2005-01-01                   Belize         53.7
## 9316                  2000-01-01                   Belize         50.6
## 9317                  1995-01-01                   Belize         50.5
## 9318                  1990-01-01                   Belize         49.7
## 9319                  2015-01-01                   Belize         58.3
## 9320                  2010-01-01                   Belize         56.3
## 9321                  2005-01-01                   Belize         53.7
## 9322                  2000-01-01                   Belize         50.6
## 9323                  1995-01-01                   Belize         50.5
## 9324                  1990-01-01                   Belize         49.7
## 9325                  2015-01-01                   Belize         58.3
## 9326                  2010-01-01                   Belize         56.3
## 9327                  2005-01-01                   Belize         53.7
## 9328                  2000-01-01                   Belize         50.6
## 9329                  1995-01-01                   Belize         50.5
## 9330                  1990-01-01                   Belize         49.7
## 9331                  2015-01-01                   Belize         58.3
## 9332                  2010-01-01                   Belize         56.3
## 9333                  2005-01-01                   Belize         53.7
## 9334                  2000-01-01                   Belize         50.6
## 9335                  1995-01-01                   Belize         50.5
## 9336                  1990-01-01                   Belize         49.7
## 9337                  2015-01-01                   Belize         58.3
## 9338                  2010-01-01                   Belize         56.3
## 9339                  2005-01-01                   Belize         53.7
## 9340                  2000-01-01                   Belize         50.6
## 9341                  1995-01-01                   Belize         50.5
## 9342                  1990-01-01                   Belize         49.7
## 9343                  2015-01-01                   Belize         58.3
## 9344                  2010-01-01                   Belize         56.3
## 9345                  2005-01-01                   Belize         53.7
## 9346                  2000-01-01                   Belize         50.6
## 9347                  1995-01-01                   Belize         50.5
## 9348                  1990-01-01                   Belize         49.7
## 9349                  2015-01-01                   Belize         58.3
## 9350                  2010-01-01                   Belize         56.3
## 9351                  2005-01-01                   Belize         53.7
## 9352                  2000-01-01                   Belize         50.6
## 9353                  1995-01-01                   Belize         50.5
## 9354                  1990-01-01                   Belize         49.7
## 9355                  2015-01-01                   Belize         58.3
## 9356                  2010-01-01                   Belize         56.3
## 9357                  2005-01-01                   Belize         53.7
## 9358                  2000-01-01                   Belize         50.6
## 9359                  1995-01-01                   Belize         50.5
## 9360                  1990-01-01                   Belize         49.7
## 9361                  2015-01-01                   Belize         58.3
## 9362                  2010-01-01                   Belize         56.3
## 9363                  2005-01-01                   Belize         53.7
## 9364                  2000-01-01                   Belize         50.6
## 9365                  1995-01-01                   Belize         50.5
## 9366                  1990-01-01                   Belize         49.7
## 9367                  2015-01-01                   Belize         58.3
## 9368                  2010-01-01                   Belize         56.3
## 9369                  2005-01-01                   Belize         53.7
## 9370                  2000-01-01                   Belize         50.6
## 9371                  1995-01-01                   Belize         50.5
## 9372                  1990-01-01                   Belize         49.7
## 9373                  2015-01-01                   Belize         58.3
## 9374                  2010-01-01                   Belize         56.3
## 9375                  2005-01-01                   Belize         53.7
## 9376                  2000-01-01                   Belize         50.6
## 9377                  1995-01-01                   Belize         50.5
## 9378                  1990-01-01                   Belize         49.7
## 9379                  2015-01-01                   Belize         58.3
## 9380                  2010-01-01                   Belize         56.3
## 9381                  2005-01-01                   Belize         53.7
## 9382                  2000-01-01                   Belize         50.6
## 9383                  1995-01-01                   Belize         50.5
## 9384                  1990-01-01                   Belize         49.7
## 9385                  2015-01-01                   Belize         58.3
## 9386                  2010-01-01                   Belize         56.3
## 9387                  2005-01-01                   Belize         53.7
## 9388                  2000-01-01                   Belize         50.6
## 9389                  1995-01-01                   Belize         50.5
## 9390                  1990-01-01                   Belize         49.7
## 9391                  2015-01-01                   Belize         58.3
## 9392                  2010-01-01                   Belize         56.3
## 9393                  2005-01-01                   Belize         53.7
## 9394                  2000-01-01                   Belize         50.6
## 9395                  1995-01-01                   Belize         50.5
## 9396                  1990-01-01                   Belize         49.7
## 9397                  2015-01-01                   Belize         58.3
## 9398                  2010-01-01                   Belize         56.3
## 9399                  2005-01-01                   Belize         53.7
## 9400                  2000-01-01                   Belize         50.6
## 9401                  1995-01-01                   Belize         50.5
## 9402                  1990-01-01                   Belize         49.7
## 9403                  2015-01-01                   Belize         58.3
## 9404                  2010-01-01                   Belize         56.3
## 9405                  2005-01-01                   Belize         53.7
## 9406                  2000-01-01                   Belize         50.6
## 9407                  1995-01-01                   Belize         50.5
## 9408                  1990-01-01                   Belize         49.7
## 9409                  2015-01-01                   Belize         58.3
## 9410                  2010-01-01                   Belize         56.3
## 9411                  2005-01-01                   Belize         53.7
## 9412                  2000-01-01                   Belize         50.6
## 9413                  1995-01-01                   Belize         50.5
## 9414                  1990-01-01                   Belize         49.7
## 9415                  2015-01-01                   Belize         58.3
## 9416                  2010-01-01                   Belize         56.3
## 9417                  2005-01-01                   Belize         53.7
## 9418                  2000-01-01                   Belize         50.6
## 9419                  1995-01-01                   Belize         50.5
## 9420                  1990-01-01                   Belize         49.7
## 9421                  2015-01-01                   Belize         58.3
## 9422                  2010-01-01                   Belize         56.3
## 9423                  2005-01-01                   Belize         53.7
## 9424                  2000-01-01                   Belize         50.6
## 9425                  1995-01-01                   Belize         50.5
## 9426                  1990-01-01                   Belize         49.7
## 9427                  2015-01-01                   Belize         58.3
## 9428                  2010-01-01                   Belize         56.3
## 9429                  2005-01-01                   Belize         53.7
## 9430                  2000-01-01                   Belize         50.6
## 9431                  1995-01-01                   Belize         50.5
## 9432                  1990-01-01                   Belize         49.7
## 9433                  2015-01-01                   Belize         58.3
## 9434                  2010-01-01                   Belize         56.3
## 9435                  2005-01-01                   Belize         53.7
## 9436                  2000-01-01                   Belize         50.6
## 9437                  1995-01-01                   Belize         50.5
## 9438                  1990-01-01                   Belize         49.7
## 9439                  2015-01-01                   Belize         58.3
## 9440                  2010-01-01                   Belize         56.3
## 9441                  2005-01-01                   Belize         53.7
## 9442                  2000-01-01                   Belize         50.6
## 9443                  1995-01-01                   Belize         50.5
## 9444                  1990-01-01                   Belize         49.7
## 9445                  2015-01-01                   Belize         58.3
## 9446                  2010-01-01                   Belize         56.3
## 9447                  2005-01-01                   Belize         53.7
## 9448                  2000-01-01                   Belize         50.6
## 9449                  1995-01-01                   Belize         50.5
## 9450                  1990-01-01                   Belize         49.7
## 9451                  2015-01-01                   Belize         58.3
## 9452                  2010-01-01                   Belize         56.3
## 9453                  2005-01-01                   Belize         53.7
## 9454                  2000-01-01                   Belize         50.6
## 9455                  1995-01-01                   Belize         50.5
## 9456                  1990-01-01                   Belize         49.7
## 9457                  2015-01-01                   Belize         58.3
## 9458                  2010-01-01                   Belize         56.3
## 9459                  2005-01-01                   Belize         53.7
## 9460                  2000-01-01                   Belize         50.6
## 9461                  1995-01-01                   Belize         50.5
## 9462                  1990-01-01                   Belize         49.7
## 9463                  2015-01-01                   Belize         58.3
## 9464                  2010-01-01                   Belize         56.3
## 9465                  2005-01-01                   Belize         53.7
## 9466                  2000-01-01                   Belize         50.6
## 9467                  1995-01-01                   Belize         50.5
## 9468                  1990-01-01                   Belize         49.7
## 9469                  2015-01-01                   Belize         58.3
## 9470                  2010-01-01                   Belize         56.3
## 9471                  2005-01-01                   Belize         53.7
## 9472                  2000-01-01                   Belize         50.6
## 9473                  1995-01-01                   Belize         50.5
## 9474                  1990-01-01                   Belize         49.7
## 9475                  2015-01-01                   Belize         58.3
## 9476                  2010-01-01                   Belize         56.3
## 9477                  2005-01-01                   Belize         53.7
## 9478                  2000-01-01                   Belize         50.6
## 9479                  1995-01-01                   Belize         50.5
## 9480                  1990-01-01                   Belize         49.7
## 9481                  2015-01-01                   Belize         58.3
## 9482                  2010-01-01                   Belize         56.3
## 9483                  2005-01-01                   Belize         53.7
## 9484                  2000-01-01                   Belize         50.6
## 9485                  1995-01-01                   Belize         50.5
## 9486                  1990-01-01                   Belize         49.7
## 9487                  2015-01-01                   Belize         58.3
## 9488                  2010-01-01                   Belize         56.3
## 9489                  2005-01-01                   Belize         53.7
## 9490                  2000-01-01                   Belize         50.6
## 9491                  1995-01-01                   Belize         50.5
## 9492                  1990-01-01                   Belize         49.7
## 9493                  2015-01-01                   Belize         58.3
## 9494                  2010-01-01                   Belize         56.3
## 9495                  2005-01-01                   Belize         53.7
## 9496                  2000-01-01                   Belize         50.6
## 9497                  1995-01-01                   Belize         50.5
## 9498                  1990-01-01                   Belize         49.7
## 9499                  2015-01-01                   Belize         58.3
## 9500                  2010-01-01                   Belize         56.3
## 9501                  2005-01-01                   Belize         53.7
## 9502                  2000-01-01                   Belize         50.6
## 9503                  1995-01-01                   Belize         50.5
## 9504                  1990-01-01                   Belize         49.7
## 9505                  2015-01-01                   Belize         58.3
## 9506                  2010-01-01                   Belize         56.3
## 9507                  2005-01-01                   Belize         53.7
## 9508                  2000-01-01                   Belize         50.6
## 9509                  1995-01-01                   Belize         50.5
## 9510                  1990-01-01                   Belize         49.7
## 9511                  2015-01-01                    Benin         43.0
## 9512                  2010-01-01                    Benin         41.5
## 9513                  2005-01-01                    Benin         40.4
## 9514                  2000-01-01                    Benin         37.3
## 9515                  1995-01-01                    Benin         37.0
## 9516                  1990-01-01                    Benin         36.9
## 9517                  2015-01-01                    Benin         43.0
## 9518                  2010-01-01                    Benin         41.5
## 9519                  2005-01-01                    Benin         40.4
## 9520                  2000-01-01                    Benin         37.3
## 9521                  1995-01-01                    Benin         37.0
## 9522                  1990-01-01                    Benin         36.9
## 9523                  2015-01-01                    Benin         43.0
## 9524                  2010-01-01                    Benin         41.5
## 9525                  2005-01-01                    Benin         40.4
## 9526                  2000-01-01                    Benin         37.3
## 9527                  1995-01-01                    Benin         37.0
## 9528                  1990-01-01                    Benin         36.9
## 9529                  2015-01-01                    Benin         43.0
## 9530                  2010-01-01                    Benin         41.5
## 9531                  2005-01-01                    Benin         40.4
## 9532                  2000-01-01                    Benin         37.3
## 9533                  1995-01-01                    Benin         37.0
## 9534                  1990-01-01                    Benin         36.9
## 9535                  2015-01-01                    Benin         43.0
## 9536                  2010-01-01                    Benin         41.5
## 9537                  2005-01-01                    Benin         40.4
## 9538                  2000-01-01                    Benin         37.3
## 9539                  1995-01-01                    Benin         37.0
## 9540                  1990-01-01                    Benin         36.9
## 9541                  2015-01-01                    Benin         43.0
## 9542                  2010-01-01                    Benin         41.5
## 9543                  2005-01-01                    Benin         40.4
## 9544                  2000-01-01                    Benin         37.3
## 9545                  1995-01-01                    Benin         37.0
## 9546                  1990-01-01                    Benin         36.9
## 9547                  2015-01-01                    Benin         43.0
## 9548                  2010-01-01                    Benin         41.5
## 9549                  2005-01-01                    Benin         40.4
## 9550                  2000-01-01                    Benin         37.3
## 9551                  1995-01-01                    Benin         37.0
## 9552                  1990-01-01                    Benin         36.9
## 9553                  2015-01-01                    Benin         43.0
## 9554                  2010-01-01                    Benin         41.5
## 9555                  2005-01-01                    Benin         40.4
## 9556                  2000-01-01                    Benin         37.3
## 9557                  1995-01-01                    Benin         37.0
## 9558                  1990-01-01                    Benin         36.9
## 9559                  2015-01-01                    Benin         43.0
## 9560                  2010-01-01                    Benin         41.5
## 9561                  2005-01-01                    Benin         40.4
## 9562                  2000-01-01                    Benin         37.3
## 9563                  1995-01-01                    Benin         37.0
## 9564                  1990-01-01                    Benin         36.9
## 9565                  2015-01-01                    Benin         43.0
## 9566                  2010-01-01                    Benin         41.5
## 9567                  2005-01-01                    Benin         40.4
## 9568                  2000-01-01                    Benin         37.3
## 9569                  1995-01-01                    Benin         37.0
## 9570                  1990-01-01                    Benin         36.9
## 9571                  2015-01-01                    Benin         43.0
## 9572                  2010-01-01                    Benin         41.5
## 9573                  2005-01-01                    Benin         40.4
## 9574                  2000-01-01                    Benin         37.3
## 9575                  1995-01-01                    Benin         37.0
## 9576                  1990-01-01                    Benin         36.9
## 9577                  2015-01-01                    Benin         43.0
## 9578                  2010-01-01                    Benin         41.5
## 9579                  2005-01-01                    Benin         40.4
## 9580                  2000-01-01                    Benin         37.3
## 9581                  1995-01-01                    Benin         37.0
## 9582                  1990-01-01                    Benin         36.9
## 9583                  2015-01-01                    Benin         43.0
## 9584                  2010-01-01                    Benin         41.5
## 9585                  2005-01-01                    Benin         40.4
## 9586                  2000-01-01                    Benin         37.3
## 9587                  1995-01-01                    Benin         37.0
## 9588                  1990-01-01                    Benin         36.9
## 9589                  2015-01-01                    Benin         43.0
## 9590                  2010-01-01                    Benin         41.5
## 9591                  2005-01-01                    Benin         40.4
## 9592                  2000-01-01                    Benin         37.3
## 9593                  1995-01-01                    Benin         37.0
## 9594                  1990-01-01                    Benin         36.9
## 9595                  2015-01-01                    Benin         43.0
## 9596                  2010-01-01                    Benin         41.5
## 9597                  2005-01-01                    Benin         40.4
## 9598                  2000-01-01                    Benin         37.3
## 9599                  1995-01-01                    Benin         37.0
## 9600                  1990-01-01                    Benin         36.9
## 9601                  2015-01-01                    Benin         43.0
## 9602                  2010-01-01                    Benin         41.5
## 9603                  2005-01-01                    Benin         40.4
## 9604                  2000-01-01                    Benin         37.3
## 9605                  1995-01-01                    Benin         37.0
## 9606                  1990-01-01                    Benin         36.9
## 9607                  2015-01-01                    Benin         43.0
## 9608                  2010-01-01                    Benin         41.5
## 9609                  2005-01-01                    Benin         40.4
## 9610                  2000-01-01                    Benin         37.3
## 9611                  1995-01-01                    Benin         37.0
## 9612                  1990-01-01                    Benin         36.9
## 9613                  2015-01-01                    Benin         43.0
## 9614                  2010-01-01                    Benin         41.5
## 9615                  2005-01-01                    Benin         40.4
## 9616                  2000-01-01                    Benin         37.3
## 9617                  1995-01-01                    Benin         37.0
## 9618                  1990-01-01                    Benin         36.9
## 9619                  2015-01-01                    Benin         43.0
## 9620                  2010-01-01                    Benin         41.5
## 9621                  2005-01-01                    Benin         40.4
## 9622                  2000-01-01                    Benin         37.3
## 9623                  1995-01-01                    Benin         37.0
## 9624                  1990-01-01                    Benin         36.9
## 9625                  2015-01-01                    Benin         43.0
## 9626                  2010-01-01                    Benin         41.5
## 9627                  2005-01-01                    Benin         40.4
## 9628                  2000-01-01                    Benin         37.3
## 9629                  1995-01-01                    Benin         37.0
## 9630                  1990-01-01                    Benin         36.9
## 9631                  2015-01-01                    Benin         43.0
## 9632                  2010-01-01                    Benin         41.5
## 9633                  2005-01-01                    Benin         40.4
## 9634                  2000-01-01                    Benin         37.3
## 9635                  1995-01-01                    Benin         37.0
## 9636                  1990-01-01                    Benin         36.9
## 9637                  2015-01-01                    Benin         43.0
## 9638                  2010-01-01                    Benin         41.5
## 9639                  2005-01-01                    Benin         40.4
## 9640                  2000-01-01                    Benin         37.3
## 9641                  1995-01-01                    Benin         37.0
## 9642                  1990-01-01                    Benin         36.9
## 9643                  2015-01-01                    Benin         43.0
## 9644                  2010-01-01                    Benin         41.5
## 9645                  2005-01-01                    Benin         40.4
## 9646                  2000-01-01                    Benin         37.3
## 9647                  1995-01-01                    Benin         37.0
## 9648                  1990-01-01                    Benin         36.9
## 9649                  2015-01-01                    Benin         43.0
## 9650                  2010-01-01                    Benin         41.5
## 9651                  2005-01-01                    Benin         40.4
## 9652                  2000-01-01                    Benin         37.3
## 9653                  1995-01-01                    Benin         37.0
## 9654                  1990-01-01                    Benin         36.9
## 9655                  2015-01-01                    Benin         43.0
## 9656                  2010-01-01                    Benin         41.5
## 9657                  2005-01-01                    Benin         40.4
## 9658                  2000-01-01                    Benin         37.3
## 9659                  1995-01-01                    Benin         37.0
## 9660                  1990-01-01                    Benin         36.9
## 9661                  2015-01-01                    Benin         43.0
## 9662                  2010-01-01                    Benin         41.5
## 9663                  2005-01-01                    Benin         40.4
## 9664                  2000-01-01                    Benin         37.3
## 9665                  1995-01-01                    Benin         37.0
## 9666                  1990-01-01                    Benin         36.9
## 9667                  2015-01-01                    Benin         43.0
## 9668                  2010-01-01                    Benin         41.5
## 9669                  2005-01-01                    Benin         40.4
## 9670                  2000-01-01                    Benin         37.3
## 9671                  1995-01-01                    Benin         37.0
## 9672                  1990-01-01                    Benin         36.9
## 9673                  2015-01-01                    Benin         43.0
## 9674                  2010-01-01                    Benin         41.5
## 9675                  2005-01-01                    Benin         40.4
## 9676                  2000-01-01                    Benin         37.3
## 9677                  1995-01-01                    Benin         37.0
## 9678                  1990-01-01                    Benin         36.9
## 9679                  2015-01-01                    Benin         43.0
## 9680                  2010-01-01                    Benin         41.5
## 9681                  2005-01-01                    Benin         40.4
## 9682                  2000-01-01                    Benin         37.3
## 9683                  1995-01-01                    Benin         37.0
## 9684                  1990-01-01                    Benin         36.9
## 9685                  2015-01-01                    Benin         43.0
## 9686                  2010-01-01                    Benin         41.5
## 9687                  2005-01-01                    Benin         40.4
## 9688                  2000-01-01                    Benin         37.3
## 9689                  1995-01-01                    Benin         37.0
## 9690                  1990-01-01                    Benin         36.9
## 9691                  2015-01-01                    Benin         43.0
## 9692                  2010-01-01                    Benin         41.5
## 9693                  2005-01-01                    Benin         40.4
## 9694                  2000-01-01                    Benin         37.3
## 9695                  1995-01-01                    Benin         37.0
## 9696                  1990-01-01                    Benin         36.9
## 9697                  2015-01-01                    Benin         43.0
## 9698                  2010-01-01                    Benin         41.5
## 9699                  2005-01-01                    Benin         40.4
## 9700                  2000-01-01                    Benin         37.3
## 9701                  1995-01-01                    Benin         37.0
## 9702                  1990-01-01                    Benin         36.9
## 9703                  2015-01-01                    Benin         43.0
## 9704                  2010-01-01                    Benin         41.5
## 9705                  2005-01-01                    Benin         40.4
## 9706                  2000-01-01                    Benin         37.3
## 9707                  1995-01-01                    Benin         37.0
## 9708                  1990-01-01                    Benin         36.9
## 9709                  2015-01-01                    Benin         43.0
## 9710                  2010-01-01                    Benin         41.5
## 9711                  2005-01-01                    Benin         40.4
## 9712                  2000-01-01                    Benin         37.3
## 9713                  1995-01-01                    Benin         37.0
## 9714                  1990-01-01                    Benin         36.9
## 9715                  2015-01-01                    Benin         43.0
## 9716                  2010-01-01                    Benin         41.5
## 9717                  2005-01-01                    Benin         40.4
## 9718                  2000-01-01                    Benin         37.3
## 9719                  1995-01-01                    Benin         37.0
## 9720                  1990-01-01                    Benin         36.9
## 9721                  2015-01-01                    Benin         43.0
## 9722                  2010-01-01                    Benin         41.5
## 9723                  2005-01-01                    Benin         40.4
## 9724                  2000-01-01                    Benin         37.3
## 9725                  1995-01-01                    Benin         37.0
## 9726                  1990-01-01                    Benin         36.9
## 9727                  2015-01-01                    Benin         43.0
## 9728                  2010-01-01                    Benin         41.5
## 9729                  2005-01-01                    Benin         40.4
## 9730                  2000-01-01                    Benin         37.3
## 9731                  1995-01-01                    Benin         37.0
## 9732                  1990-01-01                    Benin         36.9
## 9733                  2015-01-01                    Benin         43.0
## 9734                  2010-01-01                    Benin         41.5
## 9735                  2005-01-01                    Benin         40.4
## 9736                  2000-01-01                    Benin         37.3
## 9737                  1995-01-01                    Benin         37.0
## 9738                  1990-01-01                    Benin         36.9
## 9739                  2015-01-01                    Benin         43.0
## 9740                  2010-01-01                    Benin         41.5
## 9741                  2005-01-01                    Benin         40.4
## 9742                  2000-01-01                    Benin         37.3
## 9743                  1995-01-01                    Benin         37.0
## 9744                  1990-01-01                    Benin         36.9
## 9745                  2015-01-01                    Benin         43.0
## 9746                  2010-01-01                    Benin         41.5
## 9747                  2005-01-01                    Benin         40.4
## 9748                  2000-01-01                    Benin         37.3
## 9749                  1995-01-01                    Benin         37.0
## 9750                  1990-01-01                    Benin         36.9
## 9751                  2015-01-01                    Benin         43.0
## 9752                  2010-01-01                    Benin         41.5
## 9753                  2005-01-01                    Benin         40.4
## 9754                  2000-01-01                    Benin         37.3
## 9755                  1995-01-01                    Benin         37.0
## 9756                  1990-01-01                    Benin         36.9
## 9757                  2015-01-01                    Benin         43.0
## 9758                  2010-01-01                    Benin         41.5
## 9759                  2005-01-01                    Benin         40.4
## 9760                  2000-01-01                    Benin         37.3
## 9761                  1995-01-01                    Benin         37.0
## 9762                  1990-01-01                    Benin         36.9
## 9763                  2015-01-01                    Benin         43.0
## 9764                  2010-01-01                    Benin         41.5
## 9765                  2005-01-01                    Benin         40.4
## 9766                  2000-01-01                    Benin         37.3
## 9767                  1995-01-01                    Benin         37.0
## 9768                  1990-01-01                    Benin         36.9
## 9769                  2015-01-01                    Benin         43.0
## 9770                  2010-01-01                    Benin         41.5
## 9771                  2005-01-01                    Benin         40.4
## 9772                  2000-01-01                    Benin         37.3
## 9773                  1995-01-01                    Benin         37.0
## 9774                  1990-01-01                    Benin         36.9
## 9775                  2015-01-01                    Benin         43.0
## 9776                  2010-01-01                    Benin         41.5
## 9777                  2005-01-01                    Benin         40.4
## 9778                  2000-01-01                    Benin         37.3
## 9779                  1995-01-01                    Benin         37.0
## 9780                  1990-01-01                    Benin         36.9
## 9781                  2015-01-01                    Benin         43.0
## 9782                  2010-01-01                    Benin         41.5
## 9783                  2005-01-01                    Benin         40.4
## 9784                  2000-01-01                    Benin         37.3
## 9785                  1995-01-01                    Benin         37.0
## 9786                  1990-01-01                    Benin         36.9
## 9787                  2015-01-01                    Benin         43.0
## 9788                  2010-01-01                    Benin         41.5
## 9789                  2005-01-01                    Benin         40.4
## 9790                  2000-01-01                    Benin         37.3
## 9791                  1995-01-01                    Benin         37.0
## 9792                  1990-01-01                    Benin         36.9
## 9793                  2015-01-01                    Benin         43.0
## 9794                  2010-01-01                    Benin         41.5
## 9795                  2005-01-01                    Benin         40.4
## 9796                  2000-01-01                    Benin         37.3
## 9797                  1995-01-01                    Benin         37.0
## 9798                  1990-01-01                    Benin         36.9
## 9799                  2015-01-01                    Benin         43.0
## 9800                  2010-01-01                    Benin         41.5
## 9801                  2005-01-01                    Benin         40.4
## 9802                  2000-01-01                    Benin         37.3
## 9803                  1995-01-01                    Benin         37.0
## 9804                  1990-01-01                    Benin         36.9
## 9805                  2015-01-01                    Benin         43.0
## 9806                  2010-01-01                    Benin         41.5
## 9807                  2005-01-01                    Benin         40.4
## 9808                  2000-01-01                    Benin         37.3
## 9809                  1995-01-01                    Benin         37.0
## 9810                  1990-01-01                    Benin         36.9
## 9811                  2015-01-01                    Benin         43.0
## 9812                  2010-01-01                    Benin         41.5
## 9813                  2005-01-01                    Benin         40.4
## 9814                  2000-01-01                    Benin         37.3
## 9815                  1995-01-01                    Benin         37.0
## 9816                  1990-01-01                    Benin         36.9
## 9817                  2015-01-01                    Benin         43.0
## 9818                  2010-01-01                    Benin         41.5
## 9819                  2005-01-01                    Benin         40.4
## 9820                  2000-01-01                    Benin         37.3
## 9821                  1995-01-01                    Benin         37.0
## 9822                  1990-01-01                    Benin         36.9
## 9823                  2015-01-01                    Benin         43.0
## 9824                  2010-01-01                    Benin         41.5
## 9825                  2005-01-01                    Benin         40.4
## 9826                  2000-01-01                    Benin         37.3
## 9827                  1995-01-01                    Benin         37.0
## 9828                  1990-01-01                    Benin         36.9
## 9829                  2015-01-01                    Benin         43.0
## 9830                  2010-01-01                    Benin         41.5
## 9831                  2005-01-01                    Benin         40.4
## 9832                  2000-01-01                    Benin         37.3
## 9833                  1995-01-01                    Benin         37.0
## 9834                  1990-01-01                    Benin         36.9
## 9835                  2015-01-01                    Benin         43.0
## 9836                  2010-01-01                    Benin         41.5
## 9837                  2005-01-01                    Benin         40.4
## 9838                  2000-01-01                    Benin         37.3
## 9839                  1995-01-01                    Benin         37.0
## 9840                  1990-01-01                    Benin         36.9
## 9841                  2015-01-01                    Benin         43.0
## 9842                  2010-01-01                    Benin         41.5
## 9843                  2005-01-01                    Benin         40.4
## 9844                  2000-01-01                    Benin         37.3
## 9845                  1995-01-01                    Benin         37.0
## 9846                  1990-01-01                    Benin         36.9
## 9847                  2015-01-01                    Benin         43.0
## 9848                  2010-01-01                    Benin         41.5
## 9849                  2005-01-01                    Benin         40.4
## 9850                  2000-01-01                    Benin         37.3
## 9851                  1995-01-01                    Benin         37.0
## 9852                  1990-01-01                    Benin         36.9
## 9853                  2015-01-01                   Bhutan         52.7
## 9854                  2010-01-01                   Bhutan         50.1
## 9855                  2005-01-01                   Bhutan         46.2
## 9856                  2000-01-01                   Bhutan         42.3
## 9857                  1995-01-01                   Bhutan         37.6
## 9858                  1990-01-01                   Bhutan         34.6
## 9859                  2015-01-01                   Bhutan         52.7
## 9860                  2010-01-01                   Bhutan         50.1
## 9861                  2005-01-01                   Bhutan         46.2
## 9862                  2000-01-01                   Bhutan         42.3
## 9863                  1995-01-01                   Bhutan         37.6
## 9864                  1990-01-01                   Bhutan         34.6
## 9865                  2015-01-01                   Bhutan         52.7
## 9866                  2010-01-01                   Bhutan         50.1
## 9867                  2005-01-01                   Bhutan         46.2
## 9868                  2000-01-01                   Bhutan         42.3
## 9869                  1995-01-01                   Bhutan         37.6
## 9870                  1990-01-01                   Bhutan         34.6
## 9871                  2015-01-01                   Bhutan         52.7
## 9872                  2010-01-01                   Bhutan         50.1
## 9873                  2005-01-01                   Bhutan         46.2
## 9874                  2000-01-01                   Bhutan         42.3
## 9875                  1995-01-01                   Bhutan         37.6
## 9876                  1990-01-01                   Bhutan         34.6
## 9877                  2015-01-01                   Bhutan         52.7
## 9878                  2010-01-01                   Bhutan         50.1
## 9879                  2005-01-01                   Bhutan         46.2
## 9880                  2000-01-01                   Bhutan         42.3
## 9881                  1995-01-01                   Bhutan         37.6
## 9882                  1990-01-01                   Bhutan         34.6
## 9883                  2015-01-01                   Bhutan         52.7
## 9884                  2010-01-01                   Bhutan         50.1
## 9885                  2005-01-01                   Bhutan         46.2
## 9886                  2000-01-01                   Bhutan         42.3
## 9887                  1995-01-01                   Bhutan         37.6
## 9888                  1990-01-01                   Bhutan         34.6
## 9889                  2015-01-01                   Bhutan         52.7
## 9890                  2010-01-01                   Bhutan         50.1
## 9891                  2005-01-01                   Bhutan         46.2
## 9892                  2000-01-01                   Bhutan         42.3
## 9893                  1995-01-01                   Bhutan         37.6
## 9894                  1990-01-01                   Bhutan         34.6
## 9895                  2015-01-01                   Bhutan         52.7
## 9896                  2010-01-01                   Bhutan         50.1
## 9897                  2005-01-01                   Bhutan         46.2
## 9898                  2000-01-01                   Bhutan         42.3
## 9899                  1995-01-01                   Bhutan         37.6
## 9900                  1990-01-01                   Bhutan         34.6
## 9901                  2015-01-01                   Bhutan         52.7
## 9902                  2010-01-01                   Bhutan         50.1
## 9903                  2005-01-01                   Bhutan         46.2
## 9904                  2000-01-01                   Bhutan         42.3
## 9905                  1995-01-01                   Bhutan         37.6
## 9906                  1990-01-01                   Bhutan         34.6
## 9907                  2015-01-01                   Bhutan         52.7
## 9908                  2010-01-01                   Bhutan         50.1
## 9909                  2005-01-01                   Bhutan         46.2
## 9910                  2000-01-01                   Bhutan         42.3
## 9911                  1995-01-01                   Bhutan         37.6
## 9912                  1990-01-01                   Bhutan         34.6
## 9913                  2015-01-01                   Bhutan         52.7
## 9914                  2010-01-01                   Bhutan         50.1
## 9915                  2005-01-01                   Bhutan         46.2
## 9916                  2000-01-01                   Bhutan         42.3
## 9917                  1995-01-01                   Bhutan         37.6
## 9918                  1990-01-01                   Bhutan         34.6
## 9919                  2015-01-01                   Bhutan         52.7
## 9920                  2010-01-01                   Bhutan         50.1
## 9921                  2005-01-01                   Bhutan         46.2
## 9922                  2000-01-01                   Bhutan         42.3
## 9923                  1995-01-01                   Bhutan         37.6
## 9924                  1990-01-01                   Bhutan         34.6
## 9925                  2015-01-01                   Bhutan         52.7
## 9926                  2010-01-01                   Bhutan         50.1
## 9927                  2005-01-01                   Bhutan         46.2
## 9928                  2000-01-01                   Bhutan         42.3
## 9929                  1995-01-01                   Bhutan         37.6
## 9930                  1990-01-01                   Bhutan         34.6
## 9931                  2015-01-01                   Bhutan         52.7
## 9932                  2010-01-01                   Bhutan         50.1
## 9933                  2005-01-01                   Bhutan         46.2
## 9934                  2000-01-01                   Bhutan         42.3
## 9935                  1995-01-01                   Bhutan         37.6
## 9936                  1990-01-01                   Bhutan         34.6
## 9937                  2015-01-01                   Bhutan         52.7
## 9938                  2010-01-01                   Bhutan         50.1
## 9939                  2005-01-01                   Bhutan         46.2
## 9940                  2000-01-01                   Bhutan         42.3
## 9941                  1995-01-01                   Bhutan         37.6
## 9942                  1990-01-01                   Bhutan         34.6
## 9943                  2015-01-01                   Bhutan         52.7
## 9944                  2010-01-01                   Bhutan         50.1
## 9945                  2005-01-01                   Bhutan         46.2
## 9946                  2000-01-01                   Bhutan         42.3
## 9947                  1995-01-01                   Bhutan         37.6
## 9948                  1990-01-01                   Bhutan         34.6
## 9949                  2015-01-01                   Bhutan         52.7
## 9950                  2010-01-01                   Bhutan         50.1
## 9951                  2005-01-01                   Bhutan         46.2
## 9952                  2000-01-01                   Bhutan         42.3
## 9953                  1995-01-01                   Bhutan         37.6
## 9954                  1990-01-01                   Bhutan         34.6
## 9955                  2015-01-01                   Bhutan         52.7
## 9956                  2010-01-01                   Bhutan         50.1
## 9957                  2005-01-01                   Bhutan         46.2
## 9958                  2000-01-01                   Bhutan         42.3
## 9959                  1995-01-01                   Bhutan         37.6
## 9960                  1990-01-01                   Bhutan         34.6
## 9961                  2015-01-01                   Bhutan         52.7
## 9962                  2010-01-01                   Bhutan         50.1
## 9963                  2005-01-01                   Bhutan         46.2
## 9964                  2000-01-01                   Bhutan         42.3
## 9965                  1995-01-01                   Bhutan         37.6
## 9966                  1990-01-01                   Bhutan         34.6
## 9967                  2015-01-01                   Bhutan         52.7
## 9968                  2010-01-01                   Bhutan         50.1
## 9969                  2005-01-01                   Bhutan         46.2
## 9970                  2000-01-01                   Bhutan         42.3
## 9971                  1995-01-01                   Bhutan         37.6
## 9972                  1990-01-01                   Bhutan         34.6
## 9973                  2015-01-01                   Bhutan         52.7
## 9974                  2010-01-01                   Bhutan         50.1
## 9975                  2005-01-01                   Bhutan         46.2
## 9976                  2000-01-01                   Bhutan         42.3
## 9977                  1995-01-01                   Bhutan         37.6
## 9978                  1990-01-01                   Bhutan         34.6
## 9979                  2015-01-01                   Bhutan         52.7
## 9980                  2010-01-01                   Bhutan         50.1
## 9981                  2005-01-01                   Bhutan         46.2
## 9982                  2000-01-01                   Bhutan         42.3
## 9983                  1995-01-01                   Bhutan         37.6
## 9984                  1990-01-01                   Bhutan         34.6
## 9985                  2015-01-01                   Bhutan         52.7
## 9986                  2010-01-01                   Bhutan         50.1
## 9987                  2005-01-01                   Bhutan         46.2
## 9988                  2000-01-01                   Bhutan         42.3
## 9989                  1995-01-01                   Bhutan         37.6
## 9990                  1990-01-01                   Bhutan         34.6
## 9991                  2015-01-01                   Bhutan         52.7
## 9992                  2010-01-01                   Bhutan         50.1
## 9993                  2005-01-01                   Bhutan         46.2
## 9994                  2000-01-01                   Bhutan         42.3
## 9995                  1995-01-01                   Bhutan         37.6
## 9996                  1990-01-01                   Bhutan         34.6
## 9997                  2015-01-01                   Bhutan         52.7
## 9998                  2010-01-01                   Bhutan         50.1
## 9999                  2005-01-01                   Bhutan         46.2
## 10000                 2000-01-01                   Bhutan         42.3
## 10001                 1995-01-01                   Bhutan         37.6
## 10002                 1990-01-01                   Bhutan         34.6
## 10003                 2015-01-01                   Bhutan         52.7
## 10004                 2010-01-01                   Bhutan         50.1
## 10005                 2005-01-01                   Bhutan         46.2
## 10006                 2000-01-01                   Bhutan         42.3
## 10007                 1995-01-01                   Bhutan         37.6
## 10008                 1990-01-01                   Bhutan         34.6
## 10009                 2015-01-01                   Bhutan         52.7
## 10010                 2010-01-01                   Bhutan         50.1
## 10011                 2005-01-01                   Bhutan         46.2
## 10012                 2000-01-01                   Bhutan         42.3
## 10013                 1995-01-01                   Bhutan         37.6
## 10014                 1990-01-01                   Bhutan         34.6
## 10015                 2015-01-01                   Bhutan         52.7
## 10016                 2010-01-01                   Bhutan         50.1
## 10017                 2005-01-01                   Bhutan         46.2
## 10018                 2000-01-01                   Bhutan         42.3
## 10019                 1995-01-01                   Bhutan         37.6
## 10020                 1990-01-01                   Bhutan         34.6
## 10021                 2015-01-01                   Bhutan         52.7
## 10022                 2010-01-01                   Bhutan         50.1
## 10023                 2005-01-01                   Bhutan         46.2
## 10024                 2000-01-01                   Bhutan         42.3
## 10025                 1995-01-01                   Bhutan         37.6
## 10026                 1990-01-01                   Bhutan         34.6
## 10027                 2015-01-01                   Bhutan         52.7
## 10028                 2010-01-01                   Bhutan         50.1
## 10029                 2005-01-01                   Bhutan         46.2
## 10030                 2000-01-01                   Bhutan         42.3
## 10031                 1995-01-01                   Bhutan         37.6
## 10032                 1990-01-01                   Bhutan         34.6
## 10033                 2015-01-01                   Bhutan         52.7
## 10034                 2010-01-01                   Bhutan         50.1
## 10035                 2005-01-01                   Bhutan         46.2
## 10036                 2000-01-01                   Bhutan         42.3
## 10037                 1995-01-01                   Bhutan         37.6
## 10038                 1990-01-01                   Bhutan         34.6
## 10039                 2015-01-01                   Bhutan         52.7
## 10040                 2010-01-01                   Bhutan         50.1
## 10041                 2005-01-01                   Bhutan         46.2
## 10042                 2000-01-01                   Bhutan         42.3
## 10043                 1995-01-01                   Bhutan         37.6
## 10044                 1990-01-01                   Bhutan         34.6
## 10045                 2015-01-01                   Bhutan         52.7
## 10046                 2010-01-01                   Bhutan         50.1
## 10047                 2005-01-01                   Bhutan         46.2
## 10048                 2000-01-01                   Bhutan         42.3
## 10049                 1995-01-01                   Bhutan         37.6
## 10050                 1990-01-01                   Bhutan         34.6
## 10051                 2015-01-01                   Bhutan         52.7
## 10052                 2010-01-01                   Bhutan         50.1
## 10053                 2005-01-01                   Bhutan         46.2
## 10054                 2000-01-01                   Bhutan         42.3
## 10055                 1995-01-01                   Bhutan         37.6
## 10056                 1990-01-01                   Bhutan         34.6
## 10057                 2015-01-01                   Bhutan         52.7
## 10058                 2010-01-01                   Bhutan         50.1
## 10059                 2005-01-01                   Bhutan         46.2
## 10060                 2000-01-01                   Bhutan         42.3
## 10061                 1995-01-01                   Bhutan         37.6
## 10062                 1990-01-01                   Bhutan         34.6
## 10063                 2015-01-01                   Bhutan         52.7
## 10064                 2010-01-01                   Bhutan         50.1
## 10065                 2005-01-01                   Bhutan         46.2
## 10066                 2000-01-01                   Bhutan         42.3
## 10067                 1995-01-01                   Bhutan         37.6
## 10068                 1990-01-01                   Bhutan         34.6
## 10069                 2015-01-01                   Bhutan         52.7
## 10070                 2010-01-01                   Bhutan         50.1
## 10071                 2005-01-01                   Bhutan         46.2
## 10072                 2000-01-01                   Bhutan         42.3
## 10073                 1995-01-01                   Bhutan         37.6
## 10074                 1990-01-01                   Bhutan         34.6
## 10075                 2015-01-01                   Bhutan         52.7
## 10076                 2010-01-01                   Bhutan         50.1
## 10077                 2005-01-01                   Bhutan         46.2
## 10078                 2000-01-01                   Bhutan         42.3
## 10079                 1995-01-01                   Bhutan         37.6
## 10080                 1990-01-01                   Bhutan         34.6
## 10081                 2015-01-01                   Bhutan         52.7
## 10082                 2010-01-01                   Bhutan         50.1
## 10083                 2005-01-01                   Bhutan         46.2
## 10084                 2000-01-01                   Bhutan         42.3
## 10085                 1995-01-01                   Bhutan         37.6
## 10086                 1990-01-01                   Bhutan         34.6
## 10087                 2015-01-01                   Bhutan         52.7
## 10088                 2010-01-01                   Bhutan         50.1
## 10089                 2005-01-01                   Bhutan         46.2
## 10090                 2000-01-01                   Bhutan         42.3
## 10091                 1995-01-01                   Bhutan         37.6
## 10092                 1990-01-01                   Bhutan         34.6
## 10093                 2015-01-01                   Bhutan         52.7
## 10094                 2010-01-01                   Bhutan         50.1
## 10095                 2005-01-01                   Bhutan         46.2
## 10096                 2000-01-01                   Bhutan         42.3
## 10097                 1995-01-01                   Bhutan         37.6
## 10098                 1990-01-01                   Bhutan         34.6
## 10099                 2015-01-01                  Bolivia         59.2
## 10100                 2010-01-01                  Bolivia         56.4
## 10101                 2005-01-01                  Bolivia         53.3
## 10102                 2000-01-01                  Bolivia         48.5
## 10103                 1995-01-01                  Bolivia         43.8
## 10104                 1990-01-01                  Bolivia         40.5
## 10105                 2015-01-01                  Bolivia         59.2
## 10106                 2010-01-01                  Bolivia         56.4
## 10107                 2005-01-01                  Bolivia         53.3
## 10108                 2000-01-01                  Bolivia         48.5
## 10109                 1995-01-01                  Bolivia         43.8
## 10110                 1990-01-01                  Bolivia         40.5
## 10111                 2015-01-01                  Bolivia         59.2
## 10112                 2010-01-01                  Bolivia         56.4
## 10113                 2005-01-01                  Bolivia         53.3
## 10114                 2000-01-01                  Bolivia         48.5
## 10115                 1995-01-01                  Bolivia         43.8
## 10116                 1990-01-01                  Bolivia         40.5
## 10117                 2015-01-01                  Bolivia         59.2
## 10118                 2010-01-01                  Bolivia         56.4
## 10119                 2005-01-01                  Bolivia         53.3
## 10120                 2000-01-01                  Bolivia         48.5
## 10121                 1995-01-01                  Bolivia         43.8
## 10122                 1990-01-01                  Bolivia         40.5
## 10123                 2015-01-01                  Bolivia         59.2
## 10124                 2010-01-01                  Bolivia         56.4
## 10125                 2005-01-01                  Bolivia         53.3
## 10126                 2000-01-01                  Bolivia         48.5
## 10127                 1995-01-01                  Bolivia         43.8
## 10128                 1990-01-01                  Bolivia         40.5
## 10129                 2015-01-01                  Bolivia         59.2
## 10130                 2010-01-01                  Bolivia         56.4
## 10131                 2005-01-01                  Bolivia         53.3
## 10132                 2000-01-01                  Bolivia         48.5
## 10133                 1995-01-01                  Bolivia         43.8
## 10134                 1990-01-01                  Bolivia         40.5
## 10135                 2015-01-01                  Bolivia         59.2
## 10136                 2010-01-01                  Bolivia         56.4
## 10137                 2005-01-01                  Bolivia         53.3
## 10138                 2000-01-01                  Bolivia         48.5
## 10139                 1995-01-01                  Bolivia         43.8
## 10140                 1990-01-01                  Bolivia         40.5
## 10141                 2015-01-01                  Bolivia         59.2
## 10142                 2010-01-01                  Bolivia         56.4
## 10143                 2005-01-01                  Bolivia         53.3
## 10144                 2000-01-01                  Bolivia         48.5
## 10145                 1995-01-01                  Bolivia         43.8
## 10146                 1990-01-01                  Bolivia         40.5
## 10147                 2015-01-01                  Bolivia         59.2
## 10148                 2010-01-01                  Bolivia         56.4
## 10149                 2005-01-01                  Bolivia         53.3
## 10150                 2000-01-01                  Bolivia         48.5
## 10151                 1995-01-01                  Bolivia         43.8
## 10152                 1990-01-01                  Bolivia         40.5
## 10153                 2015-01-01                  Bolivia         59.2
## 10154                 2010-01-01                  Bolivia         56.4
## 10155                 2005-01-01                  Bolivia         53.3
## 10156                 2000-01-01                  Bolivia         48.5
## 10157                 1995-01-01                  Bolivia         43.8
## 10158                 1990-01-01                  Bolivia         40.5
## 10159                 2015-01-01                  Bolivia         59.2
## 10160                 2010-01-01                  Bolivia         56.4
## 10161                 2005-01-01                  Bolivia         53.3
## 10162                 2000-01-01                  Bolivia         48.5
## 10163                 1995-01-01                  Bolivia         43.8
## 10164                 1990-01-01                  Bolivia         40.5
## 10165                 2015-01-01                  Bolivia         59.2
## 10166                 2010-01-01                  Bolivia         56.4
## 10167                 2005-01-01                  Bolivia         53.3
## 10168                 2000-01-01                  Bolivia         48.5
## 10169                 1995-01-01                  Bolivia         43.8
## 10170                 1990-01-01                  Bolivia         40.5
## 10171                 2015-01-01                  Bolivia         59.2
## 10172                 2010-01-01                  Bolivia         56.4
## 10173                 2005-01-01                  Bolivia         53.3
## 10174                 2000-01-01                  Bolivia         48.5
## 10175                 1995-01-01                  Bolivia         43.8
## 10176                 1990-01-01                  Bolivia         40.5
## 10177                 2015-01-01                  Bolivia         59.2
## 10178                 2010-01-01                  Bolivia         56.4
## 10179                 2005-01-01                  Bolivia         53.3
## 10180                 2000-01-01                  Bolivia         48.5
## 10181                 1995-01-01                  Bolivia         43.8
## 10182                 1990-01-01                  Bolivia         40.5
## 10183                 2015-01-01                  Bolivia         59.2
## 10184                 2010-01-01                  Bolivia         56.4
## 10185                 2005-01-01                  Bolivia         53.3
## 10186                 2000-01-01                  Bolivia         48.5
## 10187                 1995-01-01                  Bolivia         43.8
## 10188                 1990-01-01                  Bolivia         40.5
## 10189                 2015-01-01                  Bolivia         59.2
## 10190                 2010-01-01                  Bolivia         56.4
## 10191                 2005-01-01                  Bolivia         53.3
## 10192                 2000-01-01                  Bolivia         48.5
## 10193                 1995-01-01                  Bolivia         43.8
## 10194                 1990-01-01                  Bolivia         40.5
## 10195                 2015-01-01                  Bolivia         59.2
## 10196                 2010-01-01                  Bolivia         56.4
## 10197                 2005-01-01                  Bolivia         53.3
## 10198                 2000-01-01                  Bolivia         48.5
## 10199                 1995-01-01                  Bolivia         43.8
## 10200                 1990-01-01                  Bolivia         40.5
## 10201                 2015-01-01                  Bolivia         59.2
## 10202                 2010-01-01                  Bolivia         56.4
## 10203                 2005-01-01                  Bolivia         53.3
## 10204                 2000-01-01                  Bolivia         48.5
## 10205                 1995-01-01                  Bolivia         43.8
## 10206                 1990-01-01                  Bolivia         40.5
## 10207                 2015-01-01                  Bolivia         59.2
## 10208                 2010-01-01                  Bolivia         56.4
## 10209                 2005-01-01                  Bolivia         53.3
## 10210                 2000-01-01                  Bolivia         48.5
## 10211                 1995-01-01                  Bolivia         43.8
## 10212                 1990-01-01                  Bolivia         40.5
## 10213                 2015-01-01                  Bolivia         59.2
## 10214                 2010-01-01                  Bolivia         56.4
## 10215                 2005-01-01                  Bolivia         53.3
## 10216                 2000-01-01                  Bolivia         48.5
## 10217                 1995-01-01                  Bolivia         43.8
## 10218                 1990-01-01                  Bolivia         40.5
## 10219                 2015-01-01                  Bolivia         59.2
## 10220                 2010-01-01                  Bolivia         56.4
## 10221                 2005-01-01                  Bolivia         53.3
## 10222                 2000-01-01                  Bolivia         48.5
## 10223                 1995-01-01                  Bolivia         43.8
## 10224                 1990-01-01                  Bolivia         40.5
## 10225                 2015-01-01                  Bolivia         59.2
## 10226                 2010-01-01                  Bolivia         56.4
## 10227                 2005-01-01                  Bolivia         53.3
## 10228                 2000-01-01                  Bolivia         48.5
## 10229                 1995-01-01                  Bolivia         43.8
## 10230                 1990-01-01                  Bolivia         40.5
## 10231                 2015-01-01                  Bolivia         59.2
## 10232                 2010-01-01                  Bolivia         56.4
## 10233                 2005-01-01                  Bolivia         53.3
## 10234                 2000-01-01                  Bolivia         48.5
## 10235                 1995-01-01                  Bolivia         43.8
## 10236                 1990-01-01                  Bolivia         40.5
## 10237                 2015-01-01                  Bolivia         59.2
## 10238                 2010-01-01                  Bolivia         56.4
## 10239                 2005-01-01                  Bolivia         53.3
## 10240                 2000-01-01                  Bolivia         48.5
## 10241                 1995-01-01                  Bolivia         43.8
## 10242                 1990-01-01                  Bolivia         40.5
## 10243                 2015-01-01                  Bolivia         59.2
## 10244                 2010-01-01                  Bolivia         56.4
## 10245                 2005-01-01                  Bolivia         53.3
## 10246                 2000-01-01                  Bolivia         48.5
## 10247                 1995-01-01                  Bolivia         43.8
## 10248                 1990-01-01                  Bolivia         40.5
## 10249                 2015-01-01                  Bolivia         59.2
## 10250                 2010-01-01                  Bolivia         56.4
## 10251                 2005-01-01                  Bolivia         53.3
## 10252                 2000-01-01                  Bolivia         48.5
## 10253                 1995-01-01                  Bolivia         43.8
## 10254                 1990-01-01                  Bolivia         40.5
## 10255                 2015-01-01                  Bolivia         59.2
## 10256                 2010-01-01                  Bolivia         56.4
## 10257                 2005-01-01                  Bolivia         53.3
## 10258                 2000-01-01                  Bolivia         48.5
## 10259                 1995-01-01                  Bolivia         43.8
## 10260                 1990-01-01                  Bolivia         40.5
## 10261                 2015-01-01                  Bolivia         59.2
## 10262                 2010-01-01                  Bolivia         56.4
## 10263                 2005-01-01                  Bolivia         53.3
## 10264                 2000-01-01                  Bolivia         48.5
## 10265                 1995-01-01                  Bolivia         43.8
## 10266                 1990-01-01                  Bolivia         40.5
## 10267                 2015-01-01                  Bolivia         59.2
## 10268                 2010-01-01                  Bolivia         56.4
## 10269                 2005-01-01                  Bolivia         53.3
## 10270                 2000-01-01                  Bolivia         48.5
## 10271                 1995-01-01                  Bolivia         43.8
## 10272                 1990-01-01                  Bolivia         40.5
## 10273                 2015-01-01                  Bolivia         59.2
## 10274                 2010-01-01                  Bolivia         56.4
## 10275                 2005-01-01                  Bolivia         53.3
## 10276                 2000-01-01                  Bolivia         48.5
## 10277                 1995-01-01                  Bolivia         43.8
## 10278                 1990-01-01                  Bolivia         40.5
## 10279                 2015-01-01                  Bolivia         59.2
## 10280                 2010-01-01                  Bolivia         56.4
## 10281                 2005-01-01                  Bolivia         53.3
## 10282                 2000-01-01                  Bolivia         48.5
## 10283                 1995-01-01                  Bolivia         43.8
## 10284                 1990-01-01                  Bolivia         40.5
## 10285                 2015-01-01                  Bolivia         59.2
## 10286                 2010-01-01                  Bolivia         56.4
## 10287                 2005-01-01                  Bolivia         53.3
## 10288                 2000-01-01                  Bolivia         48.5
## 10289                 1995-01-01                  Bolivia         43.8
## 10290                 1990-01-01                  Bolivia         40.5
## 10291                 2015-01-01                  Bolivia         59.2
## 10292                 2010-01-01                  Bolivia         56.4
## 10293                 2005-01-01                  Bolivia         53.3
## 10294                 2000-01-01                  Bolivia         48.5
## 10295                 1995-01-01                  Bolivia         43.8
## 10296                 1990-01-01                  Bolivia         40.5
## 10297                 2015-01-01                  Bolivia         59.2
## 10298                 2010-01-01                  Bolivia         56.4
## 10299                 2005-01-01                  Bolivia         53.3
## 10300                 2000-01-01                  Bolivia         48.5
## 10301                 1995-01-01                  Bolivia         43.8
## 10302                 1990-01-01                  Bolivia         40.5
## 10303                 2015-01-01                  Bolivia         59.2
## 10304                 2010-01-01                  Bolivia         56.4
## 10305                 2005-01-01                  Bolivia         53.3
## 10306                 2000-01-01                  Bolivia         48.5
## 10307                 1995-01-01                  Bolivia         43.8
## 10308                 1990-01-01                  Bolivia         40.5
## 10309                 2015-01-01                  Bolivia         59.2
## 10310                 2010-01-01                  Bolivia         56.4
## 10311                 2005-01-01                  Bolivia         53.3
## 10312                 2000-01-01                  Bolivia         48.5
## 10313                 1995-01-01                  Bolivia         43.8
## 10314                 1990-01-01                  Bolivia         40.5
## 10315                 2015-01-01                  Bolivia         59.2
## 10316                 2010-01-01                  Bolivia         56.4
## 10317                 2005-01-01                  Bolivia         53.3
## 10318                 2000-01-01                  Bolivia         48.5
## 10319                 1995-01-01                  Bolivia         43.8
## 10320                 1990-01-01                  Bolivia         40.5
## 10321                 2015-01-01                  Bolivia         59.2
## 10322                 2010-01-01                  Bolivia         56.4
## 10323                 2005-01-01                  Bolivia         53.3
## 10324                 2000-01-01                  Bolivia         48.5
## 10325                 1995-01-01                  Bolivia         43.8
## 10326                 1990-01-01                  Bolivia         40.5
## 10327                 2015-01-01                  Bolivia         59.2
## 10328                 2010-01-01                  Bolivia         56.4
## 10329                 2005-01-01                  Bolivia         53.3
## 10330                 2000-01-01                  Bolivia         48.5
## 10331                 1995-01-01                  Bolivia         43.8
## 10332                 1990-01-01                  Bolivia         40.5
## 10333                 2015-01-01                  Bolivia         59.2
## 10334                 2010-01-01                  Bolivia         56.4
## 10335                 2005-01-01                  Bolivia         53.3
## 10336                 2000-01-01                  Bolivia         48.5
## 10337                 1995-01-01                  Bolivia         43.8
## 10338                 1990-01-01                  Bolivia         40.5
## 10339                 2015-01-01                  Bolivia         59.2
## 10340                 2010-01-01                  Bolivia         56.4
## 10341                 2005-01-01                  Bolivia         53.3
## 10342                 2000-01-01                  Bolivia         48.5
## 10343                 1995-01-01                  Bolivia         43.8
## 10344                 1990-01-01                  Bolivia         40.5
## 10345                 2015-01-01                  Bolivia         59.2
## 10346                 2010-01-01                  Bolivia         56.4
## 10347                 2005-01-01                  Bolivia         53.3
## 10348                 2000-01-01                  Bolivia         48.5
## 10349                 1995-01-01                  Bolivia         43.8
## 10350                 1990-01-01                  Bolivia         40.5
## 10351                 2015-01-01                  Bolivia         59.2
## 10352                 2010-01-01                  Bolivia         56.4
## 10353                 2005-01-01                  Bolivia         53.3
## 10354                 2000-01-01                  Bolivia         48.5
## 10355                 1995-01-01                  Bolivia         43.8
## 10356                 1990-01-01                  Bolivia         40.5
## 10357                 2015-01-01                  Bolivia         59.2
## 10358                 2010-01-01                  Bolivia         56.4
## 10359                 2005-01-01                  Bolivia         53.3
## 10360                 2000-01-01                  Bolivia         48.5
## 10361                 1995-01-01                  Bolivia         43.8
## 10362                 1990-01-01                  Bolivia         40.5
## 10363                 2015-01-01                  Bolivia         59.2
## 10364                 2010-01-01                  Bolivia         56.4
## 10365                 2005-01-01                  Bolivia         53.3
## 10366                 2000-01-01                  Bolivia         48.5
## 10367                 1995-01-01                  Bolivia         43.8
## 10368                 1990-01-01                  Bolivia         40.5
## 10369                 2015-01-01                  Bolivia         59.2
## 10370                 2010-01-01                  Bolivia         56.4
## 10371                 2005-01-01                  Bolivia         53.3
## 10372                 2000-01-01                  Bolivia         48.5
## 10373                 1995-01-01                  Bolivia         43.8
## 10374                 1990-01-01                  Bolivia         40.5
## 10375                 2015-01-01                  Bolivia         59.2
## 10376                 2010-01-01                  Bolivia         56.4
## 10377                 2005-01-01                  Bolivia         53.3
## 10378                 2000-01-01                  Bolivia         48.5
## 10379                 1995-01-01                  Bolivia         43.8
## 10380                 1990-01-01                  Bolivia         40.5
## 10381                 2015-01-01                  Bolivia         59.2
## 10382                 2010-01-01                  Bolivia         56.4
## 10383                 2005-01-01                  Bolivia         53.3
## 10384                 2000-01-01                  Bolivia         48.5
## 10385                 1995-01-01                  Bolivia         43.8
## 10386                 1990-01-01                  Bolivia         40.5
## 10387                 2015-01-01                  Bolivia         59.2
## 10388                 2010-01-01                  Bolivia         56.4
## 10389                 2005-01-01                  Bolivia         53.3
## 10390                 2000-01-01                  Bolivia         48.5
## 10391                 1995-01-01                  Bolivia         43.8
## 10392                 1990-01-01                  Bolivia         40.5
## 10393                 2015-01-01                  Bolivia         59.2
## 10394                 2010-01-01                  Bolivia         56.4
## 10395                 2005-01-01                  Bolivia         53.3
## 10396                 2000-01-01                  Bolivia         48.5
## 10397                 1995-01-01                  Bolivia         43.8
## 10398                 1990-01-01                  Bolivia         40.5
## 10399                 2015-01-01                  Bolivia         59.2
## 10400                 2010-01-01                  Bolivia         56.4
## 10401                 2005-01-01                  Bolivia         53.3
## 10402                 2000-01-01                  Bolivia         48.5
## 10403                 1995-01-01                  Bolivia         43.8
## 10404                 1990-01-01                  Bolivia         40.5
## 10405                 2015-01-01                  Bolivia         59.2
## 10406                 2010-01-01                  Bolivia         56.4
## 10407                 2005-01-01                  Bolivia         53.3
## 10408                 2000-01-01                  Bolivia         48.5
## 10409                 1995-01-01                  Bolivia         43.8
## 10410                 1990-01-01                  Bolivia         40.5
## 10411                 2015-01-01                  Bolivia         59.2
## 10412                 2010-01-01                  Bolivia         56.4
## 10413                 2005-01-01                  Bolivia         53.3
## 10414                 2000-01-01                  Bolivia         48.5
## 10415                 1995-01-01                  Bolivia         43.8
## 10416                 1990-01-01                  Bolivia         40.5
## 10417                 2015-01-01                  Bolivia         59.2
## 10418                 2010-01-01                  Bolivia         56.4
## 10419                 2005-01-01                  Bolivia         53.3
## 10420                 2000-01-01                  Bolivia         48.5
## 10421                 1995-01-01                  Bolivia         43.8
## 10422                 1990-01-01                  Bolivia         40.5
## 10423                 2015-01-01                  Bolivia         59.2
## 10424                 2010-01-01                  Bolivia         56.4
## 10425                 2005-01-01                  Bolivia         53.3
## 10426                 2000-01-01                  Bolivia         48.5
## 10427                 1995-01-01                  Bolivia         43.8
## 10428                 1990-01-01                  Bolivia         40.5
## 10429                 2015-01-01                  Bolivia         59.2
## 10430                 2010-01-01                  Bolivia         56.4
## 10431                 2005-01-01                  Bolivia         53.3
## 10432                 2000-01-01                  Bolivia         48.5
## 10433                 1995-01-01                  Bolivia         43.8
## 10434                 1990-01-01                  Bolivia         40.5
## 10435                 2015-01-01                  Bolivia         59.2
## 10436                 2010-01-01                  Bolivia         56.4
## 10437                 2005-01-01                  Bolivia         53.3
## 10438                 2000-01-01                  Bolivia         48.5
## 10439                 1995-01-01                  Bolivia         43.8
## 10440                 1990-01-01                  Bolivia         40.5
## 10441                 2015-01-01                  Bolivia         59.2
## 10442                 2010-01-01                  Bolivia         56.4
## 10443                 2005-01-01                  Bolivia         53.3
## 10444                 2000-01-01                  Bolivia         48.5
## 10445                 1995-01-01                  Bolivia         43.8
## 10446                 1990-01-01                  Bolivia         40.5
## 10447                 2015-01-01                  Bolivia         59.2
## 10448                 2010-01-01                  Bolivia         56.4
## 10449                 2005-01-01                  Bolivia         53.3
## 10450                 2000-01-01                  Bolivia         48.5
## 10451                 1995-01-01                  Bolivia         43.8
## 10452                 1990-01-01                  Bolivia         40.5
## 10453                 2015-01-01                  Bolivia         59.2
## 10454                 2010-01-01                  Bolivia         56.4
## 10455                 2005-01-01                  Bolivia         53.3
## 10456                 2000-01-01                  Bolivia         48.5
## 10457                 1995-01-01                  Bolivia         43.8
## 10458                 1990-01-01                  Bolivia         40.5
## 10459                 2015-01-01                  Bolivia         59.2
## 10460                 2010-01-01                  Bolivia         56.4
## 10461                 2005-01-01                  Bolivia         53.3
## 10462                 2000-01-01                  Bolivia         48.5
## 10463                 1995-01-01                  Bolivia         43.8
## 10464                 1990-01-01                  Bolivia         40.5
## 10465                 2015-01-01                  Bolivia         59.2
## 10466                 2010-01-01                  Bolivia         56.4
## 10467                 2005-01-01                  Bolivia         53.3
## 10468                 2000-01-01                  Bolivia         48.5
## 10469                 1995-01-01                  Bolivia         43.8
## 10470                 1990-01-01                  Bolivia         40.5
## 10471                 2015-01-01                  Bolivia         59.2
## 10472                 2010-01-01                  Bolivia         56.4
## 10473                 2005-01-01                  Bolivia         53.3
## 10474                 2000-01-01                  Bolivia         48.5
## 10475                 1995-01-01                  Bolivia         43.8
## 10476                 1990-01-01                  Bolivia         40.5
## 10477                 2015-01-01                  Bolivia         59.2
## 10478                 2010-01-01                  Bolivia         56.4
## 10479                 2005-01-01                  Bolivia         53.3
## 10480                 2000-01-01                  Bolivia         48.5
## 10481                 1995-01-01                  Bolivia         43.8
## 10482                 1990-01-01                  Bolivia         40.5
## 10483                 2015-01-01                  Bolivia         59.2
## 10484                 2010-01-01                  Bolivia         56.4
## 10485                 2005-01-01                  Bolivia         53.3
## 10486                 2000-01-01                  Bolivia         48.5
## 10487                 1995-01-01                  Bolivia         43.8
## 10488                 1990-01-01                  Bolivia         40.5
## 10489                 2015-01-01                  Bolivia         59.2
## 10490                 2010-01-01                  Bolivia         56.4
## 10491                 2005-01-01                  Bolivia         53.3
## 10492                 2000-01-01                  Bolivia         48.5
## 10493                 1995-01-01                  Bolivia         43.8
## 10494                 1990-01-01                  Bolivia         40.5
## 10495                 2015-01-01                  Bolivia         59.2
## 10496                 2010-01-01                  Bolivia         56.4
## 10497                 2005-01-01                  Bolivia         53.3
## 10498                 2000-01-01                  Bolivia         48.5
## 10499                 1995-01-01                  Bolivia         43.8
## 10500                 1990-01-01                  Bolivia         40.5
## 10501                 2015-01-01                  Bolivia         59.2
## 10502                 2010-01-01                  Bolivia         56.4
## 10503                 2005-01-01                  Bolivia         53.3
## 10504                 2000-01-01                  Bolivia         48.5
## 10505                 1995-01-01                  Bolivia         43.8
## 10506                 1990-01-01                  Bolivia         40.5
## 10507                 2015-01-01   Bosnia and Herzegovina         78.2
## 10508                 2010-01-01   Bosnia and Herzegovina         75.3
## 10509                 2005-01-01   Bosnia and Herzegovina         72.1
## 10510                 2000-01-01   Bosnia and Herzegovina         68.8
## 10511                 1995-01-01   Bosnia and Herzegovina         62.1
## 10512                 1990-01-01   Bosnia and Herzegovina         60.9
## 10513                 2015-01-01   Bosnia and Herzegovina         78.2
## 10514                 2010-01-01   Bosnia and Herzegovina         75.3
## 10515                 2005-01-01   Bosnia and Herzegovina         72.1
## 10516                 2000-01-01   Bosnia and Herzegovina         68.8
## 10517                 1995-01-01   Bosnia and Herzegovina         62.1
## 10518                 1990-01-01   Bosnia and Herzegovina         60.9
## 10519                 2015-01-01   Bosnia and Herzegovina         78.2
## 10520                 2010-01-01   Bosnia and Herzegovina         75.3
## 10521                 2005-01-01   Bosnia and Herzegovina         72.1
## 10522                 2000-01-01   Bosnia and Herzegovina         68.8
## 10523                 1995-01-01   Bosnia and Herzegovina         62.1
## 10524                 1990-01-01   Bosnia and Herzegovina         60.9
## 10525                 2015-01-01   Bosnia and Herzegovina         78.2
## 10526                 2010-01-01   Bosnia and Herzegovina         75.3
## 10527                 2005-01-01   Bosnia and Herzegovina         72.1
## 10528                 2000-01-01   Bosnia and Herzegovina         68.8
## 10529                 1995-01-01   Bosnia and Herzegovina         62.1
## 10530                 1990-01-01   Bosnia and Herzegovina         60.9
## 10531                 2015-01-01   Bosnia and Herzegovina         78.2
## 10532                 2010-01-01   Bosnia and Herzegovina         75.3
## 10533                 2005-01-01   Bosnia and Herzegovina         72.1
## 10534                 2000-01-01   Bosnia and Herzegovina         68.8
## 10535                 1995-01-01   Bosnia and Herzegovina         62.1
## 10536                 1990-01-01   Bosnia and Herzegovina         60.9
## 10537                 2015-01-01   Bosnia and Herzegovina         78.2
## 10538                 2010-01-01   Bosnia and Herzegovina         75.3
## 10539                 2005-01-01   Bosnia and Herzegovina         72.1
## 10540                 2000-01-01   Bosnia and Herzegovina         68.8
## 10541                 1995-01-01   Bosnia and Herzegovina         62.1
## 10542                 1990-01-01   Bosnia and Herzegovina         60.9
## 10543                 2015-01-01   Bosnia and Herzegovina         78.2
## 10544                 2010-01-01   Bosnia and Herzegovina         75.3
## 10545                 2005-01-01   Bosnia and Herzegovina         72.1
## 10546                 2000-01-01   Bosnia and Herzegovina         68.8
## 10547                 1995-01-01   Bosnia and Herzegovina         62.1
## 10548                 1990-01-01   Bosnia and Herzegovina         60.9
## 10549                 2015-01-01   Bosnia and Herzegovina         78.2
## 10550                 2010-01-01   Bosnia and Herzegovina         75.3
## 10551                 2005-01-01   Bosnia and Herzegovina         72.1
## 10552                 2000-01-01   Bosnia and Herzegovina         68.8
## 10553                 1995-01-01   Bosnia and Herzegovina         62.1
## 10554                 1990-01-01   Bosnia and Herzegovina         60.9
## 10555                 2015-01-01   Bosnia and Herzegovina         78.2
## 10556                 2010-01-01   Bosnia and Herzegovina         75.3
## 10557                 2005-01-01   Bosnia and Herzegovina         72.1
## 10558                 2000-01-01   Bosnia and Herzegovina         68.8
## 10559                 1995-01-01   Bosnia and Herzegovina         62.1
## 10560                 1990-01-01   Bosnia and Herzegovina         60.9
## 10561                 2015-01-01   Bosnia and Herzegovina         78.2
## 10562                 2010-01-01   Bosnia and Herzegovina         75.3
## 10563                 2005-01-01   Bosnia and Herzegovina         72.1
## 10564                 2000-01-01   Bosnia and Herzegovina         68.8
## 10565                 1995-01-01   Bosnia and Herzegovina         62.1
## 10566                 1990-01-01   Bosnia and Herzegovina         60.9
## 10567                 2015-01-01   Bosnia and Herzegovina         78.2
## 10568                 2010-01-01   Bosnia and Herzegovina         75.3
## 10569                 2005-01-01   Bosnia and Herzegovina         72.1
## 10570                 2000-01-01   Bosnia and Herzegovina         68.8
## 10571                 1995-01-01   Bosnia and Herzegovina         62.1
## 10572                 1990-01-01   Bosnia and Herzegovina         60.9
## 10573                 2015-01-01   Bosnia and Herzegovina         78.2
## 10574                 2010-01-01   Bosnia and Herzegovina         75.3
## 10575                 2005-01-01   Bosnia and Herzegovina         72.1
## 10576                 2000-01-01   Bosnia and Herzegovina         68.8
## 10577                 1995-01-01   Bosnia and Herzegovina         62.1
## 10578                 1990-01-01   Bosnia and Herzegovina         60.9
## 10579                 2015-01-01   Bosnia and Herzegovina         78.2
## 10580                 2010-01-01   Bosnia and Herzegovina         75.3
## 10581                 2005-01-01   Bosnia and Herzegovina         72.1
## 10582                 2000-01-01   Bosnia and Herzegovina         68.8
## 10583                 1995-01-01   Bosnia and Herzegovina         62.1
## 10584                 1990-01-01   Bosnia and Herzegovina         60.9
## 10585                 2015-01-01   Bosnia and Herzegovina         78.2
## 10586                 2010-01-01   Bosnia and Herzegovina         75.3
## 10587                 2005-01-01   Bosnia and Herzegovina         72.1
## 10588                 2000-01-01   Bosnia and Herzegovina         68.8
## 10589                 1995-01-01   Bosnia and Herzegovina         62.1
## 10590                 1990-01-01   Bosnia and Herzegovina         60.9
## 10591                 2015-01-01   Bosnia and Herzegovina         78.2
## 10592                 2010-01-01   Bosnia and Herzegovina         75.3
## 10593                 2005-01-01   Bosnia and Herzegovina         72.1
## 10594                 2000-01-01   Bosnia and Herzegovina         68.8
## 10595                 1995-01-01   Bosnia and Herzegovina         62.1
## 10596                 1990-01-01   Bosnia and Herzegovina         60.9
## 10597                 2015-01-01   Bosnia and Herzegovina         78.2
## 10598                 2010-01-01   Bosnia and Herzegovina         75.3
## 10599                 2005-01-01   Bosnia and Herzegovina         72.1
## 10600                 2000-01-01   Bosnia and Herzegovina         68.8
## 10601                 1995-01-01   Bosnia and Herzegovina         62.1
## 10602                 1990-01-01   Bosnia and Herzegovina         60.9
## 10603                 2015-01-01   Bosnia and Herzegovina         78.2
## 10604                 2010-01-01   Bosnia and Herzegovina         75.3
## 10605                 2005-01-01   Bosnia and Herzegovina         72.1
## 10606                 2000-01-01   Bosnia and Herzegovina         68.8
## 10607                 1995-01-01   Bosnia and Herzegovina         62.1
## 10608                 1990-01-01   Bosnia and Herzegovina         60.9
## 10609                 2015-01-01   Bosnia and Herzegovina         78.2
## 10610                 2010-01-01   Bosnia and Herzegovina         75.3
## 10611                 2005-01-01   Bosnia and Herzegovina         72.1
## 10612                 2000-01-01   Bosnia and Herzegovina         68.8
## 10613                 1995-01-01   Bosnia and Herzegovina         62.1
## 10614                 1990-01-01   Bosnia and Herzegovina         60.9
## 10615                 2015-01-01   Bosnia and Herzegovina         78.2
## 10616                 2010-01-01   Bosnia and Herzegovina         75.3
## 10617                 2005-01-01   Bosnia and Herzegovina         72.1
## 10618                 2000-01-01   Bosnia and Herzegovina         68.8
## 10619                 1995-01-01   Bosnia and Herzegovina         62.1
## 10620                 1990-01-01   Bosnia and Herzegovina         60.9
## 10621                 2015-01-01   Bosnia and Herzegovina         78.2
## 10622                 2010-01-01   Bosnia and Herzegovina         75.3
## 10623                 2005-01-01   Bosnia and Herzegovina         72.1
## 10624                 2000-01-01   Bosnia and Herzegovina         68.8
## 10625                 1995-01-01   Bosnia and Herzegovina         62.1
## 10626                 1990-01-01   Bosnia and Herzegovina         60.9
## 10627                 2015-01-01   Bosnia and Herzegovina         78.2
## 10628                 2010-01-01   Bosnia and Herzegovina         75.3
## 10629                 2005-01-01   Bosnia and Herzegovina         72.1
## 10630                 2000-01-01   Bosnia and Herzegovina         68.8
## 10631                 1995-01-01   Bosnia and Herzegovina         62.1
## 10632                 1990-01-01   Bosnia and Herzegovina         60.9
## 10633                 2015-01-01   Bosnia and Herzegovina         78.2
## 10634                 2010-01-01   Bosnia and Herzegovina         75.3
## 10635                 2005-01-01   Bosnia and Herzegovina         72.1
## 10636                 2000-01-01   Bosnia and Herzegovina         68.8
## 10637                 1995-01-01   Bosnia and Herzegovina         62.1
## 10638                 1990-01-01   Bosnia and Herzegovina         60.9
## 10639                 2015-01-01   Bosnia and Herzegovina         78.2
## 10640                 2010-01-01   Bosnia and Herzegovina         75.3
## 10641                 2005-01-01   Bosnia and Herzegovina         72.1
## 10642                 2000-01-01   Bosnia and Herzegovina         68.8
## 10643                 1995-01-01   Bosnia and Herzegovina         62.1
## 10644                 1990-01-01   Bosnia and Herzegovina         60.9
## 10645                 2015-01-01   Bosnia and Herzegovina         78.2
## 10646                 2010-01-01   Bosnia and Herzegovina         75.3
## 10647                 2005-01-01   Bosnia and Herzegovina         72.1
## 10648                 2000-01-01   Bosnia and Herzegovina         68.8
## 10649                 1995-01-01   Bosnia and Herzegovina         62.1
## 10650                 1990-01-01   Bosnia and Herzegovina         60.9
## 10651                 2015-01-01   Bosnia and Herzegovina         78.2
## 10652                 2010-01-01   Bosnia and Herzegovina         75.3
## 10653                 2005-01-01   Bosnia and Herzegovina         72.1
## 10654                 2000-01-01   Bosnia and Herzegovina         68.8
## 10655                 1995-01-01   Bosnia and Herzegovina         62.1
## 10656                 1990-01-01   Bosnia and Herzegovina         60.9
## 10657                 2015-01-01   Bosnia and Herzegovina         78.2
## 10658                 2010-01-01   Bosnia and Herzegovina         75.3
## 10659                 2005-01-01   Bosnia and Herzegovina         72.1
## 10660                 2000-01-01   Bosnia and Herzegovina         68.8
## 10661                 1995-01-01   Bosnia and Herzegovina         62.1
## 10662                 1990-01-01   Bosnia and Herzegovina         60.9
## 10663                 2015-01-01   Bosnia and Herzegovina         78.2
## 10664                 2010-01-01   Bosnia and Herzegovina         75.3
## 10665                 2005-01-01   Bosnia and Herzegovina         72.1
## 10666                 2000-01-01   Bosnia and Herzegovina         68.8
## 10667                 1995-01-01   Bosnia and Herzegovina         62.1
## 10668                 1990-01-01   Bosnia and Herzegovina         60.9
## 10669                 2015-01-01   Bosnia and Herzegovina         78.2
## 10670                 2010-01-01   Bosnia and Herzegovina         75.3
## 10671                 2005-01-01   Bosnia and Herzegovina         72.1
## 10672                 2000-01-01   Bosnia and Herzegovina         68.8
## 10673                 1995-01-01   Bosnia and Herzegovina         62.1
## 10674                 1990-01-01   Bosnia and Herzegovina         60.9
## 10675                 2015-01-01   Bosnia and Herzegovina         78.2
## 10676                 2010-01-01   Bosnia and Herzegovina         75.3
## 10677                 2005-01-01   Bosnia and Herzegovina         72.1
## 10678                 2000-01-01   Bosnia and Herzegovina         68.8
## 10679                 1995-01-01   Bosnia and Herzegovina         62.1
## 10680                 1990-01-01   Bosnia and Herzegovina         60.9
## 10681                 2015-01-01   Bosnia and Herzegovina         78.2
## 10682                 2010-01-01   Bosnia and Herzegovina         75.3
## 10683                 2005-01-01   Bosnia and Herzegovina         72.1
## 10684                 2000-01-01   Bosnia and Herzegovina         68.8
## 10685                 1995-01-01   Bosnia and Herzegovina         62.1
## 10686                 1990-01-01   Bosnia and Herzegovina         60.9
## 10687                 2015-01-01   Bosnia and Herzegovina         78.2
## 10688                 2010-01-01   Bosnia and Herzegovina         75.3
## 10689                 2005-01-01   Bosnia and Herzegovina         72.1
## 10690                 2000-01-01   Bosnia and Herzegovina         68.8
## 10691                 1995-01-01   Bosnia and Herzegovina         62.1
## 10692                 1990-01-01   Bosnia and Herzegovina         60.9
## 10693                 2015-01-01   Bosnia and Herzegovina         78.2
## 10694                 2010-01-01   Bosnia and Herzegovina         75.3
## 10695                 2005-01-01   Bosnia and Herzegovina         72.1
## 10696                 2000-01-01   Bosnia and Herzegovina         68.8
## 10697                 1995-01-01   Bosnia and Herzegovina         62.1
## 10698                 1990-01-01   Bosnia and Herzegovina         60.9
## 10699                 2015-01-01   Bosnia and Herzegovina         78.2
## 10700                 2010-01-01   Bosnia and Herzegovina         75.3
## 10701                 2005-01-01   Bosnia and Herzegovina         72.1
## 10702                 2000-01-01   Bosnia and Herzegovina         68.8
## 10703                 1995-01-01   Bosnia and Herzegovina         62.1
## 10704                 1990-01-01   Bosnia and Herzegovina         60.9
## 10705                 2015-01-01   Bosnia and Herzegovina         78.2
## 10706                 2010-01-01   Bosnia and Herzegovina         75.3
## 10707                 2005-01-01   Bosnia and Herzegovina         72.1
## 10708                 2000-01-01   Bosnia and Herzegovina         68.8
## 10709                 1995-01-01   Bosnia and Herzegovina         62.1
## 10710                 1990-01-01   Bosnia and Herzegovina         60.9
## 10711                 2015-01-01   Bosnia and Herzegovina         78.2
## 10712                 2010-01-01   Bosnia and Herzegovina         75.3
## 10713                 2005-01-01   Bosnia and Herzegovina         72.1
## 10714                 2000-01-01   Bosnia and Herzegovina         68.8
## 10715                 1995-01-01   Bosnia and Herzegovina         62.1
## 10716                 1990-01-01   Bosnia and Herzegovina         60.9
## 10717                 2015-01-01   Bosnia and Herzegovina         78.2
## 10718                 2010-01-01   Bosnia and Herzegovina         75.3
## 10719                 2005-01-01   Bosnia and Herzegovina         72.1
## 10720                 2000-01-01   Bosnia and Herzegovina         68.8
## 10721                 1995-01-01   Bosnia and Herzegovina         62.1
## 10722                 1990-01-01   Bosnia and Herzegovina         60.9
## 10723                 2015-01-01   Bosnia and Herzegovina         78.2
## 10724                 2010-01-01   Bosnia and Herzegovina         75.3
## 10725                 2005-01-01   Bosnia and Herzegovina         72.1
## 10726                 2000-01-01   Bosnia and Herzegovina         68.8
## 10727                 1995-01-01   Bosnia and Herzegovina         62.1
## 10728                 1990-01-01   Bosnia and Herzegovina         60.9
## 10729                 2015-01-01   Bosnia and Herzegovina         78.2
## 10730                 2010-01-01   Bosnia and Herzegovina         75.3
## 10731                 2005-01-01   Bosnia and Herzegovina         72.1
## 10732                 2000-01-01   Bosnia and Herzegovina         68.8
## 10733                 1995-01-01   Bosnia and Herzegovina         62.1
## 10734                 1990-01-01   Bosnia and Herzegovina         60.9
## 10735                 2015-01-01   Bosnia and Herzegovina         78.2
## 10736                 2010-01-01   Bosnia and Herzegovina         75.3
## 10737                 2005-01-01   Bosnia and Herzegovina         72.1
## 10738                 2000-01-01   Bosnia and Herzegovina         68.8
## 10739                 1995-01-01   Bosnia and Herzegovina         62.1
## 10740                 1990-01-01   Bosnia and Herzegovina         60.9
## 10741                 2015-01-01   Bosnia and Herzegovina         78.2
## 10742                 2010-01-01   Bosnia and Herzegovina         75.3
## 10743                 2005-01-01   Bosnia and Herzegovina         72.1
## 10744                 2000-01-01   Bosnia and Herzegovina         68.8
## 10745                 1995-01-01   Bosnia and Herzegovina         62.1
## 10746                 1990-01-01   Bosnia and Herzegovina         60.9
## 10747                 2015-01-01   Bosnia and Herzegovina         78.2
## 10748                 2010-01-01   Bosnia and Herzegovina         75.3
## 10749                 2005-01-01   Bosnia and Herzegovina         72.1
## 10750                 2000-01-01   Bosnia and Herzegovina         68.8
## 10751                 1995-01-01   Bosnia and Herzegovina         62.1
## 10752                 1990-01-01   Bosnia and Herzegovina         60.9
## 10753                 2015-01-01   Bosnia and Herzegovina         78.2
## 10754                 2010-01-01   Bosnia and Herzegovina         75.3
## 10755                 2005-01-01   Bosnia and Herzegovina         72.1
## 10756                 2000-01-01   Bosnia and Herzegovina         68.8
## 10757                 1995-01-01   Bosnia and Herzegovina         62.1
## 10758                 1990-01-01   Bosnia and Herzegovina         60.9
## 10759                 2015-01-01   Bosnia and Herzegovina         78.2
## 10760                 2010-01-01   Bosnia and Herzegovina         75.3
## 10761                 2005-01-01   Bosnia and Herzegovina         72.1
## 10762                 2000-01-01   Bosnia and Herzegovina         68.8
## 10763                 1995-01-01   Bosnia and Herzegovina         62.1
## 10764                 1990-01-01   Bosnia and Herzegovina         60.9
## 10765                 2015-01-01   Bosnia and Herzegovina         78.2
## 10766                 2010-01-01   Bosnia and Herzegovina         75.3
## 10767                 2005-01-01   Bosnia and Herzegovina         72.1
## 10768                 2000-01-01   Bosnia and Herzegovina         68.8
## 10769                 1995-01-01   Bosnia and Herzegovina         62.1
## 10770                 1990-01-01   Bosnia and Herzegovina         60.9
## 10771                 2015-01-01   Bosnia and Herzegovina         78.2
## 10772                 2010-01-01   Bosnia and Herzegovina         75.3
## 10773                 2005-01-01   Bosnia and Herzegovina         72.1
## 10774                 2000-01-01   Bosnia and Herzegovina         68.8
## 10775                 1995-01-01   Bosnia and Herzegovina         62.1
## 10776                 1990-01-01   Bosnia and Herzegovina         60.9
## 10777                 2015-01-01   Bosnia and Herzegovina         78.2
## 10778                 2010-01-01   Bosnia and Herzegovina         75.3
## 10779                 2005-01-01   Bosnia and Herzegovina         72.1
## 10780                 2000-01-01   Bosnia and Herzegovina         68.8
## 10781                 1995-01-01   Bosnia and Herzegovina         62.1
## 10782                 1990-01-01   Bosnia and Herzegovina         60.9
## 10783                 2015-01-01   Bosnia and Herzegovina         78.2
## 10784                 2010-01-01   Bosnia and Herzegovina         75.3
## 10785                 2005-01-01   Bosnia and Herzegovina         72.1
## 10786                 2000-01-01   Bosnia and Herzegovina         68.8
## 10787                 1995-01-01   Bosnia and Herzegovina         62.1
## 10788                 1990-01-01   Bosnia and Herzegovina         60.9
## 10789                 2015-01-01   Bosnia and Herzegovina         78.2
## 10790                 2010-01-01   Bosnia and Herzegovina         75.3
## 10791                 2005-01-01   Bosnia and Herzegovina         72.1
## 10792                 2000-01-01   Bosnia and Herzegovina         68.8
## 10793                 1995-01-01   Bosnia and Herzegovina         62.1
## 10794                 1990-01-01   Bosnia and Herzegovina         60.9
## 10795                 2015-01-01   Bosnia and Herzegovina         78.2
## 10796                 2010-01-01   Bosnia and Herzegovina         75.3
## 10797                 2005-01-01   Bosnia and Herzegovina         72.1
## 10798                 2000-01-01   Bosnia and Herzegovina         68.8
## 10799                 1995-01-01   Bosnia and Herzegovina         62.1
## 10800                 1990-01-01   Bosnia and Herzegovina         60.9
## 10801                 2015-01-01   Bosnia and Herzegovina         78.2
## 10802                 2010-01-01   Bosnia and Herzegovina         75.3
## 10803                 2005-01-01   Bosnia and Herzegovina         72.1
## 10804                 2000-01-01   Bosnia and Herzegovina         68.8
## 10805                 1995-01-01   Bosnia and Herzegovina         62.1
## 10806                 1990-01-01   Bosnia and Herzegovina         60.9
## 10807                 2015-01-01   Bosnia and Herzegovina         78.2
## 10808                 2010-01-01   Bosnia and Herzegovina         75.3
## 10809                 2005-01-01   Bosnia and Herzegovina         72.1
## 10810                 2000-01-01   Bosnia and Herzegovina         68.8
## 10811                 1995-01-01   Bosnia and Herzegovina         62.1
## 10812                 1990-01-01   Bosnia and Herzegovina         60.9
## 10813                 2015-01-01   Bosnia and Herzegovina         78.2
## 10814                 2010-01-01   Bosnia and Herzegovina         75.3
## 10815                 2005-01-01   Bosnia and Herzegovina         72.1
## 10816                 2000-01-01   Bosnia and Herzegovina         68.8
## 10817                 1995-01-01   Bosnia and Herzegovina         62.1
## 10818                 1990-01-01   Bosnia and Herzegovina         60.9
## 10819                 2015-01-01   Bosnia and Herzegovina         78.2
## 10820                 2010-01-01   Bosnia and Herzegovina         75.3
## 10821                 2005-01-01   Bosnia and Herzegovina         72.1
## 10822                 2000-01-01   Bosnia and Herzegovina         68.8
## 10823                 1995-01-01   Bosnia and Herzegovina         62.1
## 10824                 1990-01-01   Bosnia and Herzegovina         60.9
## 10825                 2015-01-01   Bosnia and Herzegovina         78.2
## 10826                 2010-01-01   Bosnia and Herzegovina         75.3
## 10827                 2005-01-01   Bosnia and Herzegovina         72.1
## 10828                 2000-01-01   Bosnia and Herzegovina         68.8
## 10829                 1995-01-01   Bosnia and Herzegovina         62.1
## 10830                 1990-01-01   Bosnia and Herzegovina         60.9
## 10831                 2015-01-01   Bosnia and Herzegovina         78.2
## 10832                 2010-01-01   Bosnia and Herzegovina         75.3
## 10833                 2005-01-01   Bosnia and Herzegovina         72.1
## 10834                 2000-01-01   Bosnia and Herzegovina         68.8
## 10835                 1995-01-01   Bosnia and Herzegovina         62.1
## 10836                 1990-01-01   Bosnia and Herzegovina         60.9
## 10837                 2015-01-01   Bosnia and Herzegovina         78.2
## 10838                 2010-01-01   Bosnia and Herzegovina         75.3
## 10839                 2005-01-01   Bosnia and Herzegovina         72.1
## 10840                 2000-01-01   Bosnia and Herzegovina         68.8
## 10841                 1995-01-01   Bosnia and Herzegovina         62.1
## 10842                 1990-01-01   Bosnia and Herzegovina         60.9
## 10843                 2015-01-01   Bosnia and Herzegovina         78.2
## 10844                 2010-01-01   Bosnia and Herzegovina         75.3
## 10845                 2005-01-01   Bosnia and Herzegovina         72.1
## 10846                 2000-01-01   Bosnia and Herzegovina         68.8
## 10847                 1995-01-01   Bosnia and Herzegovina         62.1
## 10848                 1990-01-01   Bosnia and Herzegovina         60.9
## 10849                 2015-01-01   Bosnia and Herzegovina         78.2
## 10850                 2010-01-01   Bosnia and Herzegovina         75.3
## 10851                 2005-01-01   Bosnia and Herzegovina         72.1
## 10852                 2000-01-01   Bosnia and Herzegovina         68.8
## 10853                 1995-01-01   Bosnia and Herzegovina         62.1
## 10854                 1990-01-01   Bosnia and Herzegovina         60.9
## 10855                 2015-01-01   Bosnia and Herzegovina         78.2
## 10856                 2010-01-01   Bosnia and Herzegovina         75.3
## 10857                 2005-01-01   Bosnia and Herzegovina         72.1
## 10858                 2000-01-01   Bosnia and Herzegovina         68.8
## 10859                 1995-01-01   Bosnia and Herzegovina         62.1
## 10860                 1990-01-01   Bosnia and Herzegovina         60.9
## 10861                 2015-01-01   Bosnia and Herzegovina         78.2
## 10862                 2010-01-01   Bosnia and Herzegovina         75.3
## 10863                 2005-01-01   Bosnia and Herzegovina         72.1
## 10864                 2000-01-01   Bosnia and Herzegovina         68.8
## 10865                 1995-01-01   Bosnia and Herzegovina         62.1
## 10866                 1990-01-01   Bosnia and Herzegovina         60.9
## 10867                 2015-01-01   Bosnia and Herzegovina         78.2
## 10868                 2010-01-01   Bosnia and Herzegovina         75.3
## 10869                 2005-01-01   Bosnia and Herzegovina         72.1
## 10870                 2000-01-01   Bosnia and Herzegovina         68.8
## 10871                 1995-01-01   Bosnia and Herzegovina         62.1
## 10872                 1990-01-01   Bosnia and Herzegovina         60.9
## 10873                 2015-01-01   Bosnia and Herzegovina         78.2
## 10874                 2010-01-01   Bosnia and Herzegovina         75.3
## 10875                 2005-01-01   Bosnia and Herzegovina         72.1
## 10876                 2000-01-01   Bosnia and Herzegovina         68.8
## 10877                 1995-01-01   Bosnia and Herzegovina         62.1
## 10878                 1990-01-01   Bosnia and Herzegovina         60.9
## 10879                 2015-01-01   Bosnia and Herzegovina         78.2
## 10880                 2010-01-01   Bosnia and Herzegovina         75.3
## 10881                 2005-01-01   Bosnia and Herzegovina         72.1
## 10882                 2000-01-01   Bosnia and Herzegovina         68.8
## 10883                 1995-01-01   Bosnia and Herzegovina         62.1
## 10884                 1990-01-01   Bosnia and Herzegovina         60.9
## 10885                 2015-01-01   Bosnia and Herzegovina         78.2
## 10886                 2010-01-01   Bosnia and Herzegovina         75.3
## 10887                 2005-01-01   Bosnia and Herzegovina         72.1
## 10888                 2000-01-01   Bosnia and Herzegovina         68.8
## 10889                 1995-01-01   Bosnia and Herzegovina         62.1
## 10890                 1990-01-01   Bosnia and Herzegovina         60.9
## 10891                 2015-01-01   Bosnia and Herzegovina         78.2
## 10892                 2010-01-01   Bosnia and Herzegovina         75.3
## 10893                 2005-01-01   Bosnia and Herzegovina         72.1
## 10894                 2000-01-01   Bosnia and Herzegovina         68.8
## 10895                 1995-01-01   Bosnia and Herzegovina         62.1
## 10896                 1990-01-01   Bosnia and Herzegovina         60.9
## 10897                 2015-01-01   Bosnia and Herzegovina         78.2
## 10898                 2010-01-01   Bosnia and Herzegovina         75.3
## 10899                 2005-01-01   Bosnia and Herzegovina         72.1
## 10900                 2000-01-01   Bosnia and Herzegovina         68.8
## 10901                 1995-01-01   Bosnia and Herzegovina         62.1
## 10902                 1990-01-01   Bosnia and Herzegovina         60.9
## 10903                 2015-01-01   Bosnia and Herzegovina         78.2
## 10904                 2010-01-01   Bosnia and Herzegovina         75.3
## 10905                 2005-01-01   Bosnia and Herzegovina         72.1
## 10906                 2000-01-01   Bosnia and Herzegovina         68.8
## 10907                 1995-01-01   Bosnia and Herzegovina         62.1
## 10908                 1990-01-01   Bosnia and Herzegovina         60.9
## 10909                 2015-01-01   Bosnia and Herzegovina         78.2
## 10910                 2010-01-01   Bosnia and Herzegovina         75.3
## 10911                 2005-01-01   Bosnia and Herzegovina         72.1
## 10912                 2000-01-01   Bosnia and Herzegovina         68.8
## 10913                 1995-01-01   Bosnia and Herzegovina         62.1
## 10914                 1990-01-01   Bosnia and Herzegovina         60.9
## 10915                 2015-01-01   Bosnia and Herzegovina         78.2
## 10916                 2010-01-01   Bosnia and Herzegovina         75.3
## 10917                 2005-01-01   Bosnia and Herzegovina         72.1
## 10918                 2000-01-01   Bosnia and Herzegovina         68.8
## 10919                 1995-01-01   Bosnia and Herzegovina         62.1
## 10920                 1990-01-01   Bosnia and Herzegovina         60.9
## 10921                 2015-01-01   Bosnia and Herzegovina         78.2
## 10922                 2010-01-01   Bosnia and Herzegovina         75.3
## 10923                 2005-01-01   Bosnia and Herzegovina         72.1
## 10924                 2000-01-01   Bosnia and Herzegovina         68.8
## 10925                 1995-01-01   Bosnia and Herzegovina         62.1
## 10926                 1990-01-01   Bosnia and Herzegovina         60.9
## 10927                 2015-01-01   Bosnia and Herzegovina         78.2
## 10928                 2010-01-01   Bosnia and Herzegovina         75.3
## 10929                 2005-01-01   Bosnia and Herzegovina         72.1
## 10930                 2000-01-01   Bosnia and Herzegovina         68.8
## 10931                 1995-01-01   Bosnia and Herzegovina         62.1
## 10932                 1990-01-01   Bosnia and Herzegovina         60.9
## 10933                 2015-01-01   Bosnia and Herzegovina         78.2
## 10934                 2010-01-01   Bosnia and Herzegovina         75.3
## 10935                 2005-01-01   Bosnia and Herzegovina         72.1
## 10936                 2000-01-01   Bosnia and Herzegovina         68.8
## 10937                 1995-01-01   Bosnia and Herzegovina         62.1
## 10938                 1990-01-01   Bosnia and Herzegovina         60.9
## 10939                 2015-01-01   Bosnia and Herzegovina         78.2
## 10940                 2010-01-01   Bosnia and Herzegovina         75.3
## 10941                 2005-01-01   Bosnia and Herzegovina         72.1
## 10942                 2000-01-01   Bosnia and Herzegovina         68.8
## 10943                 1995-01-01   Bosnia and Herzegovina         62.1
## 10944                 1990-01-01   Bosnia and Herzegovina         60.9
## 10945                 2015-01-01   Bosnia and Herzegovina         78.2
## 10946                 2010-01-01   Bosnia and Herzegovina         75.3
## 10947                 2005-01-01   Bosnia and Herzegovina         72.1
## 10948                 2000-01-01   Bosnia and Herzegovina         68.8
## 10949                 1995-01-01   Bosnia and Herzegovina         62.1
## 10950                 1990-01-01   Bosnia and Herzegovina         60.9
## 10951                 2015-01-01   Bosnia and Herzegovina         78.2
## 10952                 2010-01-01   Bosnia and Herzegovina         75.3
## 10953                 2005-01-01   Bosnia and Herzegovina         72.1
## 10954                 2000-01-01   Bosnia and Herzegovina         68.8
## 10955                 1995-01-01   Bosnia and Herzegovina         62.1
## 10956                 1990-01-01   Bosnia and Herzegovina         60.9
## 10957                 2015-01-01   Bosnia and Herzegovina         78.2
## 10958                 2010-01-01   Bosnia and Herzegovina         75.3
## 10959                 2005-01-01   Bosnia and Herzegovina         72.1
## 10960                 2000-01-01   Bosnia and Herzegovina         68.8
## 10961                 1995-01-01   Bosnia and Herzegovina         62.1
## 10962                 1990-01-01   Bosnia and Herzegovina         60.9
## 10963                 2015-01-01   Bosnia and Herzegovina         78.2
## 10964                 2010-01-01   Bosnia and Herzegovina         75.3
## 10965                 2005-01-01   Bosnia and Herzegovina         72.1
## 10966                 2000-01-01   Bosnia and Herzegovina         68.8
## 10967                 1995-01-01   Bosnia and Herzegovina         62.1
## 10968                 1990-01-01   Bosnia and Herzegovina         60.9
## 10969                 2015-01-01   Bosnia and Herzegovina         78.2
## 10970                 2010-01-01   Bosnia and Herzegovina         75.3
## 10971                 2005-01-01   Bosnia and Herzegovina         72.1
## 10972                 2000-01-01   Bosnia and Herzegovina         68.8
## 10973                 1995-01-01   Bosnia and Herzegovina         62.1
## 10974                 1990-01-01   Bosnia and Herzegovina         60.9
## 10975                 2015-01-01   Bosnia and Herzegovina         78.2
## 10976                 2010-01-01   Bosnia and Herzegovina         75.3
## 10977                 2005-01-01   Bosnia and Herzegovina         72.1
## 10978                 2000-01-01   Bosnia and Herzegovina         68.8
## 10979                 1995-01-01   Bosnia and Herzegovina         62.1
## 10980                 1990-01-01   Bosnia and Herzegovina         60.9
## 10981                 2015-01-01   Bosnia and Herzegovina         78.2
## 10982                 2010-01-01   Bosnia and Herzegovina         75.3
## 10983                 2005-01-01   Bosnia and Herzegovina         72.1
## 10984                 2000-01-01   Bosnia and Herzegovina         68.8
## 10985                 1995-01-01   Bosnia and Herzegovina         62.1
## 10986                 1990-01-01   Bosnia and Herzegovina         60.9
## 10987                 2015-01-01   Bosnia and Herzegovina         78.2
## 10988                 2010-01-01   Bosnia and Herzegovina         75.3
## 10989                 2005-01-01   Bosnia and Herzegovina         72.1
## 10990                 2000-01-01   Bosnia and Herzegovina         68.8
## 10991                 1995-01-01   Bosnia and Herzegovina         62.1
## 10992                 1990-01-01   Bosnia and Herzegovina         60.9
## 10993                 2015-01-01   Bosnia and Herzegovina         78.2
## 10994                 2010-01-01   Bosnia and Herzegovina         75.3
## 10995                 2005-01-01   Bosnia and Herzegovina         72.1
## 10996                 2000-01-01   Bosnia and Herzegovina         68.8
## 10997                 1995-01-01   Bosnia and Herzegovina         62.1
## 10998                 1990-01-01   Bosnia and Herzegovina         60.9
## 10999                 2015-01-01   Bosnia and Herzegovina         78.2
## 11000                 2010-01-01   Bosnia and Herzegovina         75.3
## 11001                 2005-01-01   Bosnia and Herzegovina         72.1
## 11002                 2000-01-01   Bosnia and Herzegovina         68.8
## 11003                 1995-01-01   Bosnia and Herzegovina         62.1
## 11004                 1990-01-01   Bosnia and Herzegovina         60.9
## 11005                 2015-01-01   Bosnia and Herzegovina         78.2
## 11006                 2010-01-01   Bosnia and Herzegovina         75.3
## 11007                 2005-01-01   Bosnia and Herzegovina         72.1
## 11008                 2000-01-01   Bosnia and Herzegovina         68.8
## 11009                 1995-01-01   Bosnia and Herzegovina         62.1
## 11010                 1990-01-01   Bosnia and Herzegovina         60.9
## 11011                 2015-01-01   Bosnia and Herzegovina         78.2
## 11012                 2010-01-01   Bosnia and Herzegovina         75.3
## 11013                 2005-01-01   Bosnia and Herzegovina         72.1
## 11014                 2000-01-01   Bosnia and Herzegovina         68.8
## 11015                 1995-01-01   Bosnia and Herzegovina         62.1
## 11016                 1990-01-01   Bosnia and Herzegovina         60.9
## 11017                 2015-01-01   Bosnia and Herzegovina         78.2
## 11018                 2010-01-01   Bosnia and Herzegovina         75.3
## 11019                 2005-01-01   Bosnia and Herzegovina         72.1
## 11020                 2000-01-01   Bosnia and Herzegovina         68.8
## 11021                 1995-01-01   Bosnia and Herzegovina         62.1
## 11022                 1990-01-01   Bosnia and Herzegovina         60.9
## 11023                 2015-01-01   Bosnia and Herzegovina         78.2
## 11024                 2010-01-01   Bosnia and Herzegovina         75.3
## 11025                 2005-01-01   Bosnia and Herzegovina         72.1
## 11026                 2000-01-01   Bosnia and Herzegovina         68.8
## 11027                 1995-01-01   Bosnia and Herzegovina         62.1
## 11028                 1990-01-01   Bosnia and Herzegovina         60.9
## 11029                 2015-01-01   Bosnia and Herzegovina         78.2
## 11030                 2010-01-01   Bosnia and Herzegovina         75.3
## 11031                 2005-01-01   Bosnia and Herzegovina         72.1
## 11032                 2000-01-01   Bosnia and Herzegovina         68.8
## 11033                 1995-01-01   Bosnia and Herzegovina         62.1
## 11034                 1990-01-01   Bosnia and Herzegovina         60.9
## 11035                 2015-01-01   Bosnia and Herzegovina         78.2
## 11036                 2010-01-01   Bosnia and Herzegovina         75.3
## 11037                 2005-01-01   Bosnia and Herzegovina         72.1
## 11038                 2000-01-01   Bosnia and Herzegovina         68.8
## 11039                 1995-01-01   Bosnia and Herzegovina         62.1
## 11040                 1990-01-01   Bosnia and Herzegovina         60.9
## 11041                 2015-01-01   Bosnia and Herzegovina         78.2
## 11042                 2010-01-01   Bosnia and Herzegovina         75.3
## 11043                 2005-01-01   Bosnia and Herzegovina         72.1
## 11044                 2000-01-01   Bosnia and Herzegovina         68.8
## 11045                 1995-01-01   Bosnia and Herzegovina         62.1
## 11046                 1990-01-01   Bosnia and Herzegovina         60.9
## 11047                 2015-01-01   Bosnia and Herzegovina         78.2
## 11048                 2010-01-01   Bosnia and Herzegovina         75.3
## 11049                 2005-01-01   Bosnia and Herzegovina         72.1
## 11050                 2000-01-01   Bosnia and Herzegovina         68.8
## 11051                 1995-01-01   Bosnia and Herzegovina         62.1
## 11052                 1990-01-01   Bosnia and Herzegovina         60.9
## 11053                 2015-01-01   Bosnia and Herzegovina         78.2
## 11054                 2010-01-01   Bosnia and Herzegovina         75.3
## 11055                 2005-01-01   Bosnia and Herzegovina         72.1
## 11056                 2000-01-01   Bosnia and Herzegovina         68.8
## 11057                 1995-01-01   Bosnia and Herzegovina         62.1
## 11058                 1990-01-01   Bosnia and Herzegovina         60.9
## 11059                 2015-01-01   Bosnia and Herzegovina         78.2
## 11060                 2010-01-01   Bosnia and Herzegovina         75.3
## 11061                 2005-01-01   Bosnia and Herzegovina         72.1
## 11062                 2000-01-01   Bosnia and Herzegovina         68.8
## 11063                 1995-01-01   Bosnia and Herzegovina         62.1
## 11064                 1990-01-01   Bosnia and Herzegovina         60.9
## 11065                 2015-01-01   Bosnia and Herzegovina         78.2
## 11066                 2010-01-01   Bosnia and Herzegovina         75.3
## 11067                 2005-01-01   Bosnia and Herzegovina         72.1
## 11068                 2000-01-01   Bosnia and Herzegovina         68.8
## 11069                 1995-01-01   Bosnia and Herzegovina         62.1
## 11070                 1990-01-01   Bosnia and Herzegovina         60.9
## 11071                 2015-01-01   Bosnia and Herzegovina         78.2
## 11072                 2010-01-01   Bosnia and Herzegovina         75.3
## 11073                 2005-01-01   Bosnia and Herzegovina         72.1
## 11074                 2000-01-01   Bosnia and Herzegovina         68.8
## 11075                 1995-01-01   Bosnia and Herzegovina         62.1
## 11076                 1990-01-01   Bosnia and Herzegovina         60.9
## 11077                 2015-01-01   Bosnia and Herzegovina         78.2
## 11078                 2010-01-01   Bosnia and Herzegovina         75.3
## 11079                 2005-01-01   Bosnia and Herzegovina         72.1
## 11080                 2000-01-01   Bosnia and Herzegovina         68.8
## 11081                 1995-01-01   Bosnia and Herzegovina         62.1
## 11082                 1990-01-01   Bosnia and Herzegovina         60.9
## 11083                 2015-01-01   Bosnia and Herzegovina         78.2
## 11084                 2010-01-01   Bosnia and Herzegovina         75.3
## 11085                 2005-01-01   Bosnia and Herzegovina         72.1
## 11086                 2000-01-01   Bosnia and Herzegovina         68.8
## 11087                 1995-01-01   Bosnia and Herzegovina         62.1
## 11088                 1990-01-01   Bosnia and Herzegovina         60.9
## 11089                 2015-01-01   Bosnia and Herzegovina         78.2
## 11090                 2010-01-01   Bosnia and Herzegovina         75.3
## 11091                 2005-01-01   Bosnia and Herzegovina         72.1
## 11092                 2000-01-01   Bosnia and Herzegovina         68.8
## 11093                 1995-01-01   Bosnia and Herzegovina         62.1
## 11094                 1990-01-01   Bosnia and Herzegovina         60.9
## 11095                 2015-01-01   Bosnia and Herzegovina         78.2
## 11096                 2010-01-01   Bosnia and Herzegovina         75.3
## 11097                 2005-01-01   Bosnia and Herzegovina         72.1
## 11098                 2000-01-01   Bosnia and Herzegovina         68.8
## 11099                 1995-01-01   Bosnia and Herzegovina         62.1
## 11100                 1990-01-01   Bosnia and Herzegovina         60.9
## 11101                 2015-01-01   Bosnia and Herzegovina         78.2
## 11102                 2010-01-01   Bosnia and Herzegovina         75.3
## 11103                 2005-01-01   Bosnia and Herzegovina         72.1
## 11104                 2000-01-01   Bosnia and Herzegovina         68.8
## 11105                 1995-01-01   Bosnia and Herzegovina         62.1
## 11106                 1990-01-01   Bosnia and Herzegovina         60.9
## 11107                 2015-01-01   Bosnia and Herzegovina         78.2
## 11108                 2010-01-01   Bosnia and Herzegovina         75.3
## 11109                 2005-01-01   Bosnia and Herzegovina         72.1
## 11110                 2000-01-01   Bosnia and Herzegovina         68.8
## 11111                 1995-01-01   Bosnia and Herzegovina         62.1
## 11112                 1990-01-01   Bosnia and Herzegovina         60.9
## 11113                 2015-01-01   Bosnia and Herzegovina         78.2
## 11114                 2010-01-01   Bosnia and Herzegovina         75.3
## 11115                 2005-01-01   Bosnia and Herzegovina         72.1
## 11116                 2000-01-01   Bosnia and Herzegovina         68.8
## 11117                 1995-01-01   Bosnia and Herzegovina         62.1
## 11118                 1990-01-01   Bosnia and Herzegovina         60.9
## 11119                 2015-01-01   Bosnia and Herzegovina         78.2
## 11120                 2010-01-01   Bosnia and Herzegovina         75.3
## 11121                 2005-01-01   Bosnia and Herzegovina         72.1
## 11122                 2000-01-01   Bosnia and Herzegovina         68.8
## 11123                 1995-01-01   Bosnia and Herzegovina         62.1
## 11124                 1990-01-01   Bosnia and Herzegovina         60.9
## 11125                 2015-01-01   Bosnia and Herzegovina         78.2
## 11126                 2010-01-01   Bosnia and Herzegovina         75.3
## 11127                 2005-01-01   Bosnia and Herzegovina         72.1
## 11128                 2000-01-01   Bosnia and Herzegovina         68.8
## 11129                 1995-01-01   Bosnia and Herzegovina         62.1
## 11130                 1990-01-01   Bosnia and Herzegovina         60.9
## 11131                 2015-01-01   Bosnia and Herzegovina         78.2
## 11132                 2010-01-01   Bosnia and Herzegovina         75.3
## 11133                 2005-01-01   Bosnia and Herzegovina         72.1
## 11134                 2000-01-01   Bosnia and Herzegovina         68.8
## 11135                 1995-01-01   Bosnia and Herzegovina         62.1
## 11136                 1990-01-01   Bosnia and Herzegovina         60.9
## 11137                 2015-01-01   Bosnia and Herzegovina         78.2
## 11138                 2010-01-01   Bosnia and Herzegovina         75.3
## 11139                 2005-01-01   Bosnia and Herzegovina         72.1
## 11140                 2000-01-01   Bosnia and Herzegovina         68.8
## 11141                 1995-01-01   Bosnia and Herzegovina         62.1
## 11142                 1990-01-01   Bosnia and Herzegovina         60.9
## 11143                 2015-01-01   Bosnia and Herzegovina         78.2
## 11144                 2010-01-01   Bosnia and Herzegovina         75.3
## 11145                 2005-01-01   Bosnia and Herzegovina         72.1
## 11146                 2000-01-01   Bosnia and Herzegovina         68.8
## 11147                 1995-01-01   Bosnia and Herzegovina         62.1
## 11148                 1990-01-01   Bosnia and Herzegovina         60.9
## 11149                 2015-01-01   Bosnia and Herzegovina         78.2
## 11150                 2010-01-01   Bosnia and Herzegovina         75.3
## 11151                 2005-01-01   Bosnia and Herzegovina         72.1
## 11152                 2000-01-01   Bosnia and Herzegovina         68.8
## 11153                 1995-01-01   Bosnia and Herzegovina         62.1
## 11154                 1990-01-01   Bosnia and Herzegovina         60.9
## 11155                 2015-01-01   Bosnia and Herzegovina         78.2
## 11156                 2010-01-01   Bosnia and Herzegovina         75.3
## 11157                 2005-01-01   Bosnia and Herzegovina         72.1
## 11158                 2000-01-01   Bosnia and Herzegovina         68.8
## 11159                 1995-01-01   Bosnia and Herzegovina         62.1
## 11160                 1990-01-01   Bosnia and Herzegovina         60.9
## 11161                 2015-01-01   Bosnia and Herzegovina         78.2
## 11162                 2010-01-01   Bosnia and Herzegovina         75.3
## 11163                 2005-01-01   Bosnia and Herzegovina         72.1
## 11164                 2000-01-01   Bosnia and Herzegovina         68.8
## 11165                 1995-01-01   Bosnia and Herzegovina         62.1
## 11166                 1990-01-01   Bosnia and Herzegovina         60.9
## 11167                 2015-01-01   Bosnia and Herzegovina         78.2
## 11168                 2010-01-01   Bosnia and Herzegovina         75.3
## 11169                 2005-01-01   Bosnia and Herzegovina         72.1
## 11170                 2000-01-01   Bosnia and Herzegovina         68.8
## 11171                 1995-01-01   Bosnia and Herzegovina         62.1
## 11172                 1990-01-01   Bosnia and Herzegovina         60.9
## 11173                 2015-01-01   Bosnia and Herzegovina         78.2
## 11174                 2010-01-01   Bosnia and Herzegovina         75.3
## 11175                 2005-01-01   Bosnia and Herzegovina         72.1
## 11176                 2000-01-01   Bosnia and Herzegovina         68.8
## 11177                 1995-01-01   Bosnia and Herzegovina         62.1
## 11178                 1990-01-01   Bosnia and Herzegovina         60.9
## 11179                 2015-01-01   Bosnia and Herzegovina         78.2
## 11180                 2010-01-01   Bosnia and Herzegovina         75.3
## 11181                 2005-01-01   Bosnia and Herzegovina         72.1
## 11182                 2000-01-01   Bosnia and Herzegovina         68.8
## 11183                 1995-01-01   Bosnia and Herzegovina         62.1
## 11184                 1990-01-01   Bosnia and Herzegovina         60.9
## 11185                 2015-01-01   Bosnia and Herzegovina         78.2
## 11186                 2010-01-01   Bosnia and Herzegovina         75.3
## 11187                 2005-01-01   Bosnia and Herzegovina         72.1
## 11188                 2000-01-01   Bosnia and Herzegovina         68.8
## 11189                 1995-01-01   Bosnia and Herzegovina         62.1
## 11190                 1990-01-01   Bosnia and Herzegovina         60.9
## 11191                 2015-01-01   Bosnia and Herzegovina         78.2
## 11192                 2010-01-01   Bosnia and Herzegovina         75.3
## 11193                 2005-01-01   Bosnia and Herzegovina         72.1
## 11194                 2000-01-01   Bosnia and Herzegovina         68.8
## 11195                 1995-01-01   Bosnia and Herzegovina         62.1
## 11196                 1990-01-01   Bosnia and Herzegovina         60.9
## 11197                 2015-01-01   Bosnia and Herzegovina         78.2
## 11198                 2010-01-01   Bosnia and Herzegovina         75.3
## 11199                 2005-01-01   Bosnia and Herzegovina         72.1
## 11200                 2000-01-01   Bosnia and Herzegovina         68.8
## 11201                 1995-01-01   Bosnia and Herzegovina         62.1
## 11202                 1990-01-01   Bosnia and Herzegovina         60.9
## 11203                 2015-01-01   Bosnia and Herzegovina         78.2
## 11204                 2010-01-01   Bosnia and Herzegovina         75.3
## 11205                 2005-01-01   Bosnia and Herzegovina         72.1
## 11206                 2000-01-01   Bosnia and Herzegovina         68.8
## 11207                 1995-01-01   Bosnia and Herzegovina         62.1
## 11208                 1990-01-01   Bosnia and Herzegovina         60.9
## 11209                 2015-01-01   Bosnia and Herzegovina         78.2
## 11210                 2010-01-01   Bosnia and Herzegovina         75.3
## 11211                 2005-01-01   Bosnia and Herzegovina         72.1
## 11212                 2000-01-01   Bosnia and Herzegovina         68.8
## 11213                 1995-01-01   Bosnia and Herzegovina         62.1
## 11214                 1990-01-01   Bosnia and Herzegovina         60.9
## 11215                 2015-01-01   Bosnia and Herzegovina         78.2
## 11216                 2010-01-01   Bosnia and Herzegovina         75.3
## 11217                 2005-01-01   Bosnia and Herzegovina         72.1
## 11218                 2000-01-01   Bosnia and Herzegovina         68.8
## 11219                 1995-01-01   Bosnia and Herzegovina         62.1
## 11220                 1990-01-01   Bosnia and Herzegovina         60.9
## 11221                 2015-01-01   Bosnia and Herzegovina         78.2
## 11222                 2010-01-01   Bosnia and Herzegovina         75.3
## 11223                 2005-01-01   Bosnia and Herzegovina         72.1
## 11224                 2000-01-01   Bosnia and Herzegovina         68.8
## 11225                 1995-01-01   Bosnia and Herzegovina         62.1
## 11226                 1990-01-01   Bosnia and Herzegovina         60.9
## 11227                 2015-01-01   Bosnia and Herzegovina         78.2
## 11228                 2010-01-01   Bosnia and Herzegovina         75.3
## 11229                 2005-01-01   Bosnia and Herzegovina         72.1
## 11230                 2000-01-01   Bosnia and Herzegovina         68.8
## 11231                 1995-01-01   Bosnia and Herzegovina         62.1
## 11232                 1990-01-01   Bosnia and Herzegovina         60.9
## 11233                 2015-01-01   Bosnia and Herzegovina         78.2
## 11234                 2010-01-01   Bosnia and Herzegovina         75.3
## 11235                 2005-01-01   Bosnia and Herzegovina         72.1
## 11236                 2000-01-01   Bosnia and Herzegovina         68.8
## 11237                 1995-01-01   Bosnia and Herzegovina         62.1
## 11238                 1990-01-01   Bosnia and Herzegovina         60.9
## 11239                 2015-01-01   Bosnia and Herzegovina         78.2
## 11240                 2010-01-01   Bosnia and Herzegovina         75.3
## 11241                 2005-01-01   Bosnia and Herzegovina         72.1
## 11242                 2000-01-01   Bosnia and Herzegovina         68.8
## 11243                 1995-01-01   Bosnia and Herzegovina         62.1
## 11244                 1990-01-01   Bosnia and Herzegovina         60.9
## 11245                 2015-01-01   Bosnia and Herzegovina         78.2
## 11246                 2010-01-01   Bosnia and Herzegovina         75.3
## 11247                 2005-01-01   Bosnia and Herzegovina         72.1
## 11248                 2000-01-01   Bosnia and Herzegovina         68.8
## 11249                 1995-01-01   Bosnia and Herzegovina         62.1
## 11250                 1990-01-01   Bosnia and Herzegovina         60.9
## 11251                 2015-01-01   Bosnia and Herzegovina         78.2
## 11252                 2010-01-01   Bosnia and Herzegovina         75.3
## 11253                 2005-01-01   Bosnia and Herzegovina         72.1
## 11254                 2000-01-01   Bosnia and Herzegovina         68.8
## 11255                 1995-01-01   Bosnia and Herzegovina         62.1
## 11256                 1990-01-01   Bosnia and Herzegovina         60.9
## 11257                 2015-01-01   Bosnia and Herzegovina         78.2
## 11258                 2010-01-01   Bosnia and Herzegovina         75.3
## 11259                 2005-01-01   Bosnia and Herzegovina         72.1
## 11260                 2000-01-01   Bosnia and Herzegovina         68.8
## 11261                 1995-01-01   Bosnia and Herzegovina         62.1
## 11262                 1990-01-01   Bosnia and Herzegovina         60.9
## 11263                 2015-01-01   Bosnia and Herzegovina         78.2
## 11264                 2010-01-01   Bosnia and Herzegovina         75.3
## 11265                 2005-01-01   Bosnia and Herzegovina         72.1
## 11266                 2000-01-01   Bosnia and Herzegovina         68.8
## 11267                 1995-01-01   Bosnia and Herzegovina         62.1
## 11268                 1990-01-01   Bosnia and Herzegovina         60.9
## 11269                 2015-01-01   Bosnia and Herzegovina         78.2
## 11270                 2010-01-01   Bosnia and Herzegovina         75.3
## 11271                 2005-01-01   Bosnia and Herzegovina         72.1
## 11272                 2000-01-01   Bosnia and Herzegovina         68.8
## 11273                 1995-01-01   Bosnia and Herzegovina         62.1
## 11274                 1990-01-01   Bosnia and Herzegovina         60.9
## 11275                 2015-01-01   Bosnia and Herzegovina         78.2
## 11276                 2010-01-01   Bosnia and Herzegovina         75.3
## 11277                 2005-01-01   Bosnia and Herzegovina         72.1
## 11278                 2000-01-01   Bosnia and Herzegovina         68.8
## 11279                 1995-01-01   Bosnia and Herzegovina         62.1
## 11280                 1990-01-01   Bosnia and Herzegovina         60.9
## 11281                 2015-01-01   Bosnia and Herzegovina         78.2
## 11282                 2010-01-01   Bosnia and Herzegovina         75.3
## 11283                 2005-01-01   Bosnia and Herzegovina         72.1
## 11284                 2000-01-01   Bosnia and Herzegovina         68.8
## 11285                 1995-01-01   Bosnia and Herzegovina         62.1
## 11286                 1990-01-01   Bosnia and Herzegovina         60.9
## 11287                 2015-01-01   Bosnia and Herzegovina         78.2
## 11288                 2010-01-01   Bosnia and Herzegovina         75.3
## 11289                 2005-01-01   Bosnia and Herzegovina         72.1
## 11290                 2000-01-01   Bosnia and Herzegovina         68.8
## 11291                 1995-01-01   Bosnia and Herzegovina         62.1
## 11292                 1990-01-01   Bosnia and Herzegovina         60.9
## 11293                 2015-01-01   Bosnia and Herzegovina         78.2
## 11294                 2010-01-01   Bosnia and Herzegovina         75.3
## 11295                 2005-01-01   Bosnia and Herzegovina         72.1
## 11296                 2000-01-01   Bosnia and Herzegovina         68.8
## 11297                 1995-01-01   Bosnia and Herzegovina         62.1
## 11298                 1990-01-01   Bosnia and Herzegovina         60.9
## 11299                 2015-01-01   Bosnia and Herzegovina         78.2
## 11300                 2010-01-01   Bosnia and Herzegovina         75.3
## 11301                 2005-01-01   Bosnia and Herzegovina         72.1
## 11302                 2000-01-01   Bosnia and Herzegovina         68.8
## 11303                 1995-01-01   Bosnia and Herzegovina         62.1
## 11304                 1990-01-01   Bosnia and Herzegovina         60.9
## 11305                 2015-01-01   Bosnia and Herzegovina         78.2
## 11306                 2010-01-01   Bosnia and Herzegovina         75.3
## 11307                 2005-01-01   Bosnia and Herzegovina         72.1
## 11308                 2000-01-01   Bosnia and Herzegovina         68.8
## 11309                 1995-01-01   Bosnia and Herzegovina         62.1
## 11310                 1990-01-01   Bosnia and Herzegovina         60.9
## 11311                 2015-01-01   Bosnia and Herzegovina         78.2
## 11312                 2010-01-01   Bosnia and Herzegovina         75.3
## 11313                 2005-01-01   Bosnia and Herzegovina         72.1
## 11314                 2000-01-01   Bosnia and Herzegovina         68.8
## 11315                 1995-01-01   Bosnia and Herzegovina         62.1
## 11316                 1990-01-01   Bosnia and Herzegovina         60.9
## 11317                 2015-01-01   Bosnia and Herzegovina         78.2
## 11318                 2010-01-01   Bosnia and Herzegovina         75.3
## 11319                 2005-01-01   Bosnia and Herzegovina         72.1
## 11320                 2000-01-01   Bosnia and Herzegovina         68.8
## 11321                 1995-01-01   Bosnia and Herzegovina         62.1
## 11322                 1990-01-01   Bosnia and Herzegovina         60.9
## 11323                 2015-01-01   Bosnia and Herzegovina         78.2
## 11324                 2010-01-01   Bosnia and Herzegovina         75.3
## 11325                 2005-01-01   Bosnia and Herzegovina         72.1
## 11326                 2000-01-01   Bosnia and Herzegovina         68.8
## 11327                 1995-01-01   Bosnia and Herzegovina         62.1
## 11328                 1990-01-01   Bosnia and Herzegovina         60.9
## 11329                 2015-01-01   Bosnia and Herzegovina         78.2
## 11330                 2010-01-01   Bosnia and Herzegovina         75.3
## 11331                 2005-01-01   Bosnia and Herzegovina         72.1
## 11332                 2000-01-01   Bosnia and Herzegovina         68.8
## 11333                 1995-01-01   Bosnia and Herzegovina         62.1
## 11334                 1990-01-01   Bosnia and Herzegovina         60.9
## 11335                 2015-01-01   Bosnia and Herzegovina         78.2
## 11336                 2010-01-01   Bosnia and Herzegovina         75.3
## 11337                 2005-01-01   Bosnia and Herzegovina         72.1
## 11338                 2000-01-01   Bosnia and Herzegovina         68.8
## 11339                 1995-01-01   Bosnia and Herzegovina         62.1
## 11340                 1990-01-01   Bosnia and Herzegovina         60.9
## 11341                 2015-01-01   Bosnia and Herzegovina         78.2
## 11342                 2010-01-01   Bosnia and Herzegovina         75.3
## 11343                 2005-01-01   Bosnia and Herzegovina         72.1
## 11344                 2000-01-01   Bosnia and Herzegovina         68.8
## 11345                 1995-01-01   Bosnia and Herzegovina         62.1
## 11346                 1990-01-01   Bosnia and Herzegovina         60.9
## 11347                 2015-01-01   Bosnia and Herzegovina         78.2
## 11348                 2010-01-01   Bosnia and Herzegovina         75.3
## 11349                 2005-01-01   Bosnia and Herzegovina         72.1
## 11350                 2000-01-01   Bosnia and Herzegovina         68.8
## 11351                 1995-01-01   Bosnia and Herzegovina         62.1
## 11352                 1990-01-01   Bosnia and Herzegovina         60.9
## 11353                 2015-01-01   Bosnia and Herzegovina         78.2
## 11354                 2010-01-01   Bosnia and Herzegovina         75.3
## 11355                 2005-01-01   Bosnia and Herzegovina         72.1
## 11356                 2000-01-01   Bosnia and Herzegovina         68.8
## 11357                 1995-01-01   Bosnia and Herzegovina         62.1
## 11358                 1990-01-01   Bosnia and Herzegovina         60.9
## 11359                 2015-01-01   Bosnia and Herzegovina         78.2
## 11360                 2010-01-01   Bosnia and Herzegovina         75.3
## 11361                 2005-01-01   Bosnia and Herzegovina         72.1
## 11362                 2000-01-01   Bosnia and Herzegovina         68.8
## 11363                 1995-01-01   Bosnia and Herzegovina         62.1
## 11364                 1990-01-01   Bosnia and Herzegovina         60.9
## 11365                 2015-01-01   Bosnia and Herzegovina         78.2
## 11366                 2010-01-01   Bosnia and Herzegovina         75.3
## 11367                 2005-01-01   Bosnia and Herzegovina         72.1
## 11368                 2000-01-01   Bosnia and Herzegovina         68.8
## 11369                 1995-01-01   Bosnia and Herzegovina         62.1
## 11370                 1990-01-01   Bosnia and Herzegovina         60.9
## 11371                 2015-01-01   Bosnia and Herzegovina         78.2
## 11372                 2010-01-01   Bosnia and Herzegovina         75.3
## 11373                 2005-01-01   Bosnia and Herzegovina         72.1
## 11374                 2000-01-01   Bosnia and Herzegovina         68.8
## 11375                 1995-01-01   Bosnia and Herzegovina         62.1
## 11376                 1990-01-01   Bosnia and Herzegovina         60.9
## 11377                 2015-01-01   Bosnia and Herzegovina         78.2
## 11378                 2010-01-01   Bosnia and Herzegovina         75.3
## 11379                 2005-01-01   Bosnia and Herzegovina         72.1
## 11380                 2000-01-01   Bosnia and Herzegovina         68.8
## 11381                 1995-01-01   Bosnia and Herzegovina         62.1
## 11382                 1990-01-01   Bosnia and Herzegovina         60.9
## 11383                 2015-01-01   Bosnia and Herzegovina         78.2
## 11384                 2010-01-01   Bosnia and Herzegovina         75.3
## 11385                 2005-01-01   Bosnia and Herzegovina         72.1
## 11386                 2000-01-01   Bosnia and Herzegovina         68.8
## 11387                 1995-01-01   Bosnia and Herzegovina         62.1
## 11388                 1990-01-01   Bosnia and Herzegovina         60.9
## 11389                 2015-01-01   Bosnia and Herzegovina         78.2
## 11390                 2010-01-01   Bosnia and Herzegovina         75.3
## 11391                 2005-01-01   Bosnia and Herzegovina         72.1
## 11392                 2000-01-01   Bosnia and Herzegovina         68.8
## 11393                 1995-01-01   Bosnia and Herzegovina         62.1
## 11394                 1990-01-01   Bosnia and Herzegovina         60.9
## 11395                 2015-01-01   Bosnia and Herzegovina         78.2
## 11396                 2010-01-01   Bosnia and Herzegovina         75.3
## 11397                 2005-01-01   Bosnia and Herzegovina         72.1
## 11398                 2000-01-01   Bosnia and Herzegovina         68.8
## 11399                 1995-01-01   Bosnia and Herzegovina         62.1
## 11400                 1990-01-01   Bosnia and Herzegovina         60.9
## 11401                 2015-01-01   Bosnia and Herzegovina         78.2
## 11402                 2010-01-01   Bosnia and Herzegovina         75.3
## 11403                 2005-01-01   Bosnia and Herzegovina         72.1
## 11404                 2000-01-01   Bosnia and Herzegovina         68.8
## 11405                 1995-01-01   Bosnia and Herzegovina         62.1
## 11406                 1990-01-01   Bosnia and Herzegovina         60.9
## 11407                 2015-01-01   Bosnia and Herzegovina         78.2
## 11408                 2010-01-01   Bosnia and Herzegovina         75.3
## 11409                 2005-01-01   Bosnia and Herzegovina         72.1
## 11410                 2000-01-01   Bosnia and Herzegovina         68.8
## 11411                 1995-01-01   Bosnia and Herzegovina         62.1
## 11412                 1990-01-01   Bosnia and Herzegovina         60.9
## 11413                 2015-01-01   Bosnia and Herzegovina         78.2
## 11414                 2010-01-01   Bosnia and Herzegovina         75.3
## 11415                 2005-01-01   Bosnia and Herzegovina         72.1
## 11416                 2000-01-01   Bosnia and Herzegovina         68.8
## 11417                 1995-01-01   Bosnia and Herzegovina         62.1
## 11418                 1990-01-01   Bosnia and Herzegovina         60.9
## 11419                 2015-01-01   Bosnia and Herzegovina         78.2
## 11420                 2010-01-01   Bosnia and Herzegovina         75.3
## 11421                 2005-01-01   Bosnia and Herzegovina         72.1
## 11422                 2000-01-01   Bosnia and Herzegovina         68.8
## 11423                 1995-01-01   Bosnia and Herzegovina         62.1
## 11424                 1990-01-01   Bosnia and Herzegovina         60.9
## 11425                 2015-01-01   Bosnia and Herzegovina         78.2
## 11426                 2010-01-01   Bosnia and Herzegovina         75.3
## 11427                 2005-01-01   Bosnia and Herzegovina         72.1
## 11428                 2000-01-01   Bosnia and Herzegovina         68.8
## 11429                 1995-01-01   Bosnia and Herzegovina         62.1
## 11430                 1990-01-01   Bosnia and Herzegovina         60.9
## 11431                 2015-01-01   Bosnia and Herzegovina         78.2
## 11432                 2010-01-01   Bosnia and Herzegovina         75.3
## 11433                 2005-01-01   Bosnia and Herzegovina         72.1
## 11434                 2000-01-01   Bosnia and Herzegovina         68.8
## 11435                 1995-01-01   Bosnia and Herzegovina         62.1
## 11436                 1990-01-01   Bosnia and Herzegovina         60.9
## 11437                 2015-01-01   Bosnia and Herzegovina         78.2
## 11438                 2010-01-01   Bosnia and Herzegovina         75.3
## 11439                 2005-01-01   Bosnia and Herzegovina         72.1
## 11440                 2000-01-01   Bosnia and Herzegovina         68.8
## 11441                 1995-01-01   Bosnia and Herzegovina         62.1
## 11442                 1990-01-01   Bosnia and Herzegovina         60.9
## 11443                 2015-01-01   Bosnia and Herzegovina         78.2
## 11444                 2010-01-01   Bosnia and Herzegovina         75.3
## 11445                 2005-01-01   Bosnia and Herzegovina         72.1
## 11446                 2000-01-01   Bosnia and Herzegovina         68.8
## 11447                 1995-01-01   Bosnia and Herzegovina         62.1
## 11448                 1990-01-01   Bosnia and Herzegovina         60.9
## 11449                 2015-01-01   Bosnia and Herzegovina         78.2
## 11450                 2010-01-01   Bosnia and Herzegovina         75.3
## 11451                 2005-01-01   Bosnia and Herzegovina         72.1
## 11452                 2000-01-01   Bosnia and Herzegovina         68.8
## 11453                 1995-01-01   Bosnia and Herzegovina         62.1
## 11454                 1990-01-01   Bosnia and Herzegovina         60.9
## 11455                 2015-01-01                 Botswana         51.1
## 11456                 2010-01-01                 Botswana         48.6
## 11457                 2005-01-01                 Botswana         43.9
## 11458                 2000-01-01                 Botswana         43.7
## 11459                 1995-01-01                 Botswana         45.4
## 11460                 1990-01-01                 Botswana         44.9
## 11461                 2015-01-01                 Botswana         51.1
## 11462                 2010-01-01                 Botswana         48.6
## 11463                 2005-01-01                 Botswana         43.9
## 11464                 2000-01-01                 Botswana         43.7
## 11465                 1995-01-01                 Botswana         45.4
## 11466                 1990-01-01                 Botswana         44.9
## 11467                 2015-01-01                 Botswana         51.1
## 11468                 2010-01-01                 Botswana         48.6
## 11469                 2005-01-01                 Botswana         43.9
## 11470                 2000-01-01                 Botswana         43.7
## 11471                 1995-01-01                 Botswana         45.4
## 11472                 1990-01-01                 Botswana         44.9
## 11473                 2015-01-01                 Botswana         51.1
## 11474                 2010-01-01                 Botswana         48.6
## 11475                 2005-01-01                 Botswana         43.9
## 11476                 2000-01-01                 Botswana         43.7
## 11477                 1995-01-01                 Botswana         45.4
## 11478                 1990-01-01                 Botswana         44.9
## 11479                 2015-01-01                 Botswana         51.1
## 11480                 2010-01-01                 Botswana         48.6
## 11481                 2005-01-01                 Botswana         43.9
## 11482                 2000-01-01                 Botswana         43.7
## 11483                 1995-01-01                 Botswana         45.4
## 11484                 1990-01-01                 Botswana         44.9
## 11485                 2015-01-01                 Botswana         51.1
## 11486                 2010-01-01                 Botswana         48.6
## 11487                 2005-01-01                 Botswana         43.9
## 11488                 2000-01-01                 Botswana         43.7
## 11489                 1995-01-01                 Botswana         45.4
## 11490                 1990-01-01                 Botswana         44.9
## 11491                 2015-01-01                 Botswana         51.1
## 11492                 2010-01-01                 Botswana         48.6
## 11493                 2005-01-01                 Botswana         43.9
## 11494                 2000-01-01                 Botswana         43.7
## 11495                 1995-01-01                 Botswana         45.4
## 11496                 1990-01-01                 Botswana         44.9
## 11497                 2015-01-01                 Botswana         51.1
## 11498                 2010-01-01                 Botswana         48.6
## 11499                 2005-01-01                 Botswana         43.9
## 11500                 2000-01-01                 Botswana         43.7
## 11501                 1995-01-01                 Botswana         45.4
## 11502                 1990-01-01                 Botswana         44.9
## 11503                 2015-01-01                 Botswana         51.1
## 11504                 2010-01-01                 Botswana         48.6
## 11505                 2005-01-01                 Botswana         43.9
## 11506                 2000-01-01                 Botswana         43.7
## 11507                 1995-01-01                 Botswana         45.4
## 11508                 1990-01-01                 Botswana         44.9
## 11509                 2015-01-01                 Botswana         51.1
## 11510                 2010-01-01                 Botswana         48.6
## 11511                 2005-01-01                 Botswana         43.9
## 11512                 2000-01-01                 Botswana         43.7
## 11513                 1995-01-01                 Botswana         45.4
## 11514                 1990-01-01                 Botswana         44.9
## 11515                 2015-01-01                 Botswana         51.1
## 11516                 2010-01-01                 Botswana         48.6
## 11517                 2005-01-01                 Botswana         43.9
## 11518                 2000-01-01                 Botswana         43.7
## 11519                 1995-01-01                 Botswana         45.4
## 11520                 1990-01-01                 Botswana         44.9
## 11521                 2015-01-01                 Botswana         51.1
## 11522                 2010-01-01                 Botswana         48.6
## 11523                 2005-01-01                 Botswana         43.9
## 11524                 2000-01-01                 Botswana         43.7
## 11525                 1995-01-01                 Botswana         45.4
## 11526                 1990-01-01                 Botswana         44.9
## 11527                 2015-01-01                 Botswana         51.1
## 11528                 2010-01-01                 Botswana         48.6
## 11529                 2005-01-01                 Botswana         43.9
## 11530                 2000-01-01                 Botswana         43.7
## 11531                 1995-01-01                 Botswana         45.4
## 11532                 1990-01-01                 Botswana         44.9
## 11533                 2015-01-01                 Botswana         51.1
## 11534                 2010-01-01                 Botswana         48.6
## 11535                 2005-01-01                 Botswana         43.9
## 11536                 2000-01-01                 Botswana         43.7
## 11537                 1995-01-01                 Botswana         45.4
## 11538                 1990-01-01                 Botswana         44.9
## 11539                 2015-01-01                 Botswana         51.1
## 11540                 2010-01-01                 Botswana         48.6
## 11541                 2005-01-01                 Botswana         43.9
## 11542                 2000-01-01                 Botswana         43.7
## 11543                 1995-01-01                 Botswana         45.4
## 11544                 1990-01-01                 Botswana         44.9
## 11545                 2015-01-01                 Botswana         51.1
## 11546                 2010-01-01                 Botswana         48.6
## 11547                 2005-01-01                 Botswana         43.9
## 11548                 2000-01-01                 Botswana         43.7
## 11549                 1995-01-01                 Botswana         45.4
## 11550                 1990-01-01                 Botswana         44.9
## 11551                 2015-01-01                 Botswana         51.1
## 11552                 2010-01-01                 Botswana         48.6
## 11553                 2005-01-01                 Botswana         43.9
## 11554                 2000-01-01                 Botswana         43.7
## 11555                 1995-01-01                 Botswana         45.4
## 11556                 1990-01-01                 Botswana         44.9
## 11557                 2015-01-01                 Botswana         51.1
## 11558                 2010-01-01                 Botswana         48.6
## 11559                 2005-01-01                 Botswana         43.9
## 11560                 2000-01-01                 Botswana         43.7
## 11561                 1995-01-01                 Botswana         45.4
## 11562                 1990-01-01                 Botswana         44.9
## 11563                 2015-01-01                 Botswana         51.1
## 11564                 2010-01-01                 Botswana         48.6
## 11565                 2005-01-01                 Botswana         43.9
## 11566                 2000-01-01                 Botswana         43.7
## 11567                 1995-01-01                 Botswana         45.4
## 11568                 1990-01-01                 Botswana         44.9
## 11569                 2015-01-01                 Botswana         51.1
## 11570                 2010-01-01                 Botswana         48.6
## 11571                 2005-01-01                 Botswana         43.9
## 11572                 2000-01-01                 Botswana         43.7
## 11573                 1995-01-01                 Botswana         45.4
## 11574                 1990-01-01                 Botswana         44.9
## 11575                 2015-01-01                 Botswana         51.1
## 11576                 2010-01-01                 Botswana         48.6
## 11577                 2005-01-01                 Botswana         43.9
## 11578                 2000-01-01                 Botswana         43.7
## 11579                 1995-01-01                 Botswana         45.4
## 11580                 1990-01-01                 Botswana         44.9
## 11581                 2015-01-01                 Botswana         51.1
## 11582                 2010-01-01                 Botswana         48.6
## 11583                 2005-01-01                 Botswana         43.9
## 11584                 2000-01-01                 Botswana         43.7
## 11585                 1995-01-01                 Botswana         45.4
## 11586                 1990-01-01                 Botswana         44.9
## 11587                 2015-01-01                 Botswana         51.1
## 11588                 2010-01-01                 Botswana         48.6
## 11589                 2005-01-01                 Botswana         43.9
## 11590                 2000-01-01                 Botswana         43.7
## 11591                 1995-01-01                 Botswana         45.4
## 11592                 1990-01-01                 Botswana         44.9
## 11593                 2015-01-01                 Botswana         51.1
## 11594                 2010-01-01                 Botswana         48.6
## 11595                 2005-01-01                 Botswana         43.9
## 11596                 2000-01-01                 Botswana         43.7
## 11597                 1995-01-01                 Botswana         45.4
## 11598                 1990-01-01                 Botswana         44.9
## 11599                 2015-01-01                 Botswana         51.1
## 11600                 2010-01-01                 Botswana         48.6
## 11601                 2005-01-01                 Botswana         43.9
## 11602                 2000-01-01                 Botswana         43.7
## 11603                 1995-01-01                 Botswana         45.4
## 11604                 1990-01-01                 Botswana         44.9
## 11605                 2015-01-01                 Botswana         51.1
## 11606                 2010-01-01                 Botswana         48.6
## 11607                 2005-01-01                 Botswana         43.9
## 11608                 2000-01-01                 Botswana         43.7
## 11609                 1995-01-01                 Botswana         45.4
## 11610                 1990-01-01                 Botswana         44.9
## 11611                 2015-01-01                 Botswana         51.1
## 11612                 2010-01-01                 Botswana         48.6
## 11613                 2005-01-01                 Botswana         43.9
## 11614                 2000-01-01                 Botswana         43.7
## 11615                 1995-01-01                 Botswana         45.4
## 11616                 1990-01-01                 Botswana         44.9
## 11617                 2015-01-01                 Botswana         51.1
## 11618                 2010-01-01                 Botswana         48.6
## 11619                 2005-01-01                 Botswana         43.9
## 11620                 2000-01-01                 Botswana         43.7
## 11621                 1995-01-01                 Botswana         45.4
## 11622                 1990-01-01                 Botswana         44.9
## 11623                 2015-01-01                 Botswana         51.1
## 11624                 2010-01-01                 Botswana         48.6
## 11625                 2005-01-01                 Botswana         43.9
## 11626                 2000-01-01                 Botswana         43.7
## 11627                 1995-01-01                 Botswana         45.4
## 11628                 1990-01-01                 Botswana         44.9
## 11629                 2015-01-01                 Botswana         51.1
## 11630                 2010-01-01                 Botswana         48.6
## 11631                 2005-01-01                 Botswana         43.9
## 11632                 2000-01-01                 Botswana         43.7
## 11633                 1995-01-01                 Botswana         45.4
## 11634                 1990-01-01                 Botswana         44.9
## 11635                 2015-01-01                 Botswana         51.1
## 11636                 2010-01-01                 Botswana         48.6
## 11637                 2005-01-01                 Botswana         43.9
## 11638                 2000-01-01                 Botswana         43.7
## 11639                 1995-01-01                 Botswana         45.4
## 11640                 1990-01-01                 Botswana         44.9
## 11641                 2015-01-01                 Botswana         51.1
## 11642                 2010-01-01                 Botswana         48.6
## 11643                 2005-01-01                 Botswana         43.9
## 11644                 2000-01-01                 Botswana         43.7
## 11645                 1995-01-01                 Botswana         45.4
## 11646                 1990-01-01                 Botswana         44.9
## 11647                 2015-01-01                 Botswana         51.1
## 11648                 2010-01-01                 Botswana         48.6
## 11649                 2005-01-01                 Botswana         43.9
## 11650                 2000-01-01                 Botswana         43.7
## 11651                 1995-01-01                 Botswana         45.4
## 11652                 1990-01-01                 Botswana         44.9
## 11653                 2015-01-01                 Botswana         51.1
## 11654                 2010-01-01                 Botswana         48.6
## 11655                 2005-01-01                 Botswana         43.9
## 11656                 2000-01-01                 Botswana         43.7
## 11657                 1995-01-01                 Botswana         45.4
## 11658                 1990-01-01                 Botswana         44.9
## 11659                 2015-01-01                 Botswana         51.1
## 11660                 2010-01-01                 Botswana         48.6
## 11661                 2005-01-01                 Botswana         43.9
## 11662                 2000-01-01                 Botswana         43.7
## 11663                 1995-01-01                 Botswana         45.4
## 11664                 1990-01-01                 Botswana         44.9
## 11665                 2015-01-01                 Botswana         51.1
## 11666                 2010-01-01                 Botswana         48.6
## 11667                 2005-01-01                 Botswana         43.9
## 11668                 2000-01-01                 Botswana         43.7
## 11669                 1995-01-01                 Botswana         45.4
## 11670                 1990-01-01                 Botswana         44.9
## 11671                 2015-01-01                 Botswana         51.1
## 11672                 2010-01-01                 Botswana         48.6
## 11673                 2005-01-01                 Botswana         43.9
## 11674                 2000-01-01                 Botswana         43.7
## 11675                 1995-01-01                 Botswana         45.4
## 11676                 1990-01-01                 Botswana         44.9
## 11677                 2015-01-01                 Botswana         51.1
## 11678                 2010-01-01                 Botswana         48.6
## 11679                 2005-01-01                 Botswana         43.9
## 11680                 2000-01-01                 Botswana         43.7
## 11681                 1995-01-01                 Botswana         45.4
## 11682                 1990-01-01                 Botswana         44.9
## 11683                 2015-01-01                 Botswana         51.1
## 11684                 2010-01-01                 Botswana         48.6
## 11685                 2005-01-01                 Botswana         43.9
## 11686                 2000-01-01                 Botswana         43.7
## 11687                 1995-01-01                 Botswana         45.4
## 11688                 1990-01-01                 Botswana         44.9
## 11689                 2015-01-01                 Botswana         51.1
## 11690                 2010-01-01                 Botswana         48.6
## 11691                 2005-01-01                 Botswana         43.9
## 11692                 2000-01-01                 Botswana         43.7
## 11693                 1995-01-01                 Botswana         45.4
## 11694                 1990-01-01                 Botswana         44.9
## 11695                 2015-01-01                 Botswana         51.1
## 11696                 2010-01-01                 Botswana         48.6
## 11697                 2005-01-01                 Botswana         43.9
## 11698                 2000-01-01                 Botswana         43.7
## 11699                 1995-01-01                 Botswana         45.4
## 11700                 1990-01-01                 Botswana         44.9
## 11701                 2015-01-01                 Botswana         51.1
## 11702                 2010-01-01                 Botswana         48.6
## 11703                 2005-01-01                 Botswana         43.9
## 11704                 2000-01-01                 Botswana         43.7
## 11705                 1995-01-01                 Botswana         45.4
## 11706                 1990-01-01                 Botswana         44.9
## 11707                 2015-01-01                 Botswana         51.1
## 11708                 2010-01-01                 Botswana         48.6
## 11709                 2005-01-01                 Botswana         43.9
## 11710                 2000-01-01                 Botswana         43.7
## 11711                 1995-01-01                 Botswana         45.4
## 11712                 1990-01-01                 Botswana         44.9
## 11713                 2015-01-01                 Botswana         51.1
## 11714                 2010-01-01                 Botswana         48.6
## 11715                 2005-01-01                 Botswana         43.9
## 11716                 2000-01-01                 Botswana         43.7
## 11717                 1995-01-01                 Botswana         45.4
## 11718                 1990-01-01                 Botswana         44.9
## 11719                 2015-01-01                 Botswana         51.1
## 11720                 2010-01-01                 Botswana         48.6
## 11721                 2005-01-01                 Botswana         43.9
## 11722                 2000-01-01                 Botswana         43.7
## 11723                 1995-01-01                 Botswana         45.4
## 11724                 1990-01-01                 Botswana         44.9
## 11725                 2015-01-01                 Botswana         51.1
## 11726                 2010-01-01                 Botswana         48.6
## 11727                 2005-01-01                 Botswana         43.9
## 11728                 2000-01-01                 Botswana         43.7
## 11729                 1995-01-01                 Botswana         45.4
## 11730                 1990-01-01                 Botswana         44.9
## 11731                 2015-01-01                 Botswana         51.1
## 11732                 2010-01-01                 Botswana         48.6
## 11733                 2005-01-01                 Botswana         43.9
## 11734                 2000-01-01                 Botswana         43.7
## 11735                 1995-01-01                 Botswana         45.4
## 11736                 1990-01-01                 Botswana         44.9
## 11737                 2015-01-01                 Botswana         51.1
## 11738                 2010-01-01                 Botswana         48.6
## 11739                 2005-01-01                 Botswana         43.9
## 11740                 2000-01-01                 Botswana         43.7
## 11741                 1995-01-01                 Botswana         45.4
## 11742                 1990-01-01                 Botswana         44.9
## 11743                 2015-01-01                 Botswana         51.1
## 11744                 2010-01-01                 Botswana         48.6
## 11745                 2005-01-01                 Botswana         43.9
## 11746                 2000-01-01                 Botswana         43.7
## 11747                 1995-01-01                 Botswana         45.4
## 11748                 1990-01-01                 Botswana         44.9
## 11749                 2015-01-01                 Botswana         51.1
## 11750                 2010-01-01                 Botswana         48.6
## 11751                 2005-01-01                 Botswana         43.9
## 11752                 2000-01-01                 Botswana         43.7
## 11753                 1995-01-01                 Botswana         45.4
## 11754                 1990-01-01                 Botswana         44.9
## 11755                 2015-01-01                 Botswana         51.1
## 11756                 2010-01-01                 Botswana         48.6
## 11757                 2005-01-01                 Botswana         43.9
## 11758                 2000-01-01                 Botswana         43.7
## 11759                 1995-01-01                 Botswana         45.4
## 11760                 1990-01-01                 Botswana         44.9
## 11761                 2015-01-01                 Botswana         51.1
## 11762                 2010-01-01                 Botswana         48.6
## 11763                 2005-01-01                 Botswana         43.9
## 11764                 2000-01-01                 Botswana         43.7
## 11765                 1995-01-01                 Botswana         45.4
## 11766                 1990-01-01                 Botswana         44.9
## 11767                 2015-01-01                 Botswana         51.1
## 11768                 2010-01-01                 Botswana         48.6
## 11769                 2005-01-01                 Botswana         43.9
## 11770                 2000-01-01                 Botswana         43.7
## 11771                 1995-01-01                 Botswana         45.4
## 11772                 1990-01-01                 Botswana         44.9
## 11773                 2015-01-01                 Botswana         51.1
## 11774                 2010-01-01                 Botswana         48.6
## 11775                 2005-01-01                 Botswana         43.9
## 11776                 2000-01-01                 Botswana         43.7
## 11777                 1995-01-01                 Botswana         45.4
## 11778                 1990-01-01                 Botswana         44.9
## 11779                 2015-01-01                 Botswana         51.1
## 11780                 2010-01-01                 Botswana         48.6
## 11781                 2005-01-01                 Botswana         43.9
## 11782                 2000-01-01                 Botswana         43.7
## 11783                 1995-01-01                 Botswana         45.4
## 11784                 1990-01-01                 Botswana         44.9
## 11785                 2015-01-01                 Botswana         51.1
## 11786                 2010-01-01                 Botswana         48.6
## 11787                 2005-01-01                 Botswana         43.9
## 11788                 2000-01-01                 Botswana         43.7
## 11789                 1995-01-01                 Botswana         45.4
## 11790                 1990-01-01                 Botswana         44.9
## 11791                 2015-01-01                 Botswana         51.1
## 11792                 2010-01-01                 Botswana         48.6
## 11793                 2005-01-01                 Botswana         43.9
## 11794                 2000-01-01                 Botswana         43.7
## 11795                 1995-01-01                 Botswana         45.4
## 11796                 1990-01-01                 Botswana         44.9
## 11797                 2015-01-01                 Botswana         51.1
## 11798                 2010-01-01                 Botswana         48.6
## 11799                 2005-01-01                 Botswana         43.9
## 11800                 2000-01-01                 Botswana         43.7
## 11801                 1995-01-01                 Botswana         45.4
## 11802                 1990-01-01                 Botswana         44.9
## 11803                 2015-01-01                 Botswana         51.1
## 11804                 2010-01-01                 Botswana         48.6
## 11805                 2005-01-01                 Botswana         43.9
## 11806                 2000-01-01                 Botswana         43.7
## 11807                 1995-01-01                 Botswana         45.4
## 11808                 1990-01-01                 Botswana         44.9
## 11809                 2015-01-01                 Botswana         51.1
## 11810                 2010-01-01                 Botswana         48.6
## 11811                 2005-01-01                 Botswana         43.9
## 11812                 2000-01-01                 Botswana         43.7
## 11813                 1995-01-01                 Botswana         45.4
## 11814                 1990-01-01                 Botswana         44.9
## 11815                 2015-01-01                 Botswana         51.1
## 11816                 2010-01-01                 Botswana         48.6
## 11817                 2005-01-01                 Botswana         43.9
## 11818                 2000-01-01                 Botswana         43.7
## 11819                 1995-01-01                 Botswana         45.4
## 11820                 1990-01-01                 Botswana         44.9
## 11821                 2015-01-01                 Botswana         51.1
## 11822                 2010-01-01                 Botswana         48.6
## 11823                 2005-01-01                 Botswana         43.9
## 11824                 2000-01-01                 Botswana         43.7
## 11825                 1995-01-01                 Botswana         45.4
## 11826                 1990-01-01                 Botswana         44.9
## 11827                 2015-01-01                 Botswana         51.1
## 11828                 2010-01-01                 Botswana         48.6
## 11829                 2005-01-01                 Botswana         43.9
## 11830                 2000-01-01                 Botswana         43.7
## 11831                 1995-01-01                 Botswana         45.4
## 11832                 1990-01-01                 Botswana         44.9
## 11833                 2015-01-01                 Botswana         51.1
## 11834                 2010-01-01                 Botswana         48.6
## 11835                 2005-01-01                 Botswana         43.9
## 11836                 2000-01-01                 Botswana         43.7
## 11837                 1995-01-01                 Botswana         45.4
## 11838                 1990-01-01                 Botswana         44.9
## 11839                 2015-01-01                 Botswana         51.1
## 11840                 2010-01-01                 Botswana         48.6
## 11841                 2005-01-01                 Botswana         43.9
## 11842                 2000-01-01                 Botswana         43.7
## 11843                 1995-01-01                 Botswana         45.4
## 11844                 1990-01-01                 Botswana         44.9
## 11845                 2015-01-01                 Botswana         51.1
## 11846                 2010-01-01                 Botswana         48.6
## 11847                 2005-01-01                 Botswana         43.9
## 11848                 2000-01-01                 Botswana         43.7
## 11849                 1995-01-01                 Botswana         45.4
## 11850                 1990-01-01                 Botswana         44.9
## 11851                 2015-01-01                 Botswana         51.1
## 11852                 2010-01-01                 Botswana         48.6
## 11853                 2005-01-01                 Botswana         43.9
## 11854                 2000-01-01                 Botswana         43.7
## 11855                 1995-01-01                 Botswana         45.4
## 11856                 1990-01-01                 Botswana         44.9
## 11857                 2015-01-01                 Botswana         51.1
## 11858                 2010-01-01                 Botswana         48.6
## 11859                 2005-01-01                 Botswana         43.9
## 11860                 2000-01-01                 Botswana         43.7
## 11861                 1995-01-01                 Botswana         45.4
## 11862                 1990-01-01                 Botswana         44.9
## 11863                 2015-01-01                 Botswana         51.1
## 11864                 2010-01-01                 Botswana         48.6
## 11865                 2005-01-01                 Botswana         43.9
## 11866                 2000-01-01                 Botswana         43.7
## 11867                 1995-01-01                 Botswana         45.4
## 11868                 1990-01-01                 Botswana         44.9
## 11869                 2015-01-01                 Botswana         51.1
## 11870                 2010-01-01                 Botswana         48.6
## 11871                 2005-01-01                 Botswana         43.9
## 11872                 2000-01-01                 Botswana         43.7
## 11873                 1995-01-01                 Botswana         45.4
## 11874                 1990-01-01                 Botswana         44.9
## 11875                 2015-01-01                 Botswana         51.1
## 11876                 2010-01-01                 Botswana         48.6
## 11877                 2005-01-01                 Botswana         43.9
## 11878                 2000-01-01                 Botswana         43.7
## 11879                 1995-01-01                 Botswana         45.4
## 11880                 1990-01-01                 Botswana         44.9
## 11881                 2015-01-01                 Botswana         51.1
## 11882                 2010-01-01                 Botswana         48.6
## 11883                 2005-01-01                 Botswana         43.9
## 11884                 2000-01-01                 Botswana         43.7
## 11885                 1995-01-01                 Botswana         45.4
## 11886                 1990-01-01                 Botswana         44.9
## 11887                 2015-01-01                 Botswana         51.1
## 11888                 2010-01-01                 Botswana         48.6
## 11889                 2005-01-01                 Botswana         43.9
## 11890                 2000-01-01                 Botswana         43.7
## 11891                 1995-01-01                 Botswana         45.4
## 11892                 1990-01-01                 Botswana         44.9
## 11893                 2015-01-01                 Botswana         51.1
## 11894                 2010-01-01                 Botswana         48.6
## 11895                 2005-01-01                 Botswana         43.9
## 11896                 2000-01-01                 Botswana         43.7
## 11897                 1995-01-01                 Botswana         45.4
## 11898                 1990-01-01                 Botswana         44.9
## 11899                 2015-01-01                 Botswana         51.1
## 11900                 2010-01-01                 Botswana         48.6
## 11901                 2005-01-01                 Botswana         43.9
## 11902                 2000-01-01                 Botswana         43.7
## 11903                 1995-01-01                 Botswana         45.4
## 11904                 1990-01-01                 Botswana         44.9
## 11905                 2015-01-01                 Botswana         51.1
## 11906                 2010-01-01                 Botswana         48.6
## 11907                 2005-01-01                 Botswana         43.9
## 11908                 2000-01-01                 Botswana         43.7
## 11909                 1995-01-01                 Botswana         45.4
## 11910                 1990-01-01                 Botswana         44.9
## 11911                 2015-01-01                 Botswana         51.1
## 11912                 2010-01-01                 Botswana         48.6
## 11913                 2005-01-01                 Botswana         43.9
## 11914                 2000-01-01                 Botswana         43.7
## 11915                 1995-01-01                 Botswana         45.4
## 11916                 1990-01-01                 Botswana         44.9
## 11917                 2015-01-01                 Botswana         51.1
## 11918                 2010-01-01                 Botswana         48.6
## 11919                 2005-01-01                 Botswana         43.9
## 11920                 2000-01-01                 Botswana         43.7
## 11921                 1995-01-01                 Botswana         45.4
## 11922                 1990-01-01                 Botswana         44.9
## 11923                 2015-01-01                 Botswana         51.1
## 11924                 2010-01-01                 Botswana         48.6
## 11925                 2005-01-01                 Botswana         43.9
## 11926                 2000-01-01                 Botswana         43.7
## 11927                 1995-01-01                 Botswana         45.4
## 11928                 1990-01-01                 Botswana         44.9
## 11929                 2015-01-01                 Botswana         51.1
## 11930                 2010-01-01                 Botswana         48.6
## 11931                 2005-01-01                 Botswana         43.9
## 11932                 2000-01-01                 Botswana         43.7
## 11933                 1995-01-01                 Botswana         45.4
## 11934                 1990-01-01                 Botswana         44.9
## 11935                 2015-01-01                 Botswana         51.1
## 11936                 2010-01-01                 Botswana         48.6
## 11937                 2005-01-01                 Botswana         43.9
## 11938                 2000-01-01                 Botswana         43.7
## 11939                 1995-01-01                 Botswana         45.4
## 11940                 1990-01-01                 Botswana         44.9
## 11941                 2015-01-01                 Botswana         51.1
## 11942                 2010-01-01                 Botswana         48.6
## 11943                 2005-01-01                 Botswana         43.9
## 11944                 2000-01-01                 Botswana         43.7
## 11945                 1995-01-01                 Botswana         45.4
## 11946                 1990-01-01                 Botswana         44.9
## 11947                 2015-01-01                 Botswana         51.1
## 11948                 2010-01-01                 Botswana         48.6
## 11949                 2005-01-01                 Botswana         43.9
## 11950                 2000-01-01                 Botswana         43.7
## 11951                 1995-01-01                 Botswana         45.4
## 11952                 1990-01-01                 Botswana         44.9
## 11953                 2015-01-01                 Botswana         51.1
## 11954                 2010-01-01                 Botswana         48.6
## 11955                 2005-01-01                 Botswana         43.9
## 11956                 2000-01-01                 Botswana         43.7
## 11957                 1995-01-01                 Botswana         45.4
## 11958                 1990-01-01                 Botswana         44.9
## 11959                 2015-01-01                 Botswana         51.1
## 11960                 2010-01-01                 Botswana         48.6
## 11961                 2005-01-01                 Botswana         43.9
## 11962                 2000-01-01                 Botswana         43.7
## 11963                 1995-01-01                 Botswana         45.4
## 11964                 1990-01-01                 Botswana         44.9
## 11965                 2015-01-01                 Botswana         51.1
## 11966                 2010-01-01                 Botswana         48.6
## 11967                 2005-01-01                 Botswana         43.9
## 11968                 2000-01-01                 Botswana         43.7
## 11969                 1995-01-01                 Botswana         45.4
## 11970                 1990-01-01                 Botswana         44.9
## 11971                 2015-01-01                 Botswana         51.1
## 11972                 2010-01-01                 Botswana         48.6
## 11973                 2005-01-01                 Botswana         43.9
## 11974                 2000-01-01                 Botswana         43.7
## 11975                 1995-01-01                 Botswana         45.4
## 11976                 1990-01-01                 Botswana         44.9
## 11977                 2015-01-01                 Botswana         51.1
## 11978                 2010-01-01                 Botswana         48.6
## 11979                 2005-01-01                 Botswana         43.9
## 11980                 2000-01-01                 Botswana         43.7
## 11981                 1995-01-01                 Botswana         45.4
## 11982                 1990-01-01                 Botswana         44.9
## 11983                 2015-01-01                 Botswana         51.1
## 11984                 2010-01-01                 Botswana         48.6
## 11985                 2005-01-01                 Botswana         43.9
## 11986                 2000-01-01                 Botswana         43.7
## 11987                 1995-01-01                 Botswana         45.4
## 11988                 1990-01-01                 Botswana         44.9
## 11989                 2015-01-01                 Botswana         51.1
## 11990                 2010-01-01                 Botswana         48.6
## 11991                 2005-01-01                 Botswana         43.9
## 11992                 2000-01-01                 Botswana         43.7
## 11993                 1995-01-01                 Botswana         45.4
## 11994                 1990-01-01                 Botswana         44.9
## 11995                 2015-01-01                 Botswana         51.1
## 11996                 2010-01-01                 Botswana         48.6
## 11997                 2005-01-01                 Botswana         43.9
## 11998                 2000-01-01                 Botswana         43.7
## 11999                 1995-01-01                 Botswana         45.4
## 12000                 1990-01-01                 Botswana         44.9
## 12001                 2015-01-01                 Botswana         51.1
## 12002                 2010-01-01                 Botswana         48.6
## 12003                 2005-01-01                 Botswana         43.9
## 12004                 2000-01-01                 Botswana         43.7
## 12005                 1995-01-01                 Botswana         45.4
## 12006                 1990-01-01                 Botswana         44.9
## 12007                 2015-01-01                 Botswana         51.1
## 12008                 2010-01-01                 Botswana         48.6
## 12009                 2005-01-01                 Botswana         43.9
## 12010                 2000-01-01                 Botswana         43.7
## 12011                 1995-01-01                 Botswana         45.4
## 12012                 1990-01-01                 Botswana         44.9
## 12013                 2015-01-01                 Botswana         51.1
## 12014                 2010-01-01                 Botswana         48.6
## 12015                 2005-01-01                 Botswana         43.9
## 12016                 2000-01-01                 Botswana         43.7
## 12017                 1995-01-01                 Botswana         45.4
## 12018                 1990-01-01                 Botswana         44.9
## 12019                 2015-01-01                   Brazil         64.9
## 12020                 2010-01-01                   Brazil         62.6
## 12021                 2005-01-01                   Brazil         59.9
## 12022                 2000-01-01                   Brazil         57.0
## 12023                 1995-01-01                   Brazil         53.8
## 12024                 1990-01-01                   Brazil         50.1
## 12025                 2015-01-01                   Brazil         64.9
## 12026                 2010-01-01                   Brazil         62.6
## 12027                 2005-01-01                   Brazil         59.9
## 12028                 2000-01-01                   Brazil         57.0
## 12029                 1995-01-01                   Brazil         53.8
## 12030                 1990-01-01                   Brazil         50.1
## 12031                 2015-01-01                   Brazil         64.9
## 12032                 2010-01-01                   Brazil         62.6
## 12033                 2005-01-01                   Brazil         59.9
## 12034                 2000-01-01                   Brazil         57.0
## 12035                 1995-01-01                   Brazil         53.8
## 12036                 1990-01-01                   Brazil         50.1
## 12037                 2015-01-01                   Brazil         64.9
## 12038                 2010-01-01                   Brazil         62.6
## 12039                 2005-01-01                   Brazil         59.9
## 12040                 2000-01-01                   Brazil         57.0
## 12041                 1995-01-01                   Brazil         53.8
## 12042                 1990-01-01                   Brazil         50.1
## 12043                 2015-01-01                   Brazil         64.9
## 12044                 2010-01-01                   Brazil         62.6
## 12045                 2005-01-01                   Brazil         59.9
## 12046                 2000-01-01                   Brazil         57.0
## 12047                 1995-01-01                   Brazil         53.8
## 12048                 1990-01-01                   Brazil         50.1
## 12049                 2015-01-01                   Brazil         64.9
## 12050                 2010-01-01                   Brazil         62.6
## 12051                 2005-01-01                   Brazil         59.9
## 12052                 2000-01-01                   Brazil         57.0
## 12053                 1995-01-01                   Brazil         53.8
## 12054                 1990-01-01                   Brazil         50.1
## 12055                 2015-01-01                   Brazil         64.9
## 12056                 2010-01-01                   Brazil         62.6
## 12057                 2005-01-01                   Brazil         59.9
## 12058                 2000-01-01                   Brazil         57.0
## 12059                 1995-01-01                   Brazil         53.8
## 12060                 1990-01-01                   Brazil         50.1
## 12061                 2015-01-01                   Brazil         64.9
## 12062                 2010-01-01                   Brazil         62.6
## 12063                 2005-01-01                   Brazil         59.9
## 12064                 2000-01-01                   Brazil         57.0
## 12065                 1995-01-01                   Brazil         53.8
## 12066                 1990-01-01                   Brazil         50.1
## 12067                 2015-01-01                   Brazil         64.9
## 12068                 2010-01-01                   Brazil         62.6
## 12069                 2005-01-01                   Brazil         59.9
## 12070                 2000-01-01                   Brazil         57.0
## 12071                 1995-01-01                   Brazil         53.8
## 12072                 1990-01-01                   Brazil         50.1
## 12073                 2015-01-01                   Brazil         64.9
## 12074                 2010-01-01                   Brazil         62.6
## 12075                 2005-01-01                   Brazil         59.9
## 12076                 2000-01-01                   Brazil         57.0
## 12077                 1995-01-01                   Brazil         53.8
## 12078                 1990-01-01                   Brazil         50.1
## 12079                 2015-01-01                   Brazil         64.9
## 12080                 2010-01-01                   Brazil         62.6
## 12081                 2005-01-01                   Brazil         59.9
## 12082                 2000-01-01                   Brazil         57.0
## 12083                 1995-01-01                   Brazil         53.8
## 12084                 1990-01-01                   Brazil         50.1
## 12085                 2015-01-01                   Brazil         64.9
## 12086                 2010-01-01                   Brazil         62.6
## 12087                 2005-01-01                   Brazil         59.9
## 12088                 2000-01-01                   Brazil         57.0
## 12089                 1995-01-01                   Brazil         53.8
## 12090                 1990-01-01                   Brazil         50.1
## 12091                 2015-01-01                   Brazil         64.9
## 12092                 2010-01-01                   Brazil         62.6
## 12093                 2005-01-01                   Brazil         59.9
## 12094                 2000-01-01                   Brazil         57.0
## 12095                 1995-01-01                   Brazil         53.8
## 12096                 1990-01-01                   Brazil         50.1
## 12097                 2015-01-01                   Brazil         64.9
## 12098                 2010-01-01                   Brazil         62.6
## 12099                 2005-01-01                   Brazil         59.9
## 12100                 2000-01-01                   Brazil         57.0
## 12101                 1995-01-01                   Brazil         53.8
## 12102                 1990-01-01                   Brazil         50.1
## 12103                 2015-01-01                   Brazil         64.9
## 12104                 2010-01-01                   Brazil         62.6
## 12105                 2005-01-01                   Brazil         59.9
## 12106                 2000-01-01                   Brazil         57.0
## 12107                 1995-01-01                   Brazil         53.8
## 12108                 1990-01-01                   Brazil         50.1
## 12109                 2015-01-01                   Brazil         64.9
## 12110                 2010-01-01                   Brazil         62.6
## 12111                 2005-01-01                   Brazil         59.9
## 12112                 2000-01-01                   Brazil         57.0
## 12113                 1995-01-01                   Brazil         53.8
## 12114                 1990-01-01                   Brazil         50.1
## 12115                 2015-01-01                   Brazil         64.9
## 12116                 2010-01-01                   Brazil         62.6
## 12117                 2005-01-01                   Brazil         59.9
## 12118                 2000-01-01                   Brazil         57.0
## 12119                 1995-01-01                   Brazil         53.8
## 12120                 1990-01-01                   Brazil         50.1
## 12121                 2015-01-01                   Brazil         64.9
## 12122                 2010-01-01                   Brazil         62.6
## 12123                 2005-01-01                   Brazil         59.9
## 12124                 2000-01-01                   Brazil         57.0
## 12125                 1995-01-01                   Brazil         53.8
## 12126                 1990-01-01                   Brazil         50.1
## 12127                 2015-01-01                   Brazil         64.9
## 12128                 2010-01-01                   Brazil         62.6
## 12129                 2005-01-01                   Brazil         59.9
## 12130                 2000-01-01                   Brazil         57.0
## 12131                 1995-01-01                   Brazil         53.8
## 12132                 1990-01-01                   Brazil         50.1
## 12133                 2015-01-01                   Brazil         64.9
## 12134                 2010-01-01                   Brazil         62.6
## 12135                 2005-01-01                   Brazil         59.9
## 12136                 2000-01-01                   Brazil         57.0
## 12137                 1995-01-01                   Brazil         53.8
## 12138                 1990-01-01                   Brazil         50.1
## 12139                 2015-01-01                   Brazil         64.9
## 12140                 2010-01-01                   Brazil         62.6
## 12141                 2005-01-01                   Brazil         59.9
## 12142                 2000-01-01                   Brazil         57.0
## 12143                 1995-01-01                   Brazil         53.8
## 12144                 1990-01-01                   Brazil         50.1
## 12145                 2015-01-01                   Brazil         64.9
## 12146                 2010-01-01                   Brazil         62.6
## 12147                 2005-01-01                   Brazil         59.9
## 12148                 2000-01-01                   Brazil         57.0
## 12149                 1995-01-01                   Brazil         53.8
## 12150                 1990-01-01                   Brazil         50.1
## 12151                 2015-01-01                   Brazil         64.9
## 12152                 2010-01-01                   Brazil         62.6
## 12153                 2005-01-01                   Brazil         59.9
## 12154                 2000-01-01                   Brazil         57.0
## 12155                 1995-01-01                   Brazil         53.8
## 12156                 1990-01-01                   Brazil         50.1
## 12157                 2015-01-01                   Brazil         64.9
## 12158                 2010-01-01                   Brazil         62.6
## 12159                 2005-01-01                   Brazil         59.9
## 12160                 2000-01-01                   Brazil         57.0
## 12161                 1995-01-01                   Brazil         53.8
## 12162                 1990-01-01                   Brazil         50.1
## 12163                 2015-01-01                   Brazil         64.9
## 12164                 2010-01-01                   Brazil         62.6
## 12165                 2005-01-01                   Brazil         59.9
## 12166                 2000-01-01                   Brazil         57.0
## 12167                 1995-01-01                   Brazil         53.8
## 12168                 1990-01-01                   Brazil         50.1
## 12169                 2015-01-01                   Brazil         64.9
## 12170                 2010-01-01                   Brazil         62.6
## 12171                 2005-01-01                   Brazil         59.9
## 12172                 2000-01-01                   Brazil         57.0
## 12173                 1995-01-01                   Brazil         53.8
## 12174                 1990-01-01                   Brazil         50.1
## 12175                 2015-01-01                   Brazil         64.9
## 12176                 2010-01-01                   Brazil         62.6
## 12177                 2005-01-01                   Brazil         59.9
## 12178                 2000-01-01                   Brazil         57.0
## 12179                 1995-01-01                   Brazil         53.8
## 12180                 1990-01-01                   Brazil         50.1
## 12181                 2015-01-01                   Brazil         64.9
## 12182                 2010-01-01                   Brazil         62.6
## 12183                 2005-01-01                   Brazil         59.9
## 12184                 2000-01-01                   Brazil         57.0
## 12185                 1995-01-01                   Brazil         53.8
## 12186                 1990-01-01                   Brazil         50.1
## 12187                 2015-01-01                   Brazil         64.9
## 12188                 2010-01-01                   Brazil         62.6
## 12189                 2005-01-01                   Brazil         59.9
## 12190                 2000-01-01                   Brazil         57.0
## 12191                 1995-01-01                   Brazil         53.8
## 12192                 1990-01-01                   Brazil         50.1
## 12193                 2015-01-01                   Brazil         64.9
## 12194                 2010-01-01                   Brazil         62.6
## 12195                 2005-01-01                   Brazil         59.9
## 12196                 2000-01-01                   Brazil         57.0
## 12197                 1995-01-01                   Brazil         53.8
## 12198                 1990-01-01                   Brazil         50.1
## 12199                 2015-01-01                   Brazil         64.9
## 12200                 2010-01-01                   Brazil         62.6
## 12201                 2005-01-01                   Brazil         59.9
## 12202                 2000-01-01                   Brazil         57.0
## 12203                 1995-01-01                   Brazil         53.8
## 12204                 1990-01-01                   Brazil         50.1
## 12205                 2015-01-01                   Brazil         64.9
## 12206                 2010-01-01                   Brazil         62.6
## 12207                 2005-01-01                   Brazil         59.9
## 12208                 2000-01-01                   Brazil         57.0
## 12209                 1995-01-01                   Brazil         53.8
## 12210                 1990-01-01                   Brazil         50.1
## 12211                 2015-01-01                   Brazil         64.9
## 12212                 2010-01-01                   Brazil         62.6
## 12213                 2005-01-01                   Brazil         59.9
## 12214                 2000-01-01                   Brazil         57.0
## 12215                 1995-01-01                   Brazil         53.8
## 12216                 1990-01-01                   Brazil         50.1
## 12217                 2015-01-01                   Brazil         64.9
## 12218                 2010-01-01                   Brazil         62.6
## 12219                 2005-01-01                   Brazil         59.9
## 12220                 2000-01-01                   Brazil         57.0
## 12221                 1995-01-01                   Brazil         53.8
## 12222                 1990-01-01                   Brazil         50.1
## 12223                 2015-01-01                   Brazil         64.9
## 12224                 2010-01-01                   Brazil         62.6
## 12225                 2005-01-01                   Brazil         59.9
## 12226                 2000-01-01                   Brazil         57.0
## 12227                 1995-01-01                   Brazil         53.8
## 12228                 1990-01-01                   Brazil         50.1
## 12229                 2015-01-01                   Brazil         64.9
## 12230                 2010-01-01                   Brazil         62.6
## 12231                 2005-01-01                   Brazil         59.9
## 12232                 2000-01-01                   Brazil         57.0
## 12233                 1995-01-01                   Brazil         53.8
## 12234                 1990-01-01                   Brazil         50.1
## 12235                 2015-01-01                   Brazil         64.9
## 12236                 2010-01-01                   Brazil         62.6
## 12237                 2005-01-01                   Brazil         59.9
## 12238                 2000-01-01                   Brazil         57.0
## 12239                 1995-01-01                   Brazil         53.8
## 12240                 1990-01-01                   Brazil         50.1
## 12241                 2015-01-01                   Brazil         64.9
## 12242                 2010-01-01                   Brazil         62.6
## 12243                 2005-01-01                   Brazil         59.9
## 12244                 2000-01-01                   Brazil         57.0
## 12245                 1995-01-01                   Brazil         53.8
## 12246                 1990-01-01                   Brazil         50.1
## 12247                 2015-01-01                   Brazil         64.9
## 12248                 2010-01-01                   Brazil         62.6
## 12249                 2005-01-01                   Brazil         59.9
## 12250                 2000-01-01                   Brazil         57.0
## 12251                 1995-01-01                   Brazil         53.8
## 12252                 1990-01-01                   Brazil         50.1
## 12253                 2015-01-01                   Brazil         64.9
## 12254                 2010-01-01                   Brazil         62.6
## 12255                 2005-01-01                   Brazil         59.9
## 12256                 2000-01-01                   Brazil         57.0
## 12257                 1995-01-01                   Brazil         53.8
## 12258                 1990-01-01                   Brazil         50.1
## 12259                 2015-01-01                   Brazil         64.9
## 12260                 2010-01-01                   Brazil         62.6
## 12261                 2005-01-01                   Brazil         59.9
## 12262                 2000-01-01                   Brazil         57.0
## 12263                 1995-01-01                   Brazil         53.8
## 12264                 1990-01-01                   Brazil         50.1
## 12265                 2015-01-01                   Brazil         64.9
## 12266                 2010-01-01                   Brazil         62.6
## 12267                 2005-01-01                   Brazil         59.9
## 12268                 2000-01-01                   Brazil         57.0
## 12269                 1995-01-01                   Brazil         53.8
## 12270                 1990-01-01                   Brazil         50.1
## 12271                 2015-01-01                   Brazil         64.9
## 12272                 2010-01-01                   Brazil         62.6
## 12273                 2005-01-01                   Brazil         59.9
## 12274                 2000-01-01                   Brazil         57.0
## 12275                 1995-01-01                   Brazil         53.8
## 12276                 1990-01-01                   Brazil         50.1
## 12277                 2015-01-01                   Brazil         64.9
## 12278                 2010-01-01                   Brazil         62.6
## 12279                 2005-01-01                   Brazil         59.9
## 12280                 2000-01-01                   Brazil         57.0
## 12281                 1995-01-01                   Brazil         53.8
## 12282                 1990-01-01                   Brazil         50.1
## 12283                 2015-01-01                   Brazil         64.9
## 12284                 2010-01-01                   Brazil         62.6
## 12285                 2005-01-01                   Brazil         59.9
## 12286                 2000-01-01                   Brazil         57.0
## 12287                 1995-01-01                   Brazil         53.8
## 12288                 1990-01-01                   Brazil         50.1
## 12289                 2015-01-01                   Brazil         64.9
## 12290                 2010-01-01                   Brazil         62.6
## 12291                 2005-01-01                   Brazil         59.9
## 12292                 2000-01-01                   Brazil         57.0
## 12293                 1995-01-01                   Brazil         53.8
## 12294                 1990-01-01                   Brazil         50.1
## 12295                 2015-01-01                   Brazil         64.9
## 12296                 2010-01-01                   Brazil         62.6
## 12297                 2005-01-01                   Brazil         59.9
## 12298                 2000-01-01                   Brazil         57.0
## 12299                 1995-01-01                   Brazil         53.8
## 12300                 1990-01-01                   Brazil         50.1
## 12301                 2015-01-01                   Brazil         64.9
## 12302                 2010-01-01                   Brazil         62.6
## 12303                 2005-01-01                   Brazil         59.9
## 12304                 2000-01-01                   Brazil         57.0
## 12305                 1995-01-01                   Brazil         53.8
## 12306                 1990-01-01                   Brazil         50.1
## 12307                 2015-01-01                   Brazil         64.9
## 12308                 2010-01-01                   Brazil         62.6
## 12309                 2005-01-01                   Brazil         59.9
## 12310                 2000-01-01                   Brazil         57.0
## 12311                 1995-01-01                   Brazil         53.8
## 12312                 1990-01-01                   Brazil         50.1
## 12313                 2015-01-01                   Brazil         64.9
## 12314                 2010-01-01                   Brazil         62.6
## 12315                 2005-01-01                   Brazil         59.9
## 12316                 2000-01-01                   Brazil         57.0
## 12317                 1995-01-01                   Brazil         53.8
## 12318                 1990-01-01                   Brazil         50.1
## 12319                 2015-01-01                   Brazil         64.9
## 12320                 2010-01-01                   Brazil         62.6
## 12321                 2005-01-01                   Brazil         59.9
## 12322                 2000-01-01                   Brazil         57.0
## 12323                 1995-01-01                   Brazil         53.8
## 12324                 1990-01-01                   Brazil         50.1
## 12325                 2015-01-01                   Brazil         64.9
## 12326                 2010-01-01                   Brazil         62.6
## 12327                 2005-01-01                   Brazil         59.9
## 12328                 2000-01-01                   Brazil         57.0
## 12329                 1995-01-01                   Brazil         53.8
## 12330                 1990-01-01                   Brazil         50.1
## 12331                 2015-01-01                   Brazil         64.9
## 12332                 2010-01-01                   Brazil         62.6
## 12333                 2005-01-01                   Brazil         59.9
## 12334                 2000-01-01                   Brazil         57.0
## 12335                 1995-01-01                   Brazil         53.8
## 12336                 1990-01-01                   Brazil         50.1
## 12337                 2015-01-01                   Brazil         64.9
## 12338                 2010-01-01                   Brazil         62.6
## 12339                 2005-01-01                   Brazil         59.9
## 12340                 2000-01-01                   Brazil         57.0
## 12341                 1995-01-01                   Brazil         53.8
## 12342                 1990-01-01                   Brazil         50.1
## 12343                 2015-01-01        Brunei Darussalam         70.0
## 12344                 2010-01-01        Brunei Darussalam         69.5
## 12345                 2005-01-01        Brunei Darussalam         68.6
## 12346                 2000-01-01        Brunei Darussalam         66.7
## 12347                 1995-01-01        Brunei Darussalam         64.3
## 12348                 1990-01-01        Brunei Darussalam         62.0
## 12349                 2015-01-01        Brunei Darussalam         70.0
## 12350                 2010-01-01        Brunei Darussalam         69.5
## 12351                 2005-01-01        Brunei Darussalam         68.6
## 12352                 2000-01-01        Brunei Darussalam         66.7
## 12353                 1995-01-01        Brunei Darussalam         64.3
## 12354                 1990-01-01        Brunei Darussalam         62.0
## 12355                 2015-01-01        Brunei Darussalam         70.0
## 12356                 2010-01-01        Brunei Darussalam         69.5
## 12357                 2005-01-01        Brunei Darussalam         68.6
## 12358                 2000-01-01        Brunei Darussalam         66.7
## 12359                 1995-01-01        Brunei Darussalam         64.3
## 12360                 1990-01-01        Brunei Darussalam         62.0
## 12361                 2015-01-01        Brunei Darussalam         70.0
## 12362                 2010-01-01        Brunei Darussalam         69.5
## 12363                 2005-01-01        Brunei Darussalam         68.6
## 12364                 2000-01-01        Brunei Darussalam         66.7
## 12365                 1995-01-01        Brunei Darussalam         64.3
## 12366                 1990-01-01        Brunei Darussalam         62.0
## 12367                 2015-01-01        Brunei Darussalam         70.0
## 12368                 2010-01-01        Brunei Darussalam         69.5
## 12369                 2005-01-01        Brunei Darussalam         68.6
## 12370                 2000-01-01        Brunei Darussalam         66.7
## 12371                 1995-01-01        Brunei Darussalam         64.3
## 12372                 1990-01-01        Brunei Darussalam         62.0
## 12373                 2015-01-01        Brunei Darussalam         70.0
## 12374                 2010-01-01        Brunei Darussalam         69.5
## 12375                 2005-01-01        Brunei Darussalam         68.6
## 12376                 2000-01-01        Brunei Darussalam         66.7
## 12377                 1995-01-01        Brunei Darussalam         64.3
## 12378                 1990-01-01        Brunei Darussalam         62.0
## 12379                 2015-01-01        Brunei Darussalam         70.0
## 12380                 2010-01-01        Brunei Darussalam         69.5
## 12381                 2005-01-01        Brunei Darussalam         68.6
## 12382                 2000-01-01        Brunei Darussalam         66.7
## 12383                 1995-01-01        Brunei Darussalam         64.3
## 12384                 1990-01-01        Brunei Darussalam         62.0
## 12385                 2015-01-01        Brunei Darussalam         70.0
## 12386                 2010-01-01        Brunei Darussalam         69.5
## 12387                 2005-01-01        Brunei Darussalam         68.6
## 12388                 2000-01-01        Brunei Darussalam         66.7
## 12389                 1995-01-01        Brunei Darussalam         64.3
## 12390                 1990-01-01        Brunei Darussalam         62.0
## 12391                 2015-01-01        Brunei Darussalam         70.0
## 12392                 2010-01-01        Brunei Darussalam         69.5
## 12393                 2005-01-01        Brunei Darussalam         68.6
## 12394                 2000-01-01        Brunei Darussalam         66.7
## 12395                 1995-01-01        Brunei Darussalam         64.3
## 12396                 1990-01-01        Brunei Darussalam         62.0
## 12397                 2015-01-01        Brunei Darussalam         70.0
## 12398                 2010-01-01        Brunei Darussalam         69.5
## 12399                 2005-01-01        Brunei Darussalam         68.6
## 12400                 2000-01-01        Brunei Darussalam         66.7
## 12401                 1995-01-01        Brunei Darussalam         64.3
## 12402                 1990-01-01        Brunei Darussalam         62.0
## 12403                 2015-01-01        Brunei Darussalam         70.0
## 12404                 2010-01-01        Brunei Darussalam         69.5
## 12405                 2005-01-01        Brunei Darussalam         68.6
## 12406                 2000-01-01        Brunei Darussalam         66.7
## 12407                 1995-01-01        Brunei Darussalam         64.3
## 12408                 1990-01-01        Brunei Darussalam         62.0
## 12409                 2015-01-01        Brunei Darussalam         70.0
## 12410                 2010-01-01        Brunei Darussalam         69.5
## 12411                 2005-01-01        Brunei Darussalam         68.6
## 12412                 2000-01-01        Brunei Darussalam         66.7
## 12413                 1995-01-01        Brunei Darussalam         64.3
## 12414                 1990-01-01        Brunei Darussalam         62.0
## 12415                 2015-01-01        Brunei Darussalam         70.0
## 12416                 2010-01-01        Brunei Darussalam         69.5
## 12417                 2005-01-01        Brunei Darussalam         68.6
## 12418                 2000-01-01        Brunei Darussalam         66.7
## 12419                 1995-01-01        Brunei Darussalam         64.3
## 12420                 1990-01-01        Brunei Darussalam         62.0
## 12421                 2015-01-01        Brunei Darussalam         70.0
## 12422                 2010-01-01        Brunei Darussalam         69.5
## 12423                 2005-01-01        Brunei Darussalam         68.6
## 12424                 2000-01-01        Brunei Darussalam         66.7
## 12425                 1995-01-01        Brunei Darussalam         64.3
## 12426                 1990-01-01        Brunei Darussalam         62.0
## 12427                 2015-01-01        Brunei Darussalam         70.0
## 12428                 2010-01-01        Brunei Darussalam         69.5
## 12429                 2005-01-01        Brunei Darussalam         68.6
## 12430                 2000-01-01        Brunei Darussalam         66.7
## 12431                 1995-01-01        Brunei Darussalam         64.3
## 12432                 1990-01-01        Brunei Darussalam         62.0
## 12433                 2015-01-01        Brunei Darussalam         70.0
## 12434                 2010-01-01        Brunei Darussalam         69.5
## 12435                 2005-01-01        Brunei Darussalam         68.6
## 12436                 2000-01-01        Brunei Darussalam         66.7
## 12437                 1995-01-01        Brunei Darussalam         64.3
## 12438                 1990-01-01        Brunei Darussalam         62.0
## 12439                 2015-01-01        Brunei Darussalam         70.0
## 12440                 2010-01-01        Brunei Darussalam         69.5
## 12441                 2005-01-01        Brunei Darussalam         68.6
## 12442                 2000-01-01        Brunei Darussalam         66.7
## 12443                 1995-01-01        Brunei Darussalam         64.3
## 12444                 1990-01-01        Brunei Darussalam         62.0
## 12445                 2015-01-01        Brunei Darussalam         70.0
## 12446                 2010-01-01        Brunei Darussalam         69.5
## 12447                 2005-01-01        Brunei Darussalam         68.6
## 12448                 2000-01-01        Brunei Darussalam         66.7
## 12449                 1995-01-01        Brunei Darussalam         64.3
## 12450                 1990-01-01        Brunei Darussalam         62.0
## 12451                 2015-01-01        Brunei Darussalam         70.0
## 12452                 2010-01-01        Brunei Darussalam         69.5
## 12453                 2005-01-01        Brunei Darussalam         68.6
## 12454                 2000-01-01        Brunei Darussalam         66.7
## 12455                 1995-01-01        Brunei Darussalam         64.3
## 12456                 1990-01-01        Brunei Darussalam         62.0
## 12457                 2015-01-01        Brunei Darussalam         70.0
## 12458                 2010-01-01        Brunei Darussalam         69.5
## 12459                 2005-01-01        Brunei Darussalam         68.6
## 12460                 2000-01-01        Brunei Darussalam         66.7
## 12461                 1995-01-01        Brunei Darussalam         64.3
## 12462                 1990-01-01        Brunei Darussalam         62.0
## 12463                 2015-01-01        Brunei Darussalam         70.0
## 12464                 2010-01-01        Brunei Darussalam         69.5
## 12465                 2005-01-01        Brunei Darussalam         68.6
## 12466                 2000-01-01        Brunei Darussalam         66.7
## 12467                 1995-01-01        Brunei Darussalam         64.3
## 12468                 1990-01-01        Brunei Darussalam         62.0
## 12469                 2015-01-01        Brunei Darussalam         70.0
## 12470                 2010-01-01        Brunei Darussalam         69.5
## 12471                 2005-01-01        Brunei Darussalam         68.6
## 12472                 2000-01-01        Brunei Darussalam         66.7
## 12473                 1995-01-01        Brunei Darussalam         64.3
## 12474                 1990-01-01        Brunei Darussalam         62.0
## 12475                 2015-01-01        Brunei Darussalam         70.0
## 12476                 2010-01-01        Brunei Darussalam         69.5
## 12477                 2005-01-01        Brunei Darussalam         68.6
## 12478                 2000-01-01        Brunei Darussalam         66.7
## 12479                 1995-01-01        Brunei Darussalam         64.3
## 12480                 1990-01-01        Brunei Darussalam         62.0
## 12481                 2015-01-01        Brunei Darussalam         70.0
## 12482                 2010-01-01        Brunei Darussalam         69.5
## 12483                 2005-01-01        Brunei Darussalam         68.6
## 12484                 2000-01-01        Brunei Darussalam         66.7
## 12485                 1995-01-01        Brunei Darussalam         64.3
## 12486                 1990-01-01        Brunei Darussalam         62.0
## 12487                 2015-01-01        Brunei Darussalam         70.0
## 12488                 2010-01-01        Brunei Darussalam         69.5
## 12489                 2005-01-01        Brunei Darussalam         68.6
## 12490                 2000-01-01        Brunei Darussalam         66.7
## 12491                 1995-01-01        Brunei Darussalam         64.3
## 12492                 1990-01-01        Brunei Darussalam         62.0
## 12493                 2015-01-01        Brunei Darussalam         70.0
## 12494                 2010-01-01        Brunei Darussalam         69.5
## 12495                 2005-01-01        Brunei Darussalam         68.6
## 12496                 2000-01-01        Brunei Darussalam         66.7
## 12497                 1995-01-01        Brunei Darussalam         64.3
## 12498                 1990-01-01        Brunei Darussalam         62.0
## 12499                 2015-01-01        Brunei Darussalam         70.0
## 12500                 2010-01-01        Brunei Darussalam         69.5
## 12501                 2005-01-01        Brunei Darussalam         68.6
## 12502                 2000-01-01        Brunei Darussalam         66.7
## 12503                 1995-01-01        Brunei Darussalam         64.3
## 12504                 1990-01-01        Brunei Darussalam         62.0
## 12505                 2015-01-01        Brunei Darussalam         70.0
## 12506                 2010-01-01        Brunei Darussalam         69.5
## 12507                 2005-01-01        Brunei Darussalam         68.6
## 12508                 2000-01-01        Brunei Darussalam         66.7
## 12509                 1995-01-01        Brunei Darussalam         64.3
## 12510                 1990-01-01        Brunei Darussalam         62.0
## 12511                 2015-01-01        Brunei Darussalam         70.0
## 12512                 2010-01-01        Brunei Darussalam         69.5
## 12513                 2005-01-01        Brunei Darussalam         68.6
## 12514                 2000-01-01        Brunei Darussalam         66.7
## 12515                 1995-01-01        Brunei Darussalam         64.3
## 12516                 1990-01-01        Brunei Darussalam         62.0
## 12517                 2015-01-01        Brunei Darussalam         70.0
## 12518                 2010-01-01        Brunei Darussalam         69.5
## 12519                 2005-01-01        Brunei Darussalam         68.6
## 12520                 2000-01-01        Brunei Darussalam         66.7
## 12521                 1995-01-01        Brunei Darussalam         64.3
## 12522                 1990-01-01        Brunei Darussalam         62.0
## 12523                 2015-01-01        Brunei Darussalam         70.0
## 12524                 2010-01-01        Brunei Darussalam         69.5
## 12525                 2005-01-01        Brunei Darussalam         68.6
## 12526                 2000-01-01        Brunei Darussalam         66.7
## 12527                 1995-01-01        Brunei Darussalam         64.3
## 12528                 1990-01-01        Brunei Darussalam         62.0
## 12529                 2015-01-01        Brunei Darussalam         70.0
## 12530                 2010-01-01        Brunei Darussalam         69.5
## 12531                 2005-01-01        Brunei Darussalam         68.6
## 12532                 2000-01-01        Brunei Darussalam         66.7
## 12533                 1995-01-01        Brunei Darussalam         64.3
## 12534                 1990-01-01        Brunei Darussalam         62.0
## 12535                 2015-01-01        Brunei Darussalam         70.0
## 12536                 2010-01-01        Brunei Darussalam         69.5
## 12537                 2005-01-01        Brunei Darussalam         68.6
## 12538                 2000-01-01        Brunei Darussalam         66.7
## 12539                 1995-01-01        Brunei Darussalam         64.3
## 12540                 1990-01-01        Brunei Darussalam         62.0
## 12541                 2015-01-01        Brunei Darussalam         70.0
## 12542                 2010-01-01        Brunei Darussalam         69.5
## 12543                 2005-01-01        Brunei Darussalam         68.6
## 12544                 2000-01-01        Brunei Darussalam         66.7
## 12545                 1995-01-01        Brunei Darussalam         64.3
## 12546                 1990-01-01        Brunei Darussalam         62.0
## 12547                 2015-01-01        Brunei Darussalam         70.0
## 12548                 2010-01-01        Brunei Darussalam         69.5
## 12549                 2005-01-01        Brunei Darussalam         68.6
## 12550                 2000-01-01        Brunei Darussalam         66.7
## 12551                 1995-01-01        Brunei Darussalam         64.3
## 12552                 1990-01-01        Brunei Darussalam         62.0
## 12553                 2015-01-01        Brunei Darussalam         70.0
## 12554                 2010-01-01        Brunei Darussalam         69.5
## 12555                 2005-01-01        Brunei Darussalam         68.6
## 12556                 2000-01-01        Brunei Darussalam         66.7
## 12557                 1995-01-01        Brunei Darussalam         64.3
## 12558                 1990-01-01        Brunei Darussalam         62.0
## 12559                 2015-01-01        Brunei Darussalam         70.0
## 12560                 2010-01-01        Brunei Darussalam         69.5
## 12561                 2005-01-01        Brunei Darussalam         68.6
## 12562                 2000-01-01        Brunei Darussalam         66.7
## 12563                 1995-01-01        Brunei Darussalam         64.3
## 12564                 1990-01-01        Brunei Darussalam         62.0
## 12565                 2015-01-01        Brunei Darussalam         70.0
## 12566                 2010-01-01        Brunei Darussalam         69.5
## 12567                 2005-01-01        Brunei Darussalam         68.6
## 12568                 2000-01-01        Brunei Darussalam         66.7
## 12569                 1995-01-01        Brunei Darussalam         64.3
## 12570                 1990-01-01        Brunei Darussalam         62.0
## 12571                 2015-01-01        Brunei Darussalam         70.0
## 12572                 2010-01-01        Brunei Darussalam         69.5
## 12573                 2005-01-01        Brunei Darussalam         68.6
## 12574                 2000-01-01        Brunei Darussalam         66.7
## 12575                 1995-01-01        Brunei Darussalam         64.3
## 12576                 1990-01-01        Brunei Darussalam         62.0
## 12577                 2015-01-01        Brunei Darussalam         70.0
## 12578                 2010-01-01        Brunei Darussalam         69.5
## 12579                 2005-01-01        Brunei Darussalam         68.6
## 12580                 2000-01-01        Brunei Darussalam         66.7
## 12581                 1995-01-01        Brunei Darussalam         64.3
## 12582                 1990-01-01        Brunei Darussalam         62.0
## 12583                 2015-01-01        Brunei Darussalam         70.0
## 12584                 2010-01-01        Brunei Darussalam         69.5
## 12585                 2005-01-01        Brunei Darussalam         68.6
## 12586                 2000-01-01        Brunei Darussalam         66.7
## 12587                 1995-01-01        Brunei Darussalam         64.3
## 12588                 1990-01-01        Brunei Darussalam         62.0
## 12589                 2015-01-01        Brunei Darussalam         70.0
## 12590                 2010-01-01        Brunei Darussalam         69.5
## 12591                 2005-01-01        Brunei Darussalam         68.6
## 12592                 2000-01-01        Brunei Darussalam         66.7
## 12593                 1995-01-01        Brunei Darussalam         64.3
## 12594                 1990-01-01        Brunei Darussalam         62.0
## 12595                 2015-01-01        Brunei Darussalam         70.0
## 12596                 2010-01-01        Brunei Darussalam         69.5
## 12597                 2005-01-01        Brunei Darussalam         68.6
## 12598                 2000-01-01        Brunei Darussalam         66.7
## 12599                 1995-01-01        Brunei Darussalam         64.3
## 12600                 1990-01-01        Brunei Darussalam         62.0
## 12601                 2015-01-01        Brunei Darussalam         70.0
## 12602                 2010-01-01        Brunei Darussalam         69.5
## 12603                 2005-01-01        Brunei Darussalam         68.6
## 12604                 2000-01-01        Brunei Darussalam         66.7
## 12605                 1995-01-01        Brunei Darussalam         64.3
## 12606                 1990-01-01        Brunei Darussalam         62.0
## 12607                 2015-01-01        Brunei Darussalam         70.0
## 12608                 2010-01-01        Brunei Darussalam         69.5
## 12609                 2005-01-01        Brunei Darussalam         68.6
## 12610                 2000-01-01        Brunei Darussalam         66.7
## 12611                 1995-01-01        Brunei Darussalam         64.3
## 12612                 1990-01-01        Brunei Darussalam         62.0
## 12613                 2015-01-01        Brunei Darussalam         70.0
## 12614                 2010-01-01        Brunei Darussalam         69.5
## 12615                 2005-01-01        Brunei Darussalam         68.6
## 12616                 2000-01-01        Brunei Darussalam         66.7
## 12617                 1995-01-01        Brunei Darussalam         64.3
## 12618                 1990-01-01        Brunei Darussalam         62.0
## 12619                 2015-01-01        Brunei Darussalam         70.0
## 12620                 2010-01-01        Brunei Darussalam         69.5
## 12621                 2005-01-01        Brunei Darussalam         68.6
## 12622                 2000-01-01        Brunei Darussalam         66.7
## 12623                 1995-01-01        Brunei Darussalam         64.3
## 12624                 1990-01-01        Brunei Darussalam         62.0
## 12625                 2015-01-01        Brunei Darussalam         70.0
## 12626                 2010-01-01        Brunei Darussalam         69.5
## 12627                 2005-01-01        Brunei Darussalam         68.6
## 12628                 2000-01-01        Brunei Darussalam         66.7
## 12629                 1995-01-01        Brunei Darussalam         64.3
## 12630                 1990-01-01        Brunei Darussalam         62.0
## 12631                 2015-01-01        Brunei Darussalam         70.0
## 12632                 2010-01-01        Brunei Darussalam         69.5
## 12633                 2005-01-01        Brunei Darussalam         68.6
## 12634                 2000-01-01        Brunei Darussalam         66.7
## 12635                 1995-01-01        Brunei Darussalam         64.3
## 12636                 1990-01-01        Brunei Darussalam         62.0
## 12637                 2015-01-01        Brunei Darussalam         70.0
## 12638                 2010-01-01        Brunei Darussalam         69.5
## 12639                 2005-01-01        Brunei Darussalam         68.6
## 12640                 2000-01-01        Brunei Darussalam         66.7
## 12641                 1995-01-01        Brunei Darussalam         64.3
## 12642                 1990-01-01        Brunei Darussalam         62.0
## 12643                 2015-01-01        Brunei Darussalam         70.0
## 12644                 2010-01-01        Brunei Darussalam         69.5
## 12645                 2005-01-01        Brunei Darussalam         68.6
## 12646                 2000-01-01        Brunei Darussalam         66.7
## 12647                 1995-01-01        Brunei Darussalam         64.3
## 12648                 1990-01-01        Brunei Darussalam         62.0
## 12649                 2015-01-01        Brunei Darussalam         70.0
## 12650                 2010-01-01        Brunei Darussalam         69.5
## 12651                 2005-01-01        Brunei Darussalam         68.6
## 12652                 2000-01-01        Brunei Darussalam         66.7
## 12653                 1995-01-01        Brunei Darussalam         64.3
## 12654                 1990-01-01        Brunei Darussalam         62.0
## 12655                 2015-01-01        Brunei Darussalam         70.0
## 12656                 2010-01-01        Brunei Darussalam         69.5
## 12657                 2005-01-01        Brunei Darussalam         68.6
## 12658                 2000-01-01        Brunei Darussalam         66.7
## 12659                 1995-01-01        Brunei Darussalam         64.3
## 12660                 1990-01-01        Brunei Darussalam         62.0
## 12661                 2015-01-01        Brunei Darussalam         70.0
## 12662                 2010-01-01        Brunei Darussalam         69.5
## 12663                 2005-01-01        Brunei Darussalam         68.6
## 12664                 2000-01-01        Brunei Darussalam         66.7
## 12665                 1995-01-01        Brunei Darussalam         64.3
## 12666                 1990-01-01        Brunei Darussalam         62.0
## 12667                 2015-01-01        Brunei Darussalam         70.0
## 12668                 2010-01-01        Brunei Darussalam         69.5
## 12669                 2005-01-01        Brunei Darussalam         68.6
## 12670                 2000-01-01        Brunei Darussalam         66.7
## 12671                 1995-01-01        Brunei Darussalam         64.3
## 12672                 1990-01-01        Brunei Darussalam         62.0
## 12673                 2015-01-01        Brunei Darussalam         70.0
## 12674                 2010-01-01        Brunei Darussalam         69.5
## 12675                 2005-01-01        Brunei Darussalam         68.6
## 12676                 2000-01-01        Brunei Darussalam         66.7
## 12677                 1995-01-01        Brunei Darussalam         64.3
## 12678                 1990-01-01        Brunei Darussalam         62.0
## 12679                 2015-01-01        Brunei Darussalam         70.0
## 12680                 2010-01-01        Brunei Darussalam         69.5
## 12681                 2005-01-01        Brunei Darussalam         68.6
## 12682                 2000-01-01        Brunei Darussalam         66.7
## 12683                 1995-01-01        Brunei Darussalam         64.3
## 12684                 1990-01-01        Brunei Darussalam         62.0
## 12685                 2015-01-01        Brunei Darussalam         70.0
## 12686                 2010-01-01        Brunei Darussalam         69.5
## 12687                 2005-01-01        Brunei Darussalam         68.6
## 12688                 2000-01-01        Brunei Darussalam         66.7
## 12689                 1995-01-01        Brunei Darussalam         64.3
## 12690                 1990-01-01        Brunei Darussalam         62.0
## 12691                 2015-01-01        Brunei Darussalam         70.0
## 12692                 2010-01-01        Brunei Darussalam         69.5
## 12693                 2005-01-01        Brunei Darussalam         68.6
## 12694                 2000-01-01        Brunei Darussalam         66.7
## 12695                 1995-01-01        Brunei Darussalam         64.3
## 12696                 1990-01-01        Brunei Darussalam         62.0
## 12697                 2015-01-01        Brunei Darussalam         70.0
## 12698                 2010-01-01        Brunei Darussalam         69.5
## 12699                 2005-01-01        Brunei Darussalam         68.6
## 12700                 2000-01-01        Brunei Darussalam         66.7
## 12701                 1995-01-01        Brunei Darussalam         64.3
## 12702                 1990-01-01        Brunei Darussalam         62.0
## 12703                 2015-01-01        Brunei Darussalam         70.0
## 12704                 2010-01-01        Brunei Darussalam         69.5
## 12705                 2005-01-01        Brunei Darussalam         68.6
## 12706                 2000-01-01        Brunei Darussalam         66.7
## 12707                 1995-01-01        Brunei Darussalam         64.3
## 12708                 1990-01-01        Brunei Darussalam         62.0
## 12709                 2015-01-01        Brunei Darussalam         70.0
## 12710                 2010-01-01        Brunei Darussalam         69.5
## 12711                 2005-01-01        Brunei Darussalam         68.6
## 12712                 2000-01-01        Brunei Darussalam         66.7
## 12713                 1995-01-01        Brunei Darussalam         64.3
## 12714                 1990-01-01        Brunei Darussalam         62.0
## 12715                 2015-01-01        Brunei Darussalam         70.0
## 12716                 2010-01-01        Brunei Darussalam         69.5
## 12717                 2005-01-01        Brunei Darussalam         68.6
## 12718                 2000-01-01        Brunei Darussalam         66.7
## 12719                 1995-01-01        Brunei Darussalam         64.3
## 12720                 1990-01-01        Brunei Darussalam         62.0
## 12721                 2015-01-01        Brunei Darussalam         70.0
## 12722                 2010-01-01        Brunei Darussalam         69.5
## 12723                 2005-01-01        Brunei Darussalam         68.6
## 12724                 2000-01-01        Brunei Darussalam         66.7
## 12725                 1995-01-01        Brunei Darussalam         64.3
## 12726                 1990-01-01        Brunei Darussalam         62.0
## 12727                 2015-01-01        Brunei Darussalam         70.0
## 12728                 2010-01-01        Brunei Darussalam         69.5
## 12729                 2005-01-01        Brunei Darussalam         68.6
## 12730                 2000-01-01        Brunei Darussalam         66.7
## 12731                 1995-01-01        Brunei Darussalam         64.3
## 12732                 1990-01-01        Brunei Darussalam         62.0
## 12733                 2015-01-01        Brunei Darussalam         70.0
## 12734                 2010-01-01        Brunei Darussalam         69.5
## 12735                 2005-01-01        Brunei Darussalam         68.6
## 12736                 2000-01-01        Brunei Darussalam         66.7
## 12737                 1995-01-01        Brunei Darussalam         64.3
## 12738                 1990-01-01        Brunei Darussalam         62.0
## 12739                 2015-01-01        Brunei Darussalam         70.0
## 12740                 2010-01-01        Brunei Darussalam         69.5
## 12741                 2005-01-01        Brunei Darussalam         68.6
## 12742                 2000-01-01        Brunei Darussalam         66.7
## 12743                 1995-01-01        Brunei Darussalam         64.3
## 12744                 1990-01-01        Brunei Darussalam         62.0
## 12745                 2015-01-01        Brunei Darussalam         70.0
## 12746                 2010-01-01        Brunei Darussalam         69.5
## 12747                 2005-01-01        Brunei Darussalam         68.6
## 12748                 2000-01-01        Brunei Darussalam         66.7
## 12749                 1995-01-01        Brunei Darussalam         64.3
## 12750                 1990-01-01        Brunei Darussalam         62.0
## 12751                 2015-01-01        Brunei Darussalam         70.0
## 12752                 2010-01-01        Brunei Darussalam         69.5
## 12753                 2005-01-01        Brunei Darussalam         68.6
## 12754                 2000-01-01        Brunei Darussalam         66.7
## 12755                 1995-01-01        Brunei Darussalam         64.3
## 12756                 1990-01-01        Brunei Darussalam         62.0
## 12757                 2015-01-01        Brunei Darussalam         70.0
## 12758                 2010-01-01        Brunei Darussalam         69.5
## 12759                 2005-01-01        Brunei Darussalam         68.6
## 12760                 2000-01-01        Brunei Darussalam         66.7
## 12761                 1995-01-01        Brunei Darussalam         64.3
## 12762                 1990-01-01        Brunei Darussalam         62.0
## 12763                 2015-01-01        Brunei Darussalam         70.0
## 12764                 2010-01-01        Brunei Darussalam         69.5
## 12765                 2005-01-01        Brunei Darussalam         68.6
## 12766                 2000-01-01        Brunei Darussalam         66.7
## 12767                 1995-01-01        Brunei Darussalam         64.3
## 12768                 1990-01-01        Brunei Darussalam         62.0
## 12769                 2015-01-01        Brunei Darussalam         70.0
## 12770                 2010-01-01        Brunei Darussalam         69.5
## 12771                 2005-01-01        Brunei Darussalam         68.6
## 12772                 2000-01-01        Brunei Darussalam         66.7
## 12773                 1995-01-01        Brunei Darussalam         64.3
## 12774                 1990-01-01        Brunei Darussalam         62.0
## 12775                 2015-01-01        Brunei Darussalam         70.0
## 12776                 2010-01-01        Brunei Darussalam         69.5
## 12777                 2005-01-01        Brunei Darussalam         68.6
## 12778                 2000-01-01        Brunei Darussalam         66.7
## 12779                 1995-01-01        Brunei Darussalam         64.3
## 12780                 1990-01-01        Brunei Darussalam         62.0
## 12781                 2015-01-01        Brunei Darussalam         70.0
## 12782                 2010-01-01        Brunei Darussalam         69.5
## 12783                 2005-01-01        Brunei Darussalam         68.6
## 12784                 2000-01-01        Brunei Darussalam         66.7
## 12785                 1995-01-01        Brunei Darussalam         64.3
## 12786                 1990-01-01        Brunei Darussalam         62.0
## 12787                 2015-01-01        Brunei Darussalam         70.0
## 12788                 2010-01-01        Brunei Darussalam         69.5
## 12789                 2005-01-01        Brunei Darussalam         68.6
## 12790                 2000-01-01        Brunei Darussalam         66.7
## 12791                 1995-01-01        Brunei Darussalam         64.3
## 12792                 1990-01-01        Brunei Darussalam         62.0
## 12793                 2015-01-01        Brunei Darussalam         70.0
## 12794                 2010-01-01        Brunei Darussalam         69.5
## 12795                 2005-01-01        Brunei Darussalam         68.6
## 12796                 2000-01-01        Brunei Darussalam         66.7
## 12797                 1995-01-01        Brunei Darussalam         64.3
## 12798                 1990-01-01        Brunei Darussalam         62.0
## 12799                 2015-01-01        Brunei Darussalam         70.0
## 12800                 2010-01-01        Brunei Darussalam         69.5
## 12801                 2005-01-01        Brunei Darussalam         68.6
## 12802                 2000-01-01        Brunei Darussalam         66.7
## 12803                 1995-01-01        Brunei Darussalam         64.3
## 12804                 1990-01-01        Brunei Darussalam         62.0
## 12805                 2015-01-01        Brunei Darussalam         70.0
## 12806                 2010-01-01        Brunei Darussalam         69.5
## 12807                 2005-01-01        Brunei Darussalam         68.6
## 12808                 2000-01-01        Brunei Darussalam         66.7
## 12809                 1995-01-01        Brunei Darussalam         64.3
## 12810                 1990-01-01        Brunei Darussalam         62.0
## 12811                 2015-01-01        Brunei Darussalam         70.0
## 12812                 2010-01-01        Brunei Darussalam         69.5
## 12813                 2005-01-01        Brunei Darussalam         68.6
## 12814                 2000-01-01        Brunei Darussalam         66.7
## 12815                 1995-01-01        Brunei Darussalam         64.3
## 12816                 1990-01-01        Brunei Darussalam         62.0
## 12817                 2015-01-01        Brunei Darussalam         70.0
## 12818                 2010-01-01        Brunei Darussalam         69.5
## 12819                 2005-01-01        Brunei Darussalam         68.6
## 12820                 2000-01-01        Brunei Darussalam         66.7
## 12821                 1995-01-01        Brunei Darussalam         64.3
## 12822                 1990-01-01        Brunei Darussalam         62.0
## 12823                 2015-01-01        Brunei Darussalam         70.0
## 12824                 2010-01-01        Brunei Darussalam         69.5
## 12825                 2005-01-01        Brunei Darussalam         68.6
## 12826                 2000-01-01        Brunei Darussalam         66.7
## 12827                 1995-01-01        Brunei Darussalam         64.3
## 12828                 1990-01-01        Brunei Darussalam         62.0
## 12829                 2015-01-01        Brunei Darussalam         70.0
## 12830                 2010-01-01        Brunei Darussalam         69.5
## 12831                 2005-01-01        Brunei Darussalam         68.6
## 12832                 2000-01-01        Brunei Darussalam         66.7
## 12833                 1995-01-01        Brunei Darussalam         64.3
## 12834                 1990-01-01        Brunei Darussalam         62.0
## 12835                 2015-01-01        Brunei Darussalam         70.0
## 12836                 2010-01-01        Brunei Darussalam         69.5
## 12837                 2005-01-01        Brunei Darussalam         68.6
## 12838                 2000-01-01        Brunei Darussalam         66.7
## 12839                 1995-01-01        Brunei Darussalam         64.3
## 12840                 1990-01-01        Brunei Darussalam         62.0
## 12841                 2015-01-01        Brunei Darussalam         70.0
## 12842                 2010-01-01        Brunei Darussalam         69.5
## 12843                 2005-01-01        Brunei Darussalam         68.6
## 12844                 2000-01-01        Brunei Darussalam         66.7
## 12845                 1995-01-01        Brunei Darussalam         64.3
## 12846                 1990-01-01        Brunei Darussalam         62.0
## 12847                 2015-01-01        Brunei Darussalam         70.0
## 12848                 2010-01-01        Brunei Darussalam         69.5
## 12849                 2005-01-01        Brunei Darussalam         68.6
## 12850                 2000-01-01        Brunei Darussalam         66.7
## 12851                 1995-01-01        Brunei Darussalam         64.3
## 12852                 1990-01-01        Brunei Darussalam         62.0
## 12853                 2015-01-01        Brunei Darussalam         70.0
## 12854                 2010-01-01        Brunei Darussalam         69.5
## 12855                 2005-01-01        Brunei Darussalam         68.6
## 12856                 2000-01-01        Brunei Darussalam         66.7
## 12857                 1995-01-01        Brunei Darussalam         64.3
## 12858                 1990-01-01        Brunei Darussalam         62.0
## 12859                 2015-01-01                 Bulgaria         71.4
## 12860                 2010-01-01                 Bulgaria         67.9
## 12861                 2005-01-01                 Bulgaria         66.7
## 12862                 2000-01-01                 Bulgaria         64.8
## 12863                 1995-01-01                 Bulgaria         63.2
## 12864                 1990-01-01                 Bulgaria         63.0
## 12865                 2015-01-01                 Bulgaria         71.4
## 12866                 2010-01-01                 Bulgaria         67.9
## 12867                 2005-01-01                 Bulgaria         66.7
## 12868                 2000-01-01                 Bulgaria         64.8
## 12869                 1995-01-01                 Bulgaria         63.2
## 12870                 1990-01-01                 Bulgaria         63.0
## 12871                 2015-01-01                 Bulgaria         71.4
## 12872                 2010-01-01                 Bulgaria         67.9
## 12873                 2005-01-01                 Bulgaria         66.7
## 12874                 2000-01-01                 Bulgaria         64.8
## 12875                 1995-01-01                 Bulgaria         63.2
## 12876                 1990-01-01                 Bulgaria         63.0
## 12877                 2015-01-01                 Bulgaria         71.4
## 12878                 2010-01-01                 Bulgaria         67.9
## 12879                 2005-01-01                 Bulgaria         66.7
## 12880                 2000-01-01                 Bulgaria         64.8
## 12881                 1995-01-01                 Bulgaria         63.2
## 12882                 1990-01-01                 Bulgaria         63.0
## 12883                 2015-01-01                 Bulgaria         71.4
## 12884                 2010-01-01                 Bulgaria         67.9
## 12885                 2005-01-01                 Bulgaria         66.7
## 12886                 2000-01-01                 Bulgaria         64.8
## 12887                 1995-01-01                 Bulgaria         63.2
## 12888                 1990-01-01                 Bulgaria         63.0
## 12889                 2015-01-01                 Bulgaria         71.4
## 12890                 2010-01-01                 Bulgaria         67.9
## 12891                 2005-01-01                 Bulgaria         66.7
## 12892                 2000-01-01                 Bulgaria         64.8
## 12893                 1995-01-01                 Bulgaria         63.2
## 12894                 1990-01-01                 Bulgaria         63.0
## 12895                 2015-01-01                 Bulgaria         71.4
## 12896                 2010-01-01                 Bulgaria         67.9
## 12897                 2005-01-01                 Bulgaria         66.7
## 12898                 2000-01-01                 Bulgaria         64.8
## 12899                 1995-01-01                 Bulgaria         63.2
## 12900                 1990-01-01                 Bulgaria         63.0
## 12901                 2015-01-01                 Bulgaria         71.4
## 12902                 2010-01-01                 Bulgaria         67.9
## 12903                 2005-01-01                 Bulgaria         66.7
## 12904                 2000-01-01                 Bulgaria         64.8
## 12905                 1995-01-01                 Bulgaria         63.2
## 12906                 1990-01-01                 Bulgaria         63.0
## 12907                 2015-01-01                 Bulgaria         71.4
## 12908                 2010-01-01                 Bulgaria         67.9
## 12909                 2005-01-01                 Bulgaria         66.7
## 12910                 2000-01-01                 Bulgaria         64.8
## 12911                 1995-01-01                 Bulgaria         63.2
## 12912                 1990-01-01                 Bulgaria         63.0
## 12913                 2015-01-01                 Bulgaria         71.4
## 12914                 2010-01-01                 Bulgaria         67.9
## 12915                 2005-01-01                 Bulgaria         66.7
## 12916                 2000-01-01                 Bulgaria         64.8
## 12917                 1995-01-01                 Bulgaria         63.2
## 12918                 1990-01-01                 Bulgaria         63.0
## 12919                 2015-01-01                 Bulgaria         71.4
## 12920                 2010-01-01                 Bulgaria         67.9
## 12921                 2005-01-01                 Bulgaria         66.7
## 12922                 2000-01-01                 Bulgaria         64.8
## 12923                 1995-01-01                 Bulgaria         63.2
## 12924                 1990-01-01                 Bulgaria         63.0
## 12925                 2015-01-01                 Bulgaria         71.4
## 12926                 2010-01-01                 Bulgaria         67.9
## 12927                 2005-01-01                 Bulgaria         66.7
## 12928                 2000-01-01                 Bulgaria         64.8
## 12929                 1995-01-01                 Bulgaria         63.2
## 12930                 1990-01-01                 Bulgaria         63.0
## 12931                 2015-01-01                 Bulgaria         71.4
## 12932                 2010-01-01                 Bulgaria         67.9
## 12933                 2005-01-01                 Bulgaria         66.7
## 12934                 2000-01-01                 Bulgaria         64.8
## 12935                 1995-01-01                 Bulgaria         63.2
## 12936                 1990-01-01                 Bulgaria         63.0
## 12937                 2015-01-01                 Bulgaria         71.4
## 12938                 2010-01-01                 Bulgaria         67.9
## 12939                 2005-01-01                 Bulgaria         66.7
## 12940                 2000-01-01                 Bulgaria         64.8
## 12941                 1995-01-01                 Bulgaria         63.2
## 12942                 1990-01-01                 Bulgaria         63.0
## 12943                 2015-01-01                 Bulgaria         71.4
## 12944                 2010-01-01                 Bulgaria         67.9
## 12945                 2005-01-01                 Bulgaria         66.7
## 12946                 2000-01-01                 Bulgaria         64.8
## 12947                 1995-01-01                 Bulgaria         63.2
## 12948                 1990-01-01                 Bulgaria         63.0
## 12949                 2015-01-01                 Bulgaria         71.4
## 12950                 2010-01-01                 Bulgaria         67.9
## 12951                 2005-01-01                 Bulgaria         66.7
## 12952                 2000-01-01                 Bulgaria         64.8
## 12953                 1995-01-01                 Bulgaria         63.2
## 12954                 1990-01-01                 Bulgaria         63.0
## 12955                 2015-01-01                 Bulgaria         71.4
## 12956                 2010-01-01                 Bulgaria         67.9
## 12957                 2005-01-01                 Bulgaria         66.7
## 12958                 2000-01-01                 Bulgaria         64.8
## 12959                 1995-01-01                 Bulgaria         63.2
## 12960                 1990-01-01                 Bulgaria         63.0
## 12961                 2015-01-01                 Bulgaria         71.4
## 12962                 2010-01-01                 Bulgaria         67.9
## 12963                 2005-01-01                 Bulgaria         66.7
## 12964                 2000-01-01                 Bulgaria         64.8
## 12965                 1995-01-01                 Bulgaria         63.2
## 12966                 1990-01-01                 Bulgaria         63.0
## 12967                 2015-01-01                 Bulgaria         71.4
## 12968                 2010-01-01                 Bulgaria         67.9
## 12969                 2005-01-01                 Bulgaria         66.7
## 12970                 2000-01-01                 Bulgaria         64.8
## 12971                 1995-01-01                 Bulgaria         63.2
## 12972                 1990-01-01                 Bulgaria         63.0
## 12973                 2015-01-01                 Bulgaria         71.4
## 12974                 2010-01-01                 Bulgaria         67.9
## 12975                 2005-01-01                 Bulgaria         66.7
## 12976                 2000-01-01                 Bulgaria         64.8
## 12977                 1995-01-01                 Bulgaria         63.2
## 12978                 1990-01-01                 Bulgaria         63.0
## 12979                 2015-01-01                 Bulgaria         71.4
## 12980                 2010-01-01                 Bulgaria         67.9
## 12981                 2005-01-01                 Bulgaria         66.7
## 12982                 2000-01-01                 Bulgaria         64.8
## 12983                 1995-01-01                 Bulgaria         63.2
## 12984                 1990-01-01                 Bulgaria         63.0
## 12985                 2015-01-01                 Bulgaria         71.4
## 12986                 2010-01-01                 Bulgaria         67.9
## 12987                 2005-01-01                 Bulgaria         66.7
## 12988                 2000-01-01                 Bulgaria         64.8
## 12989                 1995-01-01                 Bulgaria         63.2
## 12990                 1990-01-01                 Bulgaria         63.0
## 12991                 2015-01-01                 Bulgaria         71.4
## 12992                 2010-01-01                 Bulgaria         67.9
## 12993                 2005-01-01                 Bulgaria         66.7
## 12994                 2000-01-01                 Bulgaria         64.8
## 12995                 1995-01-01                 Bulgaria         63.2
## 12996                 1990-01-01                 Bulgaria         63.0
## 12997                 2015-01-01                 Bulgaria         71.4
## 12998                 2010-01-01                 Bulgaria         67.9
## 12999                 2005-01-01                 Bulgaria         66.7
## 13000                 2000-01-01                 Bulgaria         64.8
## 13001                 1995-01-01                 Bulgaria         63.2
## 13002                 1990-01-01                 Bulgaria         63.0
## 13003                 2015-01-01                 Bulgaria         71.4
## 13004                 2010-01-01                 Bulgaria         67.9
## 13005                 2005-01-01                 Bulgaria         66.7
## 13006                 2000-01-01                 Bulgaria         64.8
## 13007                 1995-01-01                 Bulgaria         63.2
## 13008                 1990-01-01                 Bulgaria         63.0
## 13009                 2015-01-01                 Bulgaria         71.4
## 13010                 2010-01-01                 Bulgaria         67.9
## 13011                 2005-01-01                 Bulgaria         66.7
## 13012                 2000-01-01                 Bulgaria         64.8
## 13013                 1995-01-01                 Bulgaria         63.2
## 13014                 1990-01-01                 Bulgaria         63.0
## 13015                 2015-01-01                 Bulgaria         71.4
## 13016                 2010-01-01                 Bulgaria         67.9
## 13017                 2005-01-01                 Bulgaria         66.7
## 13018                 2000-01-01                 Bulgaria         64.8
## 13019                 1995-01-01                 Bulgaria         63.2
## 13020                 1990-01-01                 Bulgaria         63.0
## 13021                 2015-01-01                 Bulgaria         71.4
## 13022                 2010-01-01                 Bulgaria         67.9
## 13023                 2005-01-01                 Bulgaria         66.7
## 13024                 2000-01-01                 Bulgaria         64.8
## 13025                 1995-01-01                 Bulgaria         63.2
## 13026                 1990-01-01                 Bulgaria         63.0
## 13027                 2015-01-01                 Bulgaria         71.4
## 13028                 2010-01-01                 Bulgaria         67.9
## 13029                 2005-01-01                 Bulgaria         66.7
## 13030                 2000-01-01                 Bulgaria         64.8
## 13031                 1995-01-01                 Bulgaria         63.2
## 13032                 1990-01-01                 Bulgaria         63.0
## 13033                 2015-01-01                 Bulgaria         71.4
## 13034                 2010-01-01                 Bulgaria         67.9
## 13035                 2005-01-01                 Bulgaria         66.7
## 13036                 2000-01-01                 Bulgaria         64.8
## 13037                 1995-01-01                 Bulgaria         63.2
## 13038                 1990-01-01                 Bulgaria         63.0
## 13039                 2015-01-01                 Bulgaria         71.4
## 13040                 2010-01-01                 Bulgaria         67.9
## 13041                 2005-01-01                 Bulgaria         66.7
## 13042                 2000-01-01                 Bulgaria         64.8
## 13043                 1995-01-01                 Bulgaria         63.2
## 13044                 1990-01-01                 Bulgaria         63.0
## 13045                 2015-01-01                 Bulgaria         71.4
## 13046                 2010-01-01                 Bulgaria         67.9
## 13047                 2005-01-01                 Bulgaria         66.7
## 13048                 2000-01-01                 Bulgaria         64.8
## 13049                 1995-01-01                 Bulgaria         63.2
## 13050                 1990-01-01                 Bulgaria         63.0
## 13051                 2015-01-01                 Bulgaria         71.4
## 13052                 2010-01-01                 Bulgaria         67.9
## 13053                 2005-01-01                 Bulgaria         66.7
## 13054                 2000-01-01                 Bulgaria         64.8
## 13055                 1995-01-01                 Bulgaria         63.2
## 13056                 1990-01-01                 Bulgaria         63.0
## 13057                 2015-01-01                 Bulgaria         71.4
## 13058                 2010-01-01                 Bulgaria         67.9
## 13059                 2005-01-01                 Bulgaria         66.7
## 13060                 2000-01-01                 Bulgaria         64.8
## 13061                 1995-01-01                 Bulgaria         63.2
## 13062                 1990-01-01                 Bulgaria         63.0
## 13063                 2015-01-01                 Bulgaria         71.4
## 13064                 2010-01-01                 Bulgaria         67.9
## 13065                 2005-01-01                 Bulgaria         66.7
## 13066                 2000-01-01                 Bulgaria         64.8
## 13067                 1995-01-01                 Bulgaria         63.2
## 13068                 1990-01-01                 Bulgaria         63.0
## 13069                 2015-01-01                 Bulgaria         71.4
## 13070                 2010-01-01                 Bulgaria         67.9
## 13071                 2005-01-01                 Bulgaria         66.7
## 13072                 2000-01-01                 Bulgaria         64.8
## 13073                 1995-01-01                 Bulgaria         63.2
## 13074                 1990-01-01                 Bulgaria         63.0
## 13075                 2015-01-01                 Bulgaria         71.4
## 13076                 2010-01-01                 Bulgaria         67.9
## 13077                 2005-01-01                 Bulgaria         66.7
## 13078                 2000-01-01                 Bulgaria         64.8
## 13079                 1995-01-01                 Bulgaria         63.2
## 13080                 1990-01-01                 Bulgaria         63.0
## 13081                 2015-01-01                 Bulgaria         71.4
## 13082                 2010-01-01                 Bulgaria         67.9
## 13083                 2005-01-01                 Bulgaria         66.7
## 13084                 2000-01-01                 Bulgaria         64.8
## 13085                 1995-01-01                 Bulgaria         63.2
## 13086                 1990-01-01                 Bulgaria         63.0
## 13087                 2015-01-01                 Bulgaria         71.4
## 13088                 2010-01-01                 Bulgaria         67.9
## 13089                 2005-01-01                 Bulgaria         66.7
## 13090                 2000-01-01                 Bulgaria         64.8
## 13091                 1995-01-01                 Bulgaria         63.2
## 13092                 1990-01-01                 Bulgaria         63.0
## 13093                 2015-01-01                 Bulgaria         71.4
## 13094                 2010-01-01                 Bulgaria         67.9
## 13095                 2005-01-01                 Bulgaria         66.7
## 13096                 2000-01-01                 Bulgaria         64.8
## 13097                 1995-01-01                 Bulgaria         63.2
## 13098                 1990-01-01                 Bulgaria         63.0
## 13099                 2015-01-01                 Bulgaria         71.4
## 13100                 2010-01-01                 Bulgaria         67.9
## 13101                 2005-01-01                 Bulgaria         66.7
## 13102                 2000-01-01                 Bulgaria         64.8
## 13103                 1995-01-01                 Bulgaria         63.2
## 13104                 1990-01-01                 Bulgaria         63.0
## 13105                 2015-01-01                 Bulgaria         71.4
## 13106                 2010-01-01                 Bulgaria         67.9
## 13107                 2005-01-01                 Bulgaria         66.7
## 13108                 2000-01-01                 Bulgaria         64.8
## 13109                 1995-01-01                 Bulgaria         63.2
## 13110                 1990-01-01                 Bulgaria         63.0
## 13111                 2015-01-01                 Bulgaria         71.4
## 13112                 2010-01-01                 Bulgaria         67.9
## 13113                 2005-01-01                 Bulgaria         66.7
## 13114                 2000-01-01                 Bulgaria         64.8
## 13115                 1995-01-01                 Bulgaria         63.2
## 13116                 1990-01-01                 Bulgaria         63.0
## 13117                 2015-01-01                 Bulgaria         71.4
## 13118                 2010-01-01                 Bulgaria         67.9
## 13119                 2005-01-01                 Bulgaria         66.7
## 13120                 2000-01-01                 Bulgaria         64.8
## 13121                 1995-01-01                 Bulgaria         63.2
## 13122                 1990-01-01                 Bulgaria         63.0
## 13123                 2015-01-01                 Bulgaria         71.4
## 13124                 2010-01-01                 Bulgaria         67.9
## 13125                 2005-01-01                 Bulgaria         66.7
## 13126                 2000-01-01                 Bulgaria         64.8
## 13127                 1995-01-01                 Bulgaria         63.2
## 13128                 1990-01-01                 Bulgaria         63.0
## 13129                 2015-01-01                 Bulgaria         71.4
## 13130                 2010-01-01                 Bulgaria         67.9
## 13131                 2005-01-01                 Bulgaria         66.7
## 13132                 2000-01-01                 Bulgaria         64.8
## 13133                 1995-01-01                 Bulgaria         63.2
## 13134                 1990-01-01                 Bulgaria         63.0
## 13135                 2015-01-01                 Bulgaria         71.4
## 13136                 2010-01-01                 Bulgaria         67.9
## 13137                 2005-01-01                 Bulgaria         66.7
## 13138                 2000-01-01                 Bulgaria         64.8
## 13139                 1995-01-01                 Bulgaria         63.2
## 13140                 1990-01-01                 Bulgaria         63.0
## 13141                 2015-01-01                 Bulgaria         71.4
## 13142                 2010-01-01                 Bulgaria         67.9
## 13143                 2005-01-01                 Bulgaria         66.7
## 13144                 2000-01-01                 Bulgaria         64.8
## 13145                 1995-01-01                 Bulgaria         63.2
## 13146                 1990-01-01                 Bulgaria         63.0
## 13147                 2015-01-01                 Bulgaria         71.4
## 13148                 2010-01-01                 Bulgaria         67.9
## 13149                 2005-01-01                 Bulgaria         66.7
## 13150                 2000-01-01                 Bulgaria         64.8
## 13151                 1995-01-01                 Bulgaria         63.2
## 13152                 1990-01-01                 Bulgaria         63.0
## 13153                 2015-01-01                 Bulgaria         71.4
## 13154                 2010-01-01                 Bulgaria         67.9
## 13155                 2005-01-01                 Bulgaria         66.7
## 13156                 2000-01-01                 Bulgaria         64.8
## 13157                 1995-01-01                 Bulgaria         63.2
## 13158                 1990-01-01                 Bulgaria         63.0
## 13159                 2015-01-01                 Bulgaria         71.4
## 13160                 2010-01-01                 Bulgaria         67.9
## 13161                 2005-01-01                 Bulgaria         66.7
## 13162                 2000-01-01                 Bulgaria         64.8
## 13163                 1995-01-01                 Bulgaria         63.2
## 13164                 1990-01-01                 Bulgaria         63.0
## 13165                 2015-01-01                 Bulgaria         71.4
## 13166                 2010-01-01                 Bulgaria         67.9
## 13167                 2005-01-01                 Bulgaria         66.7
## 13168                 2000-01-01                 Bulgaria         64.8
## 13169                 1995-01-01                 Bulgaria         63.2
## 13170                 1990-01-01                 Bulgaria         63.0
## 13171                 2015-01-01                 Bulgaria         71.4
## 13172                 2010-01-01                 Bulgaria         67.9
## 13173                 2005-01-01                 Bulgaria         66.7
## 13174                 2000-01-01                 Bulgaria         64.8
## 13175                 1995-01-01                 Bulgaria         63.2
## 13176                 1990-01-01                 Bulgaria         63.0
## 13177                 2015-01-01                 Bulgaria         71.4
## 13178                 2010-01-01                 Bulgaria         67.9
## 13179                 2005-01-01                 Bulgaria         66.7
## 13180                 2000-01-01                 Bulgaria         64.8
## 13181                 1995-01-01                 Bulgaria         63.2
## 13182                 1990-01-01                 Bulgaria         63.0
## 13183                 2015-01-01                 Bulgaria         71.4
## 13184                 2010-01-01                 Bulgaria         67.9
## 13185                 2005-01-01                 Bulgaria         66.7
## 13186                 2000-01-01                 Bulgaria         64.8
## 13187                 1995-01-01                 Bulgaria         63.2
## 13188                 1990-01-01                 Bulgaria         63.0
## 13189                 2015-01-01                 Bulgaria         71.4
## 13190                 2010-01-01                 Bulgaria         67.9
## 13191                 2005-01-01                 Bulgaria         66.7
## 13192                 2000-01-01                 Bulgaria         64.8
## 13193                 1995-01-01                 Bulgaria         63.2
## 13194                 1990-01-01                 Bulgaria         63.0
## 13195                 2015-01-01                 Bulgaria         71.4
## 13196                 2010-01-01                 Bulgaria         67.9
## 13197                 2005-01-01                 Bulgaria         66.7
## 13198                 2000-01-01                 Bulgaria         64.8
## 13199                 1995-01-01                 Bulgaria         63.2
## 13200                 1990-01-01                 Bulgaria         63.0
## 13201                 2015-01-01                 Bulgaria         71.4
## 13202                 2010-01-01                 Bulgaria         67.9
## 13203                 2005-01-01                 Bulgaria         66.7
## 13204                 2000-01-01                 Bulgaria         64.8
## 13205                 1995-01-01                 Bulgaria         63.2
## 13206                 1990-01-01                 Bulgaria         63.0
## 13207                 2015-01-01                 Bulgaria         71.4
## 13208                 2010-01-01                 Bulgaria         67.9
## 13209                 2005-01-01                 Bulgaria         66.7
## 13210                 2000-01-01                 Bulgaria         64.8
## 13211                 1995-01-01                 Bulgaria         63.2
## 13212                 1990-01-01                 Bulgaria         63.0
## 13213                 2015-01-01                 Bulgaria         71.4
## 13214                 2010-01-01                 Bulgaria         67.9
## 13215                 2005-01-01                 Bulgaria         66.7
## 13216                 2000-01-01                 Bulgaria         64.8
## 13217                 1995-01-01                 Bulgaria         63.2
## 13218                 1990-01-01                 Bulgaria         63.0
## 13219                 2015-01-01                 Bulgaria         71.4
## 13220                 2010-01-01                 Bulgaria         67.9
## 13221                 2005-01-01                 Bulgaria         66.7
## 13222                 2000-01-01                 Bulgaria         64.8
## 13223                 1995-01-01                 Bulgaria         63.2
## 13224                 1990-01-01                 Bulgaria         63.0
## 13225                 2015-01-01                 Bulgaria         71.4
## 13226                 2010-01-01                 Bulgaria         67.9
## 13227                 2005-01-01                 Bulgaria         66.7
## 13228                 2000-01-01                 Bulgaria         64.8
## 13229                 1995-01-01                 Bulgaria         63.2
## 13230                 1990-01-01                 Bulgaria         63.0
## 13231                 2015-01-01                 Bulgaria         71.4
## 13232                 2010-01-01                 Bulgaria         67.9
## 13233                 2005-01-01                 Bulgaria         66.7
## 13234                 2000-01-01                 Bulgaria         64.8
## 13235                 1995-01-01                 Bulgaria         63.2
## 13236                 1990-01-01                 Bulgaria         63.0
## 13237                 2015-01-01                 Bulgaria         71.4
## 13238                 2010-01-01                 Bulgaria         67.9
## 13239                 2005-01-01                 Bulgaria         66.7
## 13240                 2000-01-01                 Bulgaria         64.8
## 13241                 1995-01-01                 Bulgaria         63.2
## 13242                 1990-01-01                 Bulgaria         63.0
## 13243                 2015-01-01                 Bulgaria         71.4
## 13244                 2010-01-01                 Bulgaria         67.9
## 13245                 2005-01-01                 Bulgaria         66.7
## 13246                 2000-01-01                 Bulgaria         64.8
## 13247                 1995-01-01                 Bulgaria         63.2
## 13248                 1990-01-01                 Bulgaria         63.0
## 13249                 2015-01-01               Cabo Verde         61.7
## 13250                 2010-01-01               Cabo Verde         57.9
## 13251                 2005-01-01               Cabo Verde         53.7
## 13252                 2000-01-01               Cabo Verde         50.8
## 13253                 1995-01-01               Cabo Verde         49.3
## 13254                 1990-01-01               Cabo Verde         50.1
## 13255                 2015-01-01                 Bulgaria         71.4
## 13256                 2010-01-01                 Bulgaria         67.9
## 13257                 2005-01-01                 Bulgaria         66.7
## 13258                 2000-01-01                 Bulgaria         64.8
## 13259                 1995-01-01                 Bulgaria         63.2
## 13260                 1990-01-01                 Bulgaria         63.0
## 13261                 2015-01-01                 Bulgaria         71.4
## 13262                 2010-01-01                 Bulgaria         67.9
## 13263                 2005-01-01                 Bulgaria         66.7
## 13264                 2000-01-01                 Bulgaria         64.8
## 13265                 1995-01-01                 Bulgaria         63.2
## 13266                 1990-01-01                 Bulgaria         63.0
## 13267                 2015-01-01                 Bulgaria         71.4
## 13268                 2010-01-01                 Bulgaria         67.9
## 13269                 2005-01-01                 Bulgaria         66.7
## 13270                 2000-01-01                 Bulgaria         64.8
## 13271                 1995-01-01                 Bulgaria         63.2
## 13272                 1990-01-01                 Bulgaria         63.0
## 13273                 2015-01-01                 Bulgaria         71.4
## 13274                 2010-01-01                 Bulgaria         67.9
## 13275                 2005-01-01                 Bulgaria         66.7
## 13276                 2000-01-01                 Bulgaria         64.8
## 13277                 1995-01-01                 Bulgaria         63.2
## 13278                 1990-01-01                 Bulgaria         63.0
## 13279                 2015-01-01                 Bulgaria         71.4
## 13280                 2010-01-01                 Bulgaria         67.9
## 13281                 2005-01-01                 Bulgaria         66.7
## 13282                 2000-01-01                 Bulgaria         64.8
## 13283                 1995-01-01                 Bulgaria         63.2
## 13284                 1990-01-01                 Bulgaria         63.0
## 13285                 2015-01-01                 Bulgaria         71.4
## 13286                 2010-01-01                 Bulgaria         67.9
## 13287                 2005-01-01                 Bulgaria         66.7
## 13288                 2000-01-01                 Bulgaria         64.8
## 13289                 1995-01-01                 Bulgaria         63.2
## 13290                 1990-01-01                 Bulgaria         63.0
## 13291                 2015-01-01                 Bulgaria         71.4
## 13292                 2010-01-01                 Bulgaria         67.9
## 13293                 2005-01-01                 Bulgaria         66.7
## 13294                 2000-01-01                 Bulgaria         64.8
## 13295                 1995-01-01                 Bulgaria         63.2
## 13296                 1990-01-01                 Bulgaria         63.0
## 13297                 2015-01-01                 Bulgaria         71.4
## 13298                 2010-01-01                 Bulgaria         67.9
## 13299                 2005-01-01                 Bulgaria         66.7
## 13300                 2000-01-01                 Bulgaria         64.8
## 13301                 1995-01-01                 Bulgaria         63.2
## 13302                 1990-01-01                 Bulgaria         63.0
## 13303                 2015-01-01                 Bulgaria         71.4
## 13304                 2010-01-01                 Bulgaria         67.9
## 13305                 2005-01-01                 Bulgaria         66.7
## 13306                 2000-01-01                 Bulgaria         64.8
## 13307                 1995-01-01                 Bulgaria         63.2
## 13308                 1990-01-01                 Bulgaria         63.0
## 13309                 2015-01-01                 Bulgaria         71.4
## 13310                 2010-01-01                 Bulgaria         67.9
## 13311                 2005-01-01                 Bulgaria         66.7
## 13312                 2000-01-01                 Bulgaria         64.8
## 13313                 1995-01-01                 Bulgaria         63.2
## 13314                 1990-01-01                 Bulgaria         63.0
## 13315                 2015-01-01                 Bulgaria         71.4
## 13316                 2010-01-01                 Bulgaria         67.9
## 13317                 2005-01-01                 Bulgaria         66.7
## 13318                 2000-01-01                 Bulgaria         64.8
## 13319                 1995-01-01                 Bulgaria         63.2
## 13320                 1990-01-01                 Bulgaria         63.0
## 13321                 2015-01-01                 Bulgaria         71.4
## 13322                 2010-01-01                 Bulgaria         67.9
## 13323                 2005-01-01                 Bulgaria         66.7
## 13324                 2000-01-01                 Bulgaria         64.8
## 13325                 1995-01-01                 Bulgaria         63.2
## 13326                 1990-01-01                 Bulgaria         63.0
## 13327                 2015-01-01                 Bulgaria         71.4
## 13328                 2010-01-01                 Bulgaria         67.9
## 13329                 2005-01-01                 Bulgaria         66.7
## 13330                 2000-01-01                 Bulgaria         64.8
## 13331                 1995-01-01                 Bulgaria         63.2
## 13332                 1990-01-01                 Bulgaria         63.0
## 13333                 2015-01-01                 Bulgaria         71.4
## 13334                 2010-01-01                 Bulgaria         67.9
## 13335                 2005-01-01                 Bulgaria         66.7
## 13336                 2000-01-01                 Bulgaria         64.8
## 13337                 1995-01-01                 Bulgaria         63.2
## 13338                 1990-01-01                 Bulgaria         63.0
## 13339                 2015-01-01                 Bulgaria         71.4
## 13340                 2010-01-01                 Bulgaria         67.9
## 13341                 2005-01-01                 Bulgaria         66.7
## 13342                 2000-01-01                 Bulgaria         64.8
## 13343                 1995-01-01                 Bulgaria         63.2
## 13344                 1990-01-01                 Bulgaria         63.0
## 13345                 2015-01-01                 Bulgaria         71.4
## 13346                 2010-01-01                 Bulgaria         67.9
## 13347                 2005-01-01                 Bulgaria         66.7
## 13348                 2000-01-01                 Bulgaria         64.8
## 13349                 1995-01-01                 Bulgaria         63.2
## 13350                 1990-01-01                 Bulgaria         63.0
## 13351                 2015-01-01                 Bulgaria         71.4
## 13352                 2010-01-01                 Bulgaria         67.9
## 13353                 2005-01-01                 Bulgaria         66.7
## 13354                 2000-01-01                 Bulgaria         64.8
## 13355                 1995-01-01                 Bulgaria         63.2
## 13356                 1990-01-01                 Bulgaria         63.0
## 13357                 2015-01-01                 Bulgaria         71.4
## 13358                 2010-01-01                 Bulgaria         67.9
## 13359                 2005-01-01                 Bulgaria         66.7
## 13360                 2000-01-01                 Bulgaria         64.8
## 13361                 1995-01-01                 Bulgaria         63.2
## 13362                 1990-01-01                 Bulgaria         63.0
## 13363                 2015-01-01                 Bulgaria         71.4
## 13364                 2010-01-01                 Bulgaria         67.9
## 13365                 2005-01-01                 Bulgaria         66.7
## 13366                 2000-01-01                 Bulgaria         64.8
## 13367                 1995-01-01                 Bulgaria         63.2
## 13368                 1990-01-01                 Bulgaria         63.0
## 13369                 2015-01-01                 Bulgaria         71.4
## 13370                 2010-01-01                 Bulgaria         67.9
## 13371                 2005-01-01                 Bulgaria         66.7
## 13372                 2000-01-01                 Bulgaria         64.8
## 13373                 1995-01-01                 Bulgaria         63.2
## 13374                 1990-01-01                 Bulgaria         63.0
## 13375                 2015-01-01                 Bulgaria         71.4
## 13376                 2010-01-01                 Bulgaria         67.9
## 13377                 2005-01-01                 Bulgaria         66.7
## 13378                 2000-01-01                 Bulgaria         64.8
## 13379                 1995-01-01                 Bulgaria         63.2
## 13380                 1990-01-01                 Bulgaria         63.0
## 13381                 2015-01-01                 Bulgaria         71.4
## 13382                 2010-01-01                 Bulgaria         67.9
## 13383                 2005-01-01                 Bulgaria         66.7
## 13384                 2000-01-01                 Bulgaria         64.8
## 13385                 1995-01-01                 Bulgaria         63.2
## 13386                 1990-01-01                 Bulgaria         63.0
## 13387                 2015-01-01                 Bulgaria         71.4
## 13388                 2010-01-01                 Bulgaria         67.9
## 13389                 2005-01-01                 Bulgaria         66.7
## 13390                 2000-01-01                 Bulgaria         64.8
## 13391                 1995-01-01                 Bulgaria         63.2
## 13392                 1990-01-01                 Bulgaria         63.0
## 13393                 2015-01-01                 Bulgaria         71.4
## 13394                 2010-01-01                 Bulgaria         67.9
## 13395                 2005-01-01                 Bulgaria         66.7
## 13396                 2000-01-01                 Bulgaria         64.8
## 13397                 1995-01-01                 Bulgaria         63.2
## 13398                 1990-01-01                 Bulgaria         63.0
## 13399                 2015-01-01                 Bulgaria         71.4
## 13400                 2010-01-01                 Bulgaria         67.9
## 13401                 2005-01-01                 Bulgaria         66.7
## 13402                 2000-01-01                 Bulgaria         64.8
## 13403                 1995-01-01                 Bulgaria         63.2
## 13404                 1990-01-01                 Bulgaria         63.0
## 13405                 2015-01-01                 Bulgaria         71.4
## 13406                 2010-01-01                 Bulgaria         67.9
## 13407                 2005-01-01                 Bulgaria         66.7
## 13408                 2000-01-01                 Bulgaria         64.8
## 13409                 1995-01-01                 Bulgaria         63.2
## 13410                 1990-01-01                 Bulgaria         63.0
## 13411                 2015-01-01                 Bulgaria         71.4
## 13412                 2010-01-01                 Bulgaria         67.9
## 13413                 2005-01-01                 Bulgaria         66.7
## 13414                 2000-01-01                 Bulgaria         64.8
## 13415                 1995-01-01                 Bulgaria         63.2
## 13416                 1990-01-01                 Bulgaria         63.0
## 13417                 2015-01-01                 Bulgaria         71.4
## 13418                 2010-01-01                 Bulgaria         67.9
## 13419                 2005-01-01                 Bulgaria         66.7
## 13420                 2000-01-01                 Bulgaria         64.8
## 13421                 1995-01-01                 Bulgaria         63.2
## 13422                 1990-01-01                 Bulgaria         63.0
## 13423                 2015-01-01                 Bulgaria         71.4
## 13424                 2010-01-01                 Bulgaria         67.9
## 13425                 2005-01-01                 Bulgaria         66.7
## 13426                 2000-01-01                 Bulgaria         64.8
## 13427                 1995-01-01                 Bulgaria         63.2
## 13428                 1990-01-01                 Bulgaria         63.0
## 13429                 2015-01-01                 Bulgaria         71.4
## 13430                 2010-01-01                 Bulgaria         67.9
## 13431                 2005-01-01                 Bulgaria         66.7
## 13432                 2000-01-01                 Bulgaria         64.8
## 13433                 1995-01-01                 Bulgaria         63.2
## 13434                 1990-01-01                 Bulgaria         63.0
## 13435                 2015-01-01                 Bulgaria         71.4
## 13436                 2010-01-01                 Bulgaria         67.9
## 13437                 2005-01-01                 Bulgaria         66.7
## 13438                 2000-01-01                 Bulgaria         64.8
## 13439                 1995-01-01                 Bulgaria         63.2
## 13440                 1990-01-01                 Bulgaria         63.0
## 13441                 2015-01-01                 Bulgaria         71.4
## 13442                 2010-01-01                 Bulgaria         67.9
## 13443                 2005-01-01                 Bulgaria         66.7
## 13444                 2000-01-01                 Bulgaria         64.8
## 13445                 1995-01-01                 Bulgaria         63.2
## 13446                 1990-01-01                 Bulgaria         63.0
## 13447                 2015-01-01                 Bulgaria         71.4
## 13448                 2010-01-01                 Bulgaria         67.9
## 13449                 2005-01-01                 Bulgaria         66.7
## 13450                 2000-01-01                 Bulgaria         64.8
## 13451                 1995-01-01                 Bulgaria         63.2
## 13452                 1990-01-01                 Bulgaria         63.0
## 13453                 2015-01-01                 Bulgaria         71.4
## 13454                 2010-01-01                 Bulgaria         67.9
## 13455                 2005-01-01                 Bulgaria         66.7
## 13456                 2000-01-01                 Bulgaria         64.8
## 13457                 1995-01-01                 Bulgaria         63.2
## 13458                 1990-01-01                 Bulgaria         63.0
## 13459                 2015-01-01                 Bulgaria         71.4
## 13460                 2010-01-01                 Bulgaria         67.9
## 13461                 2005-01-01                 Bulgaria         66.7
## 13462                 2000-01-01                 Bulgaria         64.8
## 13463                 1995-01-01                 Bulgaria         63.2
## 13464                 1990-01-01                 Bulgaria         63.0
## 13465                 2015-01-01                 Bulgaria         71.4
## 13466                 2010-01-01                 Bulgaria         67.9
## 13467                 2005-01-01                 Bulgaria         66.7
## 13468                 2000-01-01                 Bulgaria         64.8
## 13469                 1995-01-01                 Bulgaria         63.2
## 13470                 1990-01-01                 Bulgaria         63.0
## 13471                 2015-01-01                 Bulgaria         71.4
## 13472                 2010-01-01                 Bulgaria         67.9
## 13473                 2005-01-01                 Bulgaria         66.7
## 13474                 2000-01-01                 Bulgaria         64.8
## 13475                 1995-01-01                 Bulgaria         63.2
## 13476                 1990-01-01                 Bulgaria         63.0
## 13477                 2015-01-01                 Bulgaria         71.4
## 13478                 2010-01-01                 Bulgaria         67.9
## 13479                 2005-01-01                 Bulgaria         66.7
## 13480                 2000-01-01                 Bulgaria         64.8
## 13481                 1995-01-01                 Bulgaria         63.2
## 13482                 1990-01-01                 Bulgaria         63.0
## 13483                 2015-01-01                 Bulgaria         71.4
## 13484                 2010-01-01                 Bulgaria         67.9
## 13485                 2005-01-01                 Bulgaria         66.7
## 13486                 2000-01-01                 Bulgaria         64.8
## 13487                 1995-01-01                 Bulgaria         63.2
## 13488                 1990-01-01                 Bulgaria         63.0
## 13489                 2015-01-01                 Bulgaria         71.4
## 13490                 2010-01-01                 Bulgaria         67.9
## 13491                 2005-01-01                 Bulgaria         66.7
## 13492                 2000-01-01                 Bulgaria         64.8
## 13493                 1995-01-01                 Bulgaria         63.2
## 13494                 1990-01-01                 Bulgaria         63.0
## 13495                 2015-01-01                 Bulgaria         71.4
## 13496                 2010-01-01                 Bulgaria         67.9
## 13497                 2005-01-01                 Bulgaria         66.7
## 13498                 2000-01-01                 Bulgaria         64.8
## 13499                 1995-01-01                 Bulgaria         63.2
## 13500                 1990-01-01                 Bulgaria         63.0
## 13501                 2015-01-01                 Bulgaria         71.4
## 13502                 2010-01-01                 Bulgaria         67.9
## 13503                 2005-01-01                 Bulgaria         66.7
## 13504                 2000-01-01                 Bulgaria         64.8
## 13505                 1995-01-01                 Bulgaria         63.2
## 13506                 1990-01-01                 Bulgaria         63.0
## 13507                 2015-01-01             Burkina Faso         42.9
## 13508                 2010-01-01             Burkina Faso         42.7
## 13509                 2005-01-01             Burkina Faso         40.3
## 13510                 2000-01-01             Burkina Faso         36.0
## 13511                 1995-01-01             Burkina Faso         34.1
## 13512                 1990-01-01             Burkina Faso         32.9
## 13513                 2015-01-01             Burkina Faso         42.9
## 13514                 2010-01-01             Burkina Faso         42.7
## 13515                 2005-01-01             Burkina Faso         40.3
## 13516                 2000-01-01             Burkina Faso         36.0
## 13517                 1995-01-01             Burkina Faso         34.1
## 13518                 1990-01-01             Burkina Faso         32.9
## 13519                 2015-01-01             Burkina Faso         42.9
## 13520                 2010-01-01             Burkina Faso         42.7
## 13521                 2005-01-01             Burkina Faso         40.3
## 13522                 2000-01-01             Burkina Faso         36.0
## 13523                 1995-01-01             Burkina Faso         34.1
## 13524                 1990-01-01             Burkina Faso         32.9
## 13525                 2015-01-01             Burkina Faso         42.9
## 13526                 2010-01-01             Burkina Faso         42.7
## 13527                 2005-01-01             Burkina Faso         40.3
## 13528                 2000-01-01             Burkina Faso         36.0
## 13529                 1995-01-01             Burkina Faso         34.1
## 13530                 1990-01-01             Burkina Faso         32.9
## 13531                 2015-01-01             Burkina Faso         42.9
## 13532                 2010-01-01             Burkina Faso         42.7
## 13533                 2005-01-01             Burkina Faso         40.3
## 13534                 2000-01-01             Burkina Faso         36.0
## 13535                 1995-01-01             Burkina Faso         34.1
## 13536                 1990-01-01             Burkina Faso         32.9
## 13537                 2015-01-01             Burkina Faso         42.9
## 13538                 2010-01-01             Burkina Faso         42.7
## 13539                 2005-01-01             Burkina Faso         40.3
## 13540                 2000-01-01             Burkina Faso         36.0
## 13541                 1995-01-01             Burkina Faso         34.1
## 13542                 1990-01-01             Burkina Faso         32.9
## 13543                 2015-01-01             Burkina Faso         42.9
## 13544                 2010-01-01             Burkina Faso         42.7
## 13545                 2005-01-01             Burkina Faso         40.3
## 13546                 2000-01-01             Burkina Faso         36.0
## 13547                 1995-01-01             Burkina Faso         34.1
## 13548                 1990-01-01             Burkina Faso         32.9
## 13549                 2015-01-01             Burkina Faso         42.9
## 13550                 2010-01-01             Burkina Faso         42.7
## 13551                 2005-01-01             Burkina Faso         40.3
## 13552                 2000-01-01             Burkina Faso         36.0
## 13553                 1995-01-01             Burkina Faso         34.1
## 13554                 1990-01-01             Burkina Faso         32.9
## 13555                 2015-01-01             Burkina Faso         42.9
## 13556                 2010-01-01             Burkina Faso         42.7
## 13557                 2005-01-01             Burkina Faso         40.3
## 13558                 2000-01-01             Burkina Faso         36.0
## 13559                 1995-01-01             Burkina Faso         34.1
## 13560                 1990-01-01             Burkina Faso         32.9
## 13561                 2015-01-01             Burkina Faso         42.9
## 13562                 2010-01-01             Burkina Faso         42.7
## 13563                 2005-01-01             Burkina Faso         40.3
## 13564                 2000-01-01             Burkina Faso         36.0
## 13565                 1995-01-01             Burkina Faso         34.1
## 13566                 1990-01-01             Burkina Faso         32.9
## 13567                 2015-01-01             Burkina Faso         42.9
## 13568                 2010-01-01             Burkina Faso         42.7
## 13569                 2005-01-01             Burkina Faso         40.3
## 13570                 2000-01-01             Burkina Faso         36.0
## 13571                 1995-01-01             Burkina Faso         34.1
## 13572                 1990-01-01             Burkina Faso         32.9
## 13573                 2015-01-01             Burkina Faso         42.9
## 13574                 2010-01-01             Burkina Faso         42.7
## 13575                 2005-01-01             Burkina Faso         40.3
## 13576                 2000-01-01             Burkina Faso         36.0
## 13577                 1995-01-01             Burkina Faso         34.1
## 13578                 1990-01-01             Burkina Faso         32.9
## 13579                 2015-01-01             Burkina Faso         42.9
## 13580                 2010-01-01             Burkina Faso         42.7
## 13581                 2005-01-01             Burkina Faso         40.3
## 13582                 2000-01-01             Burkina Faso         36.0
## 13583                 1995-01-01             Burkina Faso         34.1
## 13584                 1990-01-01             Burkina Faso         32.9
## 13585                 2015-01-01             Burkina Faso         42.9
## 13586                 2010-01-01             Burkina Faso         42.7
## 13587                 2005-01-01             Burkina Faso         40.3
## 13588                 2000-01-01             Burkina Faso         36.0
## 13589                 1995-01-01             Burkina Faso         34.1
## 13590                 1990-01-01             Burkina Faso         32.9
## 13591                 2015-01-01             Burkina Faso         42.9
## 13592                 2010-01-01             Burkina Faso         42.7
## 13593                 2005-01-01             Burkina Faso         40.3
## 13594                 2000-01-01             Burkina Faso         36.0
## 13595                 1995-01-01             Burkina Faso         34.1
## 13596                 1990-01-01             Burkina Faso         32.9
## 13597                 2015-01-01             Burkina Faso         42.9
## 13598                 2010-01-01             Burkina Faso         42.7
## 13599                 2005-01-01             Burkina Faso         40.3
## 13600                 2000-01-01             Burkina Faso         36.0
## 13601                 1995-01-01             Burkina Faso         34.1
## 13602                 1990-01-01             Burkina Faso         32.9
## 13603                 2015-01-01             Burkina Faso         42.9
## 13604                 2010-01-01             Burkina Faso         42.7
## 13605                 2005-01-01             Burkina Faso         40.3
## 13606                 2000-01-01             Burkina Faso         36.0
## 13607                 1995-01-01             Burkina Faso         34.1
## 13608                 1990-01-01             Burkina Faso         32.9
## 13609                 2015-01-01             Burkina Faso         42.9
## 13610                 2010-01-01             Burkina Faso         42.7
## 13611                 2005-01-01             Burkina Faso         40.3
## 13612                 2000-01-01             Burkina Faso         36.0
## 13613                 1995-01-01             Burkina Faso         34.1
## 13614                 1990-01-01             Burkina Faso         32.9
## 13615                 2015-01-01             Burkina Faso         42.9
## 13616                 2010-01-01             Burkina Faso         42.7
## 13617                 2005-01-01             Burkina Faso         40.3
## 13618                 2000-01-01             Burkina Faso         36.0
## 13619                 1995-01-01             Burkina Faso         34.1
## 13620                 1990-01-01             Burkina Faso         32.9
## 13621                 2015-01-01             Burkina Faso         42.9
## 13622                 2010-01-01             Burkina Faso         42.7
## 13623                 2005-01-01             Burkina Faso         40.3
## 13624                 2000-01-01             Burkina Faso         36.0
## 13625                 1995-01-01             Burkina Faso         34.1
## 13626                 1990-01-01             Burkina Faso         32.9
## 13627                 2015-01-01             Burkina Faso         42.9
## 13628                 2010-01-01             Burkina Faso         42.7
## 13629                 2005-01-01             Burkina Faso         40.3
## 13630                 2000-01-01             Burkina Faso         36.0
## 13631                 1995-01-01             Burkina Faso         34.1
## 13632                 1990-01-01             Burkina Faso         32.9
## 13633                 2015-01-01             Burkina Faso         42.9
## 13634                 2010-01-01             Burkina Faso         42.7
## 13635                 2005-01-01             Burkina Faso         40.3
## 13636                 2000-01-01             Burkina Faso         36.0
## 13637                 1995-01-01             Burkina Faso         34.1
## 13638                 1990-01-01             Burkina Faso         32.9
## 13639                 2015-01-01             Burkina Faso         42.9
## 13640                 2010-01-01             Burkina Faso         42.7
## 13641                 2005-01-01             Burkina Faso         40.3
## 13642                 2000-01-01             Burkina Faso         36.0
## 13643                 1995-01-01             Burkina Faso         34.1
## 13644                 1990-01-01             Burkina Faso         32.9
## 13645                 2015-01-01             Burkina Faso         42.9
## 13646                 2010-01-01             Burkina Faso         42.7
## 13647                 2005-01-01             Burkina Faso         40.3
## 13648                 2000-01-01             Burkina Faso         36.0
## 13649                 1995-01-01             Burkina Faso         34.1
## 13650                 1990-01-01             Burkina Faso         32.9
## 13651                 2015-01-01             Burkina Faso         42.9
## 13652                 2010-01-01             Burkina Faso         42.7
## 13653                 2005-01-01             Burkina Faso         40.3
## 13654                 2000-01-01             Burkina Faso         36.0
## 13655                 1995-01-01             Burkina Faso         34.1
## 13656                 1990-01-01             Burkina Faso         32.9
## 13657                 2015-01-01             Burkina Faso         42.9
## 13658                 2010-01-01             Burkina Faso         42.7
## 13659                 2005-01-01             Burkina Faso         40.3
## 13660                 2000-01-01             Burkina Faso         36.0
## 13661                 1995-01-01             Burkina Faso         34.1
## 13662                 1990-01-01             Burkina Faso         32.9
## 13663                 2015-01-01             Burkina Faso         42.9
## 13664                 2010-01-01             Burkina Faso         42.7
## 13665                 2005-01-01             Burkina Faso         40.3
## 13666                 2000-01-01             Burkina Faso         36.0
## 13667                 1995-01-01             Burkina Faso         34.1
## 13668                 1990-01-01             Burkina Faso         32.9
## 13669                 2015-01-01             Burkina Faso         42.9
## 13670                 2010-01-01             Burkina Faso         42.7
## 13671                 2005-01-01             Burkina Faso         40.3
## 13672                 2000-01-01             Burkina Faso         36.0
## 13673                 1995-01-01             Burkina Faso         34.1
## 13674                 1990-01-01             Burkina Faso         32.9
## 13675                 2015-01-01                  Burundi         40.4
## 13676                 2010-01-01                  Burundi         40.5
## 13677                 2005-01-01                  Burundi         35.5
## 13678                 2000-01-01                  Burundi         27.0
## 13679                 1995-01-01                  Burundi         23.4
## 13680                 1990-01-01                  Burundi         23.5
## 13681                 2015-01-01                  Burundi         40.4
## 13682                 2010-01-01                  Burundi         40.5
## 13683                 2005-01-01                  Burundi         35.5
## 13684                 2000-01-01                  Burundi         27.0
## 13685                 1995-01-01                  Burundi         23.4
## 13686                 1990-01-01                  Burundi         23.5
## 13687                 2015-01-01                  Burundi         40.4
## 13688                 2010-01-01                  Burundi         40.5
## 13689                 2005-01-01                  Burundi         35.5
## 13690                 2000-01-01                  Burundi         27.0
## 13691                 1995-01-01                  Burundi         23.4
## 13692                 1990-01-01                  Burundi         23.5
## 13693                 2015-01-01                  Burundi         40.4
## 13694                 2010-01-01                  Burundi         40.5
## 13695                 2005-01-01                  Burundi         35.5
## 13696                 2000-01-01                  Burundi         27.0
## 13697                 1995-01-01                  Burundi         23.4
## 13698                 1990-01-01                  Burundi         23.5
## 13699                 2015-01-01                  Burundi         40.4
## 13700                 2010-01-01                  Burundi         40.5
## 13701                 2005-01-01                  Burundi         35.5
## 13702                 2000-01-01                  Burundi         27.0
## 13703                 1995-01-01                  Burundi         23.4
## 13704                 1990-01-01                  Burundi         23.5
## 13705                 2015-01-01                  Burundi         40.4
## 13706                 2010-01-01                  Burundi         40.5
## 13707                 2005-01-01                  Burundi         35.5
## 13708                 2000-01-01                  Burundi         27.0
## 13709                 1995-01-01                  Burundi         23.4
## 13710                 1990-01-01                  Burundi         23.5
## 13711                 2015-01-01                  Burundi         40.4
## 13712                 2010-01-01                  Burundi         40.5
## 13713                 2005-01-01                  Burundi         35.5
## 13714                 2000-01-01                  Burundi         27.0
## 13715                 1995-01-01                  Burundi         23.4
## 13716                 1990-01-01                  Burundi         23.5
## 13717                 2015-01-01                  Burundi         40.4
## 13718                 2010-01-01                  Burundi         40.5
## 13719                 2005-01-01                  Burundi         35.5
## 13720                 2000-01-01                  Burundi         27.0
## 13721                 1995-01-01                  Burundi         23.4
## 13722                 1990-01-01                  Burundi         23.5
## 13723                 2015-01-01                  Burundi         40.4
## 13724                 2010-01-01                  Burundi         40.5
## 13725                 2005-01-01                  Burundi         35.5
## 13726                 2000-01-01                  Burundi         27.0
## 13727                 1995-01-01                  Burundi         23.4
## 13728                 1990-01-01                  Burundi         23.5
## 13729                 2015-01-01                  Burundi         40.4
## 13730                 2010-01-01                  Burundi         40.5
## 13731                 2005-01-01                  Burundi         35.5
## 13732                 2000-01-01                  Burundi         27.0
## 13733                 1995-01-01                  Burundi         23.4
## 13734                 1990-01-01                  Burundi         23.5
## 13735                 2015-01-01                  Burundi         40.4
## 13736                 2010-01-01                  Burundi         40.5
## 13737                 2005-01-01                  Burundi         35.5
## 13738                 2000-01-01                  Burundi         27.0
## 13739                 1995-01-01                  Burundi         23.4
## 13740                 1990-01-01                  Burundi         23.5
## 13741                 2015-01-01                  Burundi         40.4
## 13742                 2010-01-01                  Burundi         40.5
## 13743                 2005-01-01                  Burundi         35.5
## 13744                 2000-01-01                  Burundi         27.0
## 13745                 1995-01-01                  Burundi         23.4
## 13746                 1990-01-01                  Burundi         23.5
## 13747                 2015-01-01                  Burundi         40.4
## 13748                 2010-01-01                  Burundi         40.5
## 13749                 2005-01-01                  Burundi         35.5
## 13750                 2000-01-01                  Burundi         27.0
## 13751                 1995-01-01                  Burundi         23.4
## 13752                 1990-01-01                  Burundi         23.5
## 13753                 2015-01-01                  Burundi         40.4
## 13754                 2010-01-01                  Burundi         40.5
## 13755                 2005-01-01                  Burundi         35.5
## 13756                 2000-01-01                  Burundi         27.0
## 13757                 1995-01-01                  Burundi         23.4
## 13758                 1990-01-01                  Burundi         23.5
## 13759                 2015-01-01               Cabo Verde         61.7
## 13760                 2010-01-01               Cabo Verde         57.9
## 13761                 2005-01-01               Cabo Verde         53.7
## 13762                 2000-01-01               Cabo Verde         50.8
## 13763                 1995-01-01               Cabo Verde         49.3
## 13764                 1990-01-01               Cabo Verde         50.1
## 13765                 2015-01-01               Cabo Verde         61.7
## 13766                 2010-01-01               Cabo Verde         57.9
## 13767                 2005-01-01               Cabo Verde         53.7
## 13768                 2000-01-01               Cabo Verde         50.8
## 13769                 1995-01-01               Cabo Verde         49.3
## 13770                 1990-01-01               Cabo Verde         50.1
## 13771                 2015-01-01               Cabo Verde         61.7
## 13772                 2010-01-01               Cabo Verde         57.9
## 13773                 2005-01-01               Cabo Verde         53.7
## 13774                 2000-01-01               Cabo Verde         50.8
## 13775                 1995-01-01               Cabo Verde         49.3
## 13776                 1990-01-01               Cabo Verde         50.1
## 13777                 2015-01-01               Cabo Verde         61.7
## 13778                 2010-01-01               Cabo Verde         57.9
## 13779                 2005-01-01               Cabo Verde         53.7
## 13780                 2000-01-01               Cabo Verde         50.8
## 13781                 1995-01-01               Cabo Verde         49.3
## 13782                 1990-01-01               Cabo Verde         50.1
## 13783                 2015-01-01               Cabo Verde         61.7
## 13784                 2010-01-01               Cabo Verde         57.9
## 13785                 2005-01-01               Cabo Verde         53.7
## 13786                 2000-01-01               Cabo Verde         50.8
## 13787                 1995-01-01               Cabo Verde         49.3
## 13788                 1990-01-01               Cabo Verde         50.1
## 13789                 2015-01-01               Cabo Verde         61.7
## 13790                 2010-01-01               Cabo Verde         57.9
## 13791                 2005-01-01               Cabo Verde         53.7
## 13792                 2000-01-01               Cabo Verde         50.8
## 13793                 1995-01-01               Cabo Verde         49.3
## 13794                 1990-01-01               Cabo Verde         50.1
## 13795                 2015-01-01               Cabo Verde         61.7
## 13796                 2010-01-01               Cabo Verde         57.9
## 13797                 2005-01-01               Cabo Verde         53.7
## 13798                 2000-01-01               Cabo Verde         50.8
## 13799                 1995-01-01               Cabo Verde         49.3
## 13800                 1990-01-01               Cabo Verde         50.1
## 13801                 2015-01-01               Cabo Verde         61.7
## 13802                 2010-01-01               Cabo Verde         57.9
## 13803                 2005-01-01               Cabo Verde         53.7
## 13804                 2000-01-01               Cabo Verde         50.8
## 13805                 1995-01-01               Cabo Verde         49.3
## 13806                 1990-01-01               Cabo Verde         50.1
## 13807                 2015-01-01               Cabo Verde         61.7
## 13808                 2010-01-01               Cabo Verde         57.9
## 13809                 2005-01-01               Cabo Verde         53.7
## 13810                 2000-01-01               Cabo Verde         50.8
## 13811                 1995-01-01               Cabo Verde         49.3
## 13812                 1990-01-01               Cabo Verde         50.1
## 13813                 2015-01-01               Cabo Verde         61.7
## 13814                 2010-01-01               Cabo Verde         57.9
## 13815                 2005-01-01               Cabo Verde         53.7
## 13816                 2000-01-01               Cabo Verde         50.8
## 13817                 1995-01-01               Cabo Verde         49.3
## 13818                 1990-01-01               Cabo Verde         50.1
## 13819                 2015-01-01               Cabo Verde         61.7
## 13820                 2010-01-01               Cabo Verde         57.9
## 13821                 2005-01-01               Cabo Verde         53.7
## 13822                 2000-01-01               Cabo Verde         50.8
## 13823                 1995-01-01               Cabo Verde         49.3
## 13824                 1990-01-01               Cabo Verde         50.1
## 13825                 2015-01-01               Cabo Verde         61.7
## 13826                 2010-01-01               Cabo Verde         57.9
## 13827                 2005-01-01               Cabo Verde         53.7
## 13828                 2000-01-01               Cabo Verde         50.8
## 13829                 1995-01-01               Cabo Verde         49.3
## 13830                 1990-01-01               Cabo Verde         50.1
## 13831                 2015-01-01               Cabo Verde         61.7
## 13832                 2010-01-01               Cabo Verde         57.9
## 13833                 2005-01-01               Cabo Verde         53.7
## 13834                 2000-01-01               Cabo Verde         50.8
## 13835                 1995-01-01               Cabo Verde         49.3
## 13836                 1990-01-01               Cabo Verde         50.1
## 13837                 2015-01-01               Cabo Verde         61.7
## 13838                 2010-01-01               Cabo Verde         57.9
## 13839                 2005-01-01               Cabo Verde         53.7
## 13840                 2000-01-01               Cabo Verde         50.8
## 13841                 1995-01-01               Cabo Verde         49.3
## 13842                 1990-01-01               Cabo Verde         50.1
## 13843                 2015-01-01               Cabo Verde         61.7
## 13844                 2010-01-01               Cabo Verde         57.9
## 13845                 2005-01-01               Cabo Verde         53.7
## 13846                 2000-01-01               Cabo Verde         50.8
## 13847                 1995-01-01               Cabo Verde         49.3
## 13848                 1990-01-01               Cabo Verde         50.1
## 13849                 2015-01-01               Cabo Verde         61.7
## 13850                 2010-01-01               Cabo Verde         57.9
## 13851                 2005-01-01               Cabo Verde         53.7
## 13852                 2000-01-01               Cabo Verde         50.8
## 13853                 1995-01-01               Cabo Verde         49.3
## 13854                 1990-01-01               Cabo Verde         50.1
## 13855                 2015-01-01               Cabo Verde         61.7
## 13856                 2010-01-01               Cabo Verde         57.9
## 13857                 2005-01-01               Cabo Verde         53.7
## 13858                 2000-01-01               Cabo Verde         50.8
## 13859                 1995-01-01               Cabo Verde         49.3
## 13860                 1990-01-01               Cabo Verde         50.1
## 13861                 2015-01-01               Cabo Verde         61.7
## 13862                 2010-01-01               Cabo Verde         57.9
## 13863                 2005-01-01               Cabo Verde         53.7
## 13864                 2000-01-01               Cabo Verde         50.8
## 13865                 1995-01-01               Cabo Verde         49.3
## 13866                 1990-01-01               Cabo Verde         50.1
## 13867                 2015-01-01               Cabo Verde         61.7
## 13868                 2010-01-01               Cabo Verde         57.9
## 13869                 2005-01-01               Cabo Verde         53.7
## 13870                 2000-01-01               Cabo Verde         50.8
## 13871                 1995-01-01               Cabo Verde         49.3
## 13872                 1990-01-01               Cabo Verde         50.1
## 13873                 2015-01-01               Cabo Verde         61.7
## 13874                 2010-01-01               Cabo Verde         57.9
## 13875                 2005-01-01               Cabo Verde         53.7
## 13876                 2000-01-01               Cabo Verde         50.8
## 13877                 1995-01-01               Cabo Verde         49.3
## 13878                 1990-01-01               Cabo Verde         50.1
## 13879                 2015-01-01               Cabo Verde         61.7
## 13880                 2010-01-01               Cabo Verde         57.9
## 13881                 2005-01-01               Cabo Verde         53.7
## 13882                 2000-01-01               Cabo Verde         50.8
## 13883                 1995-01-01               Cabo Verde         49.3
## 13884                 1990-01-01               Cabo Verde         50.1
## 13885                 2015-01-01               Cabo Verde         61.7
## 13886                 2010-01-01               Cabo Verde         57.9
## 13887                 2005-01-01               Cabo Verde         53.7
## 13888                 2000-01-01               Cabo Verde         50.8
## 13889                 1995-01-01               Cabo Verde         49.3
## 13890                 1990-01-01               Cabo Verde         50.1
## 13891                 2015-01-01               Cabo Verde         61.7
## 13892                 2010-01-01               Cabo Verde         57.9
## 13893                 2005-01-01               Cabo Verde         53.7
## 13894                 2000-01-01               Cabo Verde         50.8
## 13895                 1995-01-01               Cabo Verde         49.3
## 13896                 1990-01-01               Cabo Verde         50.1
## 13897                 2015-01-01               Cabo Verde         61.7
## 13898                 2010-01-01               Cabo Verde         57.9
## 13899                 2005-01-01               Cabo Verde         53.7
## 13900                 2000-01-01               Cabo Verde         50.8
## 13901                 1995-01-01               Cabo Verde         49.3
## 13902                 1990-01-01               Cabo Verde         50.1
## 13903                 2015-01-01               Cabo Verde         61.7
## 13904                 2010-01-01               Cabo Verde         57.9
## 13905                 2005-01-01               Cabo Verde         53.7
## 13906                 2000-01-01               Cabo Verde         50.8
## 13907                 1995-01-01               Cabo Verde         49.3
## 13908                 1990-01-01               Cabo Verde         50.1
## 13909                 2015-01-01               Cabo Verde         61.7
## 13910                 2010-01-01               Cabo Verde         57.9
## 13911                 2005-01-01               Cabo Verde         53.7
## 13912                 2000-01-01               Cabo Verde         50.8
## 13913                 1995-01-01               Cabo Verde         49.3
## 13914                 1990-01-01               Cabo Verde         50.1
## 13915                 2015-01-01               Cabo Verde         61.7
## 13916                 2010-01-01               Cabo Verde         57.9
## 13917                 2005-01-01               Cabo Verde         53.7
## 13918                 2000-01-01               Cabo Verde         50.8
## 13919                 1995-01-01               Cabo Verde         49.3
## 13920                 1990-01-01               Cabo Verde         50.1
## 13921                 2015-01-01               Cabo Verde         61.7
## 13922                 2010-01-01               Cabo Verde         57.9
## 13923                 2005-01-01               Cabo Verde         53.7
## 13924                 2000-01-01               Cabo Verde         50.8
## 13925                 1995-01-01               Cabo Verde         49.3
## 13926                 1990-01-01               Cabo Verde         50.1
## 13927                 2015-01-01               Cabo Verde         61.7
## 13928                 2010-01-01               Cabo Verde         57.9
## 13929                 2005-01-01               Cabo Verde         53.7
## 13930                 2000-01-01               Cabo Verde         50.8
## 13931                 1995-01-01               Cabo Verde         49.3
## 13932                 1990-01-01               Cabo Verde         50.1
## 13933                 2015-01-01               Cabo Verde         61.7
## 13934                 2010-01-01               Cabo Verde         57.9
## 13935                 2005-01-01               Cabo Verde         53.7
## 13936                 2000-01-01               Cabo Verde         50.8
## 13937                 1995-01-01               Cabo Verde         49.3
## 13938                 1990-01-01               Cabo Verde         50.1
## 13939                 2015-01-01               Cabo Verde         61.7
## 13940                 2010-01-01               Cabo Verde         57.9
## 13941                 2005-01-01               Cabo Verde         53.7
## 13942                 2000-01-01               Cabo Verde         50.8
## 13943                 1995-01-01               Cabo Verde         49.3
## 13944                 1990-01-01               Cabo Verde         50.1
## 13945                 2015-01-01               Cabo Verde         61.7
## 13946                 2010-01-01               Cabo Verde         57.9
## 13947                 2005-01-01               Cabo Verde         53.7
## 13948                 2000-01-01               Cabo Verde         50.8
## 13949                 1995-01-01               Cabo Verde         49.3
## 13950                 1990-01-01               Cabo Verde         50.1
## 13951                 2015-01-01               Cabo Verde         61.7
## 13952                 2010-01-01               Cabo Verde         57.9
## 13953                 2005-01-01               Cabo Verde         53.7
## 13954                 2000-01-01               Cabo Verde         50.8
## 13955                 1995-01-01               Cabo Verde         49.3
## 13956                 1990-01-01               Cabo Verde         50.1
## 13957                 2015-01-01               Cabo Verde         61.7
## 13958                 2010-01-01               Cabo Verde         57.9
## 13959                 2005-01-01               Cabo Verde         53.7
## 13960                 2000-01-01               Cabo Verde         50.8
## 13961                 1995-01-01               Cabo Verde         49.3
## 13962                 1990-01-01               Cabo Verde         50.1
## 13963                 2015-01-01               Cabo Verde         61.7
## 13964                 2010-01-01               Cabo Verde         57.9
## 13965                 2005-01-01               Cabo Verde         53.7
## 13966                 2000-01-01               Cabo Verde         50.8
## 13967                 1995-01-01               Cabo Verde         49.3
## 13968                 1990-01-01               Cabo Verde         50.1
## 13969                 2015-01-01               Cabo Verde         61.7
## 13970                 2010-01-01               Cabo Verde         57.9
## 13971                 2005-01-01               Cabo Verde         53.7
## 13972                 2000-01-01               Cabo Verde         50.8
## 13973                 1995-01-01               Cabo Verde         49.3
## 13974                 1990-01-01               Cabo Verde         50.1
## 13975                 2015-01-01               Cabo Verde         61.7
## 13976                 2010-01-01               Cabo Verde         57.9
## 13977                 2005-01-01               Cabo Verde         53.7
## 13978                 2000-01-01               Cabo Verde         50.8
## 13979                 1995-01-01               Cabo Verde         49.3
## 13980                 1990-01-01               Cabo Verde         50.1
## 13981                 2015-01-01               Cabo Verde         61.7
## 13982                 2010-01-01               Cabo Verde         57.9
## 13983                 2005-01-01               Cabo Verde         53.7
## 13984                 2000-01-01               Cabo Verde         50.8
## 13985                 1995-01-01               Cabo Verde         49.3
## 13986                 1990-01-01               Cabo Verde         50.1
## 13987                 2015-01-01               Cabo Verde         61.7
## 13988                 2010-01-01               Cabo Verde         57.9
## 13989                 2005-01-01               Cabo Verde         53.7
## 13990                 2000-01-01               Cabo Verde         50.8
## 13991                 1995-01-01               Cabo Verde         49.3
## 13992                 1990-01-01               Cabo Verde         50.1
## 13993                 2015-01-01               Cabo Verde         61.7
## 13994                 2010-01-01               Cabo Verde         57.9
## 13995                 2005-01-01               Cabo Verde         53.7
## 13996                 2000-01-01               Cabo Verde         50.8
## 13997                 1995-01-01               Cabo Verde         49.3
## 13998                 1990-01-01               Cabo Verde         50.1
## 13999                 2015-01-01               Cabo Verde         61.7
## 14000                 2010-01-01               Cabo Verde         57.9
## 14001                 2005-01-01               Cabo Verde         53.7
## 14002                 2000-01-01               Cabo Verde         50.8
## 14003                 1995-01-01               Cabo Verde         49.3
## 14004                 1990-01-01               Cabo Verde         50.1
## 14005                 2015-01-01               Cabo Verde         61.7
## 14006                 2010-01-01               Cabo Verde         57.9
## 14007                 2005-01-01               Cabo Verde         53.7
## 14008                 2000-01-01               Cabo Verde         50.8
## 14009                 1995-01-01               Cabo Verde         49.3
## 14010                 1990-01-01               Cabo Verde         50.1
## 14011                 2015-01-01               Cabo Verde         61.7
## 14012                 2010-01-01               Cabo Verde         57.9
## 14013                 2005-01-01               Cabo Verde         53.7
## 14014                 2000-01-01               Cabo Verde         50.8
## 14015                 1995-01-01               Cabo Verde         49.3
## 14016                 1990-01-01               Cabo Verde         50.1
## 14017                 2015-01-01               Cabo Verde         61.7
## 14018                 2010-01-01               Cabo Verde         57.9
## 14019                 2005-01-01               Cabo Verde         53.7
## 14020                 2000-01-01               Cabo Verde         50.8
## 14021                 1995-01-01               Cabo Verde         49.3
## 14022                 1990-01-01               Cabo Verde         50.1
## 14023                 2015-01-01               Cabo Verde         61.7
## 14024                 2010-01-01               Cabo Verde         57.9
## 14025                 2005-01-01               Cabo Verde         53.7
## 14026                 2000-01-01               Cabo Verde         50.8
## 14027                 1995-01-01               Cabo Verde         49.3
## 14028                 1990-01-01               Cabo Verde         50.1
## 14029                 2015-01-01               Cabo Verde         61.7
## 14030                 2010-01-01               Cabo Verde         57.9
## 14031                 2005-01-01               Cabo Verde         53.7
## 14032                 2000-01-01               Cabo Verde         50.8
## 14033                 1995-01-01               Cabo Verde         49.3
## 14034                 1990-01-01               Cabo Verde         50.1
## 14035                 2015-01-01               Cabo Verde         61.7
## 14036                 2010-01-01               Cabo Verde         57.9
## 14037                 2005-01-01               Cabo Verde         53.7
## 14038                 2000-01-01               Cabo Verde         50.8
## 14039                 1995-01-01               Cabo Verde         49.3
## 14040                 1990-01-01               Cabo Verde         50.1
## 14041                 2015-01-01               Cabo Verde         61.7
## 14042                 2010-01-01               Cabo Verde         57.9
## 14043                 2005-01-01               Cabo Verde         53.7
## 14044                 2000-01-01               Cabo Verde         50.8
## 14045                 1995-01-01               Cabo Verde         49.3
## 14046                 1990-01-01               Cabo Verde         50.1
## 14047                 2015-01-01               Cabo Verde         61.7
## 14048                 2010-01-01               Cabo Verde         57.9
## 14049                 2005-01-01               Cabo Verde         53.7
## 14050                 2000-01-01               Cabo Verde         50.8
## 14051                 1995-01-01               Cabo Verde         49.3
## 14052                 1990-01-01               Cabo Verde         50.1
## 14053                 2015-01-01               Cabo Verde         61.7
## 14054                 2010-01-01               Cabo Verde         57.9
## 14055                 2005-01-01               Cabo Verde         53.7
## 14056                 2000-01-01               Cabo Verde         50.8
## 14057                 1995-01-01               Cabo Verde         49.3
## 14058                 1990-01-01               Cabo Verde         50.1
## 14059                 2015-01-01               Cabo Verde         61.7
## 14060                 2010-01-01               Cabo Verde         57.9
## 14061                 2005-01-01               Cabo Verde         53.7
## 14062                 2000-01-01               Cabo Verde         50.8
## 14063                 1995-01-01               Cabo Verde         49.3
## 14064                 1990-01-01               Cabo Verde         50.1
## 14065                 2015-01-01               Cabo Verde         61.7
## 14066                 2010-01-01               Cabo Verde         57.9
## 14067                 2005-01-01               Cabo Verde         53.7
## 14068                 2000-01-01               Cabo Verde         50.8
## 14069                 1995-01-01               Cabo Verde         49.3
## 14070                 1990-01-01               Cabo Verde         50.1
## 14071                 2015-01-01               Cabo Verde         61.7
## 14072                 2010-01-01               Cabo Verde         57.9
## 14073                 2005-01-01               Cabo Verde         53.7
## 14074                 2000-01-01               Cabo Verde         50.8
## 14075                 1995-01-01               Cabo Verde         49.3
## 14076                 1990-01-01               Cabo Verde         50.1
## 14077                 2015-01-01               Cabo Verde         61.7
## 14078                 2010-01-01               Cabo Verde         57.9
## 14079                 2005-01-01               Cabo Verde         53.7
## 14080                 2000-01-01               Cabo Verde         50.8
## 14081                 1995-01-01               Cabo Verde         49.3
## 14082                 1990-01-01               Cabo Verde         50.1
## 14083                 2015-01-01               Cabo Verde         61.7
## 14084                 2010-01-01               Cabo Verde         57.9
## 14085                 2005-01-01               Cabo Verde         53.7
## 14086                 2000-01-01               Cabo Verde         50.8
## 14087                 1995-01-01               Cabo Verde         49.3
## 14088                 1990-01-01               Cabo Verde         50.1
## 14089                 2015-01-01               Cabo Verde         61.7
## 14090                 2010-01-01               Cabo Verde         57.9
## 14091                 2005-01-01               Cabo Verde         53.7
## 14092                 2000-01-01               Cabo Verde         50.8
## 14093                 1995-01-01               Cabo Verde         49.3
## 14094                 1990-01-01               Cabo Verde         50.1
## 14095                 2015-01-01               Cabo Verde         61.7
## 14096                 2010-01-01               Cabo Verde         57.9
## 14097                 2005-01-01               Cabo Verde         53.7
## 14098                 2000-01-01               Cabo Verde         50.8
## 14099                 1995-01-01               Cabo Verde         49.3
## 14100                 1990-01-01               Cabo Verde         50.1
## 14101                 2015-01-01               Cabo Verde         61.7
## 14102                 2010-01-01               Cabo Verde         57.9
## 14103                 2005-01-01               Cabo Verde         53.7
## 14104                 2000-01-01               Cabo Verde         50.8
## 14105                 1995-01-01               Cabo Verde         49.3
## 14106                 1990-01-01               Cabo Verde         50.1
## 14107                 2015-01-01               Cabo Verde         61.7
## 14108                 2010-01-01               Cabo Verde         57.9
## 14109                 2005-01-01               Cabo Verde         53.7
## 14110                 2000-01-01               Cabo Verde         50.8
## 14111                 1995-01-01               Cabo Verde         49.3
## 14112                 1990-01-01               Cabo Verde         50.1
## 14113                 2015-01-01               Cabo Verde         61.7
## 14114                 2010-01-01               Cabo Verde         57.9
## 14115                 2005-01-01               Cabo Verde         53.7
## 14116                 2000-01-01               Cabo Verde         50.8
## 14117                 1995-01-01               Cabo Verde         49.3
## 14118                 1990-01-01               Cabo Verde         50.1
## 14119                 2015-01-01               Cabo Verde         61.7
## 14120                 2010-01-01               Cabo Verde         57.9
## 14121                 2005-01-01               Cabo Verde         53.7
## 14122                 2000-01-01               Cabo Verde         50.8
## 14123                 1995-01-01               Cabo Verde         49.3
## 14124                 1990-01-01               Cabo Verde         50.1
## 14125                 2015-01-01               Cabo Verde         61.7
## 14126                 2010-01-01               Cabo Verde         57.9
## 14127                 2005-01-01               Cabo Verde         53.7
## 14128                 2000-01-01               Cabo Verde         50.8
## 14129                 1995-01-01               Cabo Verde         49.3
## 14130                 1990-01-01               Cabo Verde         50.1
## 14131                 2015-01-01               Cabo Verde         61.7
## 14132                 2010-01-01               Cabo Verde         57.9
## 14133                 2005-01-01               Cabo Verde         53.7
## 14134                 2000-01-01               Cabo Verde         50.8
## 14135                 1995-01-01               Cabo Verde         49.3
## 14136                 1990-01-01               Cabo Verde         50.1
## 14137                 2015-01-01               Cabo Verde         61.7
## 14138                 2010-01-01               Cabo Verde         57.9
## 14139                 2005-01-01               Cabo Verde         53.7
## 14140                 2000-01-01               Cabo Verde         50.8
## 14141                 1995-01-01               Cabo Verde         49.3
## 14142                 1990-01-01               Cabo Verde         50.1
## 14143                 2015-01-01               Cabo Verde         61.7
## 14144                 2010-01-01               Cabo Verde         57.9
## 14145                 2005-01-01               Cabo Verde         53.7
## 14146                 2000-01-01               Cabo Verde         50.8
## 14147                 1995-01-01               Cabo Verde         49.3
## 14148                 1990-01-01               Cabo Verde         50.1
## 14149                 2015-01-01               Cabo Verde         61.7
## 14150                 2010-01-01               Cabo Verde         57.9
## 14151                 2005-01-01               Cabo Verde         53.7
## 14152                 2000-01-01               Cabo Verde         50.8
## 14153                 1995-01-01               Cabo Verde         49.3
## 14154                 1990-01-01               Cabo Verde         50.1
## 14155                 2015-01-01               Cabo Verde         61.7
## 14156                 2010-01-01               Cabo Verde         57.9
## 14157                 2005-01-01               Cabo Verde         53.7
## 14158                 2000-01-01               Cabo Verde         50.8
## 14159                 1995-01-01               Cabo Verde         49.3
## 14160                 1990-01-01               Cabo Verde         50.1
## 14161                 2015-01-01               Cabo Verde         61.7
## 14162                 2010-01-01               Cabo Verde         57.9
## 14163                 2005-01-01               Cabo Verde         53.7
## 14164                 2000-01-01               Cabo Verde         50.8
## 14165                 1995-01-01               Cabo Verde         49.3
## 14166                 1990-01-01               Cabo Verde         50.1
## 14167                 2015-01-01               Cabo Verde         61.7
## 14168                 2010-01-01               Cabo Verde         57.9
## 14169                 2005-01-01               Cabo Verde         53.7
## 14170                 2000-01-01               Cabo Verde         50.8
## 14171                 1995-01-01               Cabo Verde         49.3
## 14172                 1990-01-01               Cabo Verde         50.1
## 14173                 2015-01-01               Cabo Verde         61.7
## 14174                 2010-01-01               Cabo Verde         57.9
## 14175                 2005-01-01               Cabo Verde         53.7
## 14176                 2000-01-01               Cabo Verde         50.8
## 14177                 1995-01-01               Cabo Verde         49.3
## 14178                 1990-01-01               Cabo Verde         50.1
## 14179                 2015-01-01               Cabo Verde         61.7
## 14180                 2010-01-01               Cabo Verde         57.9
## 14181                 2005-01-01               Cabo Verde         53.7
## 14182                 2000-01-01               Cabo Verde         50.8
## 14183                 1995-01-01               Cabo Verde         49.3
## 14184                 1990-01-01               Cabo Verde         50.1
## 14185                 2015-01-01               Cabo Verde         61.7
## 14186                 2010-01-01               Cabo Verde         57.9
## 14187                 2005-01-01               Cabo Verde         53.7
## 14188                 2000-01-01               Cabo Verde         50.8
## 14189                 1995-01-01               Cabo Verde         49.3
## 14190                 1990-01-01               Cabo Verde         50.1
## 14191                 2015-01-01               Cabo Verde         61.7
## 14192                 2010-01-01               Cabo Verde         57.9
## 14193                 2005-01-01               Cabo Verde         53.7
## 14194                 2000-01-01               Cabo Verde         50.8
## 14195                 1995-01-01               Cabo Verde         49.3
## 14196                 1990-01-01               Cabo Verde         50.1
## 14197                 2015-01-01               Cabo Verde         61.7
## 14198                 2010-01-01               Cabo Verde         57.9
## 14199                 2005-01-01               Cabo Verde         53.7
## 14200                 2000-01-01               Cabo Verde         50.8
## 14201                 1995-01-01               Cabo Verde         49.3
## 14202                 1990-01-01               Cabo Verde         50.1
## 14203                 2015-01-01               Cabo Verde         61.7
## 14204                 2010-01-01               Cabo Verde         57.9
## 14205                 2005-01-01               Cabo Verde         53.7
## 14206                 2000-01-01               Cabo Verde         50.8
## 14207                 1995-01-01               Cabo Verde         49.3
## 14208                 1990-01-01               Cabo Verde         50.1
## 14209                 2015-01-01               Cabo Verde         61.7
## 14210                 2010-01-01               Cabo Verde         57.9
## 14211                 2005-01-01               Cabo Verde         53.7
## 14212                 2000-01-01               Cabo Verde         50.8
## 14213                 1995-01-01               Cabo Verde         49.3
## 14214                 1990-01-01               Cabo Verde         50.1
## 14215                 2015-01-01               Cabo Verde         61.7
## 14216                 2010-01-01               Cabo Verde         57.9
## 14217                 2005-01-01               Cabo Verde         53.7
## 14218                 2000-01-01               Cabo Verde         50.8
## 14219                 1995-01-01               Cabo Verde         49.3
## 14220                 1990-01-01               Cabo Verde         50.1
## 14221                 2015-01-01               Cabo Verde         61.7
## 14222                 2010-01-01               Cabo Verde         57.9
## 14223                 2005-01-01               Cabo Verde         53.7
## 14224                 2000-01-01               Cabo Verde         50.8
## 14225                 1995-01-01               Cabo Verde         49.3
## 14226                 1990-01-01               Cabo Verde         50.1
## 14227                 2015-01-01               Cabo Verde         61.7
## 14228                 2010-01-01               Cabo Verde         57.9
## 14229                 2005-01-01               Cabo Verde         53.7
## 14230                 2000-01-01               Cabo Verde         50.8
## 14231                 1995-01-01               Cabo Verde         49.3
## 14232                 1990-01-01               Cabo Verde         50.1
## 14233                 2015-01-01               Cabo Verde         61.7
## 14234                 2010-01-01               Cabo Verde         57.9
## 14235                 2005-01-01               Cabo Verde         53.7
## 14236                 2000-01-01               Cabo Verde         50.8
## 14237                 1995-01-01               Cabo Verde         49.3
## 14238                 1990-01-01               Cabo Verde         50.1
## 14239                 2015-01-01               Cabo Verde         61.7
## 14240                 2010-01-01               Cabo Verde         57.9
## 14241                 2005-01-01               Cabo Verde         53.7
## 14242                 2000-01-01               Cabo Verde         50.8
## 14243                 1995-01-01               Cabo Verde         49.3
## 14244                 1990-01-01               Cabo Verde         50.1
## 14245                 2015-01-01               Cabo Verde         61.7
## 14246                 2010-01-01               Cabo Verde         57.9
## 14247                 2005-01-01               Cabo Verde         53.7
## 14248                 2000-01-01               Cabo Verde         50.8
## 14249                 1995-01-01               Cabo Verde         49.3
## 14250                 1990-01-01               Cabo Verde         50.1
## 14251                 2015-01-01               Cabo Verde         61.7
## 14252                 2010-01-01               Cabo Verde         57.9
## 14253                 2005-01-01               Cabo Verde         53.7
## 14254                 2000-01-01               Cabo Verde         50.8
## 14255                 1995-01-01               Cabo Verde         49.3
## 14256                 1990-01-01               Cabo Verde         50.1
## 14257                 2015-01-01               Cabo Verde         61.7
## 14258                 2010-01-01               Cabo Verde         57.9
## 14259                 2005-01-01               Cabo Verde         53.7
## 14260                 2000-01-01               Cabo Verde         50.8
## 14261                 1995-01-01               Cabo Verde         49.3
## 14262                 1990-01-01               Cabo Verde         50.1
## 14263                 2015-01-01               Cabo Verde         61.7
## 14264                 2010-01-01               Cabo Verde         57.9
## 14265                 2005-01-01               Cabo Verde         53.7
## 14266                 2000-01-01               Cabo Verde         50.8
## 14267                 1995-01-01               Cabo Verde         49.3
## 14268                 1990-01-01               Cabo Verde         50.1
## 14269                 2015-01-01               Cabo Verde         61.7
## 14270                 2010-01-01               Cabo Verde         57.9
## 14271                 2005-01-01               Cabo Verde         53.7
## 14272                 2000-01-01               Cabo Verde         50.8
## 14273                 1995-01-01               Cabo Verde         49.3
## 14274                 1990-01-01               Cabo Verde         50.1
## 14275                 2015-01-01               Cabo Verde         61.7
## 14276                 2010-01-01               Cabo Verde         57.9
## 14277                 2005-01-01               Cabo Verde         53.7
## 14278                 2000-01-01               Cabo Verde         50.8
## 14279                 1995-01-01               Cabo Verde         49.3
## 14280                 1990-01-01               Cabo Verde         50.1
## 14281                 2015-01-01               Cabo Verde         61.7
## 14282                 2010-01-01               Cabo Verde         57.9
## 14283                 2005-01-01               Cabo Verde         53.7
## 14284                 2000-01-01               Cabo Verde         50.8
## 14285                 1995-01-01               Cabo Verde         49.3
## 14286                 1990-01-01               Cabo Verde         50.1
## 14287                 2015-01-01               Cabo Verde         61.7
## 14288                 2010-01-01               Cabo Verde         57.9
## 14289                 2005-01-01               Cabo Verde         53.7
## 14290                 2000-01-01               Cabo Verde         50.8
## 14291                 1995-01-01               Cabo Verde         49.3
## 14292                 1990-01-01               Cabo Verde         50.1
## 14293                 2015-01-01               Cabo Verde         61.7
## 14294                 2010-01-01               Cabo Verde         57.9
## 14295                 2005-01-01               Cabo Verde         53.7
## 14296                 2000-01-01               Cabo Verde         50.8
## 14297                 1995-01-01               Cabo Verde         49.3
## 14298                 1990-01-01               Cabo Verde         50.1
## 14299                 2015-01-01               Cabo Verde         61.7
## 14300                 2010-01-01               Cabo Verde         57.9
## 14301                 2005-01-01               Cabo Verde         53.7
## 14302                 2000-01-01               Cabo Verde         50.8
## 14303                 1995-01-01               Cabo Verde         49.3
## 14304                 1990-01-01               Cabo Verde         50.1
## 14305                 2015-01-01               Cabo Verde         61.7
## 14306                 2010-01-01               Cabo Verde         57.9
## 14307                 2005-01-01               Cabo Verde         53.7
## 14308                 2000-01-01               Cabo Verde         50.8
## 14309                 1995-01-01               Cabo Verde         49.3
## 14310                 1990-01-01               Cabo Verde         50.1
## 14311                 2015-01-01               Cabo Verde         61.7
## 14312                 2010-01-01               Cabo Verde         57.9
## 14313                 2005-01-01               Cabo Verde         53.7
## 14314                 2000-01-01               Cabo Verde         50.8
## 14315                 1995-01-01               Cabo Verde         49.3
## 14316                 1990-01-01               Cabo Verde         50.1
## 14317                 2015-01-01               Cabo Verde         61.7
## 14318                 2010-01-01               Cabo Verde         57.9
## 14319                 2005-01-01               Cabo Verde         53.7
## 14320                 2000-01-01               Cabo Verde         50.8
## 14321                 1995-01-01               Cabo Verde         49.3
## 14322                 1990-01-01               Cabo Verde         50.1
## 14323                 2015-01-01                 Cambodia         50.7
## 14324                 2010-01-01                 Cambodia         45.5
## 14325                 2005-01-01                 Cambodia         40.7
## 14326                 2000-01-01                 Cambodia         34.1
## 14327                 1995-01-01                 Cambodia         31.3
## 14328                 1990-01-01                 Cambodia         30.0
## 14329                 2015-01-01                 Cambodia         50.7
## 14330                 2010-01-01                 Cambodia         45.5
## 14331                 2005-01-01                 Cambodia         40.7
## 14332                 2000-01-01                 Cambodia         34.1
## 14333                 1995-01-01                 Cambodia         31.3
## 14334                 1990-01-01                 Cambodia         30.0
## 14335                 2015-01-01                 Cambodia         50.7
## 14336                 2010-01-01                 Cambodia         45.5
## 14337                 2005-01-01                 Cambodia         40.7
## 14338                 2000-01-01                 Cambodia         34.1
## 14339                 1995-01-01                 Cambodia         31.3
## 14340                 1990-01-01                 Cambodia         30.0
## 14341                 2015-01-01                 Cambodia         50.7
## 14342                 2010-01-01                 Cambodia         45.5
## 14343                 2005-01-01                 Cambodia         40.7
## 14344                 2000-01-01                 Cambodia         34.1
## 14345                 1995-01-01                 Cambodia         31.3
## 14346                 1990-01-01                 Cambodia         30.0
## 14347                 2015-01-01                 Cambodia         50.7
## 14348                 2010-01-01                 Cambodia         45.5
## 14349                 2005-01-01                 Cambodia         40.7
## 14350                 2000-01-01                 Cambodia         34.1
## 14351                 1995-01-01                 Cambodia         31.3
## 14352                 1990-01-01                 Cambodia         30.0
## 14353                 2015-01-01                 Cambodia         50.7
## 14354                 2010-01-01                 Cambodia         45.5
## 14355                 2005-01-01                 Cambodia         40.7
## 14356                 2000-01-01                 Cambodia         34.1
## 14357                 1995-01-01                 Cambodia         31.3
## 14358                 1990-01-01                 Cambodia         30.0
## 14359                 2015-01-01                 Cambodia         50.7
## 14360                 2010-01-01                 Cambodia         45.5
## 14361                 2005-01-01                 Cambodia         40.7
## 14362                 2000-01-01                 Cambodia         34.1
## 14363                 1995-01-01                 Cambodia         31.3
## 14364                 1990-01-01                 Cambodia         30.0
## 14365                 2015-01-01                 Cambodia         50.7
## 14366                 2010-01-01                 Cambodia         45.5
## 14367                 2005-01-01                 Cambodia         40.7
## 14368                 2000-01-01                 Cambodia         34.1
## 14369                 1995-01-01                 Cambodia         31.3
## 14370                 1990-01-01                 Cambodia         30.0
## 14371                 2015-01-01                 Cambodia         50.7
## 14372                 2010-01-01                 Cambodia         45.5
## 14373                 2005-01-01                 Cambodia         40.7
## 14374                 2000-01-01                 Cambodia         34.1
## 14375                 1995-01-01                 Cambodia         31.3
## 14376                 1990-01-01                 Cambodia         30.0
## 14377                 2015-01-01                 Cambodia         50.7
## 14378                 2010-01-01                 Cambodia         45.5
## 14379                 2005-01-01                 Cambodia         40.7
## 14380                 2000-01-01                 Cambodia         34.1
## 14381                 1995-01-01                 Cambodia         31.3
## 14382                 1990-01-01                 Cambodia         30.0
## 14383                 2015-01-01                 Cambodia         50.7
## 14384                 2010-01-01                 Cambodia         45.5
## 14385                 2005-01-01                 Cambodia         40.7
## 14386                 2000-01-01                 Cambodia         34.1
## 14387                 1995-01-01                 Cambodia         31.3
## 14388                 1990-01-01                 Cambodia         30.0
## 14389                 2015-01-01                 Cambodia         50.7
## 14390                 2010-01-01                 Cambodia         45.5
## 14391                 2005-01-01                 Cambodia         40.7
## 14392                 2000-01-01                 Cambodia         34.1
## 14393                 1995-01-01                 Cambodia         31.3
## 14394                 1990-01-01                 Cambodia         30.0
## 14395                 2015-01-01                 Cambodia         50.7
## 14396                 2010-01-01                 Cambodia         45.5
## 14397                 2005-01-01                 Cambodia         40.7
## 14398                 2000-01-01                 Cambodia         34.1
## 14399                 1995-01-01                 Cambodia         31.3
## 14400                 1990-01-01                 Cambodia         30.0
## 14401                 2015-01-01                 Cambodia         50.7
## 14402                 2010-01-01                 Cambodia         45.5
## 14403                 2005-01-01                 Cambodia         40.7
## 14404                 2000-01-01                 Cambodia         34.1
## 14405                 1995-01-01                 Cambodia         31.3
## 14406                 1990-01-01                 Cambodia         30.0
## 14407                 2015-01-01                 Cambodia         50.7
## 14408                 2010-01-01                 Cambodia         45.5
## 14409                 2005-01-01                 Cambodia         40.7
## 14410                 2000-01-01                 Cambodia         34.1
## 14411                 1995-01-01                 Cambodia         31.3
## 14412                 1990-01-01                 Cambodia         30.0
## 14413                 2015-01-01                 Cambodia         50.7
## 14414                 2010-01-01                 Cambodia         45.5
## 14415                 2005-01-01                 Cambodia         40.7
## 14416                 2000-01-01                 Cambodia         34.1
## 14417                 1995-01-01                 Cambodia         31.3
## 14418                 1990-01-01                 Cambodia         30.0
## 14419                 2015-01-01                 Cambodia         50.7
## 14420                 2010-01-01                 Cambodia         45.5
## 14421                 2005-01-01                 Cambodia         40.7
## 14422                 2000-01-01                 Cambodia         34.1
## 14423                 1995-01-01                 Cambodia         31.3
## 14424                 1990-01-01                 Cambodia         30.0
## 14425                 2015-01-01                 Cambodia         50.7
## 14426                 2010-01-01                 Cambodia         45.5
## 14427                 2005-01-01                 Cambodia         40.7
## 14428                 2000-01-01                 Cambodia         34.1
## 14429                 1995-01-01                 Cambodia         31.3
## 14430                 1990-01-01                 Cambodia         30.0
## 14431                 2015-01-01                 Cambodia         50.7
## 14432                 2010-01-01                 Cambodia         45.5
## 14433                 2005-01-01                 Cambodia         40.7
## 14434                 2000-01-01                 Cambodia         34.1
## 14435                 1995-01-01                 Cambodia         31.3
## 14436                 1990-01-01                 Cambodia         30.0
## 14437                 2015-01-01                 Cambodia         50.7
## 14438                 2010-01-01                 Cambodia         45.5
## 14439                 2005-01-01                 Cambodia         40.7
## 14440                 2000-01-01                 Cambodia         34.1
## 14441                 1995-01-01                 Cambodia         31.3
## 14442                 1990-01-01                 Cambodia         30.0
## 14443                 2015-01-01                 Cambodia         50.7
## 14444                 2010-01-01                 Cambodia         45.5
## 14445                 2005-01-01                 Cambodia         40.7
## 14446                 2000-01-01                 Cambodia         34.1
## 14447                 1995-01-01                 Cambodia         31.3
## 14448                 1990-01-01                 Cambodia         30.0
## 14449                 2015-01-01                 Cambodia         50.7
## 14450                 2010-01-01                 Cambodia         45.5
## 14451                 2005-01-01                 Cambodia         40.7
## 14452                 2000-01-01                 Cambodia         34.1
## 14453                 1995-01-01                 Cambodia         31.3
## 14454                 1990-01-01                 Cambodia         30.0
## 14455                 2015-01-01                 Cameroon         44.4
## 14456                 2010-01-01                 Cameroon         42.5
## 14457                 2005-01-01                 Cameroon         41.0
## 14458                 2000-01-01                 Cameroon         37.2
## 14459                 1995-01-01                 Cameroon         37.7
## 14460                 1990-01-01                 Cameroon         38.3
## 14461                 2015-01-01                 Cameroon         44.4
## 14462                 2010-01-01                 Cameroon         42.5
## 14463                 2005-01-01                 Cameroon         41.0
## 14464                 2000-01-01                 Cameroon         37.2
## 14465                 1995-01-01                 Cameroon         37.7
## 14466                 1990-01-01                 Cameroon         38.3
## 14467                 2015-01-01                 Cameroon         44.4
## 14468                 2010-01-01                 Cameroon         42.5
## 14469                 2005-01-01                 Cameroon         41.0
## 14470                 2000-01-01                 Cameroon         37.2
## 14471                 1995-01-01                 Cameroon         37.7
## 14472                 1990-01-01                 Cameroon         38.3
## 14473                 2015-01-01                 Cameroon         44.4
## 14474                 2010-01-01                 Cameroon         42.5
## 14475                 2005-01-01                 Cameroon         41.0
## 14476                 2000-01-01                 Cameroon         37.2
## 14477                 1995-01-01                 Cameroon         37.7
## 14478                 1990-01-01                 Cameroon         38.3
## 14479                 2015-01-01                 Cameroon         44.4
## 14480                 2010-01-01                 Cameroon         42.5
## 14481                 2005-01-01                 Cameroon         41.0
## 14482                 2000-01-01                 Cameroon         37.2
## 14483                 1995-01-01                 Cameroon         37.7
## 14484                 1990-01-01                 Cameroon         38.3
## 14485                 2015-01-01                 Cameroon         44.4
## 14486                 2010-01-01                 Cameroon         42.5
## 14487                 2005-01-01                 Cameroon         41.0
## 14488                 2000-01-01                 Cameroon         37.2
## 14489                 1995-01-01                 Cameroon         37.7
## 14490                 1990-01-01                 Cameroon         38.3
## 14491                 2015-01-01                 Cameroon         44.4
## 14492                 2010-01-01                 Cameroon         42.5
## 14493                 2005-01-01                 Cameroon         41.0
## 14494                 2000-01-01                 Cameroon         37.2
## 14495                 1995-01-01                 Cameroon         37.7
## 14496                 1990-01-01                 Cameroon         38.3
## 14497                 2015-01-01                 Cameroon         44.4
## 14498                 2010-01-01                 Cameroon         42.5
## 14499                 2005-01-01                 Cameroon         41.0
## 14500                 2000-01-01                 Cameroon         37.2
## 14501                 1995-01-01                 Cameroon         37.7
## 14502                 1990-01-01                 Cameroon         38.3
## 14503                 2015-01-01                 Cameroon         44.4
## 14504                 2010-01-01                 Cameroon         42.5
## 14505                 2005-01-01                 Cameroon         41.0
## 14506                 2000-01-01                 Cameroon         37.2
## 14507                 1995-01-01                 Cameroon         37.7
## 14508                 1990-01-01                 Cameroon         38.3
## 14509                 2015-01-01                 Cameroon         44.4
## 14510                 2010-01-01                 Cameroon         42.5
## 14511                 2005-01-01                 Cameroon         41.0
## 14512                 2000-01-01                 Cameroon         37.2
## 14513                 1995-01-01                 Cameroon         37.7
## 14514                 1990-01-01                 Cameroon         38.3
## 14515                 2015-01-01                 Cameroon         44.4
## 14516                 2010-01-01                 Cameroon         42.5
## 14517                 2005-01-01                 Cameroon         41.0
## 14518                 2000-01-01                 Cameroon         37.2
## 14519                 1995-01-01                 Cameroon         37.7
## 14520                 1990-01-01                 Cameroon         38.3
## 14521                 2015-01-01                 Cameroon         44.4
## 14522                 2010-01-01                 Cameroon         42.5
## 14523                 2005-01-01                 Cameroon         41.0
## 14524                 2000-01-01                 Cameroon         37.2
## 14525                 1995-01-01                 Cameroon         37.7
## 14526                 1990-01-01                 Cameroon         38.3
## 14527                 2015-01-01                 Cameroon         44.4
## 14528                 2010-01-01                 Cameroon         42.5
## 14529                 2005-01-01                 Cameroon         41.0
## 14530                 2000-01-01                 Cameroon         37.2
## 14531                 1995-01-01                 Cameroon         37.7
## 14532                 1990-01-01                 Cameroon         38.3
## 14533                 2015-01-01                 Cameroon         44.4
## 14534                 2010-01-01                 Cameroon         42.5
## 14535                 2005-01-01                 Cameroon         41.0
## 14536                 2000-01-01                 Cameroon         37.2
## 14537                 1995-01-01                 Cameroon         37.7
## 14538                 1990-01-01                 Cameroon         38.3
## 14539                 2015-01-01                 Cameroon         44.4
## 14540                 2010-01-01                 Cameroon         42.5
## 14541                 2005-01-01                 Cameroon         41.0
## 14542                 2000-01-01                 Cameroon         37.2
## 14543                 1995-01-01                 Cameroon         37.7
## 14544                 1990-01-01                 Cameroon         38.3
## 14545                 2015-01-01                 Cameroon         44.4
## 14546                 2010-01-01                 Cameroon         42.5
## 14547                 2005-01-01                 Cameroon         41.0
## 14548                 2000-01-01                 Cameroon         37.2
## 14549                 1995-01-01                 Cameroon         37.7
## 14550                 1990-01-01                 Cameroon         38.3
## 14551                 2015-01-01                 Cameroon         44.4
## 14552                 2010-01-01                 Cameroon         42.5
## 14553                 2005-01-01                 Cameroon         41.0
## 14554                 2000-01-01                 Cameroon         37.2
## 14555                 1995-01-01                 Cameroon         37.7
## 14556                 1990-01-01                 Cameroon         38.3
## 14557                 2015-01-01                 Cameroon         44.4
## 14558                 2010-01-01                 Cameroon         42.5
## 14559                 2005-01-01                 Cameroon         41.0
## 14560                 2000-01-01                 Cameroon         37.2
## 14561                 1995-01-01                 Cameroon         37.7
## 14562                 1990-01-01                 Cameroon         38.3
## 14563                 2015-01-01                 Cameroon         44.4
## 14564                 2010-01-01                 Cameroon         42.5
## 14565                 2005-01-01                 Cameroon         41.0
## 14566                 2000-01-01                 Cameroon         37.2
## 14567                 1995-01-01                 Cameroon         37.7
## 14568                 1990-01-01                 Cameroon         38.3
## 14569                 2015-01-01                 Cameroon         44.4
## 14570                 2010-01-01                 Cameroon         42.5
## 14571                 2005-01-01                 Cameroon         41.0
## 14572                 2000-01-01                 Cameroon         37.2
## 14573                 1995-01-01                 Cameroon         37.7
## 14574                 1990-01-01                 Cameroon         38.3
## 14575                 2015-01-01                 Cameroon         44.4
## 14576                 2010-01-01                 Cameroon         42.5
## 14577                 2005-01-01                 Cameroon         41.0
## 14578                 2000-01-01                 Cameroon         37.2
## 14579                 1995-01-01                 Cameroon         37.7
## 14580                 1990-01-01                 Cameroon         38.3
## 14581                 2015-01-01                 Cameroon         44.4
## 14582                 2010-01-01                 Cameroon         42.5
## 14583                 2005-01-01                 Cameroon         41.0
## 14584                 2000-01-01                 Cameroon         37.2
## 14585                 1995-01-01                 Cameroon         37.7
## 14586                 1990-01-01                 Cameroon         38.3
## 14587                 2015-01-01                 Cameroon         44.4
## 14588                 2010-01-01                 Cameroon         42.5
## 14589                 2005-01-01                 Cameroon         41.0
## 14590                 2000-01-01                 Cameroon         37.2
## 14591                 1995-01-01                 Cameroon         37.7
## 14592                 1990-01-01                 Cameroon         38.3
## 14593                 2015-01-01                 Cameroon         44.4
## 14594                 2010-01-01                 Cameroon         42.5
## 14595                 2005-01-01                 Cameroon         41.0
## 14596                 2000-01-01                 Cameroon         37.2
## 14597                 1995-01-01                 Cameroon         37.7
## 14598                 1990-01-01                 Cameroon         38.3
## 14599                 2015-01-01                 Cameroon         44.4
## 14600                 2010-01-01                 Cameroon         42.5
## 14601                 2005-01-01                 Cameroon         41.0
## 14602                 2000-01-01                 Cameroon         37.2
## 14603                 1995-01-01                 Cameroon         37.7
## 14604                 1990-01-01                 Cameroon         38.3
## 14605                 2015-01-01                 Cameroon         44.4
## 14606                 2010-01-01                 Cameroon         42.5
## 14607                 2005-01-01                 Cameroon         41.0
## 14608                 2000-01-01                 Cameroon         37.2
## 14609                 1995-01-01                 Cameroon         37.7
## 14610                 1990-01-01                 Cameroon         38.3
## 14611                 2015-01-01                 Cameroon         44.4
## 14612                 2010-01-01                 Cameroon         42.5
## 14613                 2005-01-01                 Cameroon         41.0
## 14614                 2000-01-01                 Cameroon         37.2
## 14615                 1995-01-01                 Cameroon         37.7
## 14616                 1990-01-01                 Cameroon         38.3
## 14617                 2015-01-01                 Cameroon         44.4
## 14618                 2010-01-01                 Cameroon         42.5
## 14619                 2005-01-01                 Cameroon         41.0
## 14620                 2000-01-01                 Cameroon         37.2
## 14621                 1995-01-01                 Cameroon         37.7
## 14622                 1990-01-01                 Cameroon         38.3
## 14623                 2015-01-01                 Cameroon         44.4
## 14624                 2010-01-01                 Cameroon         42.5
## 14625                 2005-01-01                 Cameroon         41.0
## 14626                 2000-01-01                 Cameroon         37.2
## 14627                 1995-01-01                 Cameroon         37.7
## 14628                 1990-01-01                 Cameroon         38.3
## 14629                 2015-01-01                 Cameroon         44.4
## 14630                 2010-01-01                 Cameroon         42.5
## 14631                 2005-01-01                 Cameroon         41.0
## 14632                 2000-01-01                 Cameroon         37.2
## 14633                 1995-01-01                 Cameroon         37.7
## 14634                 1990-01-01                 Cameroon         38.3
## 14635                 2015-01-01                 Cameroon         44.4
## 14636                 2010-01-01                 Cameroon         42.5
## 14637                 2005-01-01                 Cameroon         41.0
## 14638                 2000-01-01                 Cameroon         37.2
## 14639                 1995-01-01                 Cameroon         37.7
## 14640                 1990-01-01                 Cameroon         38.3
## 14641                 2015-01-01                 Cameroon         44.4
## 14642                 2010-01-01                 Cameroon         42.5
## 14643                 2005-01-01                 Cameroon         41.0
## 14644                 2000-01-01                 Cameroon         37.2
## 14645                 1995-01-01                 Cameroon         37.7
## 14646                 1990-01-01                 Cameroon         38.3
## 14647                 2015-01-01                 Cameroon         44.4
## 14648                 2010-01-01                 Cameroon         42.5
## 14649                 2005-01-01                 Cameroon         41.0
## 14650                 2000-01-01                 Cameroon         37.2
## 14651                 1995-01-01                 Cameroon         37.7
## 14652                 1990-01-01                 Cameroon         38.3
## 14653                 2015-01-01                 Cameroon         44.4
## 14654                 2010-01-01                 Cameroon         42.5
## 14655                 2005-01-01                 Cameroon         41.0
## 14656                 2000-01-01                 Cameroon         37.2
## 14657                 1995-01-01                 Cameroon         37.7
## 14658                 1990-01-01                 Cameroon         38.3
## 14659                 2015-01-01                 Cameroon         44.4
## 14660                 2010-01-01                 Cameroon         42.5
## 14661                 2005-01-01                 Cameroon         41.0
## 14662                 2000-01-01                 Cameroon         37.2
## 14663                 1995-01-01                 Cameroon         37.7
## 14664                 1990-01-01                 Cameroon         38.3
## 14665                 2015-01-01                 Cameroon         44.4
## 14666                 2010-01-01                 Cameroon         42.5
## 14667                 2005-01-01                 Cameroon         41.0
## 14668                 2000-01-01                 Cameroon         37.2
## 14669                 1995-01-01                 Cameroon         37.7
## 14670                 1990-01-01                 Cameroon         38.3
## 14671                 2015-01-01                 Cameroon         44.4
## 14672                 2010-01-01                 Cameroon         42.5
## 14673                 2005-01-01                 Cameroon         41.0
## 14674                 2000-01-01                 Cameroon         37.2
## 14675                 1995-01-01                 Cameroon         37.7
## 14676                 1990-01-01                 Cameroon         38.3
## 14677                 2015-01-01                   Canada         87.6
## 14678                 2010-01-01                   Canada         86.3
## 14679                 2005-01-01                   Canada         84.7
## 14680                 2000-01-01                   Canada         83.2
## 14681                 1995-01-01                   Canada         80.7
## 14682                 1990-01-01                   Canada         78.9
## 14683                 2015-01-01                   Canada         87.6
## 14684                 2010-01-01                   Canada         86.3
## 14685                 2005-01-01                   Canada         84.7
## 14686                 2000-01-01                   Canada         83.2
## 14687                 1995-01-01                   Canada         80.7
## 14688                 1990-01-01                   Canada         78.9
## 14689                 2015-01-01                   Canada         87.6
## 14690                 2010-01-01                   Canada         86.3
## 14691                 2005-01-01                   Canada         84.7
## 14692                 2000-01-01                   Canada         83.2
## 14693                 1995-01-01                   Canada         80.7
## 14694                 1990-01-01                   Canada         78.9
## 14695                 2015-01-01                   Canada         87.6
## 14696                 2010-01-01                   Canada         86.3
## 14697                 2005-01-01                   Canada         84.7
## 14698                 2000-01-01                   Canada         83.2
## 14699                 1995-01-01                   Canada         80.7
## 14700                 1990-01-01                   Canada         78.9
## 14701                 2015-01-01                   Canada         87.6
## 14702                 2010-01-01                   Canada         86.3
## 14703                 2005-01-01                   Canada         84.7
## 14704                 2000-01-01                   Canada         83.2
## 14705                 1995-01-01                   Canada         80.7
## 14706                 1990-01-01                   Canada         78.9
## 14707                 2015-01-01                   Canada         87.6
## 14708                 2010-01-01                   Canada         86.3
## 14709                 2005-01-01                   Canada         84.7
## 14710                 2000-01-01                   Canada         83.2
## 14711                 1995-01-01                   Canada         80.7
## 14712                 1990-01-01                   Canada         78.9
## 14713                 2015-01-01                   Canada         87.6
## 14714                 2010-01-01                   Canada         86.3
## 14715                 2005-01-01                   Canada         84.7
## 14716                 2000-01-01                   Canada         83.2
## 14717                 1995-01-01                   Canada         80.7
## 14718                 1990-01-01                   Canada         78.9
## 14719                 2015-01-01                   Canada         87.6
## 14720                 2010-01-01                   Canada         86.3
## 14721                 2005-01-01                   Canada         84.7
## 14722                 2000-01-01                   Canada         83.2
## 14723                 1995-01-01                   Canada         80.7
## 14724                 1990-01-01                   Canada         78.9
## 14725                 2015-01-01                   Canada         87.6
## 14726                 2010-01-01                   Canada         86.3
## 14727                 2005-01-01                   Canada         84.7
## 14728                 2000-01-01                   Canada         83.2
## 14729                 1995-01-01                   Canada         80.7
## 14730                 1990-01-01                   Canada         78.9
## 14731                 2015-01-01                   Canada         87.6
## 14732                 2010-01-01                   Canada         86.3
## 14733                 2005-01-01                   Canada         84.7
## 14734                 2000-01-01                   Canada         83.2
## 14735                 1995-01-01                   Canada         80.7
## 14736                 1990-01-01                   Canada         78.9
## 14737                 2015-01-01                   Canada         87.6
## 14738                 2010-01-01                   Canada         86.3
## 14739                 2005-01-01                   Canada         84.7
## 14740                 2000-01-01                   Canada         83.2
## 14741                 1995-01-01                   Canada         80.7
## 14742                 1990-01-01                   Canada         78.9
## 14743                 2015-01-01                   Canada         87.6
## 14744                 2010-01-01                   Canada         86.3
## 14745                 2005-01-01                   Canada         84.7
## 14746                 2000-01-01                   Canada         83.2
## 14747                 1995-01-01                   Canada         80.7
## 14748                 1990-01-01                   Canada         78.9
## 14749                 2015-01-01                   Canada         87.6
## 14750                 2010-01-01                   Canada         86.3
## 14751                 2005-01-01                   Canada         84.7
## 14752                 2000-01-01                   Canada         83.2
## 14753                 1995-01-01                   Canada         80.7
## 14754                 1990-01-01                   Canada         78.9
## 14755                 2015-01-01                   Canada         87.6
## 14756                 2010-01-01                   Canada         86.3
## 14757                 2005-01-01                   Canada         84.7
## 14758                 2000-01-01                   Canada         83.2
## 14759                 1995-01-01                   Canada         80.7
## 14760                 1990-01-01                   Canada         78.9
## 14761                 2015-01-01                   Canada         87.6
## 14762                 2010-01-01                   Canada         86.3
## 14763                 2005-01-01                   Canada         84.7
## 14764                 2000-01-01                   Canada         83.2
## 14765                 1995-01-01                   Canada         80.7
## 14766                 1990-01-01                   Canada         78.9
## 14767                 2015-01-01                    Chile         76.0
## 14768                 2010-01-01                    Chile         73.9
## 14769                 2005-01-01                    Chile         72.0
## 14770                 2000-01-01                    Chile         69.2
## 14771                 1995-01-01                    Chile         64.2
## 14772                 1990-01-01                    Chile         58.8
## 14773                 2015-01-01                   Canada         87.6
## 14774                 2010-01-01                   Canada         86.3
## 14775                 2005-01-01                   Canada         84.7
## 14776                 2000-01-01                   Canada         83.2
## 14777                 1995-01-01                   Canada         80.7
## 14778                 1990-01-01                   Canada         78.9
## 14779                 2015-01-01                   Canada         87.6
## 14780                 2010-01-01                   Canada         86.3
## 14781                 2005-01-01                   Canada         84.7
## 14782                 2000-01-01                   Canada         83.2
## 14783                 1995-01-01                   Canada         80.7
## 14784                 1990-01-01                   Canada         78.9
## 14785                 2015-01-01                   Canada         87.6
## 14786                 2010-01-01                   Canada         86.3
## 14787                 2005-01-01                   Canada         84.7
## 14788                 2000-01-01                   Canada         83.2
## 14789                 1995-01-01                   Canada         80.7
## 14790                 1990-01-01                   Canada         78.9
## 14791                 2015-01-01                   Canada         87.6
## 14792                 2010-01-01                   Canada         86.3
## 14793                 2005-01-01                   Canada         84.7
## 14794                 2000-01-01                   Canada         83.2
## 14795                 1995-01-01                   Canada         80.7
## 14796                 1990-01-01                   Canada         78.9
## 14797                 2015-01-01                   Canada         87.6
## 14798                 2010-01-01                   Canada         86.3
## 14799                 2005-01-01                   Canada         84.7
## 14800                 2000-01-01                   Canada         83.2
## 14801                 1995-01-01                   Canada         80.7
## 14802                 1990-01-01                   Canada         78.9
## 14803                 2015-01-01                   Canada         87.6
## 14804                 2010-01-01                   Canada         86.3
## 14805                 2005-01-01                   Canada         84.7
## 14806                 2000-01-01                   Canada         83.2
## 14807                 1995-01-01                   Canada         80.7
## 14808                 1990-01-01                   Canada         78.9
## 14809                 2015-01-01                   Canada         87.6
## 14810                 2010-01-01                   Canada         86.3
## 14811                 2005-01-01                   Canada         84.7
## 14812                 2000-01-01                   Canada         83.2
## 14813                 1995-01-01                   Canada         80.7
## 14814                 1990-01-01                   Canada         78.9
## 14815                 2015-01-01                   Canada         87.6
## 14816                 2010-01-01                   Canada         86.3
## 14817                 2005-01-01                   Canada         84.7
## 14818                 2000-01-01                   Canada         83.2
## 14819                 1995-01-01                   Canada         80.7
## 14820                 1990-01-01                   Canada         78.9
## 14821                 2015-01-01                   Canada         87.6
## 14822                 2010-01-01                   Canada         86.3
## 14823                 2005-01-01                   Canada         84.7
## 14824                 2000-01-01                   Canada         83.2
## 14825                 1995-01-01                   Canada         80.7
## 14826                 1990-01-01                   Canada         78.9
## 14827                 2015-01-01                   Canada         87.6
## 14828                 2010-01-01                   Canada         86.3
## 14829                 2005-01-01                   Canada         84.7
## 14830                 2000-01-01                   Canada         83.2
## 14831                 1995-01-01                   Canada         80.7
## 14832                 1990-01-01                   Canada         78.9
## 14833                 2015-01-01                   Canada         87.6
## 14834                 2010-01-01                   Canada         86.3
## 14835                 2005-01-01                   Canada         84.7
## 14836                 2000-01-01                   Canada         83.2
## 14837                 1995-01-01                   Canada         80.7
## 14838                 1990-01-01                   Canada         78.9
## 14839                 2015-01-01                   Canada         87.6
## 14840                 2010-01-01                   Canada         86.3
## 14841                 2005-01-01                   Canada         84.7
## 14842                 2000-01-01                   Canada         83.2
## 14843                 1995-01-01                   Canada         80.7
## 14844                 1990-01-01                   Canada         78.9
## 14845                 2015-01-01                   Canada         87.6
## 14846                 2010-01-01                   Canada         86.3
## 14847                 2005-01-01                   Canada         84.7
## 14848                 2000-01-01                   Canada         83.2
## 14849                 1995-01-01                   Canada         80.7
## 14850                 1990-01-01                   Canada         78.9
## 14851                 2015-01-01                   Canada         87.6
## 14852                 2010-01-01                   Canada         86.3
## 14853                 2005-01-01                   Canada         84.7
## 14854                 2000-01-01                   Canada         83.2
## 14855                 1995-01-01                   Canada         80.7
## 14856                 1990-01-01                   Canada         78.9
## 14857                 2015-01-01                   Canada         87.6
## 14858                 2010-01-01                   Canada         86.3
## 14859                 2005-01-01                   Canada         84.7
## 14860                 2000-01-01                   Canada         83.2
## 14861                 1995-01-01                   Canada         80.7
## 14862                 1990-01-01                   Canada         78.9
## 14863                 2015-01-01                   Canada         87.6
## 14864                 2010-01-01                   Canada         86.3
## 14865                 2005-01-01                   Canada         84.7
## 14866                 2000-01-01                   Canada         83.2
## 14867                 1995-01-01                   Canada         80.7
## 14868                 1990-01-01                   Canada         78.9
## 14869                 2015-01-01                   Canada         87.6
## 14870                 2010-01-01                   Canada         86.3
## 14871                 2005-01-01                   Canada         84.7
## 14872                 2000-01-01                   Canada         83.2
## 14873                 1995-01-01                   Canada         80.7
## 14874                 1990-01-01                   Canada         78.9
## 14875                 2015-01-01                   Canada         87.6
## 14876                 2010-01-01                   Canada         86.3
## 14877                 2005-01-01                   Canada         84.7
## 14878                 2000-01-01                   Canada         83.2
## 14879                 1995-01-01                   Canada         80.7
## 14880                 1990-01-01                   Canada         78.9
## 14881                 2015-01-01                   Canada         87.6
## 14882                 2010-01-01                   Canada         86.3
## 14883                 2005-01-01                   Canada         84.7
## 14884                 2000-01-01                   Canada         83.2
## 14885                 1995-01-01                   Canada         80.7
## 14886                 1990-01-01                   Canada         78.9
## 14887                 2015-01-01                   Canada         87.6
## 14888                 2010-01-01                   Canada         86.3
## 14889                 2005-01-01                   Canada         84.7
## 14890                 2000-01-01                   Canada         83.2
## 14891                 1995-01-01                   Canada         80.7
## 14892                 1990-01-01                   Canada         78.9
## 14893                 2015-01-01                   Canada         87.6
## 14894                 2010-01-01                   Canada         86.3
## 14895                 2005-01-01                   Canada         84.7
## 14896                 2000-01-01                   Canada         83.2
## 14897                 1995-01-01                   Canada         80.7
## 14898                 1990-01-01                   Canada         78.9
## 14899                 2015-01-01                   Canada         87.6
## 14900                 2010-01-01                   Canada         86.3
## 14901                 2005-01-01                   Canada         84.7
## 14902                 2000-01-01                   Canada         83.2
## 14903                 1995-01-01                   Canada         80.7
## 14904                 1990-01-01                   Canada         78.9
## 14905                 2015-01-01                   Canada         87.6
## 14906                 2010-01-01                   Canada         86.3
## 14907                 2005-01-01                   Canada         84.7
## 14908                 2000-01-01                   Canada         83.2
## 14909                 1995-01-01                   Canada         80.7
## 14910                 1990-01-01                   Canada         78.9
## 14911                 2015-01-01                   Canada         87.6
## 14912                 2010-01-01                   Canada         86.3
## 14913                 2005-01-01                   Canada         84.7
## 14914                 2000-01-01                   Canada         83.2
## 14915                 1995-01-01                   Canada         80.7
## 14916                 1990-01-01                   Canada         78.9
## 14917                 2015-01-01                   Canada         87.6
## 14918                 2010-01-01                   Canada         86.3
## 14919                 2005-01-01                   Canada         84.7
## 14920                 2000-01-01                   Canada         83.2
## 14921                 1995-01-01                   Canada         80.7
## 14922                 1990-01-01                   Canada         78.9
## 14923                 2015-01-01                   Canada         87.6
## 14924                 2010-01-01                   Canada         86.3
## 14925                 2005-01-01                   Canada         84.7
## 14926                 2000-01-01                   Canada         83.2
## 14927                 1995-01-01                   Canada         80.7
## 14928                 1990-01-01                   Canada         78.9
## 14929                 2015-01-01                   Canada         87.6
## 14930                 2010-01-01                   Canada         86.3
## 14931                 2005-01-01                   Canada         84.7
## 14932                 2000-01-01                   Canada         83.2
## 14933                 1995-01-01                   Canada         80.7
## 14934                 1990-01-01                   Canada         78.9
## 14935                 2015-01-01                   Canada         87.6
## 14936                 2010-01-01                   Canada         86.3
## 14937                 2005-01-01                   Canada         84.7
## 14938                 2000-01-01                   Canada         83.2
## 14939                 1995-01-01                   Canada         80.7
## 14940                 1990-01-01                   Canada         78.9
## 14941                 2015-01-01                   Canada         87.6
## 14942                 2010-01-01                   Canada         86.3
## 14943                 2005-01-01                   Canada         84.7
## 14944                 2000-01-01                   Canada         83.2
## 14945                 1995-01-01                   Canada         80.7
## 14946                 1990-01-01                   Canada         78.9
## 14947                 2015-01-01                   Canada         87.6
## 14948                 2010-01-01                   Canada         86.3
## 14949                 2005-01-01                   Canada         84.7
## 14950                 2000-01-01                   Canada         83.2
## 14951                 1995-01-01                   Canada         80.7
## 14952                 1990-01-01                   Canada         78.9
## 14953                 2015-01-01                   Canada         87.6
## 14954                 2010-01-01                   Canada         86.3
## 14955                 2005-01-01                   Canada         84.7
## 14956                 2000-01-01                   Canada         83.2
## 14957                 1995-01-01                   Canada         80.7
## 14958                 1990-01-01                   Canada         78.9
## 14959                 2015-01-01                   Canada         87.6
## 14960                 2010-01-01                   Canada         86.3
## 14961                 2005-01-01                   Canada         84.7
## 14962                 2000-01-01                   Canada         83.2
## 14963                 1995-01-01                   Canada         80.7
## 14964                 1990-01-01                   Canada         78.9
## 14965                 2015-01-01                   Canada         87.6
## 14966                 2010-01-01                   Canada         86.3
## 14967                 2005-01-01                   Canada         84.7
## 14968                 2000-01-01                   Canada         83.2
## 14969                 1995-01-01                   Canada         80.7
## 14970                 1990-01-01                   Canada         78.9
## 14971                 2015-01-01                   Canada         87.6
## 14972                 2010-01-01                   Canada         86.3
## 14973                 2005-01-01                   Canada         84.7
## 14974                 2000-01-01                   Canada         83.2
## 14975                 1995-01-01                   Canada         80.7
## 14976                 1990-01-01                   Canada         78.9
## 14977                 2015-01-01                   Canada         87.6
## 14978                 2010-01-01                   Canada         86.3
## 14979                 2005-01-01                   Canada         84.7
## 14980                 2000-01-01                   Canada         83.2
## 14981                 1995-01-01                   Canada         80.7
## 14982                 1990-01-01                   Canada         78.9
## 14983                 2015-01-01                   Canada         87.6
## 14984                 2010-01-01                   Canada         86.3
## 14985                 2005-01-01                   Canada         84.7
## 14986                 2000-01-01                   Canada         83.2
## 14987                 1995-01-01                   Canada         80.7
## 14988                 1990-01-01                   Canada         78.9
## 14989                 2015-01-01                   Canada         87.6
## 14990                 2010-01-01                   Canada         86.3
## 14991                 2005-01-01                   Canada         84.7
## 14992                 2000-01-01                   Canada         83.2
## 14993                 1995-01-01                   Canada         80.7
## 14994                 1990-01-01                   Canada         78.9
## 14995                 2015-01-01                   Canada         87.6
## 14996                 2010-01-01                   Canada         86.3
## 14997                 2005-01-01                   Canada         84.7
## 14998                 2000-01-01                   Canada         83.2
## 14999                 1995-01-01                   Canada         80.7
## 15000                 1990-01-01                   Canada         78.9
## 15001                 2015-01-01                   Canada         87.6
## 15002                 2010-01-01                   Canada         86.3
## 15003                 2005-01-01                   Canada         84.7
## 15004                 2000-01-01                   Canada         83.2
## 15005                 1995-01-01                   Canada         80.7
## 15006                 1990-01-01                   Canada         78.9
## 15007                 2015-01-01                   Canada         87.6
## 15008                 2010-01-01                   Canada         86.3
## 15009                 2005-01-01                   Canada         84.7
## 15010                 2000-01-01                   Canada         83.2
## 15011                 1995-01-01                   Canada         80.7
## 15012                 1990-01-01                   Canada         78.9
## 15013                 2015-01-01                   Canada         87.6
## 15014                 2010-01-01                   Canada         86.3
## 15015                 2005-01-01                   Canada         84.7
## 15016                 2000-01-01                   Canada         83.2
## 15017                 1995-01-01                   Canada         80.7
## 15018                 1990-01-01                   Canada         78.9
## 15019                 2015-01-01                   Canada         87.6
## 15020                 2010-01-01                   Canada         86.3
## 15021                 2005-01-01                   Canada         84.7
## 15022                 2000-01-01                   Canada         83.2
## 15023                 1995-01-01                   Canada         80.7
## 15024                 1990-01-01                   Canada         78.9
## 15025                 2015-01-01                   Canada         87.6
## 15026                 2010-01-01                   Canada         86.3
## 15027                 2005-01-01                   Canada         84.7
## 15028                 2000-01-01                   Canada         83.2
## 15029                 1995-01-01                   Canada         80.7
## 15030                 1990-01-01                   Canada         78.9
## 15031                 2015-01-01                   Canada         87.6
## 15032                 2010-01-01                   Canada         86.3
## 15033                 2005-01-01                   Canada         84.7
## 15034                 2000-01-01                   Canada         83.2
## 15035                 1995-01-01                   Canada         80.7
## 15036                 1990-01-01                   Canada         78.9
## 15037                 2015-01-01                   Canada         87.6
## 15038                 2010-01-01                   Canada         86.3
## 15039                 2005-01-01                   Canada         84.7
## 15040                 2000-01-01                   Canada         83.2
## 15041                 1995-01-01                   Canada         80.7
## 15042                 1990-01-01                   Canada         78.9
## 15043                 2015-01-01                   Canada         87.6
## 15044                 2010-01-01                   Canada         86.3
## 15045                 2005-01-01                   Canada         84.7
## 15046                 2000-01-01                   Canada         83.2
## 15047                 1995-01-01                   Canada         80.7
## 15048                 1990-01-01                   Canada         78.9
## 15049                 2015-01-01                   Canada         87.6
## 15050                 2010-01-01                   Canada         86.3
## 15051                 2005-01-01                   Canada         84.7
## 15052                 2000-01-01                   Canada         83.2
## 15053                 1995-01-01                   Canada         80.7
## 15054                 1990-01-01                   Canada         78.9
## 15055                 2015-01-01                   Canada         87.6
## 15056                 2010-01-01                   Canada         86.3
## 15057                 2005-01-01                   Canada         84.7
## 15058                 2000-01-01                   Canada         83.2
## 15059                 1995-01-01                   Canada         80.7
## 15060                 1990-01-01                   Canada         78.9
## 15061                 2015-01-01                   Canada         87.6
## 15062                 2010-01-01                   Canada         86.3
## 15063                 2005-01-01                   Canada         84.7
## 15064                 2000-01-01                   Canada         83.2
## 15065                 1995-01-01                   Canada         80.7
## 15066                 1990-01-01                   Canada         78.9
## 15067                 2015-01-01                   Canada         87.6
## 15068                 2010-01-01                   Canada         86.3
## 15069                 2005-01-01                   Canada         84.7
## 15070                 2000-01-01                   Canada         83.2
## 15071                 1995-01-01                   Canada         80.7
## 15072                 1990-01-01                   Canada         78.9
## 15073                 2015-01-01                   Canada         87.6
## 15074                 2010-01-01                   Canada         86.3
## 15075                 2005-01-01                   Canada         84.7
## 15076                 2000-01-01                   Canada         83.2
## 15077                 1995-01-01                   Canada         80.7
## 15078                 1990-01-01                   Canada         78.9
## 15079                 2015-01-01                   Canada         87.6
## 15080                 2010-01-01                   Canada         86.3
## 15081                 2005-01-01                   Canada         84.7
## 15082                 2000-01-01                   Canada         83.2
## 15083                 1995-01-01                   Canada         80.7
## 15084                 1990-01-01                   Canada         78.9
## 15085                 2015-01-01                   Canada         87.6
## 15086                 2010-01-01                   Canada         86.3
## 15087                 2005-01-01                   Canada         84.7
## 15088                 2000-01-01                   Canada         83.2
## 15089                 1995-01-01                   Canada         80.7
## 15090                 1990-01-01                   Canada         78.9
## 15091                 2015-01-01                   Canada         87.6
## 15092                 2010-01-01                   Canada         86.3
## 15093                 2005-01-01                   Canada         84.7
## 15094                 2000-01-01                   Canada         83.2
## 15095                 1995-01-01                   Canada         80.7
## 15096                 1990-01-01                   Canada         78.9
## 15097                 2015-01-01                   Canada         87.6
## 15098                 2010-01-01                   Canada         86.3
## 15099                 2005-01-01                   Canada         84.7
## 15100                 2000-01-01                   Canada         83.2
## 15101                 1995-01-01                   Canada         80.7
## 15102                 1990-01-01                   Canada         78.9
## 15103                 2015-01-01                   Canada         87.6
## 15104                 2010-01-01                   Canada         86.3
## 15105                 2005-01-01                   Canada         84.7
## 15106                 2000-01-01                   Canada         83.2
## 15107                 1995-01-01                   Canada         80.7
## 15108                 1990-01-01                   Canada         78.9
## 15109                 2015-01-01                   Canada         87.6
## 15110                 2010-01-01                   Canada         86.3
## 15111                 2005-01-01                   Canada         84.7
## 15112                 2000-01-01                   Canada         83.2
## 15113                 1995-01-01                   Canada         80.7
## 15114                 1990-01-01                   Canada         78.9
## 15115                 2015-01-01                   Canada         87.6
## 15116                 2010-01-01                   Canada         86.3
## 15117                 2005-01-01                   Canada         84.7
## 15118                 2000-01-01                   Canada         83.2
## 15119                 1995-01-01                   Canada         80.7
## 15120                 1990-01-01                   Canada         78.9
## 15121                 2015-01-01                   Canada         87.6
## 15122                 2010-01-01                   Canada         86.3
## 15123                 2005-01-01                   Canada         84.7
## 15124                 2000-01-01                   Canada         83.2
## 15125                 1995-01-01                   Canada         80.7
## 15126                 1990-01-01                   Canada         78.9
## 15127                 2015-01-01                   Canada         87.6
## 15128                 2010-01-01                   Canada         86.3
## 15129                 2005-01-01                   Canada         84.7
## 15130                 2000-01-01                   Canada         83.2
## 15131                 1995-01-01                   Canada         80.7
## 15132                 1990-01-01                   Canada         78.9
## 15133                 2015-01-01                   Canada         87.6
## 15134                 2010-01-01                   Canada         86.3
## 15135                 2005-01-01                   Canada         84.7
## 15136                 2000-01-01                   Canada         83.2
## 15137                 1995-01-01                   Canada         80.7
## 15138                 1990-01-01                   Canada         78.9
## 15139                 2015-01-01                   Canada         87.6
## 15140                 2010-01-01                   Canada         86.3
## 15141                 2005-01-01                   Canada         84.7
## 15142                 2000-01-01                   Canada         83.2
## 15143                 1995-01-01                   Canada         80.7
## 15144                 1990-01-01                   Canada         78.9
## 15145                 2015-01-01                   Canada         87.6
## 15146                 2010-01-01                   Canada         86.3
## 15147                 2005-01-01                   Canada         84.7
## 15148                 2000-01-01                   Canada         83.2
## 15149                 1995-01-01                   Canada         80.7
## 15150                 1990-01-01                   Canada         78.9
## 15151                 2015-01-01                   Canada         87.6
## 15152                 2010-01-01                   Canada         86.3
## 15153                 2005-01-01                   Canada         84.7
## 15154                 2000-01-01                   Canada         83.2
## 15155                 1995-01-01                   Canada         80.7
## 15156                 1990-01-01                   Canada         78.9
## 15157                 2015-01-01                   Canada         87.6
## 15158                 2010-01-01                   Canada         86.3
## 15159                 2005-01-01                   Canada         84.7
## 15160                 2000-01-01                   Canada         83.2
## 15161                 1995-01-01                   Canada         80.7
## 15162                 1990-01-01                   Canada         78.9
## 15163                 2015-01-01                   Canada         87.6
## 15164                 2010-01-01                   Canada         86.3
## 15165                 2005-01-01                   Canada         84.7
## 15166                 2000-01-01                   Canada         83.2
## 15167                 1995-01-01                   Canada         80.7
## 15168                 1990-01-01                   Canada         78.9
## 15169                 2015-01-01                   Canada         87.6
## 15170                 2010-01-01                   Canada         86.3
## 15171                 2005-01-01                   Canada         84.7
## 15172                 2000-01-01                   Canada         83.2
## 15173                 1995-01-01                   Canada         80.7
## 15174                 1990-01-01                   Canada         78.9
## 15175                 2015-01-01                   Canada         87.6
## 15176                 2010-01-01                   Canada         86.3
## 15177                 2005-01-01                   Canada         84.7
## 15178                 2000-01-01                   Canada         83.2
## 15179                 1995-01-01                   Canada         80.7
## 15180                 1990-01-01                   Canada         78.9
## 15181                 2015-01-01                   Canada         87.6
## 15182                 2010-01-01                   Canada         86.3
## 15183                 2005-01-01                   Canada         84.7
## 15184                 2000-01-01                   Canada         83.2
## 15185                 1995-01-01                   Canada         80.7
## 15186                 1990-01-01                   Canada         78.9
## 15187                 2015-01-01                   Canada         87.6
## 15188                 2010-01-01                   Canada         86.3
## 15189                 2005-01-01                   Canada         84.7
## 15190                 2000-01-01                   Canada         83.2
## 15191                 1995-01-01                   Canada         80.7
## 15192                 1990-01-01                   Canada         78.9
## 15193                 2015-01-01                   Canada         87.6
## 15194                 2010-01-01                   Canada         86.3
## 15195                 2005-01-01                   Canada         84.7
## 15196                 2000-01-01                   Canada         83.2
## 15197                 1995-01-01                   Canada         80.7
## 15198                 1990-01-01                   Canada         78.9
## 15199                 2015-01-01                   Canada         87.6
## 15200                 2010-01-01                   Canada         86.3
## 15201                 2005-01-01                   Canada         84.7
## 15202                 2000-01-01                   Canada         83.2
## 15203                 1995-01-01                   Canada         80.7
## 15204                 1990-01-01                   Canada         78.9
## 15205                 2015-01-01                   Canada         87.6
## 15206                 2010-01-01                   Canada         86.3
## 15207                 2005-01-01                   Canada         84.7
## 15208                 2000-01-01                   Canada         83.2
## 15209                 1995-01-01                   Canada         80.7
## 15210                 1990-01-01                   Canada         78.9
## 15211                 2015-01-01                   Canada         87.6
## 15212                 2010-01-01                   Canada         86.3
## 15213                 2005-01-01                   Canada         84.7
## 15214                 2000-01-01                   Canada         83.2
## 15215                 1995-01-01                   Canada         80.7
## 15216                 1990-01-01                   Canada         78.9
## 15217                 2015-01-01                   Canada         87.6
## 15218                 2010-01-01                   Canada         86.3
## 15219                 2005-01-01                   Canada         84.7
## 15220                 2000-01-01                   Canada         83.2
## 15221                 1995-01-01                   Canada         80.7
## 15222                 1990-01-01                   Canada         78.9
## 15223                 2015-01-01                   Canada         87.6
## 15224                 2010-01-01                   Canada         86.3
## 15225                 2005-01-01                   Canada         84.7
## 15226                 2000-01-01                   Canada         83.2
## 15227                 1995-01-01                   Canada         80.7
## 15228                 1990-01-01                   Canada         78.9
## 15229                 2015-01-01                   Canada         87.6
## 15230                 2010-01-01                   Canada         86.3
## 15231                 2005-01-01                   Canada         84.7
## 15232                 2000-01-01                   Canada         83.2
## 15233                 1995-01-01                   Canada         80.7
## 15234                 1990-01-01                   Canada         78.9
## 15235                 2015-01-01                   Canada         87.6
## 15236                 2010-01-01                   Canada         86.3
## 15237                 2005-01-01                   Canada         84.7
## 15238                 2000-01-01                   Canada         83.2
## 15239                 1995-01-01                   Canada         80.7
## 15240                 1990-01-01                   Canada         78.9
## 15241                 2015-01-01                   Canada         87.6
## 15242                 2010-01-01                   Canada         86.3
## 15243                 2005-01-01                   Canada         84.7
## 15244                 2000-01-01                   Canada         83.2
## 15245                 1995-01-01                   Canada         80.7
## 15246                 1990-01-01                   Canada         78.9
## 15247                 2015-01-01               Costa Rica         72.9
## 15248                 2010-01-01               Costa Rica         70.8
## 15249                 2005-01-01               Costa Rica         68.6
## 15250                 2000-01-01               Costa Rica         65.4
## 15251                 1995-01-01               Costa Rica         62.8
## 15252                 1990-01-01               Costa Rica         62.1
## 15253                 2015-01-01                   Canada         87.6
## 15254                 2010-01-01                   Canada         86.3
## 15255                 2005-01-01                   Canada         84.7
## 15256                 2000-01-01                   Canada         83.2
## 15257                 1995-01-01                   Canada         80.7
## 15258                 1990-01-01                   Canada         78.9
## 15259                 2015-01-01                   Canada         87.6
## 15260                 2010-01-01                   Canada         86.3
## 15261                 2005-01-01                   Canada         84.7
## 15262                 2000-01-01                   Canada         83.2
## 15263                 1995-01-01                   Canada         80.7
## 15264                 1990-01-01                   Canada         78.9
## 15265                 2015-01-01                   Canada         87.6
## 15266                 2010-01-01                   Canada         86.3
## 15267                 2005-01-01                   Canada         84.7
## 15268                 2000-01-01                   Canada         83.2
## 15269                 1995-01-01                   Canada         80.7
## 15270                 1990-01-01                   Canada         78.9
## 15271                 2015-01-01                   Canada         87.6
## 15272                 2010-01-01                   Canada         86.3
## 15273                 2005-01-01                   Canada         84.7
## 15274                 2000-01-01                   Canada         83.2
## 15275                 1995-01-01                   Canada         80.7
## 15276                 1990-01-01                   Canada         78.9
## 15277                 2015-01-01                   Canada         87.6
## 15278                 2010-01-01                   Canada         86.3
## 15279                 2005-01-01                   Canada         84.7
## 15280                 2000-01-01                   Canada         83.2
## 15281                 1995-01-01                   Canada         80.7
## 15282                 1990-01-01                   Canada         78.9
## 15283                 2015-01-01                   Canada         87.6
## 15284                 2010-01-01                   Canada         86.3
## 15285                 2005-01-01                   Canada         84.7
## 15286                 2000-01-01                   Canada         83.2
## 15287                 1995-01-01                   Canada         80.7
## 15288                 1990-01-01                   Canada         78.9
## 15289                 2015-01-01                   Canada         87.6
## 15290                 2010-01-01                   Canada         86.3
## 15291                 2005-01-01                   Canada         84.7
## 15292                 2000-01-01                   Canada         83.2
## 15293                 1995-01-01                   Canada         80.7
## 15294                 1990-01-01                   Canada         78.9
## 15295                 2015-01-01                   Canada         87.6
## 15296                 2010-01-01                   Canada         86.3
## 15297                 2005-01-01                   Canada         84.7
## 15298                 2000-01-01                   Canada         83.2
## 15299                 1995-01-01                   Canada         80.7
## 15300                 1990-01-01                   Canada         78.9
## 15301                 2015-01-01                   Canada         87.6
## 15302                 2010-01-01                   Canada         86.3
## 15303                 2005-01-01                   Canada         84.7
## 15304                 2000-01-01                   Canada         83.2
## 15305                 1995-01-01                   Canada         80.7
## 15306                 1990-01-01                   Canada         78.9
## 15307                 2015-01-01                   Canada         87.6
## 15308                 2010-01-01                   Canada         86.3
## 15309                 2005-01-01                   Canada         84.7
## 15310                 2000-01-01                   Canada         83.2
## 15311                 1995-01-01                   Canada         80.7
## 15312                 1990-01-01                   Canada         78.9
## 15313                 2015-01-01                   Canada         87.6
## 15314                 2010-01-01                   Canada         86.3
## 15315                 2005-01-01                   Canada         84.7
## 15316                 2000-01-01                   Canada         83.2
## 15317                 1995-01-01                   Canada         80.7
## 15318                 1990-01-01                   Canada         78.9
## 15319                 2015-01-01                   Canada         87.6
## 15320                 2010-01-01                   Canada         86.3
## 15321                 2005-01-01                   Canada         84.7
## 15322                 2000-01-01                   Canada         83.2
## 15323                 1995-01-01                   Canada         80.7
## 15324                 1990-01-01                   Canada         78.9
## 15325                 2015-01-01                   Canada         87.6
## 15326                 2010-01-01                   Canada         86.3
## 15327                 2005-01-01                   Canada         84.7
## 15328                 2000-01-01                   Canada         83.2
## 15329                 1995-01-01                   Canada         80.7
## 15330                 1990-01-01                   Canada         78.9
## 15331                 2015-01-01                   Canada         87.6
## 15332                 2010-01-01                   Canada         86.3
## 15333                 2005-01-01                   Canada         84.7
## 15334                 2000-01-01                   Canada         83.2
## 15335                 1995-01-01                   Canada         80.7
## 15336                 1990-01-01                   Canada         78.9
## 15337                 2015-01-01                   Canada         87.6
## 15338                 2010-01-01                   Canada         86.3
## 15339                 2005-01-01                   Canada         84.7
## 15340                 2000-01-01                   Canada         83.2
## 15341                 1995-01-01                   Canada         80.7
## 15342                 1990-01-01                   Canada         78.9
## 15343                 2015-01-01                   Canada         87.6
## 15344                 2010-01-01                   Canada         86.3
## 15345                 2005-01-01                   Canada         84.7
## 15346                 2000-01-01                   Canada         83.2
## 15347                 1995-01-01                   Canada         80.7
## 15348                 1990-01-01                   Canada         78.9
## 15349                 2015-01-01                   Canada         87.6
## 15350                 2010-01-01                   Canada         86.3
## 15351                 2005-01-01                   Canada         84.7
## 15352                 2000-01-01                   Canada         83.2
## 15353                 1995-01-01                   Canada         80.7
## 15354                 1990-01-01                   Canada         78.9
## 15355                 2015-01-01                   Canada         87.6
## 15356                 2010-01-01                   Canada         86.3
## 15357                 2005-01-01                   Canada         84.7
## 15358                 2000-01-01                   Canada         83.2
## 15359                 1995-01-01                   Canada         80.7
## 15360                 1990-01-01                   Canada         78.9
## 15361                 2015-01-01                   Canada         87.6
## 15362                 2010-01-01                   Canada         86.3
## 15363                 2005-01-01                   Canada         84.7
## 15364                 2000-01-01                   Canada         83.2
## 15365                 1995-01-01                   Canada         80.7
## 15366                 1990-01-01                   Canada         78.9
## 15367                 2015-01-01                   Canada         87.6
## 15368                 2010-01-01                   Canada         86.3
## 15369                 2005-01-01                   Canada         84.7
## 15370                 2000-01-01                   Canada         83.2
## 15371                 1995-01-01                   Canada         80.7
## 15372                 1990-01-01                   Canada         78.9
## 15373                 2015-01-01                   Canada         87.6
## 15374                 2010-01-01                   Canada         86.3
## 15375                 2005-01-01                   Canada         84.7
## 15376                 2000-01-01                   Canada         83.2
## 15377                 1995-01-01                   Canada         80.7
## 15378                 1990-01-01                   Canada         78.9
## 15379                 2015-01-01                   Canada         87.6
## 15380                 2010-01-01                   Canada         86.3
## 15381                 2005-01-01                   Canada         84.7
## 15382                 2000-01-01                   Canada         83.2
## 15383                 1995-01-01                   Canada         80.7
## 15384                 1990-01-01                   Canada         78.9
## 15385                 2015-01-01                   Canada         87.6
## 15386                 2010-01-01                   Canada         86.3
## 15387                 2005-01-01                   Canada         84.7
## 15388                 2000-01-01                   Canada         83.2
## 15389                 1995-01-01                   Canada         80.7
## 15390                 1990-01-01                   Canada         78.9
## 15391                 2015-01-01                   Canada         87.6
## 15392                 2010-01-01                   Canada         86.3
## 15393                 2005-01-01                   Canada         84.7
## 15394                 2000-01-01                   Canada         83.2
## 15395                 1995-01-01                   Canada         80.7
## 15396                 1990-01-01                   Canada         78.9
## 15397                 2015-01-01                   Canada         87.6
## 15398                 2010-01-01                   Canada         86.3
## 15399                 2005-01-01                   Canada         84.7
## 15400                 2000-01-01                   Canada         83.2
## 15401                 1995-01-01                   Canada         80.7
## 15402                 1990-01-01                   Canada         78.9
## 15403                 2015-01-01                   Canada         87.6
## 15404                 2010-01-01                   Canada         86.3
## 15405                 2005-01-01                   Canada         84.7
## 15406                 2000-01-01                   Canada         83.2
## 15407                 1995-01-01                   Canada         80.7
## 15408                 1990-01-01                   Canada         78.9
## 15409                 2015-01-01                   Canada         87.6
## 15410                 2010-01-01                   Canada         86.3
## 15411                 2005-01-01                   Canada         84.7
## 15412                 2000-01-01                   Canada         83.2
## 15413                 1995-01-01                   Canada         80.7
## 15414                 1990-01-01                   Canada         78.9
## 15415                 2015-01-01                   Canada         87.6
## 15416                 2010-01-01                   Canada         86.3
## 15417                 2005-01-01                   Canada         84.7
## 15418                 2000-01-01                   Canada         83.2
## 15419                 1995-01-01                   Canada         80.7
## 15420                 1990-01-01                   Canada         78.9
## 15421                 2015-01-01                   Canada         87.6
## 15422                 2010-01-01                   Canada         86.3
## 15423                 2005-01-01                   Canada         84.7
## 15424                 2000-01-01                   Canada         83.2
## 15425                 1995-01-01                   Canada         80.7
## 15426                 1990-01-01                   Canada         78.9
## 15427                 2015-01-01                   Canada         87.6
## 15428                 2010-01-01                   Canada         86.3
## 15429                 2005-01-01                   Canada         84.7
## 15430                 2000-01-01                   Canada         83.2
## 15431                 1995-01-01                   Canada         80.7
## 15432                 1990-01-01                   Canada         78.9
## 15433                 2015-01-01                   Canada         87.6
## 15434                 2010-01-01                   Canada         86.3
## 15435                 2005-01-01                   Canada         84.7
## 15436                 2000-01-01                   Canada         83.2
## 15437                 1995-01-01                   Canada         80.7
## 15438                 1990-01-01                   Canada         78.9
## 15439                 2015-01-01                   Canada         87.6
## 15440                 2010-01-01                   Canada         86.3
## 15441                 2005-01-01                   Canada         84.7
## 15442                 2000-01-01                   Canada         83.2
## 15443                 1995-01-01                   Canada         80.7
## 15444                 1990-01-01                   Canada         78.9
## 15445                 2015-01-01                   Canada         87.6
## 15446                 2010-01-01                   Canada         86.3
## 15447                 2005-01-01                   Canada         84.7
## 15448                 2000-01-01                   Canada         83.2
## 15449                 1995-01-01                   Canada         80.7
## 15450                 1990-01-01                   Canada         78.9
## 15451                 2015-01-01                   Canada         87.6
## 15452                 2010-01-01                   Canada         86.3
## 15453                 2005-01-01                   Canada         84.7
## 15454                 2000-01-01                   Canada         83.2
## 15455                 1995-01-01                   Canada         80.7
## 15456                 1990-01-01                   Canada         78.9
## 15457                 2015-01-01                   Canada         87.6
## 15458                 2010-01-01                   Canada         86.3
## 15459                 2005-01-01                   Canada         84.7
## 15460                 2000-01-01                   Canada         83.2
## 15461                 1995-01-01                   Canada         80.7
## 15462                 1990-01-01                   Canada         78.9
## 15463                 2015-01-01                   Canada         87.6
## 15464                 2010-01-01                   Canada         86.3
## 15465                 2005-01-01                   Canada         84.7
## 15466                 2000-01-01                   Canada         83.2
## 15467                 1995-01-01                   Canada         80.7
## 15468                 1990-01-01                   Canada         78.9
## 15469                 2015-01-01                   Canada         87.6
## 15470                 2010-01-01                   Canada         86.3
## 15471                 2005-01-01                   Canada         84.7
## 15472                 2000-01-01                   Canada         83.2
## 15473                 1995-01-01                   Canada         80.7
## 15474                 1990-01-01                   Canada         78.9
## 15475                 2015-01-01                   Canada         87.6
## 15476                 2010-01-01                   Canada         86.3
## 15477                 2005-01-01                   Canada         84.7
## 15478                 2000-01-01                   Canada         83.2
## 15479                 1995-01-01                   Canada         80.7
## 15480                 1990-01-01                   Canada         78.9
## 15481                 2015-01-01                   Canada         87.6
## 15482                 2010-01-01                   Canada         86.3
## 15483                 2005-01-01                   Canada         84.7
## 15484                 2000-01-01                   Canada         83.2
## 15485                 1995-01-01                   Canada         80.7
## 15486                 1990-01-01                   Canada         78.9
## 15487                 2015-01-01                   Canada         87.6
## 15488                 2010-01-01                   Canada         86.3
## 15489                 2005-01-01                   Canada         84.7
## 15490                 2000-01-01                   Canada         83.2
## 15491                 1995-01-01                   Canada         80.7
## 15492                 1990-01-01                   Canada         78.9
## 15493                 2015-01-01                   Canada         87.6
## 15494                 2010-01-01                   Canada         86.3
## 15495                 2005-01-01                   Canada         84.7
## 15496                 2000-01-01                   Canada         83.2
## 15497                 1995-01-01                   Canada         80.7
## 15498                 1990-01-01                   Canada         78.9
## 15499                 2015-01-01                   Canada         87.6
## 15500                 2010-01-01                   Canada         86.3
## 15501                 2005-01-01                   Canada         84.7
## 15502                 2000-01-01                   Canada         83.2
## 15503                 1995-01-01                   Canada         80.7
## 15504                 1990-01-01                   Canada         78.9
## 15505                 2015-01-01                   Canada         87.6
## 15506                 2010-01-01                   Canada         86.3
## 15507                 2005-01-01                   Canada         84.7
## 15508                 2000-01-01                   Canada         83.2
## 15509                 1995-01-01                   Canada         80.7
## 15510                 1990-01-01                   Canada         78.9
## 15511                 2015-01-01                   Canada         87.6
## 15512                 2010-01-01                   Canada         86.3
## 15513                 2005-01-01                   Canada         84.7
## 15514                 2000-01-01                   Canada         83.2
## 15515                 1995-01-01                   Canada         80.7
## 15516                 1990-01-01                   Canada         78.9
## 15517                 2015-01-01                   Canada         87.6
## 15518                 2010-01-01                   Canada         86.3
## 15519                 2005-01-01                   Canada         84.7
## 15520                 2000-01-01                   Canada         83.2
## 15521                 1995-01-01                   Canada         80.7
## 15522                 1990-01-01                   Canada         78.9
## 15523                 2015-01-01                   Canada         87.6
## 15524                 2010-01-01                   Canada         86.3
## 15525                 2005-01-01                   Canada         84.7
## 15526                 2000-01-01                   Canada         83.2
## 15527                 1995-01-01                   Canada         80.7
## 15528                 1990-01-01                   Canada         78.9
## 15529                 2015-01-01                   Canada         87.6
## 15530                 2010-01-01                   Canada         86.3
## 15531                 2005-01-01                   Canada         84.7
## 15532                 2000-01-01                   Canada         83.2
## 15533                 1995-01-01                   Canada         80.7
## 15534                 1990-01-01                   Canada         78.9
## 15535                 2015-01-01                   Canada         87.6
## 15536                 2010-01-01                   Canada         86.3
## 15537                 2005-01-01                   Canada         84.7
## 15538                 2000-01-01                   Canada         83.2
## 15539                 1995-01-01                   Canada         80.7
## 15540                 1990-01-01                   Canada         78.9
## 15541                 2015-01-01                   Canada         87.6
## 15542                 2010-01-01                   Canada         86.3
## 15543                 2005-01-01                   Canada         84.7
## 15544                 2000-01-01                   Canada         83.2
## 15545                 1995-01-01                   Canada         80.7
## 15546                 1990-01-01                   Canada         78.9
## 15547                 2015-01-01                   Canada         87.6
## 15548                 2010-01-01                   Canada         86.3
## 15549                 2005-01-01                   Canada         84.7
## 15550                 2000-01-01                   Canada         83.2
## 15551                 1995-01-01                   Canada         80.7
## 15552                 1990-01-01                   Canada         78.9
## 15553                 2015-01-01                   Canada         87.6
## 15554                 2010-01-01                   Canada         86.3
## 15555                 2005-01-01                   Canada         84.7
## 15556                 2000-01-01                   Canada         83.2
## 15557                 1995-01-01                   Canada         80.7
## 15558                 1990-01-01                   Canada         78.9
## 15559                 2015-01-01                   Canada         87.6
## 15560                 2010-01-01                   Canada         86.3
## 15561                 2005-01-01                   Canada         84.7
## 15562                 2000-01-01                   Canada         83.2
## 15563                 1995-01-01                   Canada         80.7
## 15564                 1990-01-01                   Canada         78.9
## 15565                 2015-01-01                   Canada         87.6
## 15566                 2010-01-01                   Canada         86.3
## 15567                 2005-01-01                   Canada         84.7
## 15568                 2000-01-01                   Canada         83.2
## 15569                 1995-01-01                   Canada         80.7
## 15570                 1990-01-01                   Canada         78.9
## 15571                 2015-01-01 Central African Republic         28.6
## 15572                 2010-01-01 Central African Republic         28.8
## 15573                 2005-01-01 Central African Republic         28.0
## 15574                 2000-01-01 Central African Republic         26.7
## 15575                 1995-01-01 Central African Republic         25.8
## 15576                 1990-01-01 Central African Republic         25.5
## 15577                 2015-01-01 Central African Republic         28.6
## 15578                 2010-01-01 Central African Republic         28.8
## 15579                 2005-01-01 Central African Republic         28.0
## 15580                 2000-01-01 Central African Republic         26.7
## 15581                 1995-01-01 Central African Republic         25.8
## 15582                 1990-01-01 Central African Republic         25.5
## 15583                 2015-01-01 Central African Republic         28.6
## 15584                 2010-01-01 Central African Republic         28.8
## 15585                 2005-01-01 Central African Republic         28.0
## 15586                 2000-01-01 Central African Republic         26.7
## 15587                 1995-01-01 Central African Republic         25.8
## 15588                 1990-01-01 Central African Republic         25.5
## 15589                 2015-01-01 Central African Republic         28.6
## 15590                 2010-01-01 Central African Republic         28.8
## 15591                 2005-01-01 Central African Republic         28.0
## 15592                 2000-01-01 Central African Republic         26.7
## 15593                 1995-01-01 Central African Republic         25.8
## 15594                 1990-01-01 Central African Republic         25.5
## 15595                 2015-01-01 Central African Republic         28.6
## 15596                 2010-01-01 Central African Republic         28.8
## 15597                 2005-01-01 Central African Republic         28.0
## 15598                 2000-01-01 Central African Republic         26.7
## 15599                 1995-01-01 Central African Republic         25.8
## 15600                 1990-01-01 Central African Republic         25.5
## 15601                 2015-01-01 Central African Republic         28.6
## 15602                 2010-01-01 Central African Republic         28.8
## 15603                 2005-01-01 Central African Republic         28.0
## 15604                 2000-01-01 Central African Republic         26.7
## 15605                 1995-01-01 Central African Republic         25.8
## 15606                 1990-01-01 Central African Republic         25.5
## 15607                 2015-01-01 Central African Republic         28.6
## 15608                 2010-01-01 Central African Republic         28.8
## 15609                 2005-01-01 Central African Republic         28.0
## 15610                 2000-01-01 Central African Republic         26.7
## 15611                 1995-01-01 Central African Republic         25.8
## 15612                 1990-01-01 Central African Republic         25.5
## 15613                 2015-01-01 Central African Republic         28.6
## 15614                 2010-01-01 Central African Republic         28.8
## 15615                 2005-01-01 Central African Republic         28.0
## 15616                 2000-01-01 Central African Republic         26.7
## 15617                 1995-01-01 Central African Republic         25.8
## 15618                 1990-01-01 Central African Republic         25.5
## 15619                 2015-01-01 Central African Republic         28.6
## 15620                 2010-01-01 Central African Republic         28.8
## 15621                 2005-01-01 Central African Republic         28.0
## 15622                 2000-01-01 Central African Republic         26.7
## 15623                 1995-01-01 Central African Republic         25.8
## 15624                 1990-01-01 Central African Republic         25.5
## 15625                 2015-01-01 Central African Republic         28.6
## 15626                 2010-01-01 Central African Republic         28.8
## 15627                 2005-01-01 Central African Republic         28.0
## 15628                 2000-01-01 Central African Republic         26.7
## 15629                 1995-01-01 Central African Republic         25.8
## 15630                 1990-01-01 Central African Republic         25.5
## 15631                 2015-01-01 Central African Republic         28.6
## 15632                 2010-01-01 Central African Republic         28.8
## 15633                 2005-01-01 Central African Republic         28.0
## 15634                 2000-01-01 Central African Republic         26.7
## 15635                 1995-01-01 Central African Republic         25.8
## 15636                 1990-01-01 Central African Republic         25.5
## 15637                 2015-01-01 Central African Republic         28.6
## 15638                 2010-01-01 Central African Republic         28.8
## 15639                 2005-01-01 Central African Republic         28.0
## 15640                 2000-01-01 Central African Republic         26.7
## 15641                 1995-01-01 Central African Republic         25.8
## 15642                 1990-01-01 Central African Republic         25.5
## 15643                 2015-01-01 Central African Republic         28.6
## 15644                 2010-01-01 Central African Republic         28.8
## 15645                 2005-01-01 Central African Republic         28.0
## 15646                 2000-01-01 Central African Republic         26.7
## 15647                 1995-01-01 Central African Republic         25.8
## 15648                 1990-01-01 Central African Republic         25.5
## 15649                 2015-01-01 Central African Republic         28.6
## 15650                 2010-01-01 Central African Republic         28.8
## 15651                 2005-01-01 Central African Republic         28.0
## 15652                 2000-01-01 Central African Republic         26.7
## 15653                 1995-01-01 Central African Republic         25.8
## 15654                 1990-01-01 Central African Republic         25.5
## 15655                 2015-01-01 Central African Republic         28.6
## 15656                 2010-01-01 Central African Republic         28.8
## 15657                 2005-01-01 Central African Republic         28.0
## 15658                 2000-01-01 Central African Republic         26.7
## 15659                 1995-01-01 Central African Republic         25.8
## 15660                 1990-01-01 Central African Republic         25.5
## 15661                 2015-01-01 Central African Republic         28.6
## 15662                 2010-01-01 Central African Republic         28.8
## 15663                 2005-01-01 Central African Republic         28.0
## 15664                 2000-01-01 Central African Republic         26.7
## 15665                 1995-01-01 Central African Republic         25.8
## 15666                 1990-01-01 Central African Republic         25.5
## 15667                 2015-01-01 Central African Republic         28.6
## 15668                 2010-01-01 Central African Republic         28.8
## 15669                 2005-01-01 Central African Republic         28.0
## 15670                 2000-01-01 Central African Republic         26.7
## 15671                 1995-01-01 Central African Republic         25.8
## 15672                 1990-01-01 Central African Republic         25.5
## 15673                 2015-01-01 Central African Republic         28.6
## 15674                 2010-01-01 Central African Republic         28.8
## 15675                 2005-01-01 Central African Republic         28.0
## 15676                 2000-01-01 Central African Republic         26.7
## 15677                 1995-01-01 Central African Republic         25.8
## 15678                 1990-01-01 Central African Republic         25.5
## 15679                 2015-01-01 Central African Republic         28.6
## 15680                 2010-01-01 Central African Republic         28.8
## 15681                 2005-01-01 Central African Republic         28.0
## 15682                 2000-01-01 Central African Republic         26.7
## 15683                 1995-01-01 Central African Republic         25.8
## 15684                 1990-01-01 Central African Republic         25.5
## 15685                 2015-01-01 Central African Republic         28.6
## 15686                 2010-01-01 Central African Republic         28.8
## 15687                 2005-01-01 Central African Republic         28.0
## 15688                 2000-01-01 Central African Republic         26.7
## 15689                 1995-01-01 Central African Republic         25.8
## 15690                 1990-01-01 Central African Republic         25.5
## 15691                 2015-01-01 Central African Republic         28.6
## 15692                 2010-01-01 Central African Republic         28.8
## 15693                 2005-01-01 Central African Republic         28.0
## 15694                 2000-01-01 Central African Republic         26.7
## 15695                 1995-01-01 Central African Republic         25.8
## 15696                 1990-01-01 Central African Republic         25.5
## 15697                 2015-01-01 Central African Republic         28.6
## 15698                 2010-01-01 Central African Republic         28.8
## 15699                 2005-01-01 Central African Republic         28.0
## 15700                 2000-01-01 Central African Republic         26.7
## 15701                 1995-01-01 Central African Republic         25.8
## 15702                 1990-01-01 Central African Republic         25.5
## 15703                 2015-01-01 Central African Republic         28.6
## 15704                 2010-01-01 Central African Republic         28.8
## 15705                 2005-01-01 Central African Republic         28.0
## 15706                 2000-01-01 Central African Republic         26.7
## 15707                 1995-01-01 Central African Republic         25.8
## 15708                 1990-01-01 Central African Republic         25.5
## 15709                 2015-01-01                     Chad         37.7
## 15710                 2010-01-01                     Chad         36.3
## 15711                 2005-01-01                     Chad         34.1
## 15712                 2000-01-01                     Chad         32.1
## 15713                 1995-01-01                     Chad         35.2
## 15714                 1990-01-01                     Chad         35.6
## 15715                 2015-01-01                     Chad         37.7
## 15716                 2010-01-01                     Chad         36.3
## 15717                 2005-01-01                     Chad         34.1
## 15718                 2000-01-01                     Chad         32.1
## 15719                 1995-01-01                     Chad         35.2
## 15720                 1990-01-01                     Chad         35.6
## 15721                 2015-01-01                     Chad         37.7
## 15722                 2010-01-01                     Chad         36.3
## 15723                 2005-01-01                     Chad         34.1
## 15724                 2000-01-01                     Chad         32.1
## 15725                 1995-01-01                     Chad         35.2
## 15726                 1990-01-01                     Chad         35.6
## 15727                 2015-01-01                     Chad         37.7
## 15728                 2010-01-01                     Chad         36.3
## 15729                 2005-01-01                     Chad         34.1
## 15730                 2000-01-01                     Chad         32.1
## 15731                 1995-01-01                     Chad         35.2
## 15732                 1990-01-01                     Chad         35.6
## 15733                 2015-01-01                     Chad         37.7
## 15734                 2010-01-01                     Chad         36.3
## 15735                 2005-01-01                     Chad         34.1
## 15736                 2000-01-01                     Chad         32.1
## 15737                 1995-01-01                     Chad         35.2
## 15738                 1990-01-01                     Chad         35.6
## 15739                 2015-01-01        Equatorial Guinea         48.4
## 15740                 2010-01-01        Equatorial Guinea         45.6
## 15741                 2005-01-01        Equatorial Guinea         42.9
## 15742                 2000-01-01        Equatorial Guinea         35.4
## 15743                 1995-01-01        Equatorial Guinea         27.5
## 15744                 1990-01-01        Equatorial Guinea         26.1
## 15745                 2015-01-01                     Chad         37.7
## 15746                 2010-01-01                     Chad         36.3
## 15747                 2005-01-01                     Chad         34.1
## 15748                 2000-01-01                     Chad         32.1
## 15749                 1995-01-01                     Chad         35.2
## 15750                 1990-01-01                     Chad         35.6
## 15751                 2015-01-01                     Chad         37.7
## 15752                 2010-01-01                     Chad         36.3
## 15753                 2005-01-01                     Chad         34.1
## 15754                 2000-01-01                     Chad         32.1
## 15755                 1995-01-01                     Chad         35.2
## 15756                 1990-01-01                     Chad         35.6
## 15757                 2015-01-01                     Chad         37.7
## 15758                 2010-01-01                     Chad         36.3
## 15759                 2005-01-01                     Chad         34.1
## 15760                 2000-01-01                     Chad         32.1
## 15761                 1995-01-01                     Chad         35.2
## 15762                 1990-01-01                     Chad         35.6
## 15763                 2015-01-01                     Chad         37.7
## 15764                 2010-01-01                     Chad         36.3
## 15765                 2005-01-01                     Chad         34.1
## 15766                 2000-01-01                     Chad         32.1
## 15767                 1995-01-01                     Chad         35.2
## 15768                 1990-01-01                     Chad         35.6
## 15769                 2015-01-01                     Chad         37.7
## 15770                 2010-01-01                     Chad         36.3
## 15771                 2005-01-01                     Chad         34.1
## 15772                 2000-01-01                     Chad         32.1
## 15773                 1995-01-01                     Chad         35.2
## 15774                 1990-01-01                     Chad         35.6
## 15775                 2015-01-01                     Chad         37.7
## 15776                 2010-01-01                     Chad         36.3
## 15777                 2005-01-01                     Chad         34.1
## 15778                 2000-01-01                     Chad         32.1
## 15779                 1995-01-01                     Chad         35.2
## 15780                 1990-01-01                     Chad         35.6
## 15781                 2015-01-01                     Chad         37.7
## 15782                 2010-01-01                     Chad         36.3
## 15783                 2005-01-01                     Chad         34.1
## 15784                 2000-01-01                     Chad         32.1
## 15785                 1995-01-01                     Chad         35.2
## 15786                 1990-01-01                     Chad         35.6
## 15787                 2015-01-01                     Chad         37.7
## 15788                 2010-01-01                     Chad         36.3
## 15789                 2005-01-01                     Chad         34.1
## 15790                 2000-01-01                     Chad         32.1
## 15791                 1995-01-01                     Chad         35.2
## 15792                 1990-01-01                     Chad         35.6
## 15793                 2015-01-01                     Chad         37.7
## 15794                 2010-01-01                     Chad         36.3
## 15795                 2005-01-01                     Chad         34.1
## 15796                 2000-01-01                     Chad         32.1
## 15797                 1995-01-01                     Chad         35.2
## 15798                 1990-01-01                     Chad         35.6
## 15799                 2015-01-01                     Chad         37.7
## 15800                 2010-01-01                     Chad         36.3
## 15801                 2005-01-01                     Chad         34.1
## 15802                 2000-01-01                     Chad         32.1
## 15803                 1995-01-01                     Chad         35.2
## 15804                 1990-01-01                     Chad         35.6
## 15805                 2015-01-01                     Chad         37.7
## 15806                 2010-01-01                     Chad         36.3
## 15807                 2005-01-01                     Chad         34.1
## 15808                 2000-01-01                     Chad         32.1
## 15809                 1995-01-01                     Chad         35.2
## 15810                 1990-01-01                     Chad         35.6
## 15811                 2015-01-01                     Chad         37.7
## 15812                 2010-01-01                     Chad         36.3
## 15813                 2005-01-01                     Chad         34.1
## 15814                 2000-01-01                     Chad         32.1
## 15815                 1995-01-01                     Chad         35.2
## 15816                 1990-01-01                     Chad         35.6
## 15817                 2015-01-01                     Chad         37.7
## 15818                 2010-01-01                     Chad         36.3
## 15819                 2005-01-01                     Chad         34.1
## 15820                 2000-01-01                     Chad         32.1
## 15821                 1995-01-01                     Chad         35.2
## 15822                 1990-01-01                     Chad         35.6
## 15823                 2015-01-01                     Chad         37.7
## 15824                 2010-01-01                     Chad         36.3
## 15825                 2005-01-01                     Chad         34.1
## 15826                 2000-01-01                     Chad         32.1
## 15827                 1995-01-01                     Chad         35.2
## 15828                 1990-01-01                     Chad         35.6
## 15829                 2015-01-01                     Chad         37.7
## 15830                 2010-01-01                     Chad         36.3
## 15831                 2005-01-01                     Chad         34.1
## 15832                 2000-01-01                     Chad         32.1
## 15833                 1995-01-01                     Chad         35.2
## 15834                 1990-01-01                     Chad         35.6
## 15835                 2015-01-01                     Chad         37.7
## 15836                 2010-01-01                     Chad         36.3
## 15837                 2005-01-01                     Chad         34.1
## 15838                 2000-01-01                     Chad         32.1
## 15839                 1995-01-01                     Chad         35.2
## 15840                 1990-01-01                     Chad         35.6
## 15841                 2015-01-01                     Chad         37.7
## 15842                 2010-01-01                     Chad         36.3
## 15843                 2005-01-01                     Chad         34.1
## 15844                 2000-01-01                     Chad         32.1
## 15845                 1995-01-01                     Chad         35.2
## 15846                 1990-01-01                     Chad         35.6
## 15847                 2015-01-01                     Chad         37.7
## 15848                 2010-01-01                     Chad         36.3
## 15849                 2005-01-01                     Chad         34.1
## 15850                 2000-01-01                     Chad         32.1
## 15851                 1995-01-01                     Chad         35.2
## 15852                 1990-01-01                     Chad         35.6
## 15853                 2015-01-01                     Chad         37.7
## 15854                 2010-01-01                     Chad         36.3
## 15855                 2005-01-01                     Chad         34.1
## 15856                 2000-01-01                     Chad         32.1
## 15857                 1995-01-01                     Chad         35.2
## 15858                 1990-01-01                     Chad         35.6
## 15859                 2015-01-01                     Chad         37.7
## 15860                 2010-01-01                     Chad         36.3
## 15861                 2005-01-01                     Chad         34.1
## 15862                 2000-01-01                     Chad         32.1
## 15863                 1995-01-01                     Chad         35.2
## 15864                 1990-01-01                     Chad         35.6
## 15865                 2015-01-01                     Chad         37.7
## 15866                 2010-01-01                     Chad         36.3
## 15867                 2005-01-01                     Chad         34.1
## 15868                 2000-01-01                     Chad         32.1
## 15869                 1995-01-01                     Chad         35.2
## 15870                 1990-01-01                     Chad         35.6
## 15871                 2015-01-01                     Chad         37.7
## 15872                 2010-01-01                     Chad         36.3
## 15873                 2005-01-01                     Chad         34.1
## 15874                 2000-01-01                     Chad         32.1
## 15875                 1995-01-01                     Chad         35.2
## 15876                 1990-01-01                     Chad         35.6
## 15877                 2015-01-01                     Chad         37.7
## 15878                 2010-01-01                     Chad         36.3
## 15879                 2005-01-01                     Chad         34.1
## 15880                 2000-01-01                     Chad         32.1
## 15881                 1995-01-01                     Chad         35.2
## 15882                 1990-01-01                     Chad         35.6
## 15883                 2015-01-01                     Chad         37.7
## 15884                 2010-01-01                     Chad         36.3
## 15885                 2005-01-01                     Chad         34.1
## 15886                 2000-01-01                     Chad         32.1
## 15887                 1995-01-01                     Chad         35.2
## 15888                 1990-01-01                     Chad         35.6
## 15889                 2015-01-01                     Chad         37.7
## 15890                 2010-01-01                     Chad         36.3
## 15891                 2005-01-01                     Chad         34.1
## 15892                 2000-01-01                     Chad         32.1
## 15893                 1995-01-01                     Chad         35.2
## 15894                 1990-01-01                     Chad         35.6
## 15895                 2015-01-01                     Chad         37.7
## 15896                 2010-01-01                     Chad         36.3
## 15897                 2005-01-01                     Chad         34.1
## 15898                 2000-01-01                     Chad         32.1
## 15899                 1995-01-01                     Chad         35.2
## 15900                 1990-01-01                     Chad         35.6
## 15901                 2015-01-01                     Chad         37.7
## 15902                 2010-01-01                     Chad         36.3
## 15903                 2005-01-01                     Chad         34.1
## 15904                 2000-01-01                     Chad         32.1
## 15905                 1995-01-01                     Chad         35.2
## 15906                 1990-01-01                     Chad         35.6
## 15907                 2015-01-01                     Chad         37.7
## 15908                 2010-01-01                     Chad         36.3
## 15909                 2005-01-01                     Chad         34.1
## 15910                 2000-01-01                     Chad         32.1
## 15911                 1995-01-01                     Chad         35.2
## 15912                 1990-01-01                     Chad         35.6
## 15913                 2015-01-01                     Chad         37.7
## 15914                 2010-01-01                     Chad         36.3
## 15915                 2005-01-01                     Chad         34.1
## 15916                 2000-01-01                     Chad         32.1
## 15917                 1995-01-01                     Chad         35.2
## 15918                 1990-01-01                     Chad         35.6
## 15919                 2015-01-01                     Chad         37.7
## 15920                 2010-01-01                     Chad         36.3
## 15921                 2005-01-01                     Chad         34.1
## 15922                 2000-01-01                     Chad         32.1
## 15923                 1995-01-01                     Chad         35.2
## 15924                 1990-01-01                     Chad         35.6
## 15925                 2015-01-01                     Chad         37.7
## 15926                 2010-01-01                     Chad         36.3
## 15927                 2005-01-01                     Chad         34.1
## 15928                 2000-01-01                     Chad         32.1
## 15929                 1995-01-01                     Chad         35.2
## 15930                 1990-01-01                     Chad         35.6
## 15931                 2015-01-01                     Chad         37.7
## 15932                 2010-01-01                     Chad         36.3
## 15933                 2005-01-01                     Chad         34.1
## 15934                 2000-01-01                     Chad         32.1
## 15935                 1995-01-01                     Chad         35.2
## 15936                 1990-01-01                     Chad         35.6
## 15937                 2015-01-01                     Chad         37.7
## 15938                 2010-01-01                     Chad         36.3
## 15939                 2005-01-01                     Chad         34.1
## 15940                 2000-01-01                     Chad         32.1
## 15941                 1995-01-01                     Chad         35.2
## 15942                 1990-01-01                     Chad         35.6
## 15943                 2015-01-01                     Chad         37.7
## 15944                 2010-01-01                     Chad         36.3
## 15945                 2005-01-01                     Chad         34.1
## 15946                 2000-01-01                     Chad         32.1
## 15947                 1995-01-01                     Chad         35.2
## 15948                 1990-01-01                     Chad         35.6
## 15949                 2015-01-01                     Chad         37.7
## 15950                 2010-01-01                     Chad         36.3
## 15951                 2005-01-01                     Chad         34.1
## 15952                 2000-01-01                     Chad         32.1
## 15953                 1995-01-01                     Chad         35.2
## 15954                 1990-01-01                     Chad         35.6
## 15955                 2015-01-01                     Chad         37.7
## 15956                 2010-01-01                     Chad         36.3
## 15957                 2005-01-01                     Chad         34.1
## 15958                 2000-01-01                     Chad         32.1
## 15959                 1995-01-01                     Chad         35.2
## 15960                 1990-01-01                     Chad         35.6
## 15961                 2015-01-01                     Chad         37.7
## 15962                 2010-01-01                     Chad         36.3
## 15963                 2005-01-01                     Chad         34.1
## 15964                 2000-01-01                     Chad         32.1
## 15965                 1995-01-01                     Chad         35.2
## 15966                 1990-01-01                     Chad         35.6
## 15967                 2015-01-01                    Chile         76.0
## 15968                 2010-01-01                    Chile         73.9
## 15969                 2005-01-01                    Chile         72.0
## 15970                 2000-01-01                    Chile         69.2
## 15971                 1995-01-01                    Chile         64.2
## 15972                 1990-01-01                    Chile         58.8
## 15973                 2015-01-01                    Chile         76.0
## 15974                 2010-01-01                    Chile         73.9
## 15975                 2005-01-01                    Chile         72.0
## 15976                 2000-01-01                    Chile         69.2
## 15977                 1995-01-01                    Chile         64.2
## 15978                 1990-01-01                    Chile         58.8
## 15979                 2015-01-01                    Chile         76.0
## 15980                 2010-01-01                    Chile         73.9
## 15981                 2005-01-01                    Chile         72.0
## 15982                 2000-01-01                    Chile         69.2
## 15983                 1995-01-01                    Chile         64.2
## 15984                 1990-01-01                    Chile         58.8
## 15985                 2015-01-01                    Chile         76.0
## 15986                 2010-01-01                    Chile         73.9
## 15987                 2005-01-01                    Chile         72.0
## 15988                 2000-01-01                    Chile         69.2
## 15989                 1995-01-01                    Chile         64.2
## 15990                 1990-01-01                    Chile         58.8
## 15991                 2015-01-01                    Chile         76.0
## 15992                 2010-01-01                    Chile         73.9
## 15993                 2005-01-01                    Chile         72.0
## 15994                 2000-01-01                    Chile         69.2
## 15995                 1995-01-01                    Chile         64.2
## 15996                 1990-01-01                    Chile         58.8
## 15997                 2015-01-01                    Chile         76.0
## 15998                 2010-01-01                    Chile         73.9
## 15999                 2005-01-01                    Chile         72.0
## 16000                 2000-01-01                    Chile         69.2
## 16001                 1995-01-01                    Chile         64.2
## 16002                 1990-01-01                    Chile         58.8
## 16003                 2015-01-01                    Chile         76.0
## 16004                 2010-01-01                    Chile         73.9
## 16005                 2005-01-01                    Chile         72.0
## 16006                 2000-01-01                    Chile         69.2
## 16007                 1995-01-01                    Chile         64.2
## 16008                 1990-01-01                    Chile         58.8
## 16009                 2015-01-01                    Chile         76.0
## 16010                 2010-01-01                    Chile         73.9
## 16011                 2005-01-01                    Chile         72.0
## 16012                 2000-01-01                    Chile         69.2
## 16013                 1995-01-01                    Chile         64.2
## 16014                 1990-01-01                    Chile         58.8
## 16015                 2015-01-01                    Chile         76.0
## 16016                 2010-01-01                    Chile         73.9
## 16017                 2005-01-01                    Chile         72.0
## 16018                 2000-01-01                    Chile         69.2
## 16019                 1995-01-01                    Chile         64.2
## 16020                 1990-01-01                    Chile         58.8
## 16021                 2015-01-01                    Chile         76.0
## 16022                 2010-01-01                    Chile         73.9
## 16023                 2005-01-01                    Chile         72.0
## 16024                 2000-01-01                    Chile         69.2
## 16025                 1995-01-01                    Chile         64.2
## 16026                 1990-01-01                    Chile         58.8
## 16027                 2015-01-01                    Chile         76.0
## 16028                 2010-01-01                    Chile         73.9
## 16029                 2005-01-01                    Chile         72.0
## 16030                 2000-01-01                    Chile         69.2
## 16031                 1995-01-01                    Chile         64.2
## 16032                 1990-01-01                    Chile         58.8
## 16033                 2015-01-01                    Chile         76.0
## 16034                 2010-01-01                    Chile         73.9
## 16035                 2005-01-01                    Chile         72.0
## 16036                 2000-01-01                    Chile         69.2
## 16037                 1995-01-01                    Chile         64.2
## 16038                 1990-01-01                    Chile         58.8
## 16039                 2015-01-01                    Chile         76.0
## 16040                 2010-01-01                    Chile         73.9
## 16041                 2005-01-01                    Chile         72.0
## 16042                 2000-01-01                    Chile         69.2
## 16043                 1995-01-01                    Chile         64.2
## 16044                 1990-01-01                    Chile         58.8
## 16045                 2015-01-01                    Chile         76.0
## 16046                 2010-01-01                    Chile         73.9
## 16047                 2005-01-01                    Chile         72.0
## 16048                 2000-01-01                    Chile         69.2
## 16049                 1995-01-01                    Chile         64.2
## 16050                 1990-01-01                    Chile         58.8
## 16051                 2015-01-01                    Chile         76.0
## 16052                 2010-01-01                    Chile         73.9
## 16053                 2005-01-01                    Chile         72.0
## 16054                 2000-01-01                    Chile         69.2
## 16055                 1995-01-01                    Chile         64.2
## 16056                 1990-01-01                    Chile         58.8
## 16057                 2015-01-01                    Chile         76.0
## 16058                 2010-01-01                    Chile         73.9
## 16059                 2005-01-01                    Chile         72.0
## 16060                 2000-01-01                    Chile         69.2
## 16061                 1995-01-01                    Chile         64.2
## 16062                 1990-01-01                    Chile         58.8
## 16063                 2015-01-01                    Chile         76.0
## 16064                 2010-01-01                    Chile         73.9
## 16065                 2005-01-01                    Chile         72.0
## 16066                 2000-01-01                    Chile         69.2
## 16067                 1995-01-01                    Chile         64.2
## 16068                 1990-01-01                    Chile         58.8
## 16069                 2015-01-01                    Chile         76.0
## 16070                 2010-01-01                    Chile         73.9
## 16071                 2005-01-01                    Chile         72.0
## 16072                 2000-01-01                    Chile         69.2
## 16073                 1995-01-01                    Chile         64.2
## 16074                 1990-01-01                    Chile         58.8
## 16075                 2015-01-01                    Chile         76.0
## 16076                 2010-01-01                    Chile         73.9
## 16077                 2005-01-01                    Chile         72.0
## 16078                 2000-01-01                    Chile         69.2
## 16079                 1995-01-01                    Chile         64.2
## 16080                 1990-01-01                    Chile         58.8
## 16081                 2015-01-01                    Chile         76.0
## 16082                 2010-01-01                    Chile         73.9
## 16083                 2005-01-01                    Chile         72.0
## 16084                 2000-01-01                    Chile         69.2
## 16085                 1995-01-01                    Chile         64.2
## 16086                 1990-01-01                    Chile         58.8
## 16087                 2015-01-01                    Chile         76.0
## 16088                 2010-01-01                    Chile         73.9
## 16089                 2005-01-01                    Chile         72.0
## 16090                 2000-01-01                    Chile         69.2
## 16091                 1995-01-01                    Chile         64.2
## 16092                 1990-01-01                    Chile         58.8
## 16093                 2015-01-01                    Chile         76.0
## 16094                 2010-01-01                    Chile         73.9
## 16095                 2005-01-01                    Chile         72.0
## 16096                 2000-01-01                    Chile         69.2
## 16097                 1995-01-01                    Chile         64.2
## 16098                 1990-01-01                    Chile         58.8
## 16099                 2015-01-01                    Chile         76.0
## 16100                 2010-01-01                    Chile         73.9
## 16101                 2005-01-01                    Chile         72.0
## 16102                 2000-01-01                    Chile         69.2
## 16103                 1995-01-01                    Chile         64.2
## 16104                 1990-01-01                    Chile         58.8
## 16105                 2015-01-01                    Chile         76.0
## 16106                 2010-01-01                    Chile         73.9
## 16107                 2005-01-01                    Chile         72.0
## 16108                 2000-01-01                    Chile         69.2
## 16109                 1995-01-01                    Chile         64.2
## 16110                 1990-01-01                    Chile         58.8
## 16111                 2015-01-01                    Chile         76.0
## 16112                 2010-01-01                    Chile         73.9
## 16113                 2005-01-01                    Chile         72.0
## 16114                 2000-01-01                    Chile         69.2
## 16115                 1995-01-01                    Chile         64.2
## 16116                 1990-01-01                    Chile         58.8
## 16117                 2015-01-01                    Chile         76.0
## 16118                 2010-01-01                    Chile         73.9
## 16119                 2005-01-01                    Chile         72.0
## 16120                 2000-01-01                    Chile         69.2
## 16121                 1995-01-01                    Chile         64.2
## 16122                 1990-01-01                    Chile         58.8
## 16123                 2015-01-01                    Chile         76.0
## 16124                 2010-01-01                    Chile         73.9
## 16125                 2005-01-01                    Chile         72.0
## 16126                 2000-01-01                    Chile         69.2
## 16127                 1995-01-01                    Chile         64.2
## 16128                 1990-01-01                    Chile         58.8
## 16129                 2015-01-01                    Chile         76.0
## 16130                 2010-01-01                    Chile         73.9
## 16131                 2005-01-01                    Chile         72.0
## 16132                 2000-01-01                    Chile         69.2
## 16133                 1995-01-01                    Chile         64.2
## 16134                 1990-01-01                    Chile         58.8
## 16135                 2015-01-01                    Chile         76.0
## 16136                 2010-01-01                    Chile         73.9
## 16137                 2005-01-01                    Chile         72.0
## 16138                 2000-01-01                    Chile         69.2
## 16139                 1995-01-01                    Chile         64.2
## 16140                 1990-01-01                    Chile         58.8
## 16141                 2015-01-01                    Chile         76.0
## 16142                 2010-01-01                    Chile         73.9
## 16143                 2005-01-01                    Chile         72.0
## 16144                 2000-01-01                    Chile         69.2
## 16145                 1995-01-01                    Chile         64.2
## 16146                 1990-01-01                    Chile         58.8
## 16147                 2015-01-01                    Chile         76.0
## 16148                 2010-01-01                    Chile         73.9
## 16149                 2005-01-01                    Chile         72.0
## 16150                 2000-01-01                    Chile         69.2
## 16151                 1995-01-01                    Chile         64.2
## 16152                 1990-01-01                    Chile         58.8
## 16153                 2015-01-01                    Chile         76.0
## 16154                 2010-01-01                    Chile         73.9
## 16155                 2005-01-01                    Chile         72.0
## 16156                 2000-01-01                    Chile         69.2
## 16157                 1995-01-01                    Chile         64.2
## 16158                 1990-01-01                    Chile         58.8
## 16159                 2015-01-01                    Chile         76.0
## 16160                 2010-01-01                    Chile         73.9
## 16161                 2005-01-01                    Chile         72.0
## 16162                 2000-01-01                    Chile         69.2
## 16163                 1995-01-01                    Chile         64.2
## 16164                 1990-01-01                    Chile         58.8
## 16165                 2015-01-01                    Chile         76.0
## 16166                 2010-01-01                    Chile         73.9
## 16167                 2005-01-01                    Chile         72.0
## 16168                 2000-01-01                    Chile         69.2
## 16169                 1995-01-01                    Chile         64.2
## 16170                 1990-01-01                    Chile         58.8
## 16171                 2015-01-01                    Chile         76.0
## 16172                 2010-01-01                    Chile         73.9
## 16173                 2005-01-01                    Chile         72.0
## 16174                 2000-01-01                    Chile         69.2
## 16175                 1995-01-01                    Chile         64.2
## 16176                 1990-01-01                    Chile         58.8
## 16177                 2015-01-01                    Chile         76.0
## 16178                 2010-01-01                    Chile         73.9
## 16179                 2005-01-01                    Chile         72.0
## 16180                 2000-01-01                    Chile         69.2
## 16181                 1995-01-01                    Chile         64.2
## 16182                 1990-01-01                    Chile         58.8
## 16183                 2015-01-01                    Chile         76.0
## 16184                 2010-01-01                    Chile         73.9
## 16185                 2005-01-01                    Chile         72.0
## 16186                 2000-01-01                    Chile         69.2
## 16187                 1995-01-01                    Chile         64.2
## 16188                 1990-01-01                    Chile         58.8
## 16189                 2015-01-01                    Chile         76.0
## 16190                 2010-01-01                    Chile         73.9
## 16191                 2005-01-01                    Chile         72.0
## 16192                 2000-01-01                    Chile         69.2
## 16193                 1995-01-01                    Chile         64.2
## 16194                 1990-01-01                    Chile         58.8
## 16195                 2015-01-01                    Chile         76.0
## 16196                 2010-01-01                    Chile         73.9
## 16197                 2005-01-01                    Chile         72.0
## 16198                 2000-01-01                    Chile         69.2
## 16199                 1995-01-01                    Chile         64.2
## 16200                 1990-01-01                    Chile         58.8
## 16201                 2015-01-01                    Chile         76.0
## 16202                 2010-01-01                    Chile         73.9
## 16203                 2005-01-01                    Chile         72.0
## 16204                 2000-01-01                    Chile         69.2
## 16205                 1995-01-01                    Chile         64.2
## 16206                 1990-01-01                    Chile         58.8
## 16207                 2015-01-01                    Chile         76.0
## 16208                 2010-01-01                    Chile         73.9
## 16209                 2005-01-01                    Chile         72.0
## 16210                 2000-01-01                    Chile         69.2
## 16211                 1995-01-01                    Chile         64.2
## 16212                 1990-01-01                    Chile         58.8
## 16213                 2015-01-01                    Chile         76.0
## 16214                 2010-01-01                    Chile         73.9
## 16215                 2005-01-01                    Chile         72.0
## 16216                 2000-01-01                    Chile         69.2
## 16217                 1995-01-01                    Chile         64.2
## 16218                 1990-01-01                    Chile         58.8
## 16219                 2015-01-01                    Chile         76.0
## 16220                 2010-01-01                    Chile         73.9
## 16221                 2005-01-01                    Chile         72.0
## 16222                 2000-01-01                    Chile         69.2
## 16223                 1995-01-01                    Chile         64.2
## 16224                 1990-01-01                    Chile         58.8
## 16225                 2015-01-01                    Chile         76.0
## 16226                 2010-01-01                    Chile         73.9
## 16227                 2005-01-01                    Chile         72.0
## 16228                 2000-01-01                    Chile         69.2
## 16229                 1995-01-01                    Chile         64.2
## 16230                 1990-01-01                    Chile         58.8
## 16231                 2015-01-01                    Chile         76.0
## 16232                 2010-01-01                    Chile         73.9
## 16233                 2005-01-01                    Chile         72.0
## 16234                 2000-01-01                    Chile         69.2
## 16235                 1995-01-01                    Chile         64.2
## 16236                 1990-01-01                    Chile         58.8
## 16237                 2015-01-01                    Chile         76.0
## 16238                 2010-01-01                    Chile         73.9
## 16239                 2005-01-01                    Chile         72.0
## 16240                 2000-01-01                    Chile         69.2
## 16241                 1995-01-01                    Chile         64.2
## 16242                 1990-01-01                    Chile         58.8
## 16243                 2015-01-01                    Chile         76.0
## 16244                 2010-01-01                    Chile         73.9
## 16245                 2005-01-01                    Chile         72.0
## 16246                 2000-01-01                    Chile         69.2
## 16247                 1995-01-01                    Chile         64.2
## 16248                 1990-01-01                    Chile         58.8
## 16249                 2015-01-01                    Chile         76.0
## 16250                 2010-01-01                    Chile         73.9
## 16251                 2005-01-01                    Chile         72.0
## 16252                 2000-01-01                    Chile         69.2
## 16253                 1995-01-01                    Chile         64.2
## 16254                 1990-01-01                    Chile         58.8
## 16255                 2015-01-01                    Chile         76.0
## 16256                 2010-01-01                    Chile         73.9
## 16257                 2005-01-01                    Chile         72.0
## 16258                 2000-01-01                    Chile         69.2
## 16259                 1995-01-01                    Chile         64.2
## 16260                 1990-01-01                    Chile         58.8
## 16261                 2015-01-01                    Chile         76.0
## 16262                 2010-01-01                    Chile         73.9
## 16263                 2005-01-01                    Chile         72.0
## 16264                 2000-01-01                    Chile         69.2
## 16265                 1995-01-01                    Chile         64.2
## 16266                 1990-01-01                    Chile         58.8
## 16267                 2015-01-01                    Chile         76.0
## 16268                 2010-01-01                    Chile         73.9
## 16269                 2005-01-01                    Chile         72.0
## 16270                 2000-01-01                    Chile         69.2
## 16271                 1995-01-01                    Chile         64.2
## 16272                 1990-01-01                    Chile         58.8
## 16273                 2015-01-01                    Chile         76.0
## 16274                 2010-01-01                    Chile         73.9
## 16275                 2005-01-01                    Chile         72.0
## 16276                 2000-01-01                    Chile         69.2
## 16277                 1995-01-01                    Chile         64.2
## 16278                 1990-01-01                    Chile         58.8
## 16279                 2015-01-01                    Chile         76.0
## 16280                 2010-01-01                    Chile         73.9
## 16281                 2005-01-01                    Chile         72.0
## 16282                 2000-01-01                    Chile         69.2
## 16283                 1995-01-01                    Chile         64.2
## 16284                 1990-01-01                    Chile         58.8
## 16285                 2015-01-01                    Chile         76.0
## 16286                 2010-01-01                    Chile         73.9
## 16287                 2005-01-01                    Chile         72.0
## 16288                 2000-01-01                    Chile         69.2
## 16289                 1995-01-01                    Chile         64.2
## 16290                 1990-01-01                    Chile         58.8
## 16291                 2015-01-01                    Chile         76.0
## 16292                 2010-01-01                    Chile         73.9
## 16293                 2005-01-01                    Chile         72.0
## 16294                 2000-01-01                    Chile         69.2
## 16295                 1995-01-01                    Chile         64.2
## 16296                 1990-01-01                    Chile         58.8
## 16297                 2015-01-01                    Chile         76.0
## 16298                 2010-01-01                    Chile         73.9
## 16299                 2005-01-01                    Chile         72.0
## 16300                 2000-01-01                    Chile         69.2
## 16301                 1995-01-01                    Chile         64.2
## 16302                 1990-01-01                    Chile         58.8
## 16303                 2015-01-01                    Chile         76.0
## 16304                 2010-01-01                    Chile         73.9
## 16305                 2005-01-01                    Chile         72.0
## 16306                 2000-01-01                    Chile         69.2
## 16307                 1995-01-01                    Chile         64.2
## 16308                 1990-01-01                    Chile         58.8
## 16309                 2015-01-01                    Chile         76.0
## 16310                 2010-01-01                    Chile         73.9
## 16311                 2005-01-01                    Chile         72.0
## 16312                 2000-01-01                    Chile         69.2
## 16313                 1995-01-01                    Chile         64.2
## 16314                 1990-01-01                    Chile         58.8
## 16315                 2015-01-01                    Chile         76.0
## 16316                 2010-01-01                    Chile         73.9
## 16317                 2005-01-01                    Chile         72.0
## 16318                 2000-01-01                    Chile         69.2
## 16319                 1995-01-01                    Chile         64.2
## 16320                 1990-01-01                    Chile         58.8
## 16321                 2015-01-01                    Chile         76.0
## 16322                 2010-01-01                    Chile         73.9
## 16323                 2005-01-01                    Chile         72.0
## 16324                 2000-01-01                    Chile         69.2
## 16325                 1995-01-01                    Chile         64.2
## 16326                 1990-01-01                    Chile         58.8
## 16327                 2015-01-01                    Chile         76.0
## 16328                 2010-01-01                    Chile         73.9
## 16329                 2005-01-01                    Chile         72.0
## 16330                 2000-01-01                    Chile         69.2
## 16331                 1995-01-01                    Chile         64.2
## 16332                 1990-01-01                    Chile         58.8
## 16333                 2015-01-01                    Chile         76.0
## 16334                 2010-01-01                    Chile         73.9
## 16335                 2005-01-01                    Chile         72.0
## 16336                 2000-01-01                    Chile         69.2
## 16337                 1995-01-01                    Chile         64.2
## 16338                 1990-01-01                    Chile         58.8
## 16339                 2015-01-01                    Chile         76.0
## 16340                 2010-01-01                    Chile         73.9
## 16341                 2005-01-01                    Chile         72.0
## 16342                 2000-01-01                    Chile         69.2
## 16343                 1995-01-01                    Chile         64.2
## 16344                 1990-01-01                    Chile         58.8
## 16345                 2015-01-01                    Chile         76.0
## 16346                 2010-01-01                    Chile         73.9
## 16347                 2005-01-01                    Chile         72.0
## 16348                 2000-01-01                    Chile         69.2
## 16349                 1995-01-01                    Chile         64.2
## 16350                 1990-01-01                    Chile         58.8
## 16351                 2015-01-01                    Chile         76.0
## 16352                 2010-01-01                    Chile         73.9
## 16353                 2005-01-01                    Chile         72.0
## 16354                 2000-01-01                    Chile         69.2
## 16355                 1995-01-01                    Chile         64.2
## 16356                 1990-01-01                    Chile         58.8
## 16357                 2015-01-01                    Chile         76.0
## 16358                 2010-01-01                    Chile         73.9
## 16359                 2005-01-01                    Chile         72.0
## 16360                 2000-01-01                    Chile         69.2
## 16361                 1995-01-01                    Chile         64.2
## 16362                 1990-01-01                    Chile         58.8
## 16363                 2015-01-01                    Chile         76.0
## 16364                 2010-01-01                    Chile         73.9
## 16365                 2005-01-01                    Chile         72.0
## 16366                 2000-01-01                    Chile         69.2
## 16367                 1995-01-01                    Chile         64.2
## 16368                 1990-01-01                    Chile         58.8
## 16369                 2015-01-01                    Chile         76.0
## 16370                 2010-01-01                    Chile         73.9
## 16371                 2005-01-01                    Chile         72.0
## 16372                 2000-01-01                    Chile         69.2
## 16373                 1995-01-01                    Chile         64.2
## 16374                 1990-01-01                    Chile         58.8
## 16375                 2015-01-01                    Chile         76.0
## 16376                 2010-01-01                    Chile         73.9
## 16377                 2005-01-01                    Chile         72.0
## 16378                 2000-01-01                    Chile         69.2
## 16379                 1995-01-01                    Chile         64.2
## 16380                 1990-01-01                    Chile         58.8
## 16381                 2015-01-01                    Chile         76.0
## 16382                 2010-01-01                    Chile         73.9
## 16383                 2005-01-01                    Chile         72.0
## 16384                 2000-01-01                    Chile         69.2
## 16385                 1995-01-01                    Chile         64.2
## 16386                 1990-01-01                    Chile         58.8
## 16387                 2015-01-01                    Chile         76.0
## 16388                 2010-01-01                    Chile         73.9
## 16389                 2005-01-01                    Chile         72.0
## 16390                 2000-01-01                    Chile         69.2
## 16391                 1995-01-01                    Chile         64.2
## 16392                 1990-01-01                    Chile         58.8
## 16393                 2015-01-01                    Chile         76.0
## 16394                 2010-01-01                    Chile         73.9
## 16395                 2005-01-01                    Chile         72.0
## 16396                 2000-01-01                    Chile         69.2
## 16397                 1995-01-01                    Chile         64.2
## 16398                 1990-01-01                    Chile         58.8
## 16399                 2015-01-01                    Chile         76.0
## 16400                 2010-01-01                    Chile         73.9
## 16401                 2005-01-01                    Chile         72.0
## 16402                 2000-01-01                    Chile         69.2
## 16403                 1995-01-01                    Chile         64.2
## 16404                 1990-01-01                    Chile         58.8
## 16405                 2015-01-01                    Chile         76.0
## 16406                 2010-01-01                    Chile         73.9
## 16407                 2005-01-01                    Chile         72.0
## 16408                 2000-01-01                    Chile         69.2
## 16409                 1995-01-01                    Chile         64.2
## 16410                 1990-01-01                    Chile         58.8
## 16411                 2015-01-01                    China         74.2
## 16412                 2010-01-01                    China         69.9
## 16413                 2005-01-01                    China         63.7
## 16414                 2000-01-01                    China         57.8
## 16415                 1995-01-01                    China         53.7
## 16416                 1990-01-01                    China         49.5
## 16417                 2015-01-01                    China         74.2
## 16418                 2010-01-01                    China         69.9
## 16419                 2005-01-01                    China         63.7
## 16420                 2000-01-01                    China         57.8
## 16421                 1995-01-01                    China         53.7
## 16422                 1990-01-01                    China         49.5
## 16423                 2015-01-01                    China         74.2
## 16424                 2010-01-01                    China         69.9
## 16425                 2005-01-01                    China         63.7
## 16426                 2000-01-01                    China         57.8
## 16427                 1995-01-01                    China         53.7
## 16428                 1990-01-01                    China         49.5
## 16429                 2015-01-01                    China         74.2
## 16430                 2010-01-01                    China         69.9
## 16431                 2005-01-01                    China         63.7
## 16432                 2000-01-01                    China         57.8
## 16433                 1995-01-01                    China         53.7
## 16434                 1990-01-01                    China         49.5
## 16435                 2015-01-01                    China         74.2
## 16436                 2010-01-01                    China         69.9
## 16437                 2005-01-01                    China         63.7
## 16438                 2000-01-01                    China         57.8
## 16439                 1995-01-01                    China         53.7
## 16440                 1990-01-01                    China         49.5
## 16441                 2015-01-01                    China         74.2
## 16442                 2010-01-01                    China         69.9
## 16443                 2005-01-01                    China         63.7
## 16444                 2000-01-01                    China         57.8
## 16445                 1995-01-01                    China         53.7
## 16446                 1990-01-01                    China         49.5
## 16447                 2015-01-01                    China         74.2
## 16448                 2010-01-01                    China         69.9
## 16449                 2005-01-01                    China         63.7
## 16450                 2000-01-01                    China         57.8
## 16451                 1995-01-01                    China         53.7
## 16452                 1990-01-01                    China         49.5
## 16453                 2015-01-01                    China         74.2
## 16454                 2010-01-01                    China         69.9
## 16455                 2005-01-01                    China         63.7
## 16456                 2000-01-01                    China         57.8
## 16457                 1995-01-01                    China         53.7
## 16458                 1990-01-01                    China         49.5
## 16459                 2015-01-01                    China         74.2
## 16460                 2010-01-01                    China         69.9
## 16461                 2005-01-01                    China         63.7
## 16462                 2000-01-01                    China         57.8
## 16463                 1995-01-01                    China         53.7
## 16464                 1990-01-01                    China         49.5
## 16465                 2015-01-01                    China         74.2
## 16466                 2010-01-01                    China         69.9
## 16467                 2005-01-01                    China         63.7
## 16468                 2000-01-01                    China         57.8
## 16469                 1995-01-01                    China         53.7
## 16470                 1990-01-01                    China         49.5
## 16471                 2015-01-01                    China         74.2
## 16472                 2010-01-01                    China         69.9
## 16473                 2005-01-01                    China         63.7
## 16474                 2000-01-01                    China         57.8
## 16475                 1995-01-01                    China         53.7
## 16476                 1990-01-01                    China         49.5
## 16477                 2015-01-01                    China         74.2
## 16478                 2010-01-01                    China         69.9
## 16479                 2005-01-01                    China         63.7
## 16480                 2000-01-01                    China         57.8
## 16481                 1995-01-01                    China         53.7
## 16482                 1990-01-01                    China         49.5
## 16483                 2015-01-01                    China         74.2
## 16484                 2010-01-01                    China         69.9
## 16485                 2005-01-01                    China         63.7
## 16486                 2000-01-01                    China         57.8
## 16487                 1995-01-01                    China         53.7
## 16488                 1990-01-01                    China         49.5
## 16489                 2015-01-01                    China         74.2
## 16490                 2010-01-01                    China         69.9
## 16491                 2005-01-01                    China         63.7
## 16492                 2000-01-01                    China         57.8
## 16493                 1995-01-01                    China         53.7
## 16494                 1990-01-01                    China         49.5
## 16495                 2015-01-01                    China         74.2
## 16496                 2010-01-01                    China         69.9
## 16497                 2005-01-01                    China         63.7
## 16498                 2000-01-01                    China         57.8
## 16499                 1995-01-01                    China         53.7
## 16500                 1990-01-01                    China         49.5
## 16501                 2015-01-01                    China         74.2
## 16502                 2010-01-01                    China         69.9
## 16503                 2005-01-01                    China         63.7
## 16504                 2000-01-01                    China         57.8
## 16505                 1995-01-01                    China         53.7
## 16506                 1990-01-01                    China         49.5
## 16507                 2015-01-01                    China         74.2
## 16508                 2010-01-01                    China         69.9
## 16509                 2005-01-01                    China         63.7
## 16510                 2000-01-01                    China         57.8
## 16511                 1995-01-01                    China         53.7
## 16512                 1990-01-01                    China         49.5
## 16513                 2015-01-01                    China         74.2
## 16514                 2010-01-01                    China         69.9
## 16515                 2005-01-01                    China         63.7
## 16516                 2000-01-01                    China         57.8
## 16517                 1995-01-01                    China         53.7
## 16518                 1990-01-01                    China         49.5
## 16519                 2015-01-01                    China         74.2
## 16520                 2010-01-01                    China         69.9
## 16521                 2005-01-01                    China         63.7
## 16522                 2000-01-01                    China         57.8
## 16523                 1995-01-01                    China         53.7
## 16524                 1990-01-01                    China         49.5
## 16525                 2015-01-01                    China         74.2
## 16526                 2010-01-01                    China         69.9
## 16527                 2005-01-01                    China         63.7
## 16528                 2000-01-01                    China         57.8
## 16529                 1995-01-01                    China         53.7
## 16530                 1990-01-01                    China         49.5
## 16531                 2015-01-01                    China         74.2
## 16532                 2010-01-01                    China         69.9
## 16533                 2005-01-01                    China         63.7
## 16534                 2000-01-01                    China         57.8
## 16535                 1995-01-01                    China         53.7
## 16536                 1990-01-01                    China         49.5
## 16537                 2015-01-01                    China         74.2
## 16538                 2010-01-01                    China         69.9
## 16539                 2005-01-01                    China         63.7
## 16540                 2000-01-01                    China         57.8
## 16541                 1995-01-01                    China         53.7
## 16542                 1990-01-01                    China         49.5
## 16543                 2015-01-01                    China         74.2
## 16544                 2010-01-01                    China         69.9
## 16545                 2005-01-01                    China         63.7
## 16546                 2000-01-01                    China         57.8
## 16547                 1995-01-01                    China         53.7
## 16548                 1990-01-01                    China         49.5
## 16549                 2015-01-01                    China         74.2
## 16550                 2010-01-01                    China         69.9
## 16551                 2005-01-01                    China         63.7
## 16552                 2000-01-01                    China         57.8
## 16553                 1995-01-01                    China         53.7
## 16554                 1990-01-01                    China         49.5
## 16555                 2015-01-01                    China         74.2
## 16556                 2010-01-01                    China         69.9
## 16557                 2005-01-01                    China         63.7
## 16558                 2000-01-01                    China         57.8
## 16559                 1995-01-01                    China         53.7
## 16560                 1990-01-01                    China         49.5
## 16561                 2015-01-01                    China         74.2
## 16562                 2010-01-01                    China         69.9
## 16563                 2005-01-01                    China         63.7
## 16564                 2000-01-01                    China         57.8
## 16565                 1995-01-01                    China         53.7
## 16566                 1990-01-01                    China         49.5
## 16567                 2015-01-01                    China         74.2
## 16568                 2010-01-01                    China         69.9
## 16569                 2005-01-01                    China         63.7
## 16570                 2000-01-01                    China         57.8
## 16571                 1995-01-01                    China         53.7
## 16572                 1990-01-01                    China         49.5
## 16573                 2015-01-01                    China         74.2
## 16574                 2010-01-01                    China         69.9
## 16575                 2005-01-01                    China         63.7
## 16576                 2000-01-01                    China         57.8
## 16577                 1995-01-01                    China         53.7
## 16578                 1990-01-01                    China         49.5
## 16579                 2015-01-01                    China         74.2
## 16580                 2010-01-01                    China         69.9
## 16581                 2005-01-01                    China         63.7
## 16582                 2000-01-01                    China         57.8
## 16583                 1995-01-01                    China         53.7
## 16584                 1990-01-01                    China         49.5
## 16585                 2015-01-01                    China         74.2
## 16586                 2010-01-01                    China         69.9
## 16587                 2005-01-01                    China         63.7
## 16588                 2000-01-01                    China         57.8
## 16589                 1995-01-01                    China         53.7
## 16590                 1990-01-01                    China         49.5
## 16591                 2015-01-01                    China         74.2
## 16592                 2010-01-01                    China         69.9
## 16593                 2005-01-01                    China         63.7
## 16594                 2000-01-01                    China         57.8
## 16595                 1995-01-01                    China         53.7
## 16596                 1990-01-01                    China         49.5
## 16597                 2015-01-01                    China         74.2
## 16598                 2010-01-01                    China         69.9
## 16599                 2005-01-01                    China         63.7
## 16600                 2000-01-01                    China         57.8
## 16601                 1995-01-01                    China         53.7
## 16602                 1990-01-01                    China         49.5
## 16603                 2015-01-01                    China         74.2
## 16604                 2010-01-01                    China         69.9
## 16605                 2005-01-01                    China         63.7
## 16606                 2000-01-01                    China         57.8
## 16607                 1995-01-01                    China         53.7
## 16608                 1990-01-01                    China         49.5
## 16609                 2015-01-01                    China         74.2
## 16610                 2010-01-01                    China         69.9
## 16611                 2005-01-01                    China         63.7
## 16612                 2000-01-01                    China         57.8
## 16613                 1995-01-01                    China         53.7
## 16614                 1990-01-01                    China         49.5
## 16615                 2015-01-01                    China         74.2
## 16616                 2010-01-01                    China         69.9
## 16617                 2005-01-01                    China         63.7
## 16618                 2000-01-01                    China         57.8
## 16619                 1995-01-01                    China         53.7
## 16620                 1990-01-01                    China         49.5
## 16621                 2015-01-01                    China         74.2
## 16622                 2010-01-01                    China         69.9
## 16623                 2005-01-01                    China         63.7
## 16624                 2000-01-01                    China         57.8
## 16625                 1995-01-01                    China         53.7
## 16626                 1990-01-01                    China         49.5
## 16627                 2015-01-01                    China         74.2
## 16628                 2010-01-01                    China         69.9
## 16629                 2005-01-01                    China         63.7
## 16630                 2000-01-01                    China         57.8
## 16631                 1995-01-01                    China         53.7
## 16632                 1990-01-01                    China         49.5
## 16633                 2015-01-01                    China         74.2
## 16634                 2010-01-01                    China         69.9
## 16635                 2005-01-01                    China         63.7
## 16636                 2000-01-01                    China         57.8
## 16637                 1995-01-01                    China         53.7
## 16638                 1990-01-01                    China         49.5
## 16639                 2015-01-01                    China         74.2
## 16640                 2010-01-01                    China         69.9
## 16641                 2005-01-01                    China         63.7
## 16642                 2000-01-01                    China         57.8
## 16643                 1995-01-01                    China         53.7
## 16644                 1990-01-01                    China         49.5
## 16645                 2015-01-01                    China         74.2
## 16646                 2010-01-01                    China         69.9
## 16647                 2005-01-01                    China         63.7
## 16648                 2000-01-01                    China         57.8
## 16649                 1995-01-01                    China         53.7
## 16650                 1990-01-01                    China         49.5
## 16651                 2015-01-01                    China         74.2
## 16652                 2010-01-01                    China         69.9
## 16653                 2005-01-01                    China         63.7
## 16654                 2000-01-01                    China         57.8
## 16655                 1995-01-01                    China         53.7
## 16656                 1990-01-01                    China         49.5
## 16657                 2015-01-01                    China         74.2
## 16658                 2010-01-01                    China         69.9
## 16659                 2005-01-01                    China         63.7
## 16660                 2000-01-01                    China         57.8
## 16661                 1995-01-01                    China         53.7
## 16662                 1990-01-01                    China         49.5
## 16663                 2015-01-01                    China         74.2
## 16664                 2010-01-01                    China         69.9
## 16665                 2005-01-01                    China         63.7
## 16666                 2000-01-01                    China         57.8
## 16667                 1995-01-01                    China         53.7
## 16668                 1990-01-01                    China         49.5
## 16669                 2015-01-01                    China         74.2
## 16670                 2010-01-01                    China         69.9
## 16671                 2005-01-01                    China         63.7
## 16672                 2000-01-01                    China         57.8
## 16673                 1995-01-01                    China         53.7
## 16674                 1990-01-01                    China         49.5
## 16675                 2015-01-01                    China         74.2
## 16676                 2010-01-01                    China         69.9
## 16677                 2005-01-01                    China         63.7
## 16678                 2000-01-01                    China         57.8
## 16679                 1995-01-01                    China         53.7
## 16680                 1990-01-01                    China         49.5
## 16681                 2015-01-01                    China         74.2
## 16682                 2010-01-01                    China         69.9
## 16683                 2005-01-01                    China         63.7
## 16684                 2000-01-01                    China         57.8
## 16685                 1995-01-01                    China         53.7
## 16686                 1990-01-01                    China         49.5
## 16687                 2015-01-01                    China         74.2
## 16688                 2010-01-01                    China         69.9
## 16689                 2005-01-01                    China         63.7
## 16690                 2000-01-01                    China         57.8
## 16691                 1995-01-01                    China         53.7
## 16692                 1990-01-01                    China         49.5
## 16693                 2015-01-01                    China         74.2
## 16694                 2010-01-01                    China         69.9
## 16695                 2005-01-01                    China         63.7
## 16696                 2000-01-01                    China         57.8
## 16697                 1995-01-01                    China         53.7
## 16698                 1990-01-01                    China         49.5
## 16699                 2015-01-01                    China         74.2
## 16700                 2010-01-01                    China         69.9
## 16701                 2005-01-01                    China         63.7
## 16702                 2000-01-01                    China         57.8
## 16703                 1995-01-01                    China         53.7
## 16704                 1990-01-01                    China         49.5
## 16705                 2015-01-01                    China         74.2
## 16706                 2010-01-01                    China         69.9
## 16707                 2005-01-01                    China         63.7
## 16708                 2000-01-01                    China         57.8
## 16709                 1995-01-01                    China         53.7
## 16710                 1990-01-01                    China         49.5
## 16711                 2015-01-01                    China         74.2
## 16712                 2010-01-01                    China         69.9
## 16713                 2005-01-01                    China         63.7
## 16714                 2000-01-01                    China         57.8
## 16715                 1995-01-01                    China         53.7
## 16716                 1990-01-01                    China         49.5
## 16717                 2015-01-01                    China         74.2
## 16718                 2010-01-01                    China         69.9
## 16719                 2005-01-01                    China         63.7
## 16720                 2000-01-01                    China         57.8
## 16721                 1995-01-01                    China         53.7
## 16722                 1990-01-01                    China         49.5
## 16723                 2015-01-01                    China         74.2
## 16724                 2010-01-01                    China         69.9
## 16725                 2005-01-01                    China         63.7
## 16726                 2000-01-01                    China         57.8
## 16727                 1995-01-01                    China         53.7
## 16728                 1990-01-01                    China         49.5
## 16729                 2015-01-01                    China         74.2
## 16730                 2010-01-01                    China         69.9
## 16731                 2005-01-01                    China         63.7
## 16732                 2000-01-01                    China         57.8
## 16733                 1995-01-01                    China         53.7
## 16734                 1990-01-01                    China         49.5
## 16735                 2015-01-01                    China         74.2
## 16736                 2010-01-01                    China         69.9
## 16737                 2005-01-01                    China         63.7
## 16738                 2000-01-01                    China         57.8
## 16739                 1995-01-01                    China         53.7
## 16740                 1990-01-01                    China         49.5
## 16741                 2015-01-01                    China         74.2
## 16742                 2010-01-01                    China         69.9
## 16743                 2005-01-01                    China         63.7
## 16744                 2000-01-01                    China         57.8
## 16745                 1995-01-01                    China         53.7
## 16746                 1990-01-01                    China         49.5
## 16747                 2015-01-01                    China         74.2
## 16748                 2010-01-01                    China         69.9
## 16749                 2005-01-01                    China         63.7
## 16750                 2000-01-01                    China         57.8
## 16751                 1995-01-01                    China         53.7
## 16752                 1990-01-01                    China         49.5
## 16753                 2015-01-01                    China         74.2
## 16754                 2010-01-01                    China         69.9
## 16755                 2005-01-01                    China         63.7
## 16756                 2000-01-01                    China         57.8
## 16757                 1995-01-01                    China         53.7
## 16758                 1990-01-01                    China         49.5
## 16759                 2015-01-01                    China         74.2
## 16760                 2010-01-01                    China         69.9
## 16761                 2005-01-01                    China         63.7
## 16762                 2000-01-01                    China         57.8
## 16763                 1995-01-01                    China         53.7
## 16764                 1990-01-01                    China         49.5
## 16765                 2015-01-01                    China         74.2
## 16766                 2010-01-01                    China         69.9
## 16767                 2005-01-01                    China         63.7
## 16768                 2000-01-01                    China         57.8
## 16769                 1995-01-01                    China         53.7
## 16770                 1990-01-01                    China         49.5
## 16771                 2015-01-01                    China         74.2
## 16772                 2010-01-01                    China         69.9
## 16773                 2005-01-01                    China         63.7
## 16774                 2000-01-01                    China         57.8
## 16775                 1995-01-01                    China         53.7
## 16776                 1990-01-01                    China         49.5
## 16777                 2015-01-01                    China         74.2
## 16778                 2010-01-01                    China         69.9
## 16779                 2005-01-01                    China         63.7
## 16780                 2000-01-01                    China         57.8
## 16781                 1995-01-01                    China         53.7
## 16782                 1990-01-01                    China         49.5
## 16783                 2015-01-01                    China         74.2
## 16784                 2010-01-01                    China         69.9
## 16785                 2005-01-01                    China         63.7
## 16786                 2000-01-01                    China         57.8
## 16787                 1995-01-01                    China         53.7
## 16788                 1990-01-01                    China         49.5
## 16789                 2015-01-01                    China         74.2
## 16790                 2010-01-01                    China         69.9
## 16791                 2005-01-01                    China         63.7
## 16792                 2000-01-01                    China         57.8
## 16793                 1995-01-01                    China         53.7
## 16794                 1990-01-01                    China         49.5
## 16795                 2015-01-01                    China         74.2
## 16796                 2010-01-01                    China         69.9
## 16797                 2005-01-01                    China         63.7
## 16798                 2000-01-01                    China         57.8
## 16799                 1995-01-01                    China         53.7
## 16800                 1990-01-01                    China         49.5
## 16801                 2015-01-01                    China         74.2
## 16802                 2010-01-01                    China         69.9
## 16803                 2005-01-01                    China         63.7
## 16804                 2000-01-01                    China         57.8
## 16805                 1995-01-01                    China         53.7
## 16806                 1990-01-01                    China         49.5
## 16807                 2015-01-01                    China         74.2
## 16808                 2010-01-01                    China         69.9
## 16809                 2005-01-01                    China         63.7
## 16810                 2000-01-01                    China         57.8
## 16811                 1995-01-01                    China         53.7
## 16812                 1990-01-01                    China         49.5
## 16813                 2015-01-01                    China         74.2
## 16814                 2010-01-01                    China         69.9
## 16815                 2005-01-01                    China         63.7
## 16816                 2000-01-01                    China         57.8
## 16817                 1995-01-01                    China         53.7
## 16818                 1990-01-01                    China         49.5
## 16819                 2015-01-01                    China         74.2
## 16820                 2010-01-01                    China         69.9
## 16821                 2005-01-01                    China         63.7
## 16822                 2000-01-01                    China         57.8
## 16823                 1995-01-01                    China         53.7
## 16824                 1990-01-01                    China         49.5
## 16825                 2015-01-01                    China         74.2
## 16826                 2010-01-01                    China         69.9
## 16827                 2005-01-01                    China         63.7
## 16828                 2000-01-01                    China         57.8
## 16829                 1995-01-01                    China         53.7
## 16830                 1990-01-01                    China         49.5
## 16831                 2015-01-01                    China         74.2
## 16832                 2010-01-01                    China         69.9
## 16833                 2005-01-01                    China         63.7
## 16834                 2000-01-01                    China         57.8
## 16835                 1995-01-01                    China         53.7
## 16836                 1990-01-01                    China         49.5
## 16837                 2015-01-01                    China         74.2
## 16838                 2010-01-01                    China         69.9
## 16839                 2005-01-01                    China         63.7
## 16840                 2000-01-01                    China         57.8
## 16841                 1995-01-01                    China         53.7
## 16842                 1990-01-01                    China         49.5
## 16843                 2015-01-01                    China         74.2
## 16844                 2010-01-01                    China         69.9
## 16845                 2005-01-01                    China         63.7
## 16846                 2000-01-01                    China         57.8
## 16847                 1995-01-01                    China         53.7
## 16848                 1990-01-01                    China         49.5
## 16849                 2015-01-01                    China         74.2
## 16850                 2010-01-01                    China         69.9
## 16851                 2005-01-01                    China         63.7
## 16852                 2000-01-01                    China         57.8
## 16853                 1995-01-01                    China         53.7
## 16854                 1990-01-01                    China         49.5
## 16855                 2015-01-01                    China         74.2
## 16856                 2010-01-01                    China         69.9
## 16857                 2005-01-01                    China         63.7
## 16858                 2000-01-01                    China         57.8
## 16859                 1995-01-01                    China         53.7
## 16860                 1990-01-01                    China         49.5
## 16861                 2015-01-01                    China         74.2
## 16862                 2010-01-01                    China         69.9
## 16863                 2005-01-01                    China         63.7
## 16864                 2000-01-01                    China         57.8
## 16865                 1995-01-01                    China         53.7
## 16866                 1990-01-01                    China         49.5
## 16867                 2015-01-01                    China         74.2
## 16868                 2010-01-01                    China         69.9
## 16869                 2005-01-01                    China         63.7
## 16870                 2000-01-01                    China         57.8
## 16871                 1995-01-01                    China         53.7
## 16872                 1990-01-01                    China         49.5
## 16873                 2015-01-01                    China         74.2
## 16874                 2010-01-01                    China         69.9
## 16875                 2005-01-01                    China         63.7
## 16876                 2000-01-01                    China         57.8
## 16877                 1995-01-01                    China         53.7
## 16878                 1990-01-01                    China         49.5
## 16879                 2015-01-01                    China         74.2
## 16880                 2010-01-01                    China         69.9
## 16881                 2005-01-01                    China         63.7
## 16882                 2000-01-01                    China         57.8
## 16883                 1995-01-01                    China         53.7
## 16884                 1990-01-01                    China         49.5
## 16885                 2015-01-01                    China         74.2
## 16886                 2010-01-01                    China         69.9
## 16887                 2005-01-01                    China         63.7
## 16888                 2000-01-01                    China         57.8
## 16889                 1995-01-01                    China         53.7
## 16890                 1990-01-01                    China         49.5
## 16891                 2015-01-01                    China         74.2
## 16892                 2010-01-01                    China         69.9
## 16893                 2005-01-01                    China         63.7
## 16894                 2000-01-01                    China         57.8
## 16895                 1995-01-01                    China         53.7
## 16896                 1990-01-01                    China         49.5
## 16897                 2015-01-01                    China         74.2
## 16898                 2010-01-01                    China         69.9
## 16899                 2005-01-01                    China         63.7
## 16900                 2000-01-01                    China         57.8
## 16901                 1995-01-01                    China         53.7
## 16902                 1990-01-01                    China         49.5
## 16903                 2015-01-01                    China         74.2
## 16904                 2010-01-01                    China         69.9
## 16905                 2005-01-01                    China         63.7
## 16906                 2000-01-01                    China         57.8
## 16907                 1995-01-01                    China         53.7
## 16908                 1990-01-01                    China         49.5
## 16909                 2015-01-01                    China         74.2
## 16910                 2010-01-01                    China         69.9
## 16911                 2005-01-01                    China         63.7
## 16912                 2000-01-01                    China         57.8
## 16913                 1995-01-01                    China         53.7
## 16914                 1990-01-01                    China         49.5
## 16915                 2015-01-01                    China         74.2
## 16916                 2010-01-01                    China         69.9
## 16917                 2005-01-01                    China         63.7
## 16918                 2000-01-01                    China         57.8
## 16919                 1995-01-01                    China         53.7
## 16920                 1990-01-01                    China         49.5
## 16921                 2015-01-01                    China         74.2
## 16922                 2010-01-01                    China         69.9
## 16923                 2005-01-01                    China         63.7
## 16924                 2000-01-01                    China         57.8
## 16925                 1995-01-01                    China         53.7
## 16926                 1990-01-01                    China         49.5
## 16927                 2015-01-01                    China         74.2
## 16928                 2010-01-01                    China         69.9
## 16929                 2005-01-01                    China         63.7
## 16930                 2000-01-01                    China         57.8
## 16931                 1995-01-01                    China         53.7
## 16932                 1990-01-01                    China         49.5
## 16933                 2015-01-01                    China         74.2
## 16934                 2010-01-01                    China         69.9
## 16935                 2005-01-01                    China         63.7
## 16936                 2000-01-01                    China         57.8
## 16937                 1995-01-01                    China         53.7
## 16938                 1990-01-01                    China         49.5
## 16939                 2015-01-01                    China         74.2
## 16940                 2010-01-01                    China         69.9
## 16941                 2005-01-01                    China         63.7
## 16942                 2000-01-01                    China         57.8
## 16943                 1995-01-01                    China         53.7
## 16944                 1990-01-01                    China         49.5
## 16945                 2015-01-01                    China         74.2
## 16946                 2010-01-01                    China         69.9
## 16947                 2005-01-01                    China         63.7
## 16948                 2000-01-01                    China         57.8
## 16949                 1995-01-01                    China         53.7
## 16950                 1990-01-01                    China         49.5
## 16951                 2015-01-01                    China         74.2
## 16952                 2010-01-01                    China         69.9
## 16953                 2005-01-01                    China         63.7
## 16954                 2000-01-01                    China         57.8
## 16955                 1995-01-01                    China         53.7
## 16956                 1990-01-01                    China         49.5
## 16957                 2015-01-01                    China         74.2
## 16958                 2010-01-01                    China         69.9
## 16959                 2005-01-01                    China         63.7
## 16960                 2000-01-01                    China         57.8
## 16961                 1995-01-01                    China         53.7
## 16962                 1990-01-01                    China         49.5
## 16963                 2015-01-01                    China         74.2
## 16964                 2010-01-01                    China         69.9
## 16965                 2005-01-01                    China         63.7
## 16966                 2000-01-01                    China         57.8
## 16967                 1995-01-01                    China         53.7
## 16968                 1990-01-01                    China         49.5
## 16969                 2015-01-01                    China         74.2
## 16970                 2010-01-01                    China         69.9
## 16971                 2005-01-01                    China         63.7
## 16972                 2000-01-01                    China         57.8
## 16973                 1995-01-01                    China         53.7
## 16974                 1990-01-01                    China         49.5
## 16975                 2015-01-01                    China         74.2
## 16976                 2010-01-01                    China         69.9
## 16977                 2005-01-01                    China         63.7
## 16978                 2000-01-01                    China         57.8
## 16979                 1995-01-01                    China         53.7
## 16980                 1990-01-01                    China         49.5
## 16981                 2015-01-01                    China         74.2
## 16982                 2010-01-01                    China         69.9
## 16983                 2005-01-01                    China         63.7
## 16984                 2000-01-01                    China         57.8
## 16985                 1995-01-01                    China         53.7
## 16986                 1990-01-01                    China         49.5
## 16987                 2015-01-01                    China         74.2
## 16988                 2010-01-01                    China         69.9
## 16989                 2005-01-01                    China         63.7
## 16990                 2000-01-01                    China         57.8
## 16991                 1995-01-01                    China         53.7
## 16992                 1990-01-01                    China         49.5
## 16993                 2015-01-01                    China         74.2
## 16994                 2010-01-01                    China         69.9
## 16995                 2005-01-01                    China         63.7
## 16996                 2000-01-01                    China         57.8
## 16997                 1995-01-01                    China         53.7
## 16998                 1990-01-01                    China         49.5
## 16999                 2015-01-01                    China         74.2
## 17000                 2010-01-01                    China         69.9
## 17001                 2005-01-01                    China         63.7
## 17002                 2000-01-01                    China         57.8
## 17003                 1995-01-01                    China         53.7
## 17004                 1990-01-01                    China         49.5
## 17005                 2015-01-01                    China         74.2
## 17006                 2010-01-01                    China         69.9
## 17007                 2005-01-01                    China         63.7
## 17008                 2000-01-01                    China         57.8
## 17009                 1995-01-01                    China         53.7
## 17010                 1990-01-01                    China         49.5
## 17011                 2015-01-01                    China         74.2
## 17012                 2010-01-01                    China         69.9
## 17013                 2005-01-01                    China         63.7
## 17014                 2000-01-01                    China         57.8
## 17015                 1995-01-01                    China         53.7
## 17016                 1990-01-01                    China         49.5
## 17017                 2015-01-01                    China         74.2
## 17018                 2010-01-01                    China         69.9
## 17019                 2005-01-01                    China         63.7
## 17020                 2000-01-01                    China         57.8
## 17021                 1995-01-01                    China         53.7
## 17022                 1990-01-01                    China         49.5
## 17023                 2015-01-01                    China         74.2
## 17024                 2010-01-01                    China         69.9
## 17025                 2005-01-01                    China         63.7
## 17026                 2000-01-01                    China         57.8
## 17027                 1995-01-01                    China         53.7
## 17028                 1990-01-01                    China         49.5
## 17029                 2015-01-01                    China         74.2
## 17030                 2010-01-01                    China         69.9
## 17031                 2005-01-01                    China         63.7
## 17032                 2000-01-01                    China         57.8
## 17033                 1995-01-01                    China         53.7
## 17034                 1990-01-01                    China         49.5
## 17035                 2015-01-01                    China         74.2
## 17036                 2010-01-01                    China         69.9
## 17037                 2005-01-01                    China         63.7
## 17038                 2000-01-01                    China         57.8
## 17039                 1995-01-01                    China         53.7
## 17040                 1990-01-01                    China         49.5
## 17041                 2015-01-01                    China         74.2
## 17042                 2010-01-01                    China         69.9
## 17043                 2005-01-01                    China         63.7
## 17044                 2000-01-01                    China         57.8
## 17045                 1995-01-01                    China         53.7
## 17046                 1990-01-01                    China         49.5
## 17047                 2015-01-01                    China         74.2
## 17048                 2010-01-01                    China         69.9
## 17049                 2005-01-01                    China         63.7
## 17050                 2000-01-01                    China         57.8
## 17051                 1995-01-01                    China         53.7
## 17052                 1990-01-01                    China         49.5
## 17053                 2015-01-01                    China         74.2
## 17054                 2010-01-01                    China         69.9
## 17055                 2005-01-01                    China         63.7
## 17056                 2000-01-01                    China         57.8
## 17057                 1995-01-01                    China         53.7
## 17058                 1990-01-01                    China         49.5
## 17059                 2015-01-01                    China         74.2
## 17060                 2010-01-01                    China         69.9
## 17061                 2005-01-01                    China         63.7
## 17062                 2000-01-01                    China         57.8
## 17063                 1995-01-01                    China         53.7
## 17064                 1990-01-01                    China         49.5
## 17065                 2015-01-01                    China         74.2
## 17066                 2010-01-01                    China         69.9
## 17067                 2005-01-01                    China         63.7
## 17068                 2000-01-01                    China         57.8
## 17069                 1995-01-01                    China         53.7
## 17070                 1990-01-01                    China         49.5
## 17071                 2015-01-01                    China         74.2
## 17072                 2010-01-01                    China         69.9
## 17073                 2005-01-01                    China         63.7
## 17074                 2000-01-01                    China         57.8
## 17075                 1995-01-01                    China         53.7
## 17076                 1990-01-01                    China         49.5
## 17077                 2015-01-01                    China         74.2
## 17078                 2010-01-01                    China         69.9
## 17079                 2005-01-01                    China         63.7
## 17080                 2000-01-01                    China         57.8
## 17081                 1995-01-01                    China         53.7
## 17082                 1990-01-01                    China         49.5
## 17083                 2015-01-01                    China         74.2
## 17084                 2010-01-01                    China         69.9
## 17085                 2005-01-01                    China         63.7
## 17086                 2000-01-01                    China         57.8
## 17087                 1995-01-01                    China         53.7
## 17088                 1990-01-01                    China         49.5
## 17089                 2015-01-01                    China         74.2
## 17090                 2010-01-01                    China         69.9
## 17091                 2005-01-01                    China         63.7
## 17092                 2000-01-01                    China         57.8
## 17093                 1995-01-01                    China         53.7
## 17094                 1990-01-01                    China         49.5
## 17095                 2015-01-01                    China         74.2
## 17096                 2010-01-01                    China         69.9
## 17097                 2005-01-01                    China         63.7
## 17098                 2000-01-01                    China         57.8
## 17099                 1995-01-01                    China         53.7
## 17100                 1990-01-01                    China         49.5
## 17101                 2015-01-01                    China         74.2
## 17102                 2010-01-01                    China         69.9
## 17103                 2005-01-01                    China         63.7
## 17104                 2000-01-01                    China         57.8
## 17105                 1995-01-01                    China         53.7
## 17106                 1990-01-01                    China         49.5
## 17107                 2015-01-01                    China         74.2
## 17108                 2010-01-01                    China         69.9
## 17109                 2005-01-01                    China         63.7
## 17110                 2000-01-01                    China         57.8
## 17111                 1995-01-01                    China         53.7
## 17112                 1990-01-01                    China         49.5
## 17113                 2015-01-01                    China         74.2
## 17114                 2010-01-01                    China         69.9
## 17115                 2005-01-01                    China         63.7
## 17116                 2000-01-01                    China         57.8
## 17117                 1995-01-01                    China         53.7
## 17118                 1990-01-01                    China         49.5
## 17119                 2015-01-01                    China         74.2
## 17120                 2010-01-01                    China         69.9
## 17121                 2005-01-01                    China         63.7
## 17122                 2000-01-01                    China         57.8
## 17123                 1995-01-01                    China         53.7
## 17124                 1990-01-01                    China         49.5
## 17125                 2015-01-01                    China         74.2
## 17126                 2010-01-01                    China         69.9
## 17127                 2005-01-01                    China         63.7
## 17128                 2000-01-01                    China         57.8
## 17129                 1995-01-01                    China         53.7
## 17130                 1990-01-01                    China         49.5
## 17131                 2015-01-01                    China         74.2
## 17132                 2010-01-01                    China         69.9
## 17133                 2005-01-01                    China         63.7
## 17134                 2000-01-01                    China         57.8
## 17135                 1995-01-01                    China         53.7
## 17136                 1990-01-01                    China         49.5
## 17137                 2015-01-01                    China         74.2
## 17138                 2010-01-01                    China         69.9
## 17139                 2005-01-01                    China         63.7
## 17140                 2000-01-01                    China         57.8
## 17141                 1995-01-01                    China         53.7
## 17142                 1990-01-01                    China         49.5
## 17143                 2015-01-01                    China         74.2
## 17144                 2010-01-01                    China         69.9
## 17145                 2005-01-01                    China         63.7
## 17146                 2000-01-01                    China         57.8
## 17147                 1995-01-01                    China         53.7
## 17148                 1990-01-01                    China         49.5
## 17149                 2015-01-01                    China         74.2
## 17150                 2010-01-01                    China         69.9
## 17151                 2005-01-01                    China         63.7
## 17152                 2000-01-01                    China         57.8
## 17153                 1995-01-01                    China         53.7
## 17154                 1990-01-01                    China         49.5
## 17155                 2015-01-01                    China         74.2
## 17156                 2010-01-01                    China         69.9
## 17157                 2005-01-01                    China         63.7
## 17158                 2000-01-01                    China         57.8
## 17159                 1995-01-01                    China         53.7
## 17160                 1990-01-01                    China         49.5
## 17161                 2015-01-01                    China         74.2
## 17162                 2010-01-01                    China         69.9
## 17163                 2005-01-01                    China         63.7
## 17164                 2000-01-01                    China         57.8
## 17165                 1995-01-01                    China         53.7
## 17166                 1990-01-01                    China         49.5
## 17167                 2015-01-01                    China         74.2
## 17168                 2010-01-01                    China         69.9
## 17169                 2005-01-01                    China         63.7
## 17170                 2000-01-01                    China         57.8
## 17171                 1995-01-01                    China         53.7
## 17172                 1990-01-01                    China         49.5
## 17173                 2015-01-01                    China         74.2
## 17174                 2010-01-01                    China         69.9
## 17175                 2005-01-01                    China         63.7
## 17176                 2000-01-01                    China         57.8
## 17177                 1995-01-01                    China         53.7
## 17178                 1990-01-01                    China         49.5
## 17179                 2015-01-01                    China         74.2
## 17180                 2010-01-01                    China         69.9
## 17181                 2005-01-01                    China         63.7
## 17182                 2000-01-01                    China         57.8
## 17183                 1995-01-01                    China         53.7
## 17184                 1990-01-01                    China         49.5
## 17185                 2015-01-01                    China         74.2
## 17186                 2010-01-01                    China         69.9
## 17187                 2005-01-01                    China         63.7
## 17188                 2000-01-01                    China         57.8
## 17189                 1995-01-01                    China         53.7
## 17190                 1990-01-01                    China         49.5
## 17191                 2015-01-01                    China         74.2
## 17192                 2010-01-01                    China         69.9
## 17193                 2005-01-01                    China         63.7
## 17194                 2000-01-01                    China         57.8
## 17195                 1995-01-01                    China         53.7
## 17196                 1990-01-01                    China         49.5
## 17197                 2015-01-01                    China         74.2
## 17198                 2010-01-01                    China         69.9
## 17199                 2005-01-01                    China         63.7
## 17200                 2000-01-01                    China         57.8
## 17201                 1995-01-01                    China         53.7
## 17202                 1990-01-01                    China         49.5
## 17203                 2015-01-01                    China         74.2
## 17204                 2010-01-01                    China         69.9
## 17205                 2005-01-01                    China         63.7
## 17206                 2000-01-01                    China         57.8
## 17207                 1995-01-01                    China         53.7
## 17208                 1990-01-01                    China         49.5
## 17209                 2015-01-01                    China         74.2
## 17210                 2010-01-01                    China         69.9
## 17211                 2005-01-01                    China         63.7
## 17212                 2000-01-01                    China         57.8
## 17213                 1995-01-01                    China         53.7
## 17214                 1990-01-01                    China         49.5
## 17215                 2015-01-01                    China         74.2
## 17216                 2010-01-01                    China         69.9
## 17217                 2005-01-01                    China         63.7
## 17218                 2000-01-01                    China         57.8
## 17219                 1995-01-01                    China         53.7
## 17220                 1990-01-01                    China         49.5
## 17221                 2015-01-01                    China         74.2
## 17222                 2010-01-01                    China         69.9
## 17223                 2005-01-01                    China         63.7
## 17224                 2000-01-01                    China         57.8
## 17225                 1995-01-01                    China         53.7
## 17226                 1990-01-01                    China         49.5
## 17227                 2015-01-01                    China         74.2
## 17228                 2010-01-01                    China         69.9
## 17229                 2005-01-01                    China         63.7
## 17230                 2000-01-01                    China         57.8
## 17231                 1995-01-01                    China         53.7
## 17232                 1990-01-01                    China         49.5
## 17233                 2015-01-01                    China         74.2
## 17234                 2010-01-01                    China         69.9
## 17235                 2005-01-01                    China         63.7
## 17236                 2000-01-01                    China         57.8
## 17237                 1995-01-01                    China         53.7
## 17238                 1990-01-01                    China         49.5
## 17239                 2015-01-01                    China         74.2
## 17240                 2010-01-01                    China         69.9
## 17241                 2005-01-01                    China         63.7
## 17242                 2000-01-01                    China         57.8
## 17243                 1995-01-01                    China         53.7
## 17244                 1990-01-01                    China         49.5
## 17245                 2015-01-01                    China         74.2
## 17246                 2010-01-01                    China         69.9
## 17247                 2005-01-01                    China         63.7
## 17248                 2000-01-01                    China         57.8
## 17249                 1995-01-01                    China         53.7
## 17250                 1990-01-01                    China         49.5
## 17251                 2015-01-01                    China         74.2
## 17252                 2010-01-01                    China         69.9
## 17253                 2005-01-01                    China         63.7
## 17254                 2000-01-01                    China         57.8
## 17255                 1995-01-01                    China         53.7
## 17256                 1990-01-01                    China         49.5
## 17257                 2015-01-01                    China         74.2
## 17258                 2010-01-01                    China         69.9
## 17259                 2005-01-01                    China         63.7
## 17260                 2000-01-01                    China         57.8
## 17261                 1995-01-01                    China         53.7
## 17262                 1990-01-01                    China         49.5
## 17263                 2015-01-01                    China         74.2
## 17264                 2010-01-01                    China         69.9
## 17265                 2005-01-01                    China         63.7
## 17266                 2000-01-01                    China         57.8
## 17267                 1995-01-01                    China         53.7
## 17268                 1990-01-01                    China         49.5
## 17269                 2015-01-01                    China         74.2
## 17270                 2010-01-01                    China         69.9
## 17271                 2005-01-01                    China         63.7
## 17272                 2000-01-01                    China         57.8
## 17273                 1995-01-01                    China         53.7
## 17274                 1990-01-01                    China         49.5
## 17275                 2015-01-01                    China         74.2
## 17276                 2010-01-01                    China         69.9
## 17277                 2005-01-01                    China         63.7
## 17278                 2000-01-01                    China         57.8
## 17279                 1995-01-01                    China         53.7
## 17280                 1990-01-01                    China         49.5
## 17281                 2015-01-01                    China         74.2
## 17282                 2010-01-01                    China         69.9
## 17283                 2005-01-01                    China         63.7
## 17284                 2000-01-01                    China         57.8
## 17285                 1995-01-01                    China         53.7
## 17286                 1990-01-01                    China         49.5
## 17287                 2015-01-01                    China         74.2
## 17288                 2010-01-01                    China         69.9
## 17289                 2005-01-01                    China         63.7
## 17290                 2000-01-01                    China         57.8
## 17291                 1995-01-01                    China         53.7
## 17292                 1990-01-01                    China         49.5
## 17293                 2015-01-01                    China         74.2
## 17294                 2010-01-01                    China         69.9
## 17295                 2005-01-01                    China         63.7
## 17296                 2000-01-01                    China         57.8
## 17297                 1995-01-01                    China         53.7
## 17298                 1990-01-01                    China         49.5
## 17299                 2015-01-01                    China         74.2
## 17300                 2010-01-01                    China         69.9
## 17301                 2005-01-01                    China         63.7
## 17302                 2000-01-01                    China         57.8
## 17303                 1995-01-01                    China         53.7
## 17304                 1990-01-01                    China         49.5
## 17305                 2015-01-01                    China         74.2
## 17306                 2010-01-01                    China         69.9
## 17307                 2005-01-01                    China         63.7
## 17308                 2000-01-01                    China         57.8
## 17309                 1995-01-01                    China         53.7
## 17310                 1990-01-01                    China         49.5
## 17311                 2015-01-01                    China         74.2
## 17312                 2010-01-01                    China         69.9
## 17313                 2005-01-01                    China         63.7
## 17314                 2000-01-01                    China         57.8
## 17315                 1995-01-01                    China         53.7
## 17316                 1990-01-01                    China         49.5
## 17317                 2015-01-01                    China         74.2
## 17318                 2010-01-01                    China         69.9
## 17319                 2005-01-01                    China         63.7
## 17320                 2000-01-01                    China         57.8
## 17321                 1995-01-01                    China         53.7
## 17322                 1990-01-01                    China         49.5
## 17323                 2015-01-01                    China         74.2
## 17324                 2010-01-01                    China         69.9
## 17325                 2005-01-01                    China         63.7
## 17326                 2000-01-01                    China         57.8
## 17327                 1995-01-01                    China         53.7
## 17328                 1990-01-01                    China         49.5
## 17329                 2015-01-01                    China         74.2
## 17330                 2010-01-01                    China         69.9
## 17331                 2005-01-01                    China         63.7
## 17332                 2000-01-01                    China         57.8
## 17333                 1995-01-01                    China         53.7
## 17334                 1990-01-01                    China         49.5
## 17335                 2015-01-01                    China         74.2
## 17336                 2010-01-01                    China         69.9
## 17337                 2005-01-01                    China         63.7
## 17338                 2000-01-01                    China         57.8
## 17339                 1995-01-01                    China         53.7
## 17340                 1990-01-01                    China         49.5
## 17341                 2015-01-01                    China         74.2
## 17342                 2010-01-01                    China         69.9
## 17343                 2005-01-01                    China         63.7
## 17344                 2000-01-01                    China         57.8
## 17345                 1995-01-01                    China         53.7
## 17346                 1990-01-01                    China         49.5
## 17347                 2015-01-01                    China         74.2
## 17348                 2010-01-01                    China         69.9
## 17349                 2005-01-01                    China         63.7
## 17350                 2000-01-01                    China         57.8
## 17351                 1995-01-01                    China         53.7
## 17352                 1990-01-01                    China         49.5
## 17353                 2015-01-01                    China         74.2
## 17354                 2010-01-01                    China         69.9
## 17355                 2005-01-01                    China         63.7
## 17356                 2000-01-01                    China         57.8
## 17357                 1995-01-01                    China         53.7
## 17358                 1990-01-01                    China         49.5
## 17359                 2015-01-01                    China         74.2
## 17360                 2010-01-01                    China         69.9
## 17361                 2005-01-01                    China         63.7
## 17362                 2000-01-01                    China         57.8
## 17363                 1995-01-01                    China         53.7
## 17364                 1990-01-01                    China         49.5
## 17365                 2015-01-01                    China         74.2
## 17366                 2010-01-01                    China         69.9
## 17367                 2005-01-01                    China         63.7
## 17368                 2000-01-01                    China         57.8
## 17369                 1995-01-01                    China         53.7
## 17370                 1990-01-01                    China         49.5
## 17371                 2015-01-01                    China         74.2
## 17372                 2010-01-01                    China         69.9
## 17373                 2005-01-01                    China         63.7
## 17374                 2000-01-01                    China         57.8
## 17375                 1995-01-01                    China         53.7
## 17376                 1990-01-01                    China         49.5
## 17377                 2015-01-01                    China         74.2
## 17378                 2010-01-01                    China         69.9
## 17379                 2005-01-01                    China         63.7
## 17380                 2000-01-01                    China         57.8
## 17381                 1995-01-01                    China         53.7
## 17382                 1990-01-01                    China         49.5
## 17383                 2015-01-01                    China         74.2
## 17384                 2010-01-01                    China         69.9
## 17385                 2005-01-01                    China         63.7
## 17386                 2000-01-01                    China         57.8
## 17387                 1995-01-01                    China         53.7
## 17388                 1990-01-01                    China         49.5
## 17389                 2015-01-01                    China         74.2
## 17390                 2010-01-01                    China         69.9
## 17391                 2005-01-01                    China         63.7
## 17392                 2000-01-01                    China         57.8
## 17393                 1995-01-01                    China         53.7
## 17394                 1990-01-01                    China         49.5
## 17395                 2015-01-01                    China         74.2
## 17396                 2010-01-01                    China         69.9
## 17397                 2005-01-01                    China         63.7
## 17398                 2000-01-01                    China         57.8
## 17399                 1995-01-01                    China         53.7
## 17400                 1990-01-01                    China         49.5
## 17401                 2015-01-01                    China         74.2
## 17402                 2010-01-01                    China         69.9
## 17403                 2005-01-01                    China         63.7
## 17404                 2000-01-01                    China         57.8
## 17405                 1995-01-01                    China         53.7
## 17406                 1990-01-01                    China         49.5
## 17407                 2015-01-01                    China         74.2
## 17408                 2010-01-01                    China         69.9
## 17409                 2005-01-01                    China         63.7
## 17410                 2000-01-01                    China         57.8
## 17411                 1995-01-01                    China         53.7
## 17412                 1990-01-01                    China         49.5
## 17413                 2015-01-01                 Colombia         67.8
## 17414                 2010-01-01                 Colombia         64.4
## 17415                 2005-01-01                 Colombia         61.6
## 17416                 2000-01-01                 Colombia         58.4
## 17417                 1995-01-01                 Colombia         54.9
## 17418                 1990-01-01                 Colombia         51.1
## 17419                 2015-01-01                 Colombia         67.8
## 17420                 2010-01-01                 Colombia         64.4
## 17421                 2005-01-01                 Colombia         61.6
## 17422                 2000-01-01                 Colombia         58.4
## 17423                 1995-01-01                 Colombia         54.9
## 17424                 1990-01-01                 Colombia         51.1
## 17425                 2015-01-01                 Colombia         67.8
## 17426                 2010-01-01                 Colombia         64.4
## 17427                 2005-01-01                 Colombia         61.6
## 17428                 2000-01-01                 Colombia         58.4
## 17429                 1995-01-01                 Colombia         54.9
## 17430                 1990-01-01                 Colombia         51.1
## 17431                 2015-01-01                 Colombia         67.8
## 17432                 2010-01-01                 Colombia         64.4
## 17433                 2005-01-01                 Colombia         61.6
## 17434                 2000-01-01                 Colombia         58.4
## 17435                 1995-01-01                 Colombia         54.9
## 17436                 1990-01-01                 Colombia         51.1
## 17437                 2015-01-01                 Colombia         67.8
## 17438                 2010-01-01                 Colombia         64.4
## 17439                 2005-01-01                 Colombia         61.6
## 17440                 2000-01-01                 Colombia         58.4
## 17441                 1995-01-01                 Colombia         54.9
## 17442                 1990-01-01                 Colombia         51.1
## 17443                 2015-01-01                 Colombia         67.8
## 17444                 2010-01-01                 Colombia         64.4
## 17445                 2005-01-01                 Colombia         61.6
## 17446                 2000-01-01                 Colombia         58.4
## 17447                 1995-01-01                 Colombia         54.9
## 17448                 1990-01-01                 Colombia         51.1
## 17449                 2015-01-01                 Colombia         67.8
## 17450                 2010-01-01                 Colombia         64.4
## 17451                 2005-01-01                 Colombia         61.6
## 17452                 2000-01-01                 Colombia         58.4
## 17453                 1995-01-01                 Colombia         54.9
## 17454                 1990-01-01                 Colombia         51.1
## 17455                 2015-01-01                 Colombia         67.8
## 17456                 2010-01-01                 Colombia         64.4
## 17457                 2005-01-01                 Colombia         61.6
## 17458                 2000-01-01                 Colombia         58.4
## 17459                 1995-01-01                 Colombia         54.9
## 17460                 1990-01-01                 Colombia         51.1
## 17461                 2015-01-01                 Colombia         67.8
## 17462                 2010-01-01                 Colombia         64.4
## 17463                 2005-01-01                 Colombia         61.6
## 17464                 2000-01-01                 Colombia         58.4
## 17465                 1995-01-01                 Colombia         54.9
## 17466                 1990-01-01                 Colombia         51.1
## 17467                 2015-01-01                 Colombia         67.8
## 17468                 2010-01-01                 Colombia         64.4
## 17469                 2005-01-01                 Colombia         61.6
## 17470                 2000-01-01                 Colombia         58.4
## 17471                 1995-01-01                 Colombia         54.9
## 17472                 1990-01-01                 Colombia         51.1
## 17473                 2015-01-01                 Colombia         67.8
## 17474                 2010-01-01                 Colombia         64.4
## 17475                 2005-01-01                 Colombia         61.6
## 17476                 2000-01-01                 Colombia         58.4
## 17477                 1995-01-01                 Colombia         54.9
## 17478                 1990-01-01                 Colombia         51.1
## 17479                 2015-01-01                 Colombia         67.8
## 17480                 2010-01-01                 Colombia         64.4
## 17481                 2005-01-01                 Colombia         61.6
## 17482                 2000-01-01                 Colombia         58.4
## 17483                 1995-01-01                 Colombia         54.9
## 17484                 1990-01-01                 Colombia         51.1
## 17485                 2015-01-01                 Colombia         67.8
## 17486                 2010-01-01                 Colombia         64.4
## 17487                 2005-01-01                 Colombia         61.6
## 17488                 2000-01-01                 Colombia         58.4
## 17489                 1995-01-01                 Colombia         54.9
## 17490                 1990-01-01                 Colombia         51.1
## 17491                 2015-01-01                 Colombia         67.8
## 17492                 2010-01-01                 Colombia         64.4
## 17493                 2005-01-01                 Colombia         61.6
## 17494                 2000-01-01                 Colombia         58.4
## 17495                 1995-01-01                 Colombia         54.9
## 17496                 1990-01-01                 Colombia         51.1
## 17497                 2015-01-01                 Colombia         67.8
## 17498                 2010-01-01                 Colombia         64.4
## 17499                 2005-01-01                 Colombia         61.6
## 17500                 2000-01-01                 Colombia         58.4
## 17501                 1995-01-01                 Colombia         54.9
## 17502                 1990-01-01                 Colombia         51.1
## 17503                 2015-01-01                 Colombia         67.8
## 17504                 2010-01-01                 Colombia         64.4
## 17505                 2005-01-01                 Colombia         61.6
## 17506                 2000-01-01                 Colombia         58.4
## 17507                 1995-01-01                 Colombia         54.9
## 17508                 1990-01-01                 Colombia         51.1
## 17509                 2015-01-01                 Colombia         67.8
## 17510                 2010-01-01                 Colombia         64.4
## 17511                 2005-01-01                 Colombia         61.6
## 17512                 2000-01-01                 Colombia         58.4
## 17513                 1995-01-01                 Colombia         54.9
## 17514                 1990-01-01                 Colombia         51.1
## 17515                 2015-01-01                 Colombia         67.8
## 17516                 2010-01-01                 Colombia         64.4
## 17517                 2005-01-01                 Colombia         61.6
## 17518                 2000-01-01                 Colombia         58.4
## 17519                 1995-01-01                 Colombia         54.9
## 17520                 1990-01-01                 Colombia         51.1
## 17521                 2015-01-01                 Colombia         67.8
## 17522                 2010-01-01                 Colombia         64.4
## 17523                 2005-01-01                 Colombia         61.6
## 17524                 2000-01-01                 Colombia         58.4
## 17525                 1995-01-01                 Colombia         54.9
## 17526                 1990-01-01                 Colombia         51.1
## 17527                 2015-01-01                 Colombia         67.8
## 17528                 2010-01-01                 Colombia         64.4
## 17529                 2005-01-01                 Colombia         61.6
## 17530                 2000-01-01                 Colombia         58.4
## 17531                 1995-01-01                 Colombia         54.9
## 17532                 1990-01-01                 Colombia         51.1
## 17533                 2015-01-01                 Colombia         67.8
## 17534                 2010-01-01                 Colombia         64.4
## 17535                 2005-01-01                 Colombia         61.6
## 17536                 2000-01-01                 Colombia         58.4
## 17537                 1995-01-01                 Colombia         54.9
## 17538                 1990-01-01                 Colombia         51.1
## 17539                 2015-01-01                 Colombia         67.8
## 17540                 2010-01-01                 Colombia         64.4
## 17541                 2005-01-01                 Colombia         61.6
## 17542                 2000-01-01                 Colombia         58.4
## 17543                 1995-01-01                 Colombia         54.9
## 17544                 1990-01-01                 Colombia         51.1
## 17545                 2015-01-01                 Colombia         67.8
## 17546                 2010-01-01                 Colombia         64.4
## 17547                 2005-01-01                 Colombia         61.6
## 17548                 2000-01-01                 Colombia         58.4
## 17549                 1995-01-01                 Colombia         54.9
## 17550                 1990-01-01                 Colombia         51.1
## 17551                 2015-01-01                 Colombia         67.8
## 17552                 2010-01-01                 Colombia         64.4
## 17553                 2005-01-01                 Colombia         61.6
## 17554                 2000-01-01                 Colombia         58.4
## 17555                 1995-01-01                 Colombia         54.9
## 17556                 1990-01-01                 Colombia         51.1
## 17557                 2015-01-01                 Colombia         67.8
## 17558                 2010-01-01                 Colombia         64.4
## 17559                 2005-01-01                 Colombia         61.6
## 17560                 2000-01-01                 Colombia         58.4
## 17561                 1995-01-01                 Colombia         54.9
## 17562                 1990-01-01                 Colombia         51.1
## 17563                 2015-01-01                 Colombia         67.8
## 17564                 2010-01-01                 Colombia         64.4
## 17565                 2005-01-01                 Colombia         61.6
## 17566                 2000-01-01                 Colombia         58.4
## 17567                 1995-01-01                 Colombia         54.9
## 17568                 1990-01-01                 Colombia         51.1
## 17569                 2015-01-01                 Colombia         67.8
## 17570                 2010-01-01                 Colombia         64.4
## 17571                 2005-01-01                 Colombia         61.6
## 17572                 2000-01-01                 Colombia         58.4
## 17573                 1995-01-01                 Colombia         54.9
## 17574                 1990-01-01                 Colombia         51.1
## 17575                 2015-01-01                 Colombia         67.8
## 17576                 2010-01-01                 Colombia         64.4
## 17577                 2005-01-01                 Colombia         61.6
## 17578                 2000-01-01                 Colombia         58.4
## 17579                 1995-01-01                 Colombia         54.9
## 17580                 1990-01-01                 Colombia         51.1
## 17581                 2015-01-01                 Colombia         67.8
## 17582                 2010-01-01                 Colombia         64.4
## 17583                 2005-01-01                 Colombia         61.6
## 17584                 2000-01-01                 Colombia         58.4
## 17585                 1995-01-01                 Colombia         54.9
## 17586                 1990-01-01                 Colombia         51.1
## 17587                 2015-01-01                 Colombia         67.8
## 17588                 2010-01-01                 Colombia         64.4
## 17589                 2005-01-01                 Colombia         61.6
## 17590                 2000-01-01                 Colombia         58.4
## 17591                 1995-01-01                 Colombia         54.9
## 17592                 1990-01-01                 Colombia         51.1
## 17593                 2015-01-01                 Colombia         67.8
## 17594                 2010-01-01                 Colombia         64.4
## 17595                 2005-01-01                 Colombia         61.6
## 17596                 2000-01-01                 Colombia         58.4
## 17597                 1995-01-01                 Colombia         54.9
## 17598                 1990-01-01                 Colombia         51.1
## 17599                 2015-01-01                 Colombia         67.8
## 17600                 2010-01-01                 Colombia         64.4
## 17601                 2005-01-01                 Colombia         61.6
## 17602                 2000-01-01                 Colombia         58.4
## 17603                 1995-01-01                 Colombia         54.9
## 17604                 1990-01-01                 Colombia         51.1
## 17605                 2015-01-01                 Colombia         67.8
## 17606                 2010-01-01                 Colombia         64.4
## 17607                 2005-01-01                 Colombia         61.6
## 17608                 2000-01-01                 Colombia         58.4
## 17609                 1995-01-01                 Colombia         54.9
## 17610                 1990-01-01                 Colombia         51.1
## 17611                 2015-01-01                 Colombia         67.8
## 17612                 2010-01-01                 Colombia         64.4
## 17613                 2005-01-01                 Colombia         61.6
## 17614                 2000-01-01                 Colombia         58.4
## 17615                 1995-01-01                 Colombia         54.9
## 17616                 1990-01-01                 Colombia         51.1
## 17617                 2015-01-01                 Colombia         67.8
## 17618                 2010-01-01                 Colombia         64.4
## 17619                 2005-01-01                 Colombia         61.6
## 17620                 2000-01-01                 Colombia         58.4
## 17621                 1995-01-01                 Colombia         54.9
## 17622                 1990-01-01                 Colombia         51.1
## 17623                 2015-01-01                 Colombia         67.8
## 17624                 2010-01-01                 Colombia         64.4
## 17625                 2005-01-01                 Colombia         61.6
## 17626                 2000-01-01                 Colombia         58.4
## 17627                 1995-01-01                 Colombia         54.9
## 17628                 1990-01-01                 Colombia         51.1
## 17629                 2015-01-01                 Colombia         67.8
## 17630                 2010-01-01                 Colombia         64.4
## 17631                 2005-01-01                 Colombia         61.6
## 17632                 2000-01-01                 Colombia         58.4
## 17633                 1995-01-01                 Colombia         54.9
## 17634                 1990-01-01                 Colombia         51.1
## 17635                 2015-01-01                 Colombia         67.8
## 17636                 2010-01-01                 Colombia         64.4
## 17637                 2005-01-01                 Colombia         61.6
## 17638                 2000-01-01                 Colombia         58.4
## 17639                 1995-01-01                 Colombia         54.9
## 17640                 1990-01-01                 Colombia         51.1
## 17641                 2015-01-01                 Colombia         67.8
## 17642                 2010-01-01                 Colombia         64.4
## 17643                 2005-01-01                 Colombia         61.6
## 17644                 2000-01-01                 Colombia         58.4
## 17645                 1995-01-01                 Colombia         54.9
## 17646                 1990-01-01                 Colombia         51.1
## 17647                 2015-01-01                 Colombia         67.8
## 17648                 2010-01-01                 Colombia         64.4
## 17649                 2005-01-01                 Colombia         61.6
## 17650                 2000-01-01                 Colombia         58.4
## 17651                 1995-01-01                 Colombia         54.9
## 17652                 1990-01-01                 Colombia         51.1
## 17653                 2015-01-01                 Colombia         67.8
## 17654                 2010-01-01                 Colombia         64.4
## 17655                 2005-01-01                 Colombia         61.6
## 17656                 2000-01-01                 Colombia         58.4
## 17657                 1995-01-01                 Colombia         54.9
## 17658                 1990-01-01                 Colombia         51.1
## 17659                 2015-01-01                 Colombia         67.8
## 17660                 2010-01-01                 Colombia         64.4
## 17661                 2005-01-01                 Colombia         61.6
## 17662                 2000-01-01                 Colombia         58.4
## 17663                 1995-01-01                 Colombia         54.9
## 17664                 1990-01-01                 Colombia         51.1
## 17665                 2015-01-01                 Colombia         67.8
## 17666                 2010-01-01                 Colombia         64.4
## 17667                 2005-01-01                 Colombia         61.6
## 17668                 2000-01-01                 Colombia         58.4
## 17669                 1995-01-01                 Colombia         54.9
## 17670                 1990-01-01                 Colombia         51.1
## 17671                 2015-01-01                 Colombia         67.8
## 17672                 2010-01-01                 Colombia         64.4
## 17673                 2005-01-01                 Colombia         61.6
## 17674                 2000-01-01                 Colombia         58.4
## 17675                 1995-01-01                 Colombia         54.9
## 17676                 1990-01-01                 Colombia         51.1
## 17677                 2015-01-01                 Colombia         67.8
## 17678                 2010-01-01                 Colombia         64.4
## 17679                 2005-01-01                 Colombia         61.6
## 17680                 2000-01-01                 Colombia         58.4
## 17681                 1995-01-01                 Colombia         54.9
## 17682                 1990-01-01                 Colombia         51.1
## 17683                 2015-01-01                 Colombia         67.8
## 17684                 2010-01-01                 Colombia         64.4
## 17685                 2005-01-01                 Colombia         61.6
## 17686                 2000-01-01                 Colombia         58.4
## 17687                 1995-01-01                 Colombia         54.9
## 17688                 1990-01-01                 Colombia         51.1
## 17689                 2015-01-01                 Colombia         67.8
## 17690                 2010-01-01                 Colombia         64.4
## 17691                 2005-01-01                 Colombia         61.6
## 17692                 2000-01-01                 Colombia         58.4
## 17693                 1995-01-01                 Colombia         54.9
## 17694                 1990-01-01                 Colombia         51.1
## 17695                 2015-01-01                 Colombia         67.8
## 17696                 2010-01-01                 Colombia         64.4
## 17697                 2005-01-01                 Colombia         61.6
## 17698                 2000-01-01                 Colombia         58.4
## 17699                 1995-01-01                 Colombia         54.9
## 17700                 1990-01-01                 Colombia         51.1
## 17701                 2015-01-01                 Colombia         67.8
## 17702                 2010-01-01                 Colombia         64.4
## 17703                 2005-01-01                 Colombia         61.6
## 17704                 2000-01-01                 Colombia         58.4
## 17705                 1995-01-01                 Colombia         54.9
## 17706                 1990-01-01                 Colombia         51.1
## 17707                 2015-01-01                 Colombia         67.8
## 17708                 2010-01-01                 Colombia         64.4
## 17709                 2005-01-01                 Colombia         61.6
## 17710                 2000-01-01                 Colombia         58.4
## 17711                 1995-01-01                 Colombia         54.9
## 17712                 1990-01-01                 Colombia         51.1
## 17713                 2015-01-01                 Colombia         67.8
## 17714                 2010-01-01                 Colombia         64.4
## 17715                 2005-01-01                 Colombia         61.6
## 17716                 2000-01-01                 Colombia         58.4
## 17717                 1995-01-01                 Colombia         54.9
## 17718                 1990-01-01                 Colombia         51.1
## 17719                 2015-01-01                 Colombia         67.8
## 17720                 2010-01-01                 Colombia         64.4
## 17721                 2005-01-01                 Colombia         61.6
## 17722                 2000-01-01                 Colombia         58.4
## 17723                 1995-01-01                 Colombia         54.9
## 17724                 1990-01-01                 Colombia         51.1
## 17725                 2015-01-01                 Colombia         67.8
## 17726                 2010-01-01                 Colombia         64.4
## 17727                 2005-01-01                 Colombia         61.6
## 17728                 2000-01-01                 Colombia         58.4
## 17729                 1995-01-01                 Colombia         54.9
## 17730                 1990-01-01                 Colombia         51.1
## 17731                 2015-01-01                 Colombia         67.8
## 17732                 2010-01-01                 Colombia         64.4
## 17733                 2005-01-01                 Colombia         61.6
## 17734                 2000-01-01                 Colombia         58.4
## 17735                 1995-01-01                 Colombia         54.9
## 17736                 1990-01-01                 Colombia         51.1
## 17737                 2015-01-01                 Colombia         67.8
## 17738                 2010-01-01                 Colombia         64.4
## 17739                 2005-01-01                 Colombia         61.6
## 17740                 2000-01-01                 Colombia         58.4
## 17741                 1995-01-01                 Colombia         54.9
## 17742                 1990-01-01                 Colombia         51.1
## 17743                 2015-01-01                 Colombia         67.8
## 17744                 2010-01-01                 Colombia         64.4
## 17745                 2005-01-01                 Colombia         61.6
## 17746                 2000-01-01                 Colombia         58.4
## 17747                 1995-01-01                 Colombia         54.9
## 17748                 1990-01-01                 Colombia         51.1
## 17749                 2015-01-01                 Colombia         67.8
## 17750                 2010-01-01                 Colombia         64.4
## 17751                 2005-01-01                 Colombia         61.6
## 17752                 2000-01-01                 Colombia         58.4
## 17753                 1995-01-01                 Colombia         54.9
## 17754                 1990-01-01                 Colombia         51.1
## 17755                 2015-01-01                 Colombia         67.8
## 17756                 2010-01-01                 Colombia         64.4
## 17757                 2005-01-01                 Colombia         61.6
## 17758                 2000-01-01                 Colombia         58.4
## 17759                 1995-01-01                 Colombia         54.9
## 17760                 1990-01-01                 Colombia         51.1
## 17761                 2015-01-01                 Colombia         67.8
## 17762                 2010-01-01                 Colombia         64.4
## 17763                 2005-01-01                 Colombia         61.6
## 17764                 2000-01-01                 Colombia         58.4
## 17765                 1995-01-01                 Colombia         54.9
## 17766                 1990-01-01                 Colombia         51.1
## 17767                 2015-01-01                 Colombia         67.8
## 17768                 2010-01-01                 Colombia         64.4
## 17769                 2005-01-01                 Colombia         61.6
## 17770                 2000-01-01                 Colombia         58.4
## 17771                 1995-01-01                 Colombia         54.9
## 17772                 1990-01-01                 Colombia         51.1
## 17773                 2015-01-01                 Colombia         67.8
## 17774                 2010-01-01                 Colombia         64.4
## 17775                 2005-01-01                 Colombia         61.6
## 17776                 2000-01-01                 Colombia         58.4
## 17777                 1995-01-01                 Colombia         54.9
## 17778                 1990-01-01                 Colombia         51.1
## 17779                 2015-01-01                 Colombia         67.8
## 17780                 2010-01-01                 Colombia         64.4
## 17781                 2005-01-01                 Colombia         61.6
## 17782                 2000-01-01                 Colombia         58.4
## 17783                 1995-01-01                 Colombia         54.9
## 17784                 1990-01-01                 Colombia         51.1
## 17785                 2015-01-01                 Colombia         67.8
## 17786                 2010-01-01                 Colombia         64.4
## 17787                 2005-01-01                 Colombia         61.6
## 17788                 2000-01-01                 Colombia         58.4
## 17789                 1995-01-01                 Colombia         54.9
## 17790                 1990-01-01                 Colombia         51.1
## 17791                 2015-01-01                 Colombia         67.8
## 17792                 2010-01-01                 Colombia         64.4
## 17793                 2005-01-01                 Colombia         61.6
## 17794                 2000-01-01                 Colombia         58.4
## 17795                 1995-01-01                 Colombia         54.9
## 17796                 1990-01-01                 Colombia         51.1
## 17797                 2015-01-01                 Colombia         67.8
## 17798                 2010-01-01                 Colombia         64.4
## 17799                 2005-01-01                 Colombia         61.6
## 17800                 2000-01-01                 Colombia         58.4
## 17801                 1995-01-01                 Colombia         54.9
## 17802                 1990-01-01                 Colombia         51.1
## 17803                 2015-01-01                 Colombia         67.8
## 17804                 2010-01-01                 Colombia         64.4
## 17805                 2005-01-01                 Colombia         61.6
## 17806                 2000-01-01                 Colombia         58.4
## 17807                 1995-01-01                 Colombia         54.9
## 17808                 1990-01-01                 Colombia         51.1
## 17809                 2015-01-01                 Colombia         67.8
## 17810                 2010-01-01                 Colombia         64.4
## 17811                 2005-01-01                 Colombia         61.6
## 17812                 2000-01-01                 Colombia         58.4
## 17813                 1995-01-01                 Colombia         54.9
## 17814                 1990-01-01                 Colombia         51.1
## 17815                 2015-01-01                 Colombia         67.8
## 17816                 2010-01-01                 Colombia         64.4
## 17817                 2005-01-01                 Colombia         61.6
## 17818                 2000-01-01                 Colombia         58.4
## 17819                 1995-01-01                 Colombia         54.9
## 17820                 1990-01-01                 Colombia         51.1
## 17821                 2015-01-01                 Colombia         67.8
## 17822                 2010-01-01                 Colombia         64.4
## 17823                 2005-01-01                 Colombia         61.6
## 17824                 2000-01-01                 Colombia         58.4
## 17825                 1995-01-01                 Colombia         54.9
## 17826                 1990-01-01                 Colombia         51.1
## 17827                 2015-01-01                 Colombia         67.8
## 17828                 2010-01-01                 Colombia         64.4
## 17829                 2005-01-01                 Colombia         61.6
## 17830                 2000-01-01                 Colombia         58.4
## 17831                 1995-01-01                 Colombia         54.9
## 17832                 1990-01-01                 Colombia         51.1
## 17833                 2015-01-01                 Colombia         67.8
## 17834                 2010-01-01                 Colombia         64.4
## 17835                 2005-01-01                 Colombia         61.6
## 17836                 2000-01-01                 Colombia         58.4
## 17837                 1995-01-01                 Colombia         54.9
## 17838                 1990-01-01                 Colombia         51.1
## 17839                 2015-01-01                 Colombia         67.8
## 17840                 2010-01-01                 Colombia         64.4
## 17841                 2005-01-01                 Colombia         61.6
## 17842                 2000-01-01                 Colombia         58.4
## 17843                 1995-01-01                 Colombia         54.9
## 17844                 1990-01-01                 Colombia         51.1
## 17845                 2015-01-01                 Colombia         67.8
## 17846                 2010-01-01                 Colombia         64.4
## 17847                 2005-01-01                 Colombia         61.6
## 17848                 2000-01-01                 Colombia         58.4
## 17849                 1995-01-01                 Colombia         54.9
## 17850                 1990-01-01                 Colombia         51.1
## 17851                 2015-01-01                 Colombia         67.8
## 17852                 2010-01-01                 Colombia         64.4
## 17853                 2005-01-01                 Colombia         61.6
## 17854                 2000-01-01                 Colombia         58.4
## 17855                 1995-01-01                 Colombia         54.9
## 17856                 1990-01-01                 Colombia         51.1
## 17857                 2015-01-01                 Colombia         67.8
## 17858                 2010-01-01                 Colombia         64.4
## 17859                 2005-01-01                 Colombia         61.6
## 17860                 2000-01-01                 Colombia         58.4
## 17861                 1995-01-01                 Colombia         54.9
## 17862                 1990-01-01                 Colombia         51.1
## 17863                 2015-01-01                 Colombia         67.8
## 17864                 2010-01-01                 Colombia         64.4
## 17865                 2005-01-01                 Colombia         61.6
## 17866                 2000-01-01                 Colombia         58.4
## 17867                 1995-01-01                 Colombia         54.9
## 17868                 1990-01-01                 Colombia         51.1
## 17869                 2015-01-01                 Colombia         67.8
## 17870                 2010-01-01                 Colombia         64.4
## 17871                 2005-01-01                 Colombia         61.6
## 17872                 2000-01-01                 Colombia         58.4
## 17873                 1995-01-01                 Colombia         54.9
## 17874                 1990-01-01                 Colombia         51.1
## 17875                 2015-01-01                  Comoros         47.7
## 17876                 2010-01-01                  Comoros         47.2
## 17877                 2005-01-01                  Comoros         44.1
## 17878                 2000-01-01                  Comoros         38.4
## 17879                 1995-01-01                  Comoros         34.3
## 17880                 1990-01-01                  Comoros         32.7
## 17881                 2015-01-01                  Comoros         47.7
## 17882                 2010-01-01                  Comoros         47.2
## 17883                 2005-01-01                  Comoros         44.1
## 17884                 2000-01-01                  Comoros         38.4
## 17885                 1995-01-01                  Comoros         34.3
## 17886                 1990-01-01                  Comoros         32.7
## 17887                 2015-01-01                  Comoros         47.7
## 17888                 2010-01-01                  Comoros         47.2
## 17889                 2005-01-01                  Comoros         44.1
## 17890                 2000-01-01                  Comoros         38.4
## 17891                 1995-01-01                  Comoros         34.3
## 17892                 1990-01-01                  Comoros         32.7
## 17893                 2015-01-01                  Comoros         47.7
## 17894                 2010-01-01                  Comoros         47.2
## 17895                 2005-01-01                  Comoros         44.1
## 17896                 2000-01-01                  Comoros         38.4
## 17897                 1995-01-01                  Comoros         34.3
## 17898                 1990-01-01                  Comoros         32.7
## 17899                 2015-01-01                  Comoros         47.7
## 17900                 2010-01-01                  Comoros         47.2
## 17901                 2005-01-01                  Comoros         44.1
## 17902                 2000-01-01                  Comoros         38.4
## 17903                 1995-01-01                  Comoros         34.3
## 17904                 1990-01-01                  Comoros         32.7
## 17905                 2015-01-01                  Comoros         47.7
## 17906                 2010-01-01                  Comoros         47.2
## 17907                 2005-01-01                  Comoros         44.1
## 17908                 2000-01-01                  Comoros         38.4
## 17909                 1995-01-01                  Comoros         34.3
## 17910                 1990-01-01                  Comoros         32.7
## 17911                 2015-01-01                  Comoros         47.7
## 17912                 2010-01-01                  Comoros         47.2
## 17913                 2005-01-01                  Comoros         44.1
## 17914                 2000-01-01                  Comoros         38.4
## 17915                 1995-01-01                  Comoros         34.3
## 17916                 1990-01-01                  Comoros         32.7
## 17917                 2015-01-01                  Comoros         47.7
## 17918                 2010-01-01                  Comoros         47.2
## 17919                 2005-01-01                  Comoros         44.1
## 17920                 2000-01-01                  Comoros         38.4
## 17921                 1995-01-01                  Comoros         34.3
## 17922                 1990-01-01                  Comoros         32.7
## 17923                 2015-01-01                  Comoros         47.7
## 17924                 2010-01-01                  Comoros         47.2
## 17925                 2005-01-01                  Comoros         44.1
## 17926                 2000-01-01                  Comoros         38.4
## 17927                 1995-01-01                  Comoros         34.3
## 17928                 1990-01-01                  Comoros         32.7
## 17929                 2015-01-01                  Comoros         47.7
## 17930                 2010-01-01                  Comoros         47.2
## 17931                 2005-01-01                  Comoros         44.1
## 17932                 2000-01-01                  Comoros         38.4
## 17933                 1995-01-01                  Comoros         34.3
## 17934                 1990-01-01                  Comoros         32.7
## 17935                 2015-01-01                  Comoros         47.7
## 17936                 2010-01-01                  Comoros         47.2
## 17937                 2005-01-01                  Comoros         44.1
## 17938                 2000-01-01                  Comoros         38.4
## 17939                 1995-01-01                  Comoros         34.3
## 17940                 1990-01-01                  Comoros         32.7
## 17941                 2015-01-01                  Comoros         47.7
## 17942                 2010-01-01                  Comoros         47.2
## 17943                 2005-01-01                  Comoros         44.1
## 17944                 2000-01-01                  Comoros         38.4
## 17945                 1995-01-01                  Comoros         34.3
## 17946                 1990-01-01                  Comoros         32.7
## 17947                 2015-01-01                  Comoros         47.7
## 17948                 2010-01-01                  Comoros         47.2
## 17949                 2005-01-01                  Comoros         44.1
## 17950                 2000-01-01                  Comoros         38.4
## 17951                 1995-01-01                  Comoros         34.3
## 17952                 1990-01-01                  Comoros         32.7
## 17953                 2015-01-01                  Comoros         47.7
## 17954                 2010-01-01                  Comoros         47.2
## 17955                 2005-01-01                  Comoros         44.1
## 17956                 2000-01-01                  Comoros         38.4
## 17957                 1995-01-01                  Comoros         34.3
## 17958                 1990-01-01                  Comoros         32.7
## 17959                 2015-01-01                  Comoros         47.7
## 17960                 2010-01-01                  Comoros         47.2
## 17961                 2005-01-01                  Comoros         44.1
## 17962                 2000-01-01                  Comoros         38.4
## 17963                 1995-01-01                  Comoros         34.3
## 17964                 1990-01-01                  Comoros         32.7
## 17965                 2015-01-01                  Comoros         47.7
## 17966                 2010-01-01                  Comoros         47.2
## 17967                 2005-01-01                  Comoros         44.1
## 17968                 2000-01-01                  Comoros         38.4
## 17969                 1995-01-01                  Comoros         34.3
## 17970                 1990-01-01                  Comoros         32.7
## 17971                 2015-01-01                  Comoros         47.7
## 17972                 2010-01-01                  Comoros         47.2
## 17973                 2005-01-01                  Comoros         44.1
## 17974                 2000-01-01                  Comoros         38.4
## 17975                 1995-01-01                  Comoros         34.3
## 17976                 1990-01-01                  Comoros         32.7
## 17977                 2015-01-01                  Comoros         47.7
## 17978                 2010-01-01                  Comoros         47.2
## 17979                 2005-01-01                  Comoros         44.1
## 17980                 2000-01-01                  Comoros         38.4
## 17981                 1995-01-01                  Comoros         34.3
## 17982                 1990-01-01                  Comoros         32.7
## 17983                 2015-01-01                  Comoros         47.7
## 17984                 2010-01-01                  Comoros         47.2
## 17985                 2005-01-01                  Comoros         44.1
## 17986                 2000-01-01                  Comoros         38.4
## 17987                 1995-01-01                  Comoros         34.3
## 17988                 1990-01-01                  Comoros         32.7
## 17989                 2015-01-01                  Comoros         47.7
## 17990                 2010-01-01                  Comoros         47.2
## 17991                 2005-01-01                  Comoros         44.1
## 17992                 2000-01-01                  Comoros         38.4
## 17993                 1995-01-01                  Comoros         34.3
## 17994                 1990-01-01                  Comoros         32.7
## 17995                 2015-01-01                  Comoros         47.7
## 17996                 2010-01-01                  Comoros         47.2
## 17997                 2005-01-01                  Comoros         44.1
## 17998                 2000-01-01                  Comoros         38.4
## 17999                 1995-01-01                  Comoros         34.3
## 18000                 1990-01-01                  Comoros         32.7
## 18001                 2015-01-01                  Comoros         47.7
## 18002                 2010-01-01                  Comoros         47.2
## 18003                 2005-01-01                  Comoros         44.1
## 18004                 2000-01-01                  Comoros         38.4
## 18005                 1995-01-01                  Comoros         34.3
## 18006                 1990-01-01                  Comoros         32.7
## 18007                 2015-01-01                  Comoros         47.7
## 18008                 2010-01-01                  Comoros         47.2
## 18009                 2005-01-01                  Comoros         44.1
## 18010                 2000-01-01                  Comoros         38.4
## 18011                 1995-01-01                  Comoros         34.3
## 18012                 1990-01-01                  Comoros         32.7
## 18013                 2015-01-01                  Comoros         47.7
## 18014                 2010-01-01                  Comoros         47.2
## 18015                 2005-01-01                  Comoros         44.1
## 18016                 2000-01-01                  Comoros         38.4
## 18017                 1995-01-01                  Comoros         34.3
## 18018                 1990-01-01                  Comoros         32.7
## 18019                 2015-01-01                  Comoros         47.7
## 18020                 2010-01-01                  Comoros         47.2
## 18021                 2005-01-01                  Comoros         44.1
## 18022                 2000-01-01                  Comoros         38.4
## 18023                 1995-01-01                  Comoros         34.3
## 18024                 1990-01-01                  Comoros         32.7
## 18025                 2015-01-01                  Comoros         47.7
## 18026                 2010-01-01                  Comoros         47.2
## 18027                 2005-01-01                  Comoros         44.1
## 18028                 2000-01-01                  Comoros         38.4
## 18029                 1995-01-01                  Comoros         34.3
## 18030                 1990-01-01                  Comoros         32.7
## 18031                 2015-01-01                  Comoros         47.7
## 18032                 2010-01-01                  Comoros         47.2
## 18033                 2005-01-01                  Comoros         44.1
## 18034                 2000-01-01                  Comoros         38.4
## 18035                 1995-01-01                  Comoros         34.3
## 18036                 1990-01-01                  Comoros         32.7
## 18037                 2015-01-01           Congo Republic         43.5
## 18038                 2010-01-01           Congo Republic         41.2
## 18039                 2005-01-01           Congo Republic         39.3
## 18040                 2000-01-01           Congo Republic         33.3
## 18041                 1995-01-01           Congo Republic         31.4
## 18042                 1990-01-01           Congo Republic         32.2
## 18043                 2015-01-01           Congo Republic         43.5
## 18044                 2010-01-01           Congo Republic         41.2
## 18045                 2005-01-01           Congo Republic         39.3
## 18046                 2000-01-01           Congo Republic         33.3
## 18047                 1995-01-01           Congo Republic         31.4
## 18048                 1990-01-01           Congo Republic         32.2
## 18049                 2015-01-01           Congo Republic         43.5
## 18050                 2010-01-01           Congo Republic         41.2
## 18051                 2005-01-01           Congo Republic         39.3
## 18052                 2000-01-01           Congo Republic         33.3
## 18053                 1995-01-01           Congo Republic         31.4
## 18054                 1990-01-01           Congo Republic         32.2
## 18055                 2015-01-01           Congo Republic         43.5
## 18056                 2010-01-01           Congo Republic         41.2
## 18057                 2005-01-01           Congo Republic         39.3
## 18058                 2000-01-01           Congo Republic         33.3
## 18059                 1995-01-01           Congo Republic         31.4
## 18060                 1990-01-01           Congo Republic         32.2
## 18061                 2015-01-01           Congo Republic         43.5
## 18062                 2010-01-01           Congo Republic         41.2
## 18063                 2005-01-01           Congo Republic         39.3
## 18064                 2000-01-01           Congo Republic         33.3
## 18065                 1995-01-01           Congo Republic         31.4
## 18066                 1990-01-01           Congo Republic         32.2
## 18067                 2015-01-01           Congo Republic         43.5
## 18068                 2010-01-01           Congo Republic         41.2
## 18069                 2005-01-01           Congo Republic         39.3
## 18070                 2000-01-01           Congo Republic         33.3
## 18071                 1995-01-01           Congo Republic         31.4
## 18072                 1990-01-01           Congo Republic         32.2
## 18073                 2015-01-01           Congo Republic         43.5
## 18074                 2010-01-01           Congo Republic         41.2
## 18075                 2005-01-01           Congo Republic         39.3
## 18076                 2000-01-01           Congo Republic         33.3
## 18077                 1995-01-01           Congo Republic         31.4
## 18078                 1990-01-01           Congo Republic         32.2
## 18079                 2015-01-01           Congo Republic         43.5
## 18080                 2010-01-01           Congo Republic         41.2
## 18081                 2005-01-01           Congo Republic         39.3
## 18082                 2000-01-01           Congo Republic         33.3
## 18083                 1995-01-01           Congo Republic         31.4
## 18084                 1990-01-01           Congo Republic         32.2
## 18085                 2015-01-01           Congo Republic         43.5
## 18086                 2010-01-01           Congo Republic         41.2
## 18087                 2005-01-01           Congo Republic         39.3
## 18088                 2000-01-01           Congo Republic         33.3
## 18089                 1995-01-01           Congo Republic         31.4
## 18090                 1990-01-01           Congo Republic         32.2
## 18091                 2015-01-01           Congo Republic         43.5
## 18092                 2010-01-01           Congo Republic         41.2
## 18093                 2005-01-01           Congo Republic         39.3
## 18094                 2000-01-01           Congo Republic         33.3
## 18095                 1995-01-01           Congo Republic         31.4
## 18096                 1990-01-01           Congo Republic         32.2
## 18097                 2015-01-01           Congo Republic         43.5
## 18098                 2010-01-01           Congo Republic         41.2
## 18099                 2005-01-01           Congo Republic         39.3
## 18100                 2000-01-01           Congo Republic         33.3
## 18101                 1995-01-01           Congo Republic         31.4
## 18102                 1990-01-01           Congo Republic         32.2
## 18103                 2015-01-01           Congo Republic         43.5
## 18104                 2010-01-01           Congo Republic         41.2
## 18105                 2005-01-01           Congo Republic         39.3
## 18106                 2000-01-01           Congo Republic         33.3
## 18107                 1995-01-01           Congo Republic         31.4
## 18108                 1990-01-01           Congo Republic         32.2
## 18109                 2015-01-01           Congo Republic         43.5
## 18110                 2010-01-01           Congo Republic         41.2
## 18111                 2005-01-01           Congo Republic         39.3
## 18112                 2000-01-01           Congo Republic         33.3
## 18113                 1995-01-01           Congo Republic         31.4
## 18114                 1990-01-01           Congo Republic         32.2
## 18115                 2015-01-01           Congo Republic         43.5
## 18116                 2010-01-01           Congo Republic         41.2
## 18117                 2005-01-01           Congo Republic         39.3
## 18118                 2000-01-01           Congo Republic         33.3
## 18119                 1995-01-01           Congo Republic         31.4
## 18120                 1990-01-01           Congo Republic         32.2
## 18121                 2015-01-01           Congo Republic         43.5
## 18122                 2010-01-01           Congo Republic         41.2
## 18123                 2005-01-01           Congo Republic         39.3
## 18124                 2000-01-01           Congo Republic         33.3
## 18125                 1995-01-01           Congo Republic         31.4
## 18126                 1990-01-01           Congo Republic         32.2
## 18127                 2015-01-01           Congo Republic         43.5
## 18128                 2010-01-01           Congo Republic         41.2
## 18129                 2005-01-01           Congo Republic         39.3
## 18130                 2000-01-01           Congo Republic         33.3
## 18131                 1995-01-01           Congo Republic         31.4
## 18132                 1990-01-01           Congo Republic         32.2
## 18133                 2015-01-01           Congo Republic         43.5
## 18134                 2010-01-01           Congo Republic         41.2
## 18135                 2005-01-01           Congo Republic         39.3
## 18136                 2000-01-01           Congo Republic         33.3
## 18137                 1995-01-01           Congo Republic         31.4
## 18138                 1990-01-01           Congo Republic         32.2
## 18139                 2015-01-01           Congo Republic         43.5
## 18140                 2010-01-01           Congo Republic         41.2
## 18141                 2005-01-01           Congo Republic         39.3
## 18142                 2000-01-01           Congo Republic         33.3
## 18143                 1995-01-01           Congo Republic         31.4
## 18144                 1990-01-01           Congo Republic         32.2
## 18145                 2015-01-01           Congo Republic         43.5
## 18146                 2010-01-01           Congo Republic         41.2
## 18147                 2005-01-01           Congo Republic         39.3
## 18148                 2000-01-01           Congo Republic         33.3
## 18149                 1995-01-01           Congo Republic         31.4
## 18150                 1990-01-01           Congo Republic         32.2
## 18151                 2015-01-01           Congo Republic         43.5
## 18152                 2010-01-01           Congo Republic         41.2
## 18153                 2005-01-01           Congo Republic         39.3
## 18154                 2000-01-01           Congo Republic         33.3
## 18155                 1995-01-01           Congo Republic         31.4
## 18156                 1990-01-01           Congo Republic         32.2
## 18157                 2015-01-01           Congo Republic         43.5
## 18158                 2010-01-01           Congo Republic         41.2
## 18159                 2005-01-01           Congo Republic         39.3
## 18160                 2000-01-01           Congo Republic         33.3
## 18161                 1995-01-01           Congo Republic         31.4
## 18162                 1990-01-01           Congo Republic         32.2
## 18163                 2015-01-01           Congo Republic         43.5
## 18164                 2010-01-01           Congo Republic         41.2
## 18165                 2005-01-01           Congo Republic         39.3
## 18166                 2000-01-01           Congo Republic         33.3
## 18167                 1995-01-01           Congo Republic         31.4
## 18168                 1990-01-01           Congo Republic         32.2
## 18169                 2015-01-01           Congo Republic         43.5
## 18170                 2010-01-01           Congo Republic         41.2
## 18171                 2005-01-01           Congo Republic         39.3
## 18172                 2000-01-01           Congo Republic         33.3
## 18173                 1995-01-01           Congo Republic         31.4
## 18174                 1990-01-01           Congo Republic         32.2
## 18175                 2015-01-01           Congo Republic         43.5
## 18176                 2010-01-01           Congo Republic         41.2
## 18177                 2005-01-01           Congo Republic         39.3
## 18178                 2000-01-01           Congo Republic         33.3
## 18179                 1995-01-01           Congo Republic         31.4
## 18180                 1990-01-01           Congo Republic         32.2
## 18181                 2015-01-01           Congo Republic         43.5
## 18182                 2010-01-01           Congo Republic         41.2
## 18183                 2005-01-01           Congo Republic         39.3
## 18184                 2000-01-01           Congo Republic         33.3
## 18185                 1995-01-01           Congo Republic         31.4
## 18186                 1990-01-01           Congo Republic         32.2
## 18187                 2015-01-01           Congo Republic         43.5
## 18188                 2010-01-01           Congo Republic         41.2
## 18189                 2005-01-01           Congo Republic         39.3
## 18190                 2000-01-01           Congo Republic         33.3
## 18191                 1995-01-01           Congo Republic         31.4
## 18192                 1990-01-01           Congo Republic         32.2
## 18193                 2015-01-01           Congo Republic         43.5
## 18194                 2010-01-01           Congo Republic         41.2
## 18195                 2005-01-01           Congo Republic         39.3
## 18196                 2000-01-01           Congo Republic         33.3
## 18197                 1995-01-01           Congo Republic         31.4
## 18198                 1990-01-01           Congo Republic         32.2
## 18199                 2015-01-01           Congo Republic         43.5
## 18200                 2010-01-01           Congo Republic         41.2
## 18201                 2005-01-01           Congo Republic         39.3
## 18202                 2000-01-01           Congo Republic         33.3
## 18203                 1995-01-01           Congo Republic         31.4
## 18204                 1990-01-01           Congo Republic         32.2
## 18205                 2015-01-01           Congo Republic         43.5
## 18206                 2010-01-01           Congo Republic         41.2
## 18207                 2005-01-01           Congo Republic         39.3
## 18208                 2000-01-01           Congo Republic         33.3
## 18209                 1995-01-01           Congo Republic         31.4
## 18210                 1990-01-01           Congo Republic         32.2
## 18211                 2015-01-01           Congo Republic         43.5
## 18212                 2010-01-01           Congo Republic         41.2
## 18213                 2005-01-01           Congo Republic         39.3
## 18214                 2000-01-01           Congo Republic         33.3
## 18215                 1995-01-01           Congo Republic         31.4
## 18216                 1990-01-01           Congo Republic         32.2
## 18217                 2015-01-01           Congo Republic         43.5
## 18218                 2010-01-01           Congo Republic         41.2
## 18219                 2005-01-01           Congo Republic         39.3
## 18220                 2000-01-01           Congo Republic         33.3
## 18221                 1995-01-01           Congo Republic         31.4
## 18222                 1990-01-01           Congo Republic         32.2
## 18223                 2015-01-01           Congo Republic         43.5
## 18224                 2010-01-01           Congo Republic         41.2
## 18225                 2005-01-01           Congo Republic         39.3
## 18226                 2000-01-01           Congo Republic         33.3
## 18227                 1995-01-01           Congo Republic         31.4
## 18228                 1990-01-01           Congo Republic         32.2
## 18229                 2015-01-01                 DR Congo         40.4
## 18230                 2010-01-01                 DR Congo         39.3
## 18231                 2005-01-01                 DR Congo         38.1
## 18232                 2000-01-01                 DR Congo         36.2
## 18233                 1995-01-01                 DR Congo         36.1
## 18234                 1990-01-01                 DR Congo         35.6
## 18235                 2015-01-01                 DR Congo         40.4
## 18236                 2010-01-01                 DR Congo         39.3
## 18237                 2005-01-01                 DR Congo         38.1
## 18238                 2000-01-01                 DR Congo         36.2
## 18239                 1995-01-01                 DR Congo         36.1
## 18240                 1990-01-01                 DR Congo         35.6
## 18241                 2015-01-01                 DR Congo         40.4
## 18242                 2010-01-01                 DR Congo         39.3
## 18243                 2005-01-01                 DR Congo         38.1
## 18244                 2000-01-01                 DR Congo         36.2
## 18245                 1995-01-01                 DR Congo         36.1
## 18246                 1990-01-01                 DR Congo         35.6
## 18247                 2015-01-01                 DR Congo         40.4
## 18248                 2010-01-01                 DR Congo         39.3
## 18249                 2005-01-01                 DR Congo         38.1
## 18250                 2000-01-01                 DR Congo         36.2
## 18251                 1995-01-01                 DR Congo         36.1
## 18252                 1990-01-01                 DR Congo         35.6
## 18253                 2015-01-01                 DR Congo         40.4
## 18254                 2010-01-01                 DR Congo         39.3
## 18255                 2005-01-01                 DR Congo         38.1
## 18256                 2000-01-01                 DR Congo         36.2
## 18257                 1995-01-01                 DR Congo         36.1
## 18258                 1990-01-01                 DR Congo         35.6
## 18259                 2015-01-01                 DR Congo         40.4
## 18260                 2010-01-01                 DR Congo         39.3
## 18261                 2005-01-01                 DR Congo         38.1
## 18262                 2000-01-01                 DR Congo         36.2
## 18263                 1995-01-01                 DR Congo         36.1
## 18264                 1990-01-01                 DR Congo         35.6
## 18265                 2015-01-01                 DR Congo         40.4
## 18266                 2010-01-01                 DR Congo         39.3
## 18267                 2005-01-01                 DR Congo         38.1
## 18268                 2000-01-01                 DR Congo         36.2
## 18269                 1995-01-01                 DR Congo         36.1
## 18270                 1990-01-01                 DR Congo         35.6
## 18271                 2015-01-01                 DR Congo         40.4
## 18272                 2010-01-01                 DR Congo         39.3
## 18273                 2005-01-01                 DR Congo         38.1
## 18274                 2000-01-01                 DR Congo         36.2
## 18275                 1995-01-01                 DR Congo         36.1
## 18276                 1990-01-01                 DR Congo         35.6
## 18277                 2015-01-01                 DR Congo         40.4
## 18278                 2010-01-01                 DR Congo         39.3
## 18279                 2005-01-01                 DR Congo         38.1
## 18280                 2000-01-01                 DR Congo         36.2
## 18281                 1995-01-01                 DR Congo         36.1
## 18282                 1990-01-01                 DR Congo         35.6
## 18283                 2015-01-01                 DR Congo         40.4
## 18284                 2010-01-01                 DR Congo         39.3
## 18285                 2005-01-01                 DR Congo         38.1
## 18286                 2000-01-01                 DR Congo         36.2
## 18287                 1995-01-01                 DR Congo         36.1
## 18288                 1990-01-01                 DR Congo         35.6
## 18289                 2015-01-01                 DR Congo         40.4
## 18290                 2010-01-01                 DR Congo         39.3
## 18291                 2005-01-01                 DR Congo         38.1
## 18292                 2000-01-01                 DR Congo         36.2
## 18293                 1995-01-01                 DR Congo         36.1
## 18294                 1990-01-01                 DR Congo         35.6
## 18295                 2015-01-01                 DR Congo         40.4
## 18296                 2010-01-01                 DR Congo         39.3
## 18297                 2005-01-01                 DR Congo         38.1
## 18298                 2000-01-01                 DR Congo         36.2
## 18299                 1995-01-01                 DR Congo         36.1
## 18300                 1990-01-01                 DR Congo         35.6
## 18301                 2015-01-01                 DR Congo         40.4
## 18302                 2010-01-01                 DR Congo         39.3
## 18303                 2005-01-01                 DR Congo         38.1
## 18304                 2000-01-01                 DR Congo         36.2
## 18305                 1995-01-01                 DR Congo         36.1
## 18306                 1990-01-01                 DR Congo         35.6
## 18307                 2015-01-01                 DR Congo         40.4
## 18308                 2010-01-01                 DR Congo         39.3
## 18309                 2005-01-01                 DR Congo         38.1
## 18310                 2000-01-01                 DR Congo         36.2
## 18311                 1995-01-01                 DR Congo         36.1
## 18312                 1990-01-01                 DR Congo         35.6
## 18313                 2015-01-01                 DR Congo         40.4
## 18314                 2010-01-01                 DR Congo         39.3
## 18315                 2005-01-01                 DR Congo         38.1
## 18316                 2000-01-01                 DR Congo         36.2
## 18317                 1995-01-01                 DR Congo         36.1
## 18318                 1990-01-01                 DR Congo         35.6
## 18319                 2015-01-01                 DR Congo         40.4
## 18320                 2010-01-01                 DR Congo         39.3
## 18321                 2005-01-01                 DR Congo         38.1
## 18322                 2000-01-01                 DR Congo         36.2
## 18323                 1995-01-01                 DR Congo         36.1
## 18324                 1990-01-01                 DR Congo         35.6
## 18325                 2015-01-01                 DR Congo         40.4
## 18326                 2010-01-01                 DR Congo         39.3
## 18327                 2005-01-01                 DR Congo         38.1
## 18328                 2000-01-01                 DR Congo         36.2
## 18329                 1995-01-01                 DR Congo         36.1
## 18330                 1990-01-01                 DR Congo         35.6
## 18331                 2015-01-01                 DR Congo         40.4
## 18332                 2010-01-01                 DR Congo         39.3
## 18333                 2005-01-01                 DR Congo         38.1
## 18334                 2000-01-01                 DR Congo         36.2
## 18335                 1995-01-01                 DR Congo         36.1
## 18336                 1990-01-01                 DR Congo         35.6
## 18337                 2015-01-01                 DR Congo         40.4
## 18338                 2010-01-01                 DR Congo         39.3
## 18339                 2005-01-01                 DR Congo         38.1
## 18340                 2000-01-01                 DR Congo         36.2
## 18341                 1995-01-01                 DR Congo         36.1
## 18342                 1990-01-01                 DR Congo         35.6
## 18343                 2015-01-01                 DR Congo         40.4
## 18344                 2010-01-01                 DR Congo         39.3
## 18345                 2005-01-01                 DR Congo         38.1
## 18346                 2000-01-01                 DR Congo         36.2
## 18347                 1995-01-01                 DR Congo         36.1
## 18348                 1990-01-01                 DR Congo         35.6
## 18349                 2015-01-01                 DR Congo         40.4
## 18350                 2010-01-01                 DR Congo         39.3
## 18351                 2005-01-01                 DR Congo         38.1
## 18352                 2000-01-01                 DR Congo         36.2
## 18353                 1995-01-01                 DR Congo         36.1
## 18354                 1990-01-01                 DR Congo         35.6
## 18355                 2015-01-01                 DR Congo         40.4
## 18356                 2010-01-01                 DR Congo         39.3
## 18357                 2005-01-01                 DR Congo         38.1
## 18358                 2000-01-01                 DR Congo         36.2
## 18359                 1995-01-01                 DR Congo         36.1
## 18360                 1990-01-01                 DR Congo         35.6
## 18361                 2015-01-01                 DR Congo         40.4
## 18362                 2010-01-01                 DR Congo         39.3
## 18363                 2005-01-01                 DR Congo         38.1
## 18364                 2000-01-01                 DR Congo         36.2
## 18365                 1995-01-01                 DR Congo         36.1
## 18366                 1990-01-01                 DR Congo         35.6
## 18367                 2015-01-01                 DR Congo         40.4
## 18368                 2010-01-01                 DR Congo         39.3
## 18369                 2005-01-01                 DR Congo         38.1
## 18370                 2000-01-01                 DR Congo         36.2
## 18371                 1995-01-01                 DR Congo         36.1
## 18372                 1990-01-01                 DR Congo         35.6
## 18373                 2015-01-01                 DR Congo         40.4
## 18374                 2010-01-01                 DR Congo         39.3
## 18375                 2005-01-01                 DR Congo         38.1
## 18376                 2000-01-01                 DR Congo         36.2
## 18377                 1995-01-01                 DR Congo         36.1
## 18378                 1990-01-01                 DR Congo         35.6
## 18379                 2015-01-01                 DR Congo         40.4
## 18380                 2010-01-01                 DR Congo         39.3
## 18381                 2005-01-01                 DR Congo         38.1
## 18382                 2000-01-01                 DR Congo         36.2
## 18383                 1995-01-01                 DR Congo         36.1
## 18384                 1990-01-01                 DR Congo         35.6
## 18385                 2015-01-01                 DR Congo         40.4
## 18386                 2010-01-01                 DR Congo         39.3
## 18387                 2005-01-01                 DR Congo         38.1
## 18388                 2000-01-01                 DR Congo         36.2
## 18389                 1995-01-01                 DR Congo         36.1
## 18390                 1990-01-01                 DR Congo         35.6
## 18391                 2015-01-01                 DR Congo         40.4
## 18392                 2010-01-01                 DR Congo         39.3
## 18393                 2005-01-01                 DR Congo         38.1
## 18394                 2000-01-01                 DR Congo         36.2
## 18395                 1995-01-01                 DR Congo         36.1
## 18396                 1990-01-01                 DR Congo         35.6
## 18397                 2015-01-01                 DR Congo         40.4
## 18398                 2010-01-01                 DR Congo         39.3
## 18399                 2005-01-01                 DR Congo         38.1
## 18400                 2000-01-01                 DR Congo         36.2
## 18401                 1995-01-01                 DR Congo         36.1
## 18402                 1990-01-01                 DR Congo         35.6
## 18403                 2015-01-01                 DR Congo         40.4
## 18404                 2010-01-01                 DR Congo         39.3
## 18405                 2005-01-01                 DR Congo         38.1
## 18406                 2000-01-01                 DR Congo         36.2
## 18407                 1995-01-01                 DR Congo         36.1
## 18408                 1990-01-01                 DR Congo         35.6
## 18409                 2015-01-01                 DR Congo         40.4
## 18410                 2010-01-01                 DR Congo         39.3
## 18411                 2005-01-01                 DR Congo         38.1
## 18412                 2000-01-01                 DR Congo         36.2
## 18413                 1995-01-01                 DR Congo         36.1
## 18414                 1990-01-01                 DR Congo         35.6
## 18415                 2015-01-01                 DR Congo         40.4
## 18416                 2010-01-01                 DR Congo         39.3
## 18417                 2005-01-01                 DR Congo         38.1
## 18418                 2000-01-01                 DR Congo         36.2
## 18419                 1995-01-01                 DR Congo         36.1
## 18420                 1990-01-01                 DR Congo         35.6
## 18421                 2015-01-01                 DR Congo         40.4
## 18422                 2010-01-01                 DR Congo         39.3
## 18423                 2005-01-01                 DR Congo         38.1
## 18424                 2000-01-01                 DR Congo         36.2
## 18425                 1995-01-01                 DR Congo         36.1
## 18426                 1990-01-01                 DR Congo         35.6
## 18427                 2015-01-01                 DR Congo         40.4
## 18428                 2010-01-01                 DR Congo         39.3
## 18429                 2005-01-01                 DR Congo         38.1
## 18430                 2000-01-01                 DR Congo         36.2
## 18431                 1995-01-01                 DR Congo         36.1
## 18432                 1990-01-01                 DR Congo         35.6
## 18433                 2015-01-01                 DR Congo         40.4
## 18434                 2010-01-01                 DR Congo         39.3
## 18435                 2005-01-01                 DR Congo         38.1
## 18436                 2000-01-01                 DR Congo         36.2
## 18437                 1995-01-01                 DR Congo         36.1
## 18438                 1990-01-01                 DR Congo         35.6
## 18439                 2015-01-01                 DR Congo         40.4
## 18440                 2010-01-01                 DR Congo         39.3
## 18441                 2005-01-01                 DR Congo         38.1
## 18442                 2000-01-01                 DR Congo         36.2
## 18443                 1995-01-01                 DR Congo         36.1
## 18444                 1990-01-01                 DR Congo         35.6
## 18445                 2015-01-01                 DR Congo         40.4
## 18446                 2010-01-01                 DR Congo         39.3
## 18447                 2005-01-01                 DR Congo         38.1
## 18448                 2000-01-01                 DR Congo         36.2
## 18449                 1995-01-01                 DR Congo         36.1
## 18450                 1990-01-01                 DR Congo         35.6
## 18451                 2015-01-01                 DR Congo         40.4
## 18452                 2010-01-01                 DR Congo         39.3
## 18453                 2005-01-01                 DR Congo         38.1
## 18454                 2000-01-01                 DR Congo         36.2
## 18455                 1995-01-01                 DR Congo         36.1
## 18456                 1990-01-01                 DR Congo         35.6
## 18457                 2015-01-01                 DR Congo         40.4
## 18458                 2010-01-01                 DR Congo         39.3
## 18459                 2005-01-01                 DR Congo         38.1
## 18460                 2000-01-01                 DR Congo         36.2
## 18461                 1995-01-01                 DR Congo         36.1
## 18462                 1990-01-01                 DR Congo         35.6
## 18463                 2015-01-01                 DR Congo         40.4
## 18464                 2010-01-01                 DR Congo         39.3
## 18465                 2005-01-01                 DR Congo         38.1
## 18466                 2000-01-01                 DR Congo         36.2
## 18467                 1995-01-01                 DR Congo         36.1
## 18468                 1990-01-01                 DR Congo         35.6
## 18469                 2015-01-01                 DR Congo         40.4
## 18470                 2010-01-01                 DR Congo         39.3
## 18471                 2005-01-01                 DR Congo         38.1
## 18472                 2000-01-01                 DR Congo         36.2
## 18473                 1995-01-01                 DR Congo         36.1
## 18474                 1990-01-01                 DR Congo         35.6
## 18475                 2015-01-01                 DR Congo         40.4
## 18476                 2010-01-01                 DR Congo         39.3
## 18477                 2005-01-01                 DR Congo         38.1
## 18478                 2000-01-01                 DR Congo         36.2
## 18479                 1995-01-01                 DR Congo         36.1
## 18480                 1990-01-01                 DR Congo         35.6
## 18481                 2015-01-01                 DR Congo         40.4
## 18482                 2010-01-01                 DR Congo         39.3
## 18483                 2005-01-01                 DR Congo         38.1
## 18484                 2000-01-01                 DR Congo         36.2
## 18485                 1995-01-01                 DR Congo         36.1
## 18486                 1990-01-01                 DR Congo         35.6
## 18487                 2015-01-01               Costa Rica         72.9
## 18488                 2010-01-01               Costa Rica         70.8
## 18489                 2005-01-01               Costa Rica         68.6
## 18490                 2000-01-01               Costa Rica         65.4
## 18491                 1995-01-01               Costa Rica         62.8
## 18492                 1990-01-01               Costa Rica         62.1
## 18493                 2015-01-01               Costa Rica         72.9
## 18494                 2010-01-01               Costa Rica         70.8
## 18495                 2005-01-01               Costa Rica         68.6
## 18496                 2000-01-01               Costa Rica         65.4
## 18497                 1995-01-01               Costa Rica         62.8
## 18498                 1990-01-01               Costa Rica         62.1
## 18499                 2015-01-01               Costa Rica         72.9
## 18500                 2010-01-01               Costa Rica         70.8
## 18501                 2005-01-01               Costa Rica         68.6
## 18502                 2000-01-01               Costa Rica         65.4
## 18503                 1995-01-01               Costa Rica         62.8
## 18504                 1990-01-01               Costa Rica         62.1
## 18505                 2015-01-01               Costa Rica         72.9
## 18506                 2010-01-01               Costa Rica         70.8
## 18507                 2005-01-01               Costa Rica         68.6
## 18508                 2000-01-01               Costa Rica         65.4
## 18509                 1995-01-01               Costa Rica         62.8
## 18510                 1990-01-01               Costa Rica         62.1
## 18511                 2015-01-01               Costa Rica         72.9
## 18512                 2010-01-01               Costa Rica         70.8
## 18513                 2005-01-01               Costa Rica         68.6
## 18514                 2000-01-01               Costa Rica         65.4
## 18515                 1995-01-01               Costa Rica         62.8
## 18516                 1990-01-01               Costa Rica         62.1
## 18517                 2015-01-01               Costa Rica         72.9
## 18518                 2010-01-01               Costa Rica         70.8
## 18519                 2005-01-01               Costa Rica         68.6
## 18520                 2000-01-01               Costa Rica         65.4
## 18521                 1995-01-01               Costa Rica         62.8
## 18522                 1990-01-01               Costa Rica         62.1
## 18523                 2015-01-01               Costa Rica         72.9
## 18524                 2010-01-01               Costa Rica         70.8
## 18525                 2005-01-01               Costa Rica         68.6
## 18526                 2000-01-01               Costa Rica         65.4
## 18527                 1995-01-01               Costa Rica         62.8
## 18528                 1990-01-01               Costa Rica         62.1
## 18529                 2015-01-01               Costa Rica         72.9
## 18530                 2010-01-01               Costa Rica         70.8
## 18531                 2005-01-01               Costa Rica         68.6
## 18532                 2000-01-01               Costa Rica         65.4
## 18533                 1995-01-01               Costa Rica         62.8
## 18534                 1990-01-01               Costa Rica         62.1
## 18535                 2015-01-01               Costa Rica         72.9
## 18536                 2010-01-01               Costa Rica         70.8
## 18537                 2005-01-01               Costa Rica         68.6
## 18538                 2000-01-01               Costa Rica         65.4
## 18539                 1995-01-01               Costa Rica         62.8
## 18540                 1990-01-01               Costa Rica         62.1
## 18541                 2015-01-01               Costa Rica         72.9
## 18542                 2010-01-01               Costa Rica         70.8
## 18543                 2005-01-01               Costa Rica         68.6
## 18544                 2000-01-01               Costa Rica         65.4
## 18545                 1995-01-01               Costa Rica         62.8
## 18546                 1990-01-01               Costa Rica         62.1
## 18547                 2015-01-01               Costa Rica         72.9
## 18548                 2010-01-01               Costa Rica         70.8
## 18549                 2005-01-01               Costa Rica         68.6
## 18550                 2000-01-01               Costa Rica         65.4
## 18551                 1995-01-01               Costa Rica         62.8
## 18552                 1990-01-01               Costa Rica         62.1
## 18553                 2015-01-01               Costa Rica         72.9
## 18554                 2010-01-01               Costa Rica         70.8
## 18555                 2005-01-01               Costa Rica         68.6
## 18556                 2000-01-01               Costa Rica         65.4
## 18557                 1995-01-01               Costa Rica         62.8
## 18558                 1990-01-01               Costa Rica         62.1
## 18559                 2015-01-01               Costa Rica         72.9
## 18560                 2010-01-01               Costa Rica         70.8
## 18561                 2005-01-01               Costa Rica         68.6
## 18562                 2000-01-01               Costa Rica         65.4
## 18563                 1995-01-01               Costa Rica         62.8
## 18564                 1990-01-01               Costa Rica         62.1
## 18565                 2015-01-01               Costa Rica         72.9
## 18566                 2010-01-01               Costa Rica         70.8
## 18567                 2005-01-01               Costa Rica         68.6
## 18568                 2000-01-01               Costa Rica         65.4
## 18569                 1995-01-01               Costa Rica         62.8
## 18570                 1990-01-01               Costa Rica         62.1
## 18571                 2015-01-01               Costa Rica         72.9
## 18572                 2010-01-01               Costa Rica         70.8
## 18573                 2005-01-01               Costa Rica         68.6
## 18574                 2000-01-01               Costa Rica         65.4
## 18575                 1995-01-01               Costa Rica         62.8
## 18576                 1990-01-01               Costa Rica         62.1
## 18577                 2015-01-01               Costa Rica         72.9
## 18578                 2010-01-01               Costa Rica         70.8
## 18579                 2005-01-01               Costa Rica         68.6
## 18580                 2000-01-01               Costa Rica         65.4
## 18581                 1995-01-01               Costa Rica         62.8
## 18582                 1990-01-01               Costa Rica         62.1
## 18583                 2015-01-01               Costa Rica         72.9
## 18584                 2010-01-01               Costa Rica         70.8
## 18585                 2005-01-01               Costa Rica         68.6
## 18586                 2000-01-01               Costa Rica         65.4
## 18587                 1995-01-01               Costa Rica         62.8
## 18588                 1990-01-01               Costa Rica         62.1
## 18589                 2015-01-01               Costa Rica         72.9
## 18590                 2010-01-01               Costa Rica         70.8
## 18591                 2005-01-01               Costa Rica         68.6
## 18592                 2000-01-01               Costa Rica         65.4
## 18593                 1995-01-01               Costa Rica         62.8
## 18594                 1990-01-01               Costa Rica         62.1
## 18595                 2015-01-01               Costa Rica         72.9
## 18596                 2010-01-01               Costa Rica         70.8
## 18597                 2005-01-01               Costa Rica         68.6
## 18598                 2000-01-01               Costa Rica         65.4
## 18599                 1995-01-01               Costa Rica         62.8
## 18600                 1990-01-01               Costa Rica         62.1
## 18601                 2015-01-01               Costa Rica         72.9
## 18602                 2010-01-01               Costa Rica         70.8
## 18603                 2005-01-01               Costa Rica         68.6
## 18604                 2000-01-01               Costa Rica         65.4
## 18605                 1995-01-01               Costa Rica         62.8
## 18606                 1990-01-01               Costa Rica         62.1
## 18607                 2015-01-01               Costa Rica         72.9
## 18608                 2010-01-01               Costa Rica         70.8
## 18609                 2005-01-01               Costa Rica         68.6
## 18610                 2000-01-01               Costa Rica         65.4
## 18611                 1995-01-01               Costa Rica         62.8
## 18612                 1990-01-01               Costa Rica         62.1
## 18613                 2015-01-01               Costa Rica         72.9
## 18614                 2010-01-01               Costa Rica         70.8
## 18615                 2005-01-01               Costa Rica         68.6
## 18616                 2000-01-01               Costa Rica         65.4
## 18617                 1995-01-01               Costa Rica         62.8
## 18618                 1990-01-01               Costa Rica         62.1
## 18619                 2015-01-01               Costa Rica         72.9
## 18620                 2010-01-01               Costa Rica         70.8
## 18621                 2005-01-01               Costa Rica         68.6
## 18622                 2000-01-01               Costa Rica         65.4
## 18623                 1995-01-01               Costa Rica         62.8
## 18624                 1990-01-01               Costa Rica         62.1
## 18625                 2015-01-01               Costa Rica         72.9
## 18626                 2010-01-01               Costa Rica         70.8
## 18627                 2005-01-01               Costa Rica         68.6
## 18628                 2000-01-01               Costa Rica         65.4
## 18629                 1995-01-01               Costa Rica         62.8
## 18630                 1990-01-01               Costa Rica         62.1
## 18631                 2015-01-01               Costa Rica         72.9
## 18632                 2010-01-01               Costa Rica         70.8
## 18633                 2005-01-01               Costa Rica         68.6
## 18634                 2000-01-01               Costa Rica         65.4
## 18635                 1995-01-01               Costa Rica         62.8
## 18636                 1990-01-01               Costa Rica         62.1
## 18637                 2015-01-01               Costa Rica         72.9
## 18638                 2010-01-01               Costa Rica         70.8
## 18639                 2005-01-01               Costa Rica         68.6
## 18640                 2000-01-01               Costa Rica         65.4
## 18641                 1995-01-01               Costa Rica         62.8
## 18642                 1990-01-01               Costa Rica         62.1
## 18643                 2015-01-01               Costa Rica         72.9
## 18644                 2010-01-01               Costa Rica         70.8
## 18645                 2005-01-01               Costa Rica         68.6
## 18646                 2000-01-01               Costa Rica         65.4
## 18647                 1995-01-01               Costa Rica         62.8
## 18648                 1990-01-01               Costa Rica         62.1
## 18649                 2015-01-01               Costa Rica         72.9
## 18650                 2010-01-01               Costa Rica         70.8
## 18651                 2005-01-01               Costa Rica         68.6
## 18652                 2000-01-01               Costa Rica         65.4
## 18653                 1995-01-01               Costa Rica         62.8
## 18654                 1990-01-01               Costa Rica         62.1
## 18655                 2015-01-01               Costa Rica         72.9
## 18656                 2010-01-01               Costa Rica         70.8
## 18657                 2005-01-01               Costa Rica         68.6
## 18658                 2000-01-01               Costa Rica         65.4
## 18659                 1995-01-01               Costa Rica         62.8
## 18660                 1990-01-01               Costa Rica         62.1
## 18661                 2015-01-01               Costa Rica         72.9
## 18662                 2010-01-01               Costa Rica         70.8
## 18663                 2005-01-01               Costa Rica         68.6
## 18664                 2000-01-01               Costa Rica         65.4
## 18665                 1995-01-01               Costa Rica         62.8
## 18666                 1990-01-01               Costa Rica         62.1
## 18667                 2015-01-01               Costa Rica         72.9
## 18668                 2010-01-01               Costa Rica         70.8
## 18669                 2005-01-01               Costa Rica         68.6
## 18670                 2000-01-01               Costa Rica         65.4
## 18671                 1995-01-01               Costa Rica         62.8
## 18672                 1990-01-01               Costa Rica         62.1
## 18673                 2015-01-01               Costa Rica         72.9
## 18674                 2010-01-01               Costa Rica         70.8
## 18675                 2005-01-01               Costa Rica         68.6
## 18676                 2000-01-01               Costa Rica         65.4
## 18677                 1995-01-01               Costa Rica         62.8
## 18678                 1990-01-01               Costa Rica         62.1
## 18679                 2015-01-01               Costa Rica         72.9
## 18680                 2010-01-01               Costa Rica         70.8
## 18681                 2005-01-01               Costa Rica         68.6
## 18682                 2000-01-01               Costa Rica         65.4
## 18683                 1995-01-01               Costa Rica         62.8
## 18684                 1990-01-01               Costa Rica         62.1
## 18685                 2015-01-01               Costa Rica         72.9
## 18686                 2010-01-01               Costa Rica         70.8
## 18687                 2005-01-01               Costa Rica         68.6
## 18688                 2000-01-01               Costa Rica         65.4
## 18689                 1995-01-01               Costa Rica         62.8
## 18690                 1990-01-01               Costa Rica         62.1
## 18691                 2015-01-01               Costa Rica         72.9
## 18692                 2010-01-01               Costa Rica         70.8
## 18693                 2005-01-01               Costa Rica         68.6
## 18694                 2000-01-01               Costa Rica         65.4
## 18695                 1995-01-01               Costa Rica         62.8
## 18696                 1990-01-01               Costa Rica         62.1
## 18697                 2015-01-01               Costa Rica         72.9
## 18698                 2010-01-01               Costa Rica         70.8
## 18699                 2005-01-01               Costa Rica         68.6
## 18700                 2000-01-01               Costa Rica         65.4
## 18701                 1995-01-01               Costa Rica         62.8
## 18702                 1990-01-01               Costa Rica         62.1
## 18703                 2015-01-01               Costa Rica         72.9
## 18704                 2010-01-01               Costa Rica         70.8
## 18705                 2005-01-01               Costa Rica         68.6
## 18706                 2000-01-01               Costa Rica         65.4
## 18707                 1995-01-01               Costa Rica         62.8
## 18708                 1990-01-01               Costa Rica         62.1
## 18709                 2015-01-01               Costa Rica         72.9
## 18710                 2010-01-01               Costa Rica         70.8
## 18711                 2005-01-01               Costa Rica         68.6
## 18712                 2000-01-01               Costa Rica         65.4
## 18713                 1995-01-01               Costa Rica         62.8
## 18714                 1990-01-01               Costa Rica         62.1
## 18715                 2015-01-01               Costa Rica         72.9
## 18716                 2010-01-01               Costa Rica         70.8
## 18717                 2005-01-01               Costa Rica         68.6
## 18718                 2000-01-01               Costa Rica         65.4
## 18719                 1995-01-01               Costa Rica         62.8
## 18720                 1990-01-01               Costa Rica         62.1
## 18721                 2015-01-01               Costa Rica         72.9
## 18722                 2010-01-01               Costa Rica         70.8
## 18723                 2005-01-01               Costa Rica         68.6
## 18724                 2000-01-01               Costa Rica         65.4
## 18725                 1995-01-01               Costa Rica         62.8
## 18726                 1990-01-01               Costa Rica         62.1
## 18727                 2015-01-01               Costa Rica         72.9
## 18728                 2010-01-01               Costa Rica         70.8
## 18729                 2005-01-01               Costa Rica         68.6
## 18730                 2000-01-01               Costa Rica         65.4
## 18731                 1995-01-01               Costa Rica         62.8
## 18732                 1990-01-01               Costa Rica         62.1
## 18733                 2015-01-01               Costa Rica         72.9
## 18734                 2010-01-01               Costa Rica         70.8
## 18735                 2005-01-01               Costa Rica         68.6
## 18736                 2000-01-01               Costa Rica         65.4
## 18737                 1995-01-01               Costa Rica         62.8
## 18738                 1990-01-01               Costa Rica         62.1
## 18739                 2015-01-01               Costa Rica         72.9
## 18740                 2010-01-01               Costa Rica         70.8
## 18741                 2005-01-01               Costa Rica         68.6
## 18742                 2000-01-01               Costa Rica         65.4
## 18743                 1995-01-01               Costa Rica         62.8
## 18744                 1990-01-01               Costa Rica         62.1
## 18745                 2015-01-01               Costa Rica         72.9
## 18746                 2010-01-01               Costa Rica         70.8
## 18747                 2005-01-01               Costa Rica         68.6
## 18748                 2000-01-01               Costa Rica         65.4
## 18749                 1995-01-01               Costa Rica         62.8
## 18750                 1990-01-01               Costa Rica         62.1
## 18751                 2015-01-01               Costa Rica         72.9
## 18752                 2010-01-01               Costa Rica         70.8
## 18753                 2005-01-01               Costa Rica         68.6
## 18754                 2000-01-01               Costa Rica         65.4
## 18755                 1995-01-01               Costa Rica         62.8
## 18756                 1990-01-01               Costa Rica         62.1
## 18757                 2015-01-01               Costa Rica         72.9
## 18758                 2010-01-01               Costa Rica         70.8
## 18759                 2005-01-01               Costa Rica         68.6
## 18760                 2000-01-01               Costa Rica         65.4
## 18761                 1995-01-01               Costa Rica         62.8
## 18762                 1990-01-01               Costa Rica         62.1
## 18763                 2015-01-01               Costa Rica         72.9
## 18764                 2010-01-01               Costa Rica         70.8
## 18765                 2005-01-01               Costa Rica         68.6
## 18766                 2000-01-01               Costa Rica         65.4
## 18767                 1995-01-01               Costa Rica         62.8
## 18768                 1990-01-01               Costa Rica         62.1
## 18769                 2015-01-01               Costa Rica         72.9
## 18770                 2010-01-01               Costa Rica         70.8
## 18771                 2005-01-01               Costa Rica         68.6
## 18772                 2000-01-01               Costa Rica         65.4
## 18773                 1995-01-01               Costa Rica         62.8
## 18774                 1990-01-01               Costa Rica         62.1
## 18775                 2015-01-01               Costa Rica         72.9
## 18776                 2010-01-01               Costa Rica         70.8
## 18777                 2005-01-01               Costa Rica         68.6
## 18778                 2000-01-01               Costa Rica         65.4
## 18779                 1995-01-01               Costa Rica         62.8
## 18780                 1990-01-01               Costa Rica         62.1
## 18781                 2015-01-01               Costa Rica         72.9
## 18782                 2010-01-01               Costa Rica         70.8
## 18783                 2005-01-01               Costa Rica         68.6
## 18784                 2000-01-01               Costa Rica         65.4
## 18785                 1995-01-01               Costa Rica         62.8
## 18786                 1990-01-01               Costa Rica         62.1
## 18787                 2015-01-01               Costa Rica         72.9
## 18788                 2010-01-01               Costa Rica         70.8
## 18789                 2005-01-01               Costa Rica         68.6
## 18790                 2000-01-01               Costa Rica         65.4
## 18791                 1995-01-01               Costa Rica         62.8
## 18792                 1990-01-01               Costa Rica         62.1
## 18793                 2015-01-01               Costa Rica         72.9
## 18794                 2010-01-01               Costa Rica         70.8
## 18795                 2005-01-01               Costa Rica         68.6
## 18796                 2000-01-01               Costa Rica         65.4
## 18797                 1995-01-01               Costa Rica         62.8
## 18798                 1990-01-01               Costa Rica         62.1
## 18799                 2015-01-01               Costa Rica         72.9
## 18800                 2010-01-01               Costa Rica         70.8
## 18801                 2005-01-01               Costa Rica         68.6
## 18802                 2000-01-01               Costa Rica         65.4
## 18803                 1995-01-01               Costa Rica         62.8
## 18804                 1990-01-01               Costa Rica         62.1
## 18805                 2015-01-01               Costa Rica         72.9
## 18806                 2010-01-01               Costa Rica         70.8
## 18807                 2005-01-01               Costa Rica         68.6
## 18808                 2000-01-01               Costa Rica         65.4
## 18809                 1995-01-01               Costa Rica         62.8
## 18810                 1990-01-01               Costa Rica         62.1
## 18811                 2015-01-01               Costa Rica         72.9
## 18812                 2010-01-01               Costa Rica         70.8
## 18813                 2005-01-01               Costa Rica         68.6
## 18814                 2000-01-01               Costa Rica         65.4
## 18815                 1995-01-01               Costa Rica         62.8
## 18816                 1990-01-01               Costa Rica         62.1
## 18817                 2015-01-01               Costa Rica         72.9
## 18818                 2010-01-01               Costa Rica         70.8
## 18819                 2005-01-01               Costa Rica         68.6
## 18820                 2000-01-01               Costa Rica         65.4
## 18821                 1995-01-01               Costa Rica         62.8
## 18822                 1990-01-01               Costa Rica         62.1
## 18823                 2015-01-01               Costa Rica         72.9
## 18824                 2010-01-01               Costa Rica         70.8
## 18825                 2005-01-01               Costa Rica         68.6
## 18826                 2000-01-01               Costa Rica         65.4
## 18827                 1995-01-01               Costa Rica         62.8
## 18828                 1990-01-01               Costa Rica         62.1
## 18829                 2015-01-01               Costa Rica         72.9
## 18830                 2010-01-01               Costa Rica         70.8
## 18831                 2005-01-01               Costa Rica         68.6
## 18832                 2000-01-01               Costa Rica         65.4
## 18833                 1995-01-01               Costa Rica         62.8
## 18834                 1990-01-01               Costa Rica         62.1
## 18835                 2015-01-01               Costa Rica         72.9
## 18836                 2010-01-01               Costa Rica         70.8
## 18837                 2005-01-01               Costa Rica         68.6
## 18838                 2000-01-01               Costa Rica         65.4
## 18839                 1995-01-01               Costa Rica         62.8
## 18840                 1990-01-01               Costa Rica         62.1
## 18841                 2015-01-01               Costa Rica         72.9
## 18842                 2010-01-01               Costa Rica         70.8
## 18843                 2005-01-01               Costa Rica         68.6
## 18844                 2000-01-01               Costa Rica         65.4
## 18845                 1995-01-01               Costa Rica         62.8
## 18846                 1990-01-01               Costa Rica         62.1
## 18847                 2015-01-01               Costa Rica         72.9
## 18848                 2010-01-01               Costa Rica         70.8
## 18849                 2005-01-01               Costa Rica         68.6
## 18850                 2000-01-01               Costa Rica         65.4
## 18851                 1995-01-01               Costa Rica         62.8
## 18852                 1990-01-01               Costa Rica         62.1
## 18853                 2015-01-01            Cote d'Ivoire         42.4
## 18854                 2010-01-01            Cote d'Ivoire         40.7
## 18855                 2005-01-01            Cote d'Ivoire         37.6
## 18856                 2000-01-01            Cote d'Ivoire         34.4
## 18857                 1995-01-01            Cote d'Ivoire         33.2
## 18858                 1990-01-01            Cote d'Ivoire         35.5
## 18859                 2015-01-01            Cote d'Ivoire         42.4
## 18860                 2010-01-01            Cote d'Ivoire         40.7
## 18861                 2005-01-01            Cote d'Ivoire         37.6
## 18862                 2000-01-01            Cote d'Ivoire         34.4
## 18863                 1995-01-01            Cote d'Ivoire         33.2
## 18864                 1990-01-01            Cote d'Ivoire         35.5
## 18865                 2015-01-01            Cote d'Ivoire         42.4
## 18866                 2010-01-01            Cote d'Ivoire         40.7
## 18867                 2005-01-01            Cote d'Ivoire         37.6
## 18868                 2000-01-01            Cote d'Ivoire         34.4
## 18869                 1995-01-01            Cote d'Ivoire         33.2
## 18870                 1990-01-01            Cote d'Ivoire         35.5
## 18871                 2015-01-01            Cote d'Ivoire         42.4
## 18872                 2010-01-01            Cote d'Ivoire         40.7
## 18873                 2005-01-01            Cote d'Ivoire         37.6
## 18874                 2000-01-01            Cote d'Ivoire         34.4
## 18875                 1995-01-01            Cote d'Ivoire         33.2
## 18876                 1990-01-01            Cote d'Ivoire         35.5
## 18877                 2015-01-01            Cote d'Ivoire         42.4
## 18878                 2010-01-01            Cote d'Ivoire         40.7
## 18879                 2005-01-01            Cote d'Ivoire         37.6
## 18880                 2000-01-01            Cote d'Ivoire         34.4
## 18881                 1995-01-01            Cote d'Ivoire         33.2
## 18882                 1990-01-01            Cote d'Ivoire         35.5
## 18883                 2015-01-01            Cote d'Ivoire         42.4
## 18884                 2010-01-01            Cote d'Ivoire         40.7
## 18885                 2005-01-01            Cote d'Ivoire         37.6
## 18886                 2000-01-01            Cote d'Ivoire         34.4
## 18887                 1995-01-01            Cote d'Ivoire         33.2
## 18888                 1990-01-01            Cote d'Ivoire         35.5
## 18889                 2015-01-01            Cote d'Ivoire         42.4
## 18890                 2010-01-01            Cote d'Ivoire         40.7
## 18891                 2005-01-01            Cote d'Ivoire         37.6
## 18892                 2000-01-01            Cote d'Ivoire         34.4
## 18893                 1995-01-01            Cote d'Ivoire         33.2
## 18894                 1990-01-01            Cote d'Ivoire         35.5
## 18895                 2015-01-01            Cote d'Ivoire         42.4
## 18896                 2010-01-01            Cote d'Ivoire         40.7
## 18897                 2005-01-01            Cote d'Ivoire         37.6
## 18898                 2000-01-01            Cote d'Ivoire         34.4
## 18899                 1995-01-01            Cote d'Ivoire         33.2
## 18900                 1990-01-01            Cote d'Ivoire         35.5
## 18901                 2015-01-01            Cote d'Ivoire         42.4
## 18902                 2010-01-01            Cote d'Ivoire         40.7
## 18903                 2005-01-01            Cote d'Ivoire         37.6
## 18904                 2000-01-01            Cote d'Ivoire         34.4
## 18905                 1995-01-01            Cote d'Ivoire         33.2
## 18906                 1990-01-01            Cote d'Ivoire         35.5
## 18907                 2015-01-01            Cote d'Ivoire         42.4
## 18908                 2010-01-01            Cote d'Ivoire         40.7
## 18909                 2005-01-01            Cote d'Ivoire         37.6
## 18910                 2000-01-01            Cote d'Ivoire         34.4
## 18911                 1995-01-01            Cote d'Ivoire         33.2
## 18912                 1990-01-01            Cote d'Ivoire         35.5
## 18913                 2015-01-01            Cote d'Ivoire         42.4
## 18914                 2010-01-01            Cote d'Ivoire         40.7
## 18915                 2005-01-01            Cote d'Ivoire         37.6
## 18916                 2000-01-01            Cote d'Ivoire         34.4
## 18917                 1995-01-01            Cote d'Ivoire         33.2
## 18918                 1990-01-01            Cote d'Ivoire         35.5
## 18919                 2015-01-01            Cote d'Ivoire         42.4
## 18920                 2010-01-01            Cote d'Ivoire         40.7
## 18921                 2005-01-01            Cote d'Ivoire         37.6
## 18922                 2000-01-01            Cote d'Ivoire         34.4
## 18923                 1995-01-01            Cote d'Ivoire         33.2
## 18924                 1990-01-01            Cote d'Ivoire         35.5
## 18925                 2015-01-01            Cote d'Ivoire         42.4
## 18926                 2010-01-01            Cote d'Ivoire         40.7
## 18927                 2005-01-01            Cote d'Ivoire         37.6
## 18928                 2000-01-01            Cote d'Ivoire         34.4
## 18929                 1995-01-01            Cote d'Ivoire         33.2
## 18930                 1990-01-01            Cote d'Ivoire         35.5
## 18931                 2015-01-01            Cote d'Ivoire         42.4
## 18932                 2010-01-01            Cote d'Ivoire         40.7
## 18933                 2005-01-01            Cote d'Ivoire         37.6
## 18934                 2000-01-01            Cote d'Ivoire         34.4
## 18935                 1995-01-01            Cote d'Ivoire         33.2
## 18936                 1990-01-01            Cote d'Ivoire         35.5
## 18937                 2015-01-01            Cote d'Ivoire         42.4
## 18938                 2010-01-01            Cote d'Ivoire         40.7
## 18939                 2005-01-01            Cote d'Ivoire         37.6
## 18940                 2000-01-01            Cote d'Ivoire         34.4
## 18941                 1995-01-01            Cote d'Ivoire         33.2
## 18942                 1990-01-01            Cote d'Ivoire         35.5
## 18943                 2015-01-01            Cote d'Ivoire         42.4
## 18944                 2010-01-01            Cote d'Ivoire         40.7
## 18945                 2005-01-01            Cote d'Ivoire         37.6
## 18946                 2000-01-01            Cote d'Ivoire         34.4
## 18947                 1995-01-01            Cote d'Ivoire         33.2
## 18948                 1990-01-01            Cote d'Ivoire         35.5
## 18949                 2015-01-01            Cote d'Ivoire         42.4
## 18950                 2010-01-01            Cote d'Ivoire         40.7
## 18951                 2005-01-01            Cote d'Ivoire         37.6
## 18952                 2000-01-01            Cote d'Ivoire         34.4
## 18953                 1995-01-01            Cote d'Ivoire         33.2
## 18954                 1990-01-01            Cote d'Ivoire         35.5
## 18955                 2015-01-01            Cote d'Ivoire         42.4
## 18956                 2010-01-01            Cote d'Ivoire         40.7
## 18957                 2005-01-01            Cote d'Ivoire         37.6
## 18958                 2000-01-01            Cote d'Ivoire         34.4
## 18959                 1995-01-01            Cote d'Ivoire         33.2
## 18960                 1990-01-01            Cote d'Ivoire         35.5
## 18961                 2015-01-01            Cote d'Ivoire         42.4
## 18962                 2010-01-01            Cote d'Ivoire         40.7
## 18963                 2005-01-01            Cote d'Ivoire         37.6
## 18964                 2000-01-01            Cote d'Ivoire         34.4
## 18965                 1995-01-01            Cote d'Ivoire         33.2
## 18966                 1990-01-01            Cote d'Ivoire         35.5
## 18967                 2015-01-01            Cote d'Ivoire         42.4
## 18968                 2010-01-01            Cote d'Ivoire         40.7
## 18969                 2005-01-01            Cote d'Ivoire         37.6
## 18970                 2000-01-01            Cote d'Ivoire         34.4
## 18971                 1995-01-01            Cote d'Ivoire         33.2
## 18972                 1990-01-01            Cote d'Ivoire         35.5
## 18973                 2015-01-01            Cote d'Ivoire         42.4
## 18974                 2010-01-01            Cote d'Ivoire         40.7
## 18975                 2005-01-01            Cote d'Ivoire         37.6
## 18976                 2000-01-01            Cote d'Ivoire         34.4
## 18977                 1995-01-01            Cote d'Ivoire         33.2
## 18978                 1990-01-01            Cote d'Ivoire         35.5
## 18979                 2015-01-01            Cote d'Ivoire         42.4
## 18980                 2010-01-01            Cote d'Ivoire         40.7
## 18981                 2005-01-01            Cote d'Ivoire         37.6
## 18982                 2000-01-01            Cote d'Ivoire         34.4
## 18983                 1995-01-01            Cote d'Ivoire         33.2
## 18984                 1990-01-01            Cote d'Ivoire         35.5
## 18985                 2015-01-01            Cote d'Ivoire         42.4
## 18986                 2010-01-01            Cote d'Ivoire         40.7
## 18987                 2005-01-01            Cote d'Ivoire         37.6
## 18988                 2000-01-01            Cote d'Ivoire         34.4
## 18989                 1995-01-01            Cote d'Ivoire         33.2
## 18990                 1990-01-01            Cote d'Ivoire         35.5
## 18991                 2015-01-01            Cote d'Ivoire         42.4
## 18992                 2010-01-01            Cote d'Ivoire         40.7
## 18993                 2005-01-01            Cote d'Ivoire         37.6
## 18994                 2000-01-01            Cote d'Ivoire         34.4
## 18995                 1995-01-01            Cote d'Ivoire         33.2
## 18996                 1990-01-01            Cote d'Ivoire         35.5
## 18997                 2015-01-01            Cote d'Ivoire         42.4
## 18998                 2010-01-01            Cote d'Ivoire         40.7
## 18999                 2005-01-01            Cote d'Ivoire         37.6
## 19000                 2000-01-01            Cote d'Ivoire         34.4
## 19001                 1995-01-01            Cote d'Ivoire         33.2
## 19002                 1990-01-01            Cote d'Ivoire         35.5
## 19003                 2015-01-01            Cote d'Ivoire         42.4
## 19004                 2010-01-01            Cote d'Ivoire         40.7
## 19005                 2005-01-01            Cote d'Ivoire         37.6
## 19006                 2000-01-01            Cote d'Ivoire         34.4
## 19007                 1995-01-01            Cote d'Ivoire         33.2
## 19008                 1990-01-01            Cote d'Ivoire         35.5
## 19009                 2015-01-01            Cote d'Ivoire         42.4
## 19010                 2010-01-01            Cote d'Ivoire         40.7
## 19011                 2005-01-01            Cote d'Ivoire         37.6
## 19012                 2000-01-01            Cote d'Ivoire         34.4
## 19013                 1995-01-01            Cote d'Ivoire         33.2
## 19014                 1990-01-01            Cote d'Ivoire         35.5
## 19015                 2015-01-01            Cote d'Ivoire         42.4
## 19016                 2010-01-01            Cote d'Ivoire         40.7
## 19017                 2005-01-01            Cote d'Ivoire         37.6
## 19018                 2000-01-01            Cote d'Ivoire         34.4
## 19019                 1995-01-01            Cote d'Ivoire         33.2
## 19020                 1990-01-01            Cote d'Ivoire         35.5
## 19021                 2015-01-01            Cote d'Ivoire         42.4
## 19022                 2010-01-01            Cote d'Ivoire         40.7
## 19023                 2005-01-01            Cote d'Ivoire         37.6
## 19024                 2000-01-01            Cote d'Ivoire         34.4
## 19025                 1995-01-01            Cote d'Ivoire         33.2
## 19026                 1990-01-01            Cote d'Ivoire         35.5
## 19027                 2015-01-01            Cote d'Ivoire         42.4
## 19028                 2010-01-01            Cote d'Ivoire         40.7
## 19029                 2005-01-01            Cote d'Ivoire         37.6
## 19030                 2000-01-01            Cote d'Ivoire         34.4
## 19031                 1995-01-01            Cote d'Ivoire         33.2
## 19032                 1990-01-01            Cote d'Ivoire         35.5
## 19033                 2015-01-01            Cote d'Ivoire         42.4
## 19034                 2010-01-01            Cote d'Ivoire         40.7
## 19035                 2005-01-01            Cote d'Ivoire         37.6
## 19036                 2000-01-01            Cote d'Ivoire         34.4
## 19037                 1995-01-01            Cote d'Ivoire         33.2
## 19038                 1990-01-01            Cote d'Ivoire         35.5
## 19039                 2015-01-01            Cote d'Ivoire         42.4
## 19040                 2010-01-01            Cote d'Ivoire         40.7
## 19041                 2005-01-01            Cote d'Ivoire         37.6
## 19042                 2000-01-01            Cote d'Ivoire         34.4
## 19043                 1995-01-01            Cote d'Ivoire         33.2
## 19044                 1990-01-01            Cote d'Ivoire         35.5
## 19045                 2015-01-01            Cote d'Ivoire         42.4
## 19046                 2010-01-01            Cote d'Ivoire         40.7
## 19047                 2005-01-01            Cote d'Ivoire         37.6
## 19048                 2000-01-01            Cote d'Ivoire         34.4
## 19049                 1995-01-01            Cote d'Ivoire         33.2
## 19050                 1990-01-01            Cote d'Ivoire         35.5
## 19051                 2015-01-01            Cote d'Ivoire         42.4
## 19052                 2010-01-01            Cote d'Ivoire         40.7
## 19053                 2005-01-01            Cote d'Ivoire         37.6
## 19054                 2000-01-01            Cote d'Ivoire         34.4
## 19055                 1995-01-01            Cote d'Ivoire         33.2
## 19056                 1990-01-01            Cote d'Ivoire         35.5
## 19057                 2015-01-01            Cote d'Ivoire         42.4
## 19058                 2010-01-01            Cote d'Ivoire         40.7
## 19059                 2005-01-01            Cote d'Ivoire         37.6
## 19060                 2000-01-01            Cote d'Ivoire         34.4
## 19061                 1995-01-01            Cote d'Ivoire         33.2
## 19062                 1990-01-01            Cote d'Ivoire         35.5
## 19063                 2015-01-01            Cote d'Ivoire         42.4
## 19064                 2010-01-01            Cote d'Ivoire         40.7
## 19065                 2005-01-01            Cote d'Ivoire         37.6
## 19066                 2000-01-01            Cote d'Ivoire         34.4
## 19067                 1995-01-01            Cote d'Ivoire         33.2
## 19068                 1990-01-01            Cote d'Ivoire         35.5
## 19069                 2015-01-01            Cote d'Ivoire         42.4
## 19070                 2010-01-01            Cote d'Ivoire         40.7
## 19071                 2005-01-01            Cote d'Ivoire         37.6
## 19072                 2000-01-01            Cote d'Ivoire         34.4
## 19073                 1995-01-01            Cote d'Ivoire         33.2
## 19074                 1990-01-01            Cote d'Ivoire         35.5
## 19075                 2015-01-01            Cote d'Ivoire         42.4
## 19076                 2010-01-01            Cote d'Ivoire         40.7
## 19077                 2005-01-01            Cote d'Ivoire         37.6
## 19078                 2000-01-01            Cote d'Ivoire         34.4
## 19079                 1995-01-01            Cote d'Ivoire         33.2
## 19080                 1990-01-01            Cote d'Ivoire         35.5
## 19081                 2015-01-01            Cote d'Ivoire         42.4
## 19082                 2010-01-01            Cote d'Ivoire         40.7
## 19083                 2005-01-01            Cote d'Ivoire         37.6
## 19084                 2000-01-01            Cote d'Ivoire         34.4
## 19085                 1995-01-01            Cote d'Ivoire         33.2
## 19086                 1990-01-01            Cote d'Ivoire         35.5
## 19087                 2015-01-01            Cote d'Ivoire         42.4
## 19088                 2010-01-01            Cote d'Ivoire         40.7
## 19089                 2005-01-01            Cote d'Ivoire         37.6
## 19090                 2000-01-01            Cote d'Ivoire         34.4
## 19091                 1995-01-01            Cote d'Ivoire         33.2
## 19092                 1990-01-01            Cote d'Ivoire         35.5
## 19093                 2015-01-01            Cote d'Ivoire         42.4
## 19094                 2010-01-01            Cote d'Ivoire         40.7
## 19095                 2005-01-01            Cote d'Ivoire         37.6
## 19096                 2000-01-01            Cote d'Ivoire         34.4
## 19097                 1995-01-01            Cote d'Ivoire         33.2
## 19098                 1990-01-01            Cote d'Ivoire         35.5
## 19099                 2015-01-01            Cote d'Ivoire         42.4
## 19100                 2010-01-01            Cote d'Ivoire         40.7
## 19101                 2005-01-01            Cote d'Ivoire         37.6
## 19102                 2000-01-01            Cote d'Ivoire         34.4
## 19103                 1995-01-01            Cote d'Ivoire         33.2
## 19104                 1990-01-01            Cote d'Ivoire         35.5
## 19105                 2015-01-01            Cote d'Ivoire         42.4
## 19106                 2010-01-01            Cote d'Ivoire         40.7
## 19107                 2005-01-01            Cote d'Ivoire         37.6
## 19108                 2000-01-01            Cote d'Ivoire         34.4
## 19109                 1995-01-01            Cote d'Ivoire         33.2
## 19110                 1990-01-01            Cote d'Ivoire         35.5
## 19111                 2015-01-01            Cote d'Ivoire         42.4
## 19112                 2010-01-01            Cote d'Ivoire         40.7
## 19113                 2005-01-01            Cote d'Ivoire         37.6
## 19114                 2000-01-01            Cote d'Ivoire         34.4
## 19115                 1995-01-01            Cote d'Ivoire         33.2
## 19116                 1990-01-01            Cote d'Ivoire         35.5
## 19117                 2015-01-01            Cote d'Ivoire         42.4
## 19118                 2010-01-01            Cote d'Ivoire         40.7
## 19119                 2005-01-01            Cote d'Ivoire         37.6
## 19120                 2000-01-01            Cote d'Ivoire         34.4
## 19121                 1995-01-01            Cote d'Ivoire         33.2
## 19122                 1990-01-01            Cote d'Ivoire         35.5
## 19123                 2015-01-01            Cote d'Ivoire         42.4
## 19124                 2010-01-01            Cote d'Ivoire         40.7
## 19125                 2005-01-01            Cote d'Ivoire         37.6
## 19126                 2000-01-01            Cote d'Ivoire         34.4
## 19127                 1995-01-01            Cote d'Ivoire         33.2
## 19128                 1990-01-01            Cote d'Ivoire         35.5
## 19129                 2015-01-01            Cote d'Ivoire         42.4
## 19130                 2010-01-01            Cote d'Ivoire         40.7
## 19131                 2005-01-01            Cote d'Ivoire         37.6
## 19132                 2000-01-01            Cote d'Ivoire         34.4
## 19133                 1995-01-01            Cote d'Ivoire         33.2
## 19134                 1990-01-01            Cote d'Ivoire         35.5
## 19135                 2015-01-01            Cote d'Ivoire         42.4
## 19136                 2010-01-01            Cote d'Ivoire         40.7
## 19137                 2005-01-01            Cote d'Ivoire         37.6
## 19138                 2000-01-01            Cote d'Ivoire         34.4
## 19139                 1995-01-01            Cote d'Ivoire         33.2
## 19140                 1990-01-01            Cote d'Ivoire         35.5
## 19141                 2015-01-01            Cote d'Ivoire         42.4
## 19142                 2010-01-01            Cote d'Ivoire         40.7
## 19143                 2005-01-01            Cote d'Ivoire         37.6
## 19144                 2000-01-01            Cote d'Ivoire         34.4
## 19145                 1995-01-01            Cote d'Ivoire         33.2
## 19146                 1990-01-01            Cote d'Ivoire         35.5
## 19147                 2015-01-01            Cote d'Ivoire         42.4
## 19148                 2010-01-01            Cote d'Ivoire         40.7
## 19149                 2005-01-01            Cote d'Ivoire         37.6
## 19150                 2000-01-01            Cote d'Ivoire         34.4
## 19151                 1995-01-01            Cote d'Ivoire         33.2
## 19152                 1990-01-01            Cote d'Ivoire         35.5
## 19153                 2015-01-01            Cote d'Ivoire         42.4
## 19154                 2010-01-01            Cote d'Ivoire         40.7
## 19155                 2005-01-01            Cote d'Ivoire         37.6
## 19156                 2000-01-01            Cote d'Ivoire         34.4
## 19157                 1995-01-01            Cote d'Ivoire         33.2
## 19158                 1990-01-01            Cote d'Ivoire         35.5
## 19159                 2015-01-01            Cote d'Ivoire         42.4
## 19160                 2010-01-01            Cote d'Ivoire         40.7
## 19161                 2005-01-01            Cote d'Ivoire         37.6
## 19162                 2000-01-01            Cote d'Ivoire         34.4
## 19163                 1995-01-01            Cote d'Ivoire         33.2
## 19164                 1990-01-01            Cote d'Ivoire         35.5
## 19165                 2015-01-01            Cote d'Ivoire         42.4
## 19166                 2010-01-01            Cote d'Ivoire         40.7
## 19167                 2005-01-01            Cote d'Ivoire         37.6
## 19168                 2000-01-01            Cote d'Ivoire         34.4
## 19169                 1995-01-01            Cote d'Ivoire         33.2
## 19170                 1990-01-01            Cote d'Ivoire         35.5
## 19171                 2015-01-01            Cote d'Ivoire         42.4
## 19172                 2010-01-01            Cote d'Ivoire         40.7
## 19173                 2005-01-01            Cote d'Ivoire         37.6
## 19174                 2000-01-01            Cote d'Ivoire         34.4
## 19175                 1995-01-01            Cote d'Ivoire         33.2
## 19176                 1990-01-01            Cote d'Ivoire         35.5
## 19177                 2015-01-01                  Croatia         81.6
## 19178                 2010-01-01                  Croatia         78.9
## 19179                 2005-01-01                  Croatia         76.8
## 19180                 2000-01-01                  Croatia         73.4
## 19181                 1995-01-01                  Croatia         70.4
## 19182                 1990-01-01                  Croatia         68.8
## 19183                 2015-01-01                  Croatia         81.6
## 19184                 2010-01-01                  Croatia         78.9
## 19185                 2005-01-01                  Croatia         76.8
## 19186                 2000-01-01                  Croatia         73.4
## 19187                 1995-01-01                  Croatia         70.4
## 19188                 1990-01-01                  Croatia         68.8
## 19189                 2015-01-01                  Croatia         81.6
## 19190                 2010-01-01                  Croatia         78.9
## 19191                 2005-01-01                  Croatia         76.8
## 19192                 2000-01-01                  Croatia         73.4
## 19193                 1995-01-01                  Croatia         70.4
## 19194                 1990-01-01                  Croatia         68.8
## 19195                 2015-01-01                  Croatia         81.6
## 19196                 2010-01-01                  Croatia         78.9
## 19197                 2005-01-01                  Croatia         76.8
## 19198                 2000-01-01                  Croatia         73.4
## 19199                 1995-01-01                  Croatia         70.4
## 19200                 1990-01-01                  Croatia         68.8
## 19201                 2015-01-01                  Croatia         81.6
## 19202                 2010-01-01                  Croatia         78.9
## 19203                 2005-01-01                  Croatia         76.8
## 19204                 2000-01-01                  Croatia         73.4
## 19205                 1995-01-01                  Croatia         70.4
## 19206                 1990-01-01                  Croatia         68.8
## 19207                 2015-01-01                  Croatia         81.6
## 19208                 2010-01-01                  Croatia         78.9
## 19209                 2005-01-01                  Croatia         76.8
## 19210                 2000-01-01                  Croatia         73.4
## 19211                 1995-01-01                  Croatia         70.4
## 19212                 1990-01-01                  Croatia         68.8
## 19213                 2015-01-01                  Croatia         81.6
## 19214                 2010-01-01                  Croatia         78.9
## 19215                 2005-01-01                  Croatia         76.8
## 19216                 2000-01-01                  Croatia         73.4
## 19217                 1995-01-01                  Croatia         70.4
## 19218                 1990-01-01                  Croatia         68.8
## 19219                 2015-01-01                  Croatia         81.6
## 19220                 2010-01-01                  Croatia         78.9
## 19221                 2005-01-01                  Croatia         76.8
## 19222                 2000-01-01                  Croatia         73.4
## 19223                 1995-01-01                  Croatia         70.4
## 19224                 1990-01-01                  Croatia         68.8
## 19225                 2015-01-01                  Croatia         81.6
## 19226                 2010-01-01                  Croatia         78.9
## 19227                 2005-01-01                  Croatia         76.8
## 19228                 2000-01-01                  Croatia         73.4
## 19229                 1995-01-01                  Croatia         70.4
## 19230                 1990-01-01                  Croatia         68.8
## 19231                 2015-01-01                  Croatia         81.6
## 19232                 2010-01-01                  Croatia         78.9
## 19233                 2005-01-01                  Croatia         76.8
## 19234                 2000-01-01                  Croatia         73.4
## 19235                 1995-01-01                  Croatia         70.4
## 19236                 1990-01-01                  Croatia         68.8
## 19237                 2015-01-01                  Croatia         81.6
## 19238                 2010-01-01                  Croatia         78.9
## 19239                 2005-01-01                  Croatia         76.8
## 19240                 2000-01-01                  Croatia         73.4
## 19241                 1995-01-01                  Croatia         70.4
## 19242                 1990-01-01                  Croatia         68.8
## 19243                 2015-01-01                  Croatia         81.6
## 19244                 2010-01-01                  Croatia         78.9
## 19245                 2005-01-01                  Croatia         76.8
## 19246                 2000-01-01                  Croatia         73.4
## 19247                 1995-01-01                  Croatia         70.4
## 19248                 1990-01-01                  Croatia         68.8
## 19249                 2015-01-01                  Croatia         81.6
## 19250                 2010-01-01                  Croatia         78.9
## 19251                 2005-01-01                  Croatia         76.8
## 19252                 2000-01-01                  Croatia         73.4
## 19253                 1995-01-01                  Croatia         70.4
## 19254                 1990-01-01                  Croatia         68.8
## 19255                 2015-01-01                  Croatia         81.6
## 19256                 2010-01-01                  Croatia         78.9
## 19257                 2005-01-01                  Croatia         76.8
## 19258                 2000-01-01                  Croatia         73.4
## 19259                 1995-01-01                  Croatia         70.4
## 19260                 1990-01-01                  Croatia         68.8
## 19261                 2015-01-01                  Croatia         81.6
## 19262                 2010-01-01                  Croatia         78.9
## 19263                 2005-01-01                  Croatia         76.8
## 19264                 2000-01-01                  Croatia         73.4
## 19265                 1995-01-01                  Croatia         70.4
## 19266                 1990-01-01                  Croatia         68.8
## 19267                 2015-01-01                  Croatia         81.6
## 19268                 2010-01-01                  Croatia         78.9
## 19269                 2005-01-01                  Croatia         76.8
## 19270                 2000-01-01                  Croatia         73.4
## 19271                 1995-01-01                  Croatia         70.4
## 19272                 1990-01-01                  Croatia         68.8
## 19273                 2015-01-01                  Croatia         81.6
## 19274                 2010-01-01                  Croatia         78.9
## 19275                 2005-01-01                  Croatia         76.8
## 19276                 2000-01-01                  Croatia         73.4
## 19277                 1995-01-01                  Croatia         70.4
## 19278                 1990-01-01                  Croatia         68.8
## 19279                 2015-01-01                  Croatia         81.6
## 19280                 2010-01-01                  Croatia         78.9
## 19281                 2005-01-01                  Croatia         76.8
## 19282                 2000-01-01                  Croatia         73.4
## 19283                 1995-01-01                  Croatia         70.4
## 19284                 1990-01-01                  Croatia         68.8
## 19285                 2015-01-01                  Croatia         81.6
## 19286                 2010-01-01                  Croatia         78.9
## 19287                 2005-01-01                  Croatia         76.8
## 19288                 2000-01-01                  Croatia         73.4
## 19289                 1995-01-01                  Croatia         70.4
## 19290                 1990-01-01                  Croatia         68.8
## 19291                 2015-01-01                  Croatia         81.6
## 19292                 2010-01-01                  Croatia         78.9
## 19293                 2005-01-01                  Croatia         76.8
## 19294                 2000-01-01                  Croatia         73.4
## 19295                 1995-01-01                  Croatia         70.4
## 19296                 1990-01-01                  Croatia         68.8
## 19297                 2015-01-01                  Croatia         81.6
## 19298                 2010-01-01                  Croatia         78.9
## 19299                 2005-01-01                  Croatia         76.8
## 19300                 2000-01-01                  Croatia         73.4
## 19301                 1995-01-01                  Croatia         70.4
## 19302                 1990-01-01                  Croatia         68.8
## 19303                 2015-01-01                  Croatia         81.6
## 19304                 2010-01-01                  Croatia         78.9
## 19305                 2005-01-01                  Croatia         76.8
## 19306                 2000-01-01                  Croatia         73.4
## 19307                 1995-01-01                  Croatia         70.4
## 19308                 1990-01-01                  Croatia         68.8
## 19309                 2015-01-01                  Croatia         81.6
## 19310                 2010-01-01                  Croatia         78.9
## 19311                 2005-01-01                  Croatia         76.8
## 19312                 2000-01-01                  Croatia         73.4
## 19313                 1995-01-01                  Croatia         70.4
## 19314                 1990-01-01                  Croatia         68.8
## 19315                 2015-01-01                  Croatia         81.6
## 19316                 2010-01-01                  Croatia         78.9
## 19317                 2005-01-01                  Croatia         76.8
## 19318                 2000-01-01                  Croatia         73.4
## 19319                 1995-01-01                  Croatia         70.4
## 19320                 1990-01-01                  Croatia         68.8
## 19321                 2015-01-01                  Croatia         81.6
## 19322                 2010-01-01                  Croatia         78.9
## 19323                 2005-01-01                  Croatia         76.8
## 19324                 2000-01-01                  Croatia         73.4
## 19325                 1995-01-01                  Croatia         70.4
## 19326                 1990-01-01                  Croatia         68.8
## 19327                 2015-01-01                  Croatia         81.6
## 19328                 2010-01-01                  Croatia         78.9
## 19329                 2005-01-01                  Croatia         76.8
## 19330                 2000-01-01                  Croatia         73.4
## 19331                 1995-01-01                  Croatia         70.4
## 19332                 1990-01-01                  Croatia         68.8
## 19333                 2015-01-01                  Croatia         81.6
## 19334                 2010-01-01                  Croatia         78.9
## 19335                 2005-01-01                  Croatia         76.8
## 19336                 2000-01-01                  Croatia         73.4
## 19337                 1995-01-01                  Croatia         70.4
## 19338                 1990-01-01                  Croatia         68.8
## 19339                 2015-01-01                  Croatia         81.6
## 19340                 2010-01-01                  Croatia         78.9
## 19341                 2005-01-01                  Croatia         76.8
## 19342                 2000-01-01                  Croatia         73.4
## 19343                 1995-01-01                  Croatia         70.4
## 19344                 1990-01-01                  Croatia         68.8
## 19345                 2015-01-01                  Croatia         81.6
## 19346                 2010-01-01                  Croatia         78.9
## 19347                 2005-01-01                  Croatia         76.8
## 19348                 2000-01-01                  Croatia         73.4
## 19349                 1995-01-01                  Croatia         70.4
## 19350                 1990-01-01                  Croatia         68.8
## 19351                 2015-01-01                  Croatia         81.6
## 19352                 2010-01-01                  Croatia         78.9
## 19353                 2005-01-01                  Croatia         76.8
## 19354                 2000-01-01                  Croatia         73.4
## 19355                 1995-01-01                  Croatia         70.4
## 19356                 1990-01-01                  Croatia         68.8
## 19357                 2015-01-01                  Croatia         81.6
## 19358                 2010-01-01                  Croatia         78.9
## 19359                 2005-01-01                  Croatia         76.8
## 19360                 2000-01-01                  Croatia         73.4
## 19361                 1995-01-01                  Croatia         70.4
## 19362                 1990-01-01                  Croatia         68.8
## 19363                 2015-01-01                  Croatia         81.6
## 19364                 2010-01-01                  Croatia         78.9
## 19365                 2005-01-01                  Croatia         76.8
## 19366                 2000-01-01                  Croatia         73.4
## 19367                 1995-01-01                  Croatia         70.4
## 19368                 1990-01-01                  Croatia         68.8
## 19369                 2015-01-01                  Croatia         81.6
## 19370                 2010-01-01                  Croatia         78.9
## 19371                 2005-01-01                  Croatia         76.8
## 19372                 2000-01-01                  Croatia         73.4
## 19373                 1995-01-01                  Croatia         70.4
## 19374                 1990-01-01                  Croatia         68.8
## 19375                 2015-01-01                  Croatia         81.6
## 19376                 2010-01-01                  Croatia         78.9
## 19377                 2005-01-01                  Croatia         76.8
## 19378                 2000-01-01                  Croatia         73.4
## 19379                 1995-01-01                  Croatia         70.4
## 19380                 1990-01-01                  Croatia         68.8
## 19381                 2015-01-01                  Croatia         81.6
## 19382                 2010-01-01                  Croatia         78.9
## 19383                 2005-01-01                  Croatia         76.8
## 19384                 2000-01-01                  Croatia         73.4
## 19385                 1995-01-01                  Croatia         70.4
## 19386                 1990-01-01                  Croatia         68.8
## 19387                 2015-01-01                  Croatia         81.6
## 19388                 2010-01-01                  Croatia         78.9
## 19389                 2005-01-01                  Croatia         76.8
## 19390                 2000-01-01                  Croatia         73.4
## 19391                 1995-01-01                  Croatia         70.4
## 19392                 1990-01-01                  Croatia         68.8
## 19393                 2015-01-01                  Croatia         81.6
## 19394                 2010-01-01                  Croatia         78.9
## 19395                 2005-01-01                  Croatia         76.8
## 19396                 2000-01-01                  Croatia         73.4
## 19397                 1995-01-01                  Croatia         70.4
## 19398                 1990-01-01                  Croatia         68.8
## 19399                 2015-01-01                  Croatia         81.6
## 19400                 2010-01-01                  Croatia         78.9
## 19401                 2005-01-01                  Croatia         76.8
## 19402                 2000-01-01                  Croatia         73.4
## 19403                 1995-01-01                  Croatia         70.4
## 19404                 1990-01-01                  Croatia         68.8
## 19405                 2015-01-01                  Croatia         81.6
## 19406                 2010-01-01                  Croatia         78.9
## 19407                 2005-01-01                  Croatia         76.8
## 19408                 2000-01-01                  Croatia         73.4
## 19409                 1995-01-01                  Croatia         70.4
## 19410                 1990-01-01                  Croatia         68.8
## 19411                 2015-01-01                  Croatia         81.6
## 19412                 2010-01-01                  Croatia         78.9
## 19413                 2005-01-01                  Croatia         76.8
## 19414                 2000-01-01                  Croatia         73.4
## 19415                 1995-01-01                  Croatia         70.4
## 19416                 1990-01-01                  Croatia         68.8
## 19417                 2015-01-01                  Croatia         81.6
## 19418                 2010-01-01                  Croatia         78.9
## 19419                 2005-01-01                  Croatia         76.8
## 19420                 2000-01-01                  Croatia         73.4
## 19421                 1995-01-01                  Croatia         70.4
## 19422                 1990-01-01                  Croatia         68.8
## 19423                 2015-01-01                  Croatia         81.6
## 19424                 2010-01-01                  Croatia         78.9
## 19425                 2005-01-01                  Croatia         76.8
## 19426                 2000-01-01                  Croatia         73.4
## 19427                 1995-01-01                  Croatia         70.4
## 19428                 1990-01-01                  Croatia         68.8
## 19429                 2015-01-01                  Croatia         81.6
## 19430                 2010-01-01                  Croatia         78.9
## 19431                 2005-01-01                  Croatia         76.8
## 19432                 2000-01-01                  Croatia         73.4
## 19433                 1995-01-01                  Croatia         70.4
## 19434                 1990-01-01                  Croatia         68.8
## 19435                 2015-01-01                  Croatia         81.6
## 19436                 2010-01-01                  Croatia         78.9
## 19437                 2005-01-01                  Croatia         76.8
## 19438                 2000-01-01                  Croatia         73.4
## 19439                 1995-01-01                  Croatia         70.4
## 19440                 1990-01-01                  Croatia         68.8
## 19441                 2015-01-01                  Croatia         81.6
## 19442                 2010-01-01                  Croatia         78.9
## 19443                 2005-01-01                  Croatia         76.8
## 19444                 2000-01-01                  Croatia         73.4
## 19445                 1995-01-01                  Croatia         70.4
## 19446                 1990-01-01                  Croatia         68.8
## 19447                 2015-01-01                  Croatia         81.6
## 19448                 2010-01-01                  Croatia         78.9
## 19449                 2005-01-01                  Croatia         76.8
## 19450                 2000-01-01                  Croatia         73.4
## 19451                 1995-01-01                  Croatia         70.4
## 19452                 1990-01-01                  Croatia         68.8
## 19453                 2015-01-01                  Croatia         81.6
## 19454                 2010-01-01                  Croatia         78.9
## 19455                 2005-01-01                  Croatia         76.8
## 19456                 2000-01-01                  Croatia         73.4
## 19457                 1995-01-01                  Croatia         70.4
## 19458                 1990-01-01                  Croatia         68.8
## 19459                 2015-01-01                  Croatia         81.6
## 19460                 2010-01-01                  Croatia         78.9
## 19461                 2005-01-01                  Croatia         76.8
## 19462                 2000-01-01                  Croatia         73.4
## 19463                 1995-01-01                  Croatia         70.4
## 19464                 1990-01-01                  Croatia         68.8
## 19465                 2015-01-01                  Croatia         81.6
## 19466                 2010-01-01                  Croatia         78.9
## 19467                 2005-01-01                  Croatia         76.8
## 19468                 2000-01-01                  Croatia         73.4
## 19469                 1995-01-01                  Croatia         70.4
## 19470                 1990-01-01                  Croatia         68.8
## 19471                 2015-01-01                  Croatia         81.6
## 19472                 2010-01-01                  Croatia         78.9
## 19473                 2005-01-01                  Croatia         76.8
## 19474                 2000-01-01                  Croatia         73.4
## 19475                 1995-01-01                  Croatia         70.4
## 19476                 1990-01-01                  Croatia         68.8
## 19477                 2015-01-01                  Croatia         81.6
## 19478                 2010-01-01                  Croatia         78.9
## 19479                 2005-01-01                  Croatia         76.8
## 19480                 2000-01-01                  Croatia         73.4
## 19481                 1995-01-01                  Croatia         70.4
## 19482                 1990-01-01                  Croatia         68.8
## 19483                 2015-01-01                  Croatia         81.6
## 19484                 2010-01-01                  Croatia         78.9
## 19485                 2005-01-01                  Croatia         76.8
## 19486                 2000-01-01                  Croatia         73.4
## 19487                 1995-01-01                  Croatia         70.4
## 19488                 1990-01-01                  Croatia         68.8
## 19489                 2015-01-01                  Croatia         81.6
## 19490                 2010-01-01                  Croatia         78.9
## 19491                 2005-01-01                  Croatia         76.8
## 19492                 2000-01-01                  Croatia         73.4
## 19493                 1995-01-01                  Croatia         70.4
## 19494                 1990-01-01                  Croatia         68.8
## 19495                 2015-01-01                  Croatia         81.6
## 19496                 2010-01-01                  Croatia         78.9
## 19497                 2005-01-01                  Croatia         76.8
## 19498                 2000-01-01                  Croatia         73.4
## 19499                 1995-01-01                  Croatia         70.4
## 19500                 1990-01-01                  Croatia         68.8
## 19501                 2015-01-01                  Croatia         81.6
## 19502                 2010-01-01                  Croatia         78.9
## 19503                 2005-01-01                  Croatia         76.8
## 19504                 2000-01-01                  Croatia         73.4
## 19505                 1995-01-01                  Croatia         70.4
## 19506                 1990-01-01                  Croatia         68.8
## 19507                 2015-01-01                  Croatia         81.6
## 19508                 2010-01-01                  Croatia         78.9
## 19509                 2005-01-01                  Croatia         76.8
## 19510                 2000-01-01                  Croatia         73.4
## 19511                 1995-01-01                  Croatia         70.4
## 19512                 1990-01-01                  Croatia         68.8
## 19513                 2015-01-01                  Croatia         81.6
## 19514                 2010-01-01                  Croatia         78.9
## 19515                 2005-01-01                  Croatia         76.8
## 19516                 2000-01-01                  Croatia         73.4
## 19517                 1995-01-01                  Croatia         70.4
## 19518                 1990-01-01                  Croatia         68.8
## 19519                 2015-01-01                  Croatia         81.6
## 19520                 2010-01-01                  Croatia         78.9
## 19521                 2005-01-01                  Croatia         76.8
## 19522                 2000-01-01                  Croatia         73.4
## 19523                 1995-01-01                  Croatia         70.4
## 19524                 1990-01-01                  Croatia         68.8
## 19525                 2015-01-01                  Croatia         81.6
## 19526                 2010-01-01                  Croatia         78.9
## 19527                 2005-01-01                  Croatia         76.8
## 19528                 2000-01-01                  Croatia         73.4
## 19529                 1995-01-01                  Croatia         70.4
## 19530                 1990-01-01                  Croatia         68.8
## 19531                 2015-01-01                  Croatia         81.6
## 19532                 2010-01-01                  Croatia         78.9
## 19533                 2005-01-01                  Croatia         76.8
## 19534                 2000-01-01                  Croatia         73.4
## 19535                 1995-01-01                  Croatia         70.4
## 19536                 1990-01-01                  Croatia         68.8
## 19537                 2015-01-01                  Croatia         81.6
## 19538                 2010-01-01                  Croatia         78.9
## 19539                 2005-01-01                  Croatia         76.8
## 19540                 2000-01-01                  Croatia         73.4
## 19541                 1995-01-01                  Croatia         70.4
## 19542                 1990-01-01                  Croatia         68.8
## 19543                 2015-01-01                  Croatia         81.6
## 19544                 2010-01-01                  Croatia         78.9
## 19545                 2005-01-01                  Croatia         76.8
## 19546                 2000-01-01                  Croatia         73.4
## 19547                 1995-01-01                  Croatia         70.4
## 19548                 1990-01-01                  Croatia         68.8
## 19549                 2015-01-01                  Croatia         81.6
## 19550                 2010-01-01                  Croatia         78.9
## 19551                 2005-01-01                  Croatia         76.8
## 19552                 2000-01-01                  Croatia         73.4
## 19553                 1995-01-01                  Croatia         70.4
## 19554                 1990-01-01                  Croatia         68.8
## 19555                 2015-01-01                  Croatia         81.6
## 19556                 2010-01-01                  Croatia         78.9
## 19557                 2005-01-01                  Croatia         76.8
## 19558                 2000-01-01                  Croatia         73.4
## 19559                 1995-01-01                  Croatia         70.4
## 19560                 1990-01-01                  Croatia         68.8
## 19561                 2015-01-01                  Croatia         81.6
## 19562                 2010-01-01                  Croatia         78.9
## 19563                 2005-01-01                  Croatia         76.8
## 19564                 2000-01-01                  Croatia         73.4
## 19565                 1995-01-01                  Croatia         70.4
## 19566                 1990-01-01                  Croatia         68.8
## 19567                 2015-01-01                  Croatia         81.6
## 19568                 2010-01-01                  Croatia         78.9
## 19569                 2005-01-01                  Croatia         76.8
## 19570                 2000-01-01                  Croatia         73.4
## 19571                 1995-01-01                  Croatia         70.4
## 19572                 1990-01-01                  Croatia         68.8
## 19573                 2015-01-01                  Croatia         81.6
## 19574                 2010-01-01                  Croatia         78.9
## 19575                 2005-01-01                  Croatia         76.8
## 19576                 2000-01-01                  Croatia         73.4
## 19577                 1995-01-01                  Croatia         70.4
## 19578                 1990-01-01                  Croatia         68.8
## 19579                 2015-01-01                  Croatia         81.6
## 19580                 2010-01-01                  Croatia         78.9
## 19581                 2005-01-01                  Croatia         76.8
## 19582                 2000-01-01                  Croatia         73.4
## 19583                 1995-01-01                  Croatia         70.4
## 19584                 1990-01-01                  Croatia         68.8
## 19585                 2015-01-01                  Croatia         81.6
## 19586                 2010-01-01                  Croatia         78.9
## 19587                 2005-01-01                  Croatia         76.8
## 19588                 2000-01-01                  Croatia         73.4
## 19589                 1995-01-01                  Croatia         70.4
## 19590                 1990-01-01                  Croatia         68.8
## 19591                 2015-01-01                  Croatia         81.6
## 19592                 2010-01-01                  Croatia         78.9
## 19593                 2005-01-01                  Croatia         76.8
## 19594                 2000-01-01                  Croatia         73.4
## 19595                 1995-01-01                  Croatia         70.4
## 19596                 1990-01-01                  Croatia         68.8
## 19597                 2015-01-01                  Croatia         81.6
## 19598                 2010-01-01                  Croatia         78.9
## 19599                 2005-01-01                  Croatia         76.8
## 19600                 2000-01-01                  Croatia         73.4
## 19601                 1995-01-01                  Croatia         70.4
## 19602                 1990-01-01                  Croatia         68.8
## 19603                 2015-01-01                  Croatia         81.6
## 19604                 2010-01-01                  Croatia         78.9
## 19605                 2005-01-01                  Croatia         76.8
## 19606                 2000-01-01                  Croatia         73.4
## 19607                 1995-01-01                  Croatia         70.4
## 19608                 1990-01-01                  Croatia         68.8
## 19609                 2015-01-01                  Croatia         81.6
## 19610                 2010-01-01                  Croatia         78.9
## 19611                 2005-01-01                  Croatia         76.8
## 19612                 2000-01-01                  Croatia         73.4
## 19613                 1995-01-01                  Croatia         70.4
## 19614                 1990-01-01                  Croatia         68.8
## 19615                 2015-01-01                  Croatia         81.6
## 19616                 2010-01-01                  Croatia         78.9
## 19617                 2005-01-01                  Croatia         76.8
## 19618                 2000-01-01                  Croatia         73.4
## 19619                 1995-01-01                  Croatia         70.4
## 19620                 1990-01-01                  Croatia         68.8
## 19621                 2015-01-01                  Croatia         81.6
## 19622                 2010-01-01                  Croatia         78.9
## 19623                 2005-01-01                  Croatia         76.8
## 19624                 2000-01-01                  Croatia         73.4
## 19625                 1995-01-01                  Croatia         70.4
## 19626                 1990-01-01                  Croatia         68.8
## 19627                 2015-01-01                  Croatia         81.6
## 19628                 2010-01-01                  Croatia         78.9
## 19629                 2005-01-01                  Croatia         76.8
## 19630                 2000-01-01                  Croatia         73.4
## 19631                 1995-01-01                  Croatia         70.4
## 19632                 1990-01-01                  Croatia         68.8
## 19633                 2015-01-01                  Croatia         81.6
## 19634                 2010-01-01                  Croatia         78.9
## 19635                 2005-01-01                  Croatia         76.8
## 19636                 2000-01-01                  Croatia         73.4
## 19637                 1995-01-01                  Croatia         70.4
## 19638                 1990-01-01                  Croatia         68.8
## 19639                 2015-01-01                     Cuba         73.5
## 19640                 2010-01-01                     Cuba         72.1
## 19641                 2005-01-01                     Cuba         70.5
## 19642                 2000-01-01                     Cuba         67.7
## 19643                 1995-01-01                     Cuba         65.2
## 19644                 1990-01-01                     Cuba         64.1
## 19645                 2015-01-01                     Cuba         73.5
## 19646                 2010-01-01                     Cuba         72.1
## 19647                 2005-01-01                     Cuba         70.5
## 19648                 2000-01-01                     Cuba         67.7
## 19649                 1995-01-01                     Cuba         65.2
## 19650                 1990-01-01                     Cuba         64.1
## 19651                 2015-01-01                     Cuba         73.5
## 19652                 2010-01-01                     Cuba         72.1
## 19653                 2005-01-01                     Cuba         70.5
## 19654                 2000-01-01                     Cuba         67.7
## 19655                 1995-01-01                     Cuba         65.2
## 19656                 1990-01-01                     Cuba         64.1
## 19657                 2015-01-01                     Cuba         73.5
## 19658                 2010-01-01                     Cuba         72.1
## 19659                 2005-01-01                     Cuba         70.5
## 19660                 2000-01-01                     Cuba         67.7
## 19661                 1995-01-01                     Cuba         65.2
## 19662                 1990-01-01                     Cuba         64.1
## 19663                 2015-01-01                     Cuba         73.5
## 19664                 2010-01-01                     Cuba         72.1
## 19665                 2005-01-01                     Cuba         70.5
## 19666                 2000-01-01                     Cuba         67.7
## 19667                 1995-01-01                     Cuba         65.2
## 19668                 1990-01-01                     Cuba         64.1
## 19669                 2015-01-01                     Cuba         73.5
## 19670                 2010-01-01                     Cuba         72.1
## 19671                 2005-01-01                     Cuba         70.5
## 19672                 2000-01-01                     Cuba         67.7
## 19673                 1995-01-01                     Cuba         65.2
## 19674                 1990-01-01                     Cuba         64.1
## 19675                 2015-01-01                     Cuba         73.5
## 19676                 2010-01-01                     Cuba         72.1
## 19677                 2005-01-01                     Cuba         70.5
## 19678                 2000-01-01                     Cuba         67.7
## 19679                 1995-01-01                     Cuba         65.2
## 19680                 1990-01-01                     Cuba         64.1
## 19681                 2015-01-01                     Cuba         73.5
## 19682                 2010-01-01                     Cuba         72.1
## 19683                 2005-01-01                     Cuba         70.5
## 19684                 2000-01-01                     Cuba         67.7
## 19685                 1995-01-01                     Cuba         65.2
## 19686                 1990-01-01                     Cuba         64.1
## 19687                 2015-01-01                     Cuba         73.5
## 19688                 2010-01-01                     Cuba         72.1
## 19689                 2005-01-01                     Cuba         70.5
## 19690                 2000-01-01                     Cuba         67.7
## 19691                 1995-01-01                     Cuba         65.2
## 19692                 1990-01-01                     Cuba         64.1
## 19693                 2015-01-01                     Cuba         73.5
## 19694                 2010-01-01                     Cuba         72.1
## 19695                 2005-01-01                     Cuba         70.5
## 19696                 2000-01-01                     Cuba         67.7
## 19697                 1995-01-01                     Cuba         65.2
## 19698                 1990-01-01                     Cuba         64.1
## 19699                 2015-01-01                     Cuba         73.5
## 19700                 2010-01-01                     Cuba         72.1
## 19701                 2005-01-01                     Cuba         70.5
## 19702                 2000-01-01                     Cuba         67.7
## 19703                 1995-01-01                     Cuba         65.2
## 19704                 1990-01-01                     Cuba         64.1
## 19705                 2015-01-01                     Cuba         73.5
## 19706                 2010-01-01                     Cuba         72.1
## 19707                 2005-01-01                     Cuba         70.5
## 19708                 2000-01-01                     Cuba         67.7
## 19709                 1995-01-01                     Cuba         65.2
## 19710                 1990-01-01                     Cuba         64.1
## 19711                 2015-01-01                     Cuba         73.5
## 19712                 2010-01-01                     Cuba         72.1
## 19713                 2005-01-01                     Cuba         70.5
## 19714                 2000-01-01                     Cuba         67.7
## 19715                 1995-01-01                     Cuba         65.2
## 19716                 1990-01-01                     Cuba         64.1
## 19717                 2015-01-01                     Cuba         73.5
## 19718                 2010-01-01                     Cuba         72.1
## 19719                 2005-01-01                     Cuba         70.5
## 19720                 2000-01-01                     Cuba         67.7
## 19721                 1995-01-01                     Cuba         65.2
## 19722                 1990-01-01                     Cuba         64.1
## 19723                 2015-01-01                     Cuba         73.5
## 19724                 2010-01-01                     Cuba         72.1
## 19725                 2005-01-01                     Cuba         70.5
## 19726                 2000-01-01                     Cuba         67.7
## 19727                 1995-01-01                     Cuba         65.2
## 19728                 1990-01-01                     Cuba         64.1
## 19729                 2015-01-01                     Cuba         73.5
## 19730                 2010-01-01                     Cuba         72.1
## 19731                 2005-01-01                     Cuba         70.5
## 19732                 2000-01-01                     Cuba         67.7
## 19733                 1995-01-01                     Cuba         65.2
## 19734                 1990-01-01                     Cuba         64.1
## 19735                 2015-01-01                     Cuba         73.5
## 19736                 2010-01-01                     Cuba         72.1
## 19737                 2005-01-01                     Cuba         70.5
## 19738                 2000-01-01                     Cuba         67.7
## 19739                 1995-01-01                     Cuba         65.2
## 19740                 1990-01-01                     Cuba         64.1
## 19741                 2015-01-01                     Cuba         73.5
## 19742                 2010-01-01                     Cuba         72.1
## 19743                 2005-01-01                     Cuba         70.5
## 19744                 2000-01-01                     Cuba         67.7
## 19745                 1995-01-01                     Cuba         65.2
## 19746                 1990-01-01                     Cuba         64.1
## 19747                 2015-01-01                     Cuba         73.5
## 19748                 2010-01-01                     Cuba         72.1
## 19749                 2005-01-01                     Cuba         70.5
## 19750                 2000-01-01                     Cuba         67.7
## 19751                 1995-01-01                     Cuba         65.2
## 19752                 1990-01-01                     Cuba         64.1
## 19753                 2015-01-01                     Cuba         73.5
## 19754                 2010-01-01                     Cuba         72.1
## 19755                 2005-01-01                     Cuba         70.5
## 19756                 2000-01-01                     Cuba         67.7
## 19757                 1995-01-01                     Cuba         65.2
## 19758                 1990-01-01                     Cuba         64.1
## 19759                 2015-01-01                     Cuba         73.5
## 19760                 2010-01-01                     Cuba         72.1
## 19761                 2005-01-01                     Cuba         70.5
## 19762                 2000-01-01                     Cuba         67.7
## 19763                 1995-01-01                     Cuba         65.2
## 19764                 1990-01-01                     Cuba         64.1
## 19765                 2015-01-01                     Cuba         73.5
## 19766                 2010-01-01                     Cuba         72.1
## 19767                 2005-01-01                     Cuba         70.5
## 19768                 2000-01-01                     Cuba         67.7
## 19769                 1995-01-01                     Cuba         65.2
## 19770                 1990-01-01                     Cuba         64.1
## 19771                 2015-01-01                     Cuba         73.5
## 19772                 2010-01-01                     Cuba         72.1
## 19773                 2005-01-01                     Cuba         70.5
## 19774                 2000-01-01                     Cuba         67.7
## 19775                 1995-01-01                     Cuba         65.2
## 19776                 1990-01-01                     Cuba         64.1
## 19777                 2015-01-01                     Cuba         73.5
## 19778                 2010-01-01                     Cuba         72.1
## 19779                 2005-01-01                     Cuba         70.5
## 19780                 2000-01-01                     Cuba         67.7
## 19781                 1995-01-01                     Cuba         65.2
## 19782                 1990-01-01                     Cuba         64.1
## 19783                 2015-01-01                     Cuba         73.5
## 19784                 2010-01-01                     Cuba         72.1
## 19785                 2005-01-01                     Cuba         70.5
## 19786                 2000-01-01                     Cuba         67.7
## 19787                 1995-01-01                     Cuba         65.2
## 19788                 1990-01-01                     Cuba         64.1
## 19789                 2015-01-01                     Cuba         73.5
## 19790                 2010-01-01                     Cuba         72.1
## 19791                 2005-01-01                     Cuba         70.5
## 19792                 2000-01-01                     Cuba         67.7
## 19793                 1995-01-01                     Cuba         65.2
## 19794                 1990-01-01                     Cuba         64.1
## 19795                 2015-01-01                     Cuba         73.5
## 19796                 2010-01-01                     Cuba         72.1
## 19797                 2005-01-01                     Cuba         70.5
## 19798                 2000-01-01                     Cuba         67.7
## 19799                 1995-01-01                     Cuba         65.2
## 19800                 1990-01-01                     Cuba         64.1
## 19801                 2015-01-01                     Cuba         73.5
## 19802                 2010-01-01                     Cuba         72.1
## 19803                 2005-01-01                     Cuba         70.5
## 19804                 2000-01-01                     Cuba         67.7
## 19805                 1995-01-01                     Cuba         65.2
## 19806                 1990-01-01                     Cuba         64.1
## 19807                 2015-01-01                     Cuba         73.5
## 19808                 2010-01-01                     Cuba         72.1
## 19809                 2005-01-01                     Cuba         70.5
## 19810                 2000-01-01                     Cuba         67.7
## 19811                 1995-01-01                     Cuba         65.2
## 19812                 1990-01-01                     Cuba         64.1
## 19813                 2015-01-01                     Cuba         73.5
## 19814                 2010-01-01                     Cuba         72.1
## 19815                 2005-01-01                     Cuba         70.5
## 19816                 2000-01-01                     Cuba         67.7
## 19817                 1995-01-01                     Cuba         65.2
## 19818                 1990-01-01                     Cuba         64.1
## 19819                 2015-01-01                     Cuba         73.5
## 19820                 2010-01-01                     Cuba         72.1
## 19821                 2005-01-01                     Cuba         70.5
## 19822                 2000-01-01                     Cuba         67.7
## 19823                 1995-01-01                     Cuba         65.2
## 19824                 1990-01-01                     Cuba         64.1
## 19825                 2015-01-01                     Cuba         73.5
## 19826                 2010-01-01                     Cuba         72.1
## 19827                 2005-01-01                     Cuba         70.5
## 19828                 2000-01-01                     Cuba         67.7
## 19829                 1995-01-01                     Cuba         65.2
## 19830                 1990-01-01                     Cuba         64.1
## 19831                 2015-01-01                     Cuba         73.5
## 19832                 2010-01-01                     Cuba         72.1
## 19833                 2005-01-01                     Cuba         70.5
## 19834                 2000-01-01                     Cuba         67.7
## 19835                 1995-01-01                     Cuba         65.2
## 19836                 1990-01-01                     Cuba         64.1
## 19837                 2015-01-01                     Cuba         73.5
## 19838                 2010-01-01                     Cuba         72.1
## 19839                 2005-01-01                     Cuba         70.5
## 19840                 2000-01-01                     Cuba         67.7
## 19841                 1995-01-01                     Cuba         65.2
## 19842                 1990-01-01                     Cuba         64.1
## 19843                 2015-01-01                     Cuba         73.5
## 19844                 2010-01-01                     Cuba         72.1
## 19845                 2005-01-01                     Cuba         70.5
## 19846                 2000-01-01                     Cuba         67.7
## 19847                 1995-01-01                     Cuba         65.2
## 19848                 1990-01-01                     Cuba         64.1
## 19849                 2015-01-01                     Cuba         73.5
## 19850                 2010-01-01                     Cuba         72.1
## 19851                 2005-01-01                     Cuba         70.5
## 19852                 2000-01-01                     Cuba         67.7
## 19853                 1995-01-01                     Cuba         65.2
## 19854                 1990-01-01                     Cuba         64.1
## 19855                 2015-01-01                     Cuba         73.5
## 19856                 2010-01-01                     Cuba         72.1
## 19857                 2005-01-01                     Cuba         70.5
## 19858                 2000-01-01                     Cuba         67.7
## 19859                 1995-01-01                     Cuba         65.2
## 19860                 1990-01-01                     Cuba         64.1
## 19861                 2015-01-01                   Cyprus         85.3
## 19862                 2010-01-01                   Cyprus         82.6
## 19863                 2005-01-01                   Cyprus         79.2
## 19864                 2000-01-01                   Cyprus         76.4
## 19865                 1995-01-01                   Cyprus         73.4
## 19866                 1990-01-01                   Cyprus         72.0
## 19867                 2015-01-01                   Cyprus         85.3
## 19868                 2010-01-01                   Cyprus         82.6
## 19869                 2005-01-01                   Cyprus         79.2
## 19870                 2000-01-01                   Cyprus         76.4
## 19871                 1995-01-01                   Cyprus         73.4
## 19872                 1990-01-01                   Cyprus         72.0
## 19873                 2015-01-01                   Cyprus         85.3
## 19874                 2010-01-01                   Cyprus         82.6
## 19875                 2005-01-01                   Cyprus         79.2
## 19876                 2000-01-01                   Cyprus         76.4
## 19877                 1995-01-01                   Cyprus         73.4
## 19878                 1990-01-01                   Cyprus         72.0
## 19879                 2015-01-01                   Cyprus         85.3
## 19880                 2010-01-01                   Cyprus         82.6
## 19881                 2005-01-01                   Cyprus         79.2
## 19882                 2000-01-01                   Cyprus         76.4
## 19883                 1995-01-01                   Cyprus         73.4
## 19884                 1990-01-01                   Cyprus         72.0
## 19885                 2015-01-01                   Cyprus         85.3
## 19886                 2010-01-01                   Cyprus         82.6
## 19887                 2005-01-01                   Cyprus         79.2
## 19888                 2000-01-01                   Cyprus         76.4
## 19889                 1995-01-01                   Cyprus         73.4
## 19890                 1990-01-01                   Cyprus         72.0
## 19891                 2015-01-01                   Cyprus         85.3
## 19892                 2010-01-01                   Cyprus         82.6
## 19893                 2005-01-01                   Cyprus         79.2
## 19894                 2000-01-01                   Cyprus         76.4
## 19895                 1995-01-01                   Cyprus         73.4
## 19896                 1990-01-01                   Cyprus         72.0
## 19897                 2015-01-01                   Cyprus         85.3
## 19898                 2010-01-01                   Cyprus         82.6
## 19899                 2005-01-01                   Cyprus         79.2
## 19900                 2000-01-01                   Cyprus         76.4
## 19901                 1995-01-01                   Cyprus         73.4
## 19902                 1990-01-01                   Cyprus         72.0
## 19903                 2015-01-01                   Cyprus         85.3
## 19904                 2010-01-01                   Cyprus         82.6
## 19905                 2005-01-01                   Cyprus         79.2
## 19906                 2000-01-01                   Cyprus         76.4
## 19907                 1995-01-01                   Cyprus         73.4
## 19908                 1990-01-01                   Cyprus         72.0
## 19909                 2015-01-01                   Cyprus         85.3
## 19910                 2010-01-01                   Cyprus         82.6
## 19911                 2005-01-01                   Cyprus         79.2
## 19912                 2000-01-01                   Cyprus         76.4
## 19913                 1995-01-01                   Cyprus         73.4
## 19914                 1990-01-01                   Cyprus         72.0
## 19915                 2015-01-01                   Cyprus         85.3
## 19916                 2010-01-01                   Cyprus         82.6
## 19917                 2005-01-01                   Cyprus         79.2
## 19918                 2000-01-01                   Cyprus         76.4
## 19919                 1995-01-01                   Cyprus         73.4
## 19920                 1990-01-01                   Cyprus         72.0
## 19921                 2015-01-01                   Cyprus         85.3
## 19922                 2010-01-01                   Cyprus         82.6
## 19923                 2005-01-01                   Cyprus         79.2
## 19924                 2000-01-01                   Cyprus         76.4
## 19925                 1995-01-01                   Cyprus         73.4
## 19926                 1990-01-01                   Cyprus         72.0
## 19927                 2015-01-01                   Cyprus         85.3
## 19928                 2010-01-01                   Cyprus         82.6
## 19929                 2005-01-01                   Cyprus         79.2
## 19930                 2000-01-01                   Cyprus         76.4
## 19931                 1995-01-01                   Cyprus         73.4
## 19932                 1990-01-01                   Cyprus         72.0
## 19933                 2015-01-01                   Cyprus         85.3
## 19934                 2010-01-01                   Cyprus         82.6
## 19935                 2005-01-01                   Cyprus         79.2
## 19936                 2000-01-01                   Cyprus         76.4
## 19937                 1995-01-01                   Cyprus         73.4
## 19938                 1990-01-01                   Cyprus         72.0
## 19939                 2015-01-01                   Cyprus         85.3
## 19940                 2010-01-01                   Cyprus         82.6
## 19941                 2005-01-01                   Cyprus         79.2
## 19942                 2000-01-01                   Cyprus         76.4
## 19943                 1995-01-01                   Cyprus         73.4
## 19944                 1990-01-01                   Cyprus         72.0
## 19945                 2015-01-01                   Cyprus         85.3
## 19946                 2010-01-01                   Cyprus         82.6
## 19947                 2005-01-01                   Cyprus         79.2
## 19948                 2000-01-01                   Cyprus         76.4
## 19949                 1995-01-01                   Cyprus         73.4
## 19950                 1990-01-01                   Cyprus         72.0
## 19951                 2015-01-01                   Cyprus         85.3
## 19952                 2010-01-01                   Cyprus         82.6
## 19953                 2005-01-01                   Cyprus         79.2
## 19954                 2000-01-01                   Cyprus         76.4
## 19955                 1995-01-01                   Cyprus         73.4
## 19956                 1990-01-01                   Cyprus         72.0
## 19957                 2015-01-01                   Cyprus         85.3
## 19958                 2010-01-01                   Cyprus         82.6
## 19959                 2005-01-01                   Cyprus         79.2
## 19960                 2000-01-01                   Cyprus         76.4
## 19961                 1995-01-01                   Cyprus         73.4
## 19962                 1990-01-01                   Cyprus         72.0
## 19963                 2015-01-01                   Cyprus         85.3
## 19964                 2010-01-01                   Cyprus         82.6
## 19965                 2005-01-01                   Cyprus         79.2
## 19966                 2000-01-01                   Cyprus         76.4
## 19967                 1995-01-01                   Cyprus         73.4
## 19968                 1990-01-01                   Cyprus         72.0
## 19969                 2015-01-01                   Cyprus         85.3
## 19970                 2010-01-01                   Cyprus         82.6
## 19971                 2005-01-01                   Cyprus         79.2
## 19972                 2000-01-01                   Cyprus         76.4
## 19973                 1995-01-01                   Cyprus         73.4
## 19974                 1990-01-01                   Cyprus         72.0
## 19975                 2015-01-01                   Cyprus         85.3
## 19976                 2010-01-01                   Cyprus         82.6
## 19977                 2005-01-01                   Cyprus         79.2
## 19978                 2000-01-01                   Cyprus         76.4
## 19979                 1995-01-01                   Cyprus         73.4
## 19980                 1990-01-01                   Cyprus         72.0
## 19981                 2015-01-01                   Cyprus         85.3
## 19982                 2010-01-01                   Cyprus         82.6
## 19983                 2005-01-01                   Cyprus         79.2
## 19984                 2000-01-01                   Cyprus         76.4
## 19985                 1995-01-01                   Cyprus         73.4
## 19986                 1990-01-01                   Cyprus         72.0
## 19987                 2015-01-01                   Cyprus         85.3
## 19988                 2010-01-01                   Cyprus         82.6
## 19989                 2005-01-01                   Cyprus         79.2
## 19990                 2000-01-01                   Cyprus         76.4
## 19991                 1995-01-01                   Cyprus         73.4
## 19992                 1990-01-01                   Cyprus         72.0
## 19993                 2015-01-01                   Cyprus         85.3
## 19994                 2010-01-01                   Cyprus         82.6
## 19995                 2005-01-01                   Cyprus         79.2
## 19996                 2000-01-01                   Cyprus         76.4
## 19997                 1995-01-01                   Cyprus         73.4
## 19998                 1990-01-01                   Cyprus         72.0
## 19999                 2015-01-01                   Cyprus         85.3
## 20000                 2010-01-01                   Cyprus         82.6
## 20001                 2005-01-01                   Cyprus         79.2
## 20002                 2000-01-01                   Cyprus         76.4
## 20003                 1995-01-01                   Cyprus         73.4
## 20004                 1990-01-01                   Cyprus         72.0
## 20005                 2015-01-01                   Cyprus         85.3
## 20006                 2010-01-01                   Cyprus         82.6
## 20007                 2005-01-01                   Cyprus         79.2
## 20008                 2000-01-01                   Cyprus         76.4
## 20009                 1995-01-01                   Cyprus         73.4
## 20010                 1990-01-01                   Cyprus         72.0
## 20011                 2015-01-01                   Cyprus         85.3
## 20012                 2010-01-01                   Cyprus         82.6
## 20013                 2005-01-01                   Cyprus         79.2
## 20014                 2000-01-01                   Cyprus         76.4
## 20015                 1995-01-01                   Cyprus         73.4
## 20016                 1990-01-01                   Cyprus         72.0
## 20017                 2015-01-01                   Cyprus         85.3
## 20018                 2010-01-01                   Cyprus         82.6
## 20019                 2005-01-01                   Cyprus         79.2
## 20020                 2000-01-01                   Cyprus         76.4
## 20021                 1995-01-01                   Cyprus         73.4
## 20022                 1990-01-01                   Cyprus         72.0
## 20023                 2015-01-01                   Cyprus         85.3
## 20024                 2010-01-01                   Cyprus         82.6
## 20025                 2005-01-01                   Cyprus         79.2
## 20026                 2000-01-01                   Cyprus         76.4
## 20027                 1995-01-01                   Cyprus         73.4
## 20028                 1990-01-01                   Cyprus         72.0
## 20029                 2015-01-01                   Cyprus         85.3
## 20030                 2010-01-01                   Cyprus         82.6
## 20031                 2005-01-01                   Cyprus         79.2
## 20032                 2000-01-01                   Cyprus         76.4
## 20033                 1995-01-01                   Cyprus         73.4
## 20034                 1990-01-01                   Cyprus         72.0
## 20035                 2015-01-01                   Cyprus         85.3
## 20036                 2010-01-01                   Cyprus         82.6
## 20037                 2005-01-01                   Cyprus         79.2
## 20038                 2000-01-01                   Cyprus         76.4
## 20039                 1995-01-01                   Cyprus         73.4
## 20040                 1990-01-01                   Cyprus         72.0
## 20041                 2015-01-01                   Cyprus         85.3
## 20042                 2010-01-01                   Cyprus         82.6
## 20043                 2005-01-01                   Cyprus         79.2
## 20044                 2000-01-01                   Cyprus         76.4
## 20045                 1995-01-01                   Cyprus         73.4
## 20046                 1990-01-01                   Cyprus         72.0
## 20047                 2015-01-01                   Cyprus         85.3
## 20048                 2010-01-01                   Cyprus         82.6
## 20049                 2005-01-01                   Cyprus         79.2
## 20050                 2000-01-01                   Cyprus         76.4
## 20051                 1995-01-01                   Cyprus         73.4
## 20052                 1990-01-01                   Cyprus         72.0
## 20053                 2015-01-01                   Cyprus         85.3
## 20054                 2010-01-01                   Cyprus         82.6
## 20055                 2005-01-01                   Cyprus         79.2
## 20056                 2000-01-01                   Cyprus         76.4
## 20057                 1995-01-01                   Cyprus         73.4
## 20058                 1990-01-01                   Cyprus         72.0
## 20059                 2015-01-01                   Cyprus         85.3
## 20060                 2010-01-01                   Cyprus         82.6
## 20061                 2005-01-01                   Cyprus         79.2
## 20062                 2000-01-01                   Cyprus         76.4
## 20063                 1995-01-01                   Cyprus         73.4
## 20064                 1990-01-01                   Cyprus         72.0
## 20065                 2015-01-01                   Cyprus         85.3
## 20066                 2010-01-01                   Cyprus         82.6
## 20067                 2005-01-01                   Cyprus         79.2
## 20068                 2000-01-01                   Cyprus         76.4
## 20069                 1995-01-01                   Cyprus         73.4
## 20070                 1990-01-01                   Cyprus         72.0
## 20071                 2015-01-01                   Cyprus         85.3
## 20072                 2010-01-01                   Cyprus         82.6
## 20073                 2005-01-01                   Cyprus         79.2
## 20074                 2000-01-01                   Cyprus         76.4
## 20075                 1995-01-01                   Cyprus         73.4
## 20076                 1990-01-01                   Cyprus         72.0
## 20077                 2015-01-01                   Cyprus         85.3
## 20078                 2010-01-01                   Cyprus         82.6
## 20079                 2005-01-01                   Cyprus         79.2
## 20080                 2000-01-01                   Cyprus         76.4
## 20081                 1995-01-01                   Cyprus         73.4
## 20082                 1990-01-01                   Cyprus         72.0
## 20083                 2015-01-01                   Cyprus         85.3
## 20084                 2010-01-01                   Cyprus         82.6
## 20085                 2005-01-01                   Cyprus         79.2
## 20086                 2000-01-01                   Cyprus         76.4
## 20087                 1995-01-01                   Cyprus         73.4
## 20088                 1990-01-01                   Cyprus         72.0
## 20089                 2015-01-01                   Cyprus         85.3
## 20090                 2010-01-01                   Cyprus         82.6
## 20091                 2005-01-01                   Cyprus         79.2
## 20092                 2000-01-01                   Cyprus         76.4
## 20093                 1995-01-01                   Cyprus         73.4
## 20094                 1990-01-01                   Cyprus         72.0
## 20095                 2015-01-01                   Cyprus         85.3
## 20096                 2010-01-01                   Cyprus         82.6
## 20097                 2005-01-01                   Cyprus         79.2
## 20098                 2000-01-01                   Cyprus         76.4
## 20099                 1995-01-01                   Cyprus         73.4
## 20100                 1990-01-01                   Cyprus         72.0
## 20101                 2015-01-01                   Cyprus         85.3
## 20102                 2010-01-01                   Cyprus         82.6
## 20103                 2005-01-01                   Cyprus         79.2
## 20104                 2000-01-01                   Cyprus         76.4
## 20105                 1995-01-01                   Cyprus         73.4
## 20106                 1990-01-01                   Cyprus         72.0
## 20107                 2015-01-01                   Cyprus         85.3
## 20108                 2010-01-01                   Cyprus         82.6
## 20109                 2005-01-01                   Cyprus         79.2
## 20110                 2000-01-01                   Cyprus         76.4
## 20111                 1995-01-01                   Cyprus         73.4
## 20112                 1990-01-01                   Cyprus         72.0
## 20113                 2015-01-01                   Cyprus         85.3
## 20114                 2010-01-01                   Cyprus         82.6
## 20115                 2005-01-01                   Cyprus         79.2
## 20116                 2000-01-01                   Cyprus         76.4
## 20117                 1995-01-01                   Cyprus         73.4
## 20118                 1990-01-01                   Cyprus         72.0
## 20119                 2015-01-01                   Cyprus         85.3
## 20120                 2010-01-01                   Cyprus         82.6
## 20121                 2005-01-01                   Cyprus         79.2
## 20122                 2000-01-01                   Cyprus         76.4
## 20123                 1995-01-01                   Cyprus         73.4
## 20124                 1990-01-01                   Cyprus         72.0
## 20125                 2015-01-01                   Cyprus         85.3
## 20126                 2010-01-01                   Cyprus         82.6
## 20127                 2005-01-01                   Cyprus         79.2
## 20128                 2000-01-01                   Cyprus         76.4
## 20129                 1995-01-01                   Cyprus         73.4
## 20130                 1990-01-01                   Cyprus         72.0
## 20131                 2015-01-01                   Cyprus         85.3
## 20132                 2010-01-01                   Cyprus         82.6
## 20133                 2005-01-01                   Cyprus         79.2
## 20134                 2000-01-01                   Cyprus         76.4
## 20135                 1995-01-01                   Cyprus         73.4
## 20136                 1990-01-01                   Cyprus         72.0
## 20137                 2015-01-01                   Cyprus         85.3
## 20138                 2010-01-01                   Cyprus         82.6
## 20139                 2005-01-01                   Cyprus         79.2
## 20140                 2000-01-01                   Cyprus         76.4
## 20141                 1995-01-01                   Cyprus         73.4
## 20142                 1990-01-01                   Cyprus         72.0
## 20143                 2015-01-01                   Cyprus         85.3
## 20144                 2010-01-01                   Cyprus         82.6
## 20145                 2005-01-01                   Cyprus         79.2
## 20146                 2000-01-01                   Cyprus         76.4
## 20147                 1995-01-01                   Cyprus         73.4
## 20148                 1990-01-01                   Cyprus         72.0
## 20149                 2015-01-01                   Cyprus         85.3
## 20150                 2010-01-01                   Cyprus         82.6
## 20151                 2005-01-01                   Cyprus         79.2
## 20152                 2000-01-01                   Cyprus         76.4
## 20153                 1995-01-01                   Cyprus         73.4
## 20154                 1990-01-01                   Cyprus         72.0
## 20155                 2015-01-01                   Cyprus         85.3
## 20156                 2010-01-01                   Cyprus         82.6
## 20157                 2005-01-01                   Cyprus         79.2
## 20158                 2000-01-01                   Cyprus         76.4
## 20159                 1995-01-01                   Cyprus         73.4
## 20160                 1990-01-01                   Cyprus         72.0
## 20161                 2015-01-01                   Cyprus         85.3
## 20162                 2010-01-01                   Cyprus         82.6
## 20163                 2005-01-01                   Cyprus         79.2
## 20164                 2000-01-01                   Cyprus         76.4
## 20165                 1995-01-01                   Cyprus         73.4
## 20166                 1990-01-01                   Cyprus         72.0
## 20167                 2015-01-01                   Cyprus         85.3
## 20168                 2010-01-01                   Cyprus         82.6
## 20169                 2005-01-01                   Cyprus         79.2
## 20170                 2000-01-01                   Cyprus         76.4
## 20171                 1995-01-01                   Cyprus         73.4
## 20172                 1990-01-01                   Cyprus         72.0
## 20173                 2015-01-01                   Cyprus         85.3
## 20174                 2010-01-01                   Cyprus         82.6
## 20175                 2005-01-01                   Cyprus         79.2
## 20176                 2000-01-01                   Cyprus         76.4
## 20177                 1995-01-01                   Cyprus         73.4
## 20178                 1990-01-01                   Cyprus         72.0
## 20179                 2015-01-01                   Cyprus         85.3
## 20180                 2010-01-01                   Cyprus         82.6
## 20181                 2005-01-01                   Cyprus         79.2
## 20182                 2000-01-01                   Cyprus         76.4
## 20183                 1995-01-01                   Cyprus         73.4
## 20184                 1990-01-01                   Cyprus         72.0
## 20185                 2015-01-01                   Cyprus         85.3
## 20186                 2010-01-01                   Cyprus         82.6
## 20187                 2005-01-01                   Cyprus         79.2
## 20188                 2000-01-01                   Cyprus         76.4
## 20189                 1995-01-01                   Cyprus         73.4
## 20190                 1990-01-01                   Cyprus         72.0
## 20191                 2015-01-01                   Cyprus         85.3
## 20192                 2010-01-01                   Cyprus         82.6
## 20193                 2005-01-01                   Cyprus         79.2
## 20194                 2000-01-01                   Cyprus         76.4
## 20195                 1995-01-01                   Cyprus         73.4
## 20196                 1990-01-01                   Cyprus         72.0
## 20197                 2015-01-01                   Cyprus         85.3
## 20198                 2010-01-01                   Cyprus         82.6
## 20199                 2005-01-01                   Cyprus         79.2
## 20200                 2000-01-01                   Cyprus         76.4
## 20201                 1995-01-01                   Cyprus         73.4
## 20202                 1990-01-01                   Cyprus         72.0
## 20203                 2015-01-01                   Cyprus         85.3
## 20204                 2010-01-01                   Cyprus         82.6
## 20205                 2005-01-01                   Cyprus         79.2
## 20206                 2000-01-01                   Cyprus         76.4
## 20207                 1995-01-01                   Cyprus         73.4
## 20208                 1990-01-01                   Cyprus         72.0
## 20209                 2015-01-01                   Cyprus         85.3
## 20210                 2010-01-01                   Cyprus         82.6
## 20211                 2005-01-01                   Cyprus         79.2
## 20212                 2000-01-01                   Cyprus         76.4
## 20213                 1995-01-01                   Cyprus         73.4
## 20214                 1990-01-01                   Cyprus         72.0
## 20215                 2015-01-01                   Cyprus         85.3
## 20216                 2010-01-01                   Cyprus         82.6
## 20217                 2005-01-01                   Cyprus         79.2
## 20218                 2000-01-01                   Cyprus         76.4
## 20219                 1995-01-01                   Cyprus         73.4
## 20220                 1990-01-01                   Cyprus         72.0
## 20221                 2015-01-01                   Cyprus         85.3
## 20222                 2010-01-01                   Cyprus         82.6
## 20223                 2005-01-01                   Cyprus         79.2
## 20224                 2000-01-01                   Cyprus         76.4
## 20225                 1995-01-01                   Cyprus         73.4
## 20226                 1990-01-01                   Cyprus         72.0
## 20227                 2015-01-01                   Cyprus         85.3
## 20228                 2010-01-01                   Cyprus         82.6
## 20229                 2005-01-01                   Cyprus         79.2
## 20230                 2000-01-01                   Cyprus         76.4
## 20231                 1995-01-01                   Cyprus         73.4
## 20232                 1990-01-01                   Cyprus         72.0
## 20233                 2015-01-01                   Cyprus         85.3
## 20234                 2010-01-01                   Cyprus         82.6
## 20235                 2005-01-01                   Cyprus         79.2
## 20236                 2000-01-01                   Cyprus         76.4
## 20237                 1995-01-01                   Cyprus         73.4
## 20238                 1990-01-01                   Cyprus         72.0
## 20239                 2015-01-01                   Cyprus         85.3
## 20240                 2010-01-01                   Cyprus         82.6
## 20241                 2005-01-01                   Cyprus         79.2
## 20242                 2000-01-01                   Cyprus         76.4
## 20243                 1995-01-01                   Cyprus         73.4
## 20244                 1990-01-01                   Cyprus         72.0
## 20245                 2015-01-01                   Israel         85.5
## 20246                 2010-01-01                   Israel         83.7
## 20247                 2005-01-01                   Israel         80.3
## 20248                 2000-01-01                   Israel         77.5
## 20249                 1995-01-01                   Israel         74.3
## 20250                 1990-01-01                   Israel         71.3
## 20251                 2015-01-01                   Cyprus         85.3
## 20252                 2010-01-01                   Cyprus         82.6
## 20253                 2005-01-01                   Cyprus         79.2
## 20254                 2000-01-01                   Cyprus         76.4
## 20255                 1995-01-01                   Cyprus         73.4
## 20256                 1990-01-01                   Cyprus         72.0
## 20257                 2015-01-01                   Cyprus         85.3
## 20258                 2010-01-01                   Cyprus         82.6
## 20259                 2005-01-01                   Cyprus         79.2
## 20260                 2000-01-01                   Cyprus         76.4
## 20261                 1995-01-01                   Cyprus         73.4
## 20262                 1990-01-01                   Cyprus         72.0
## 20263                 2015-01-01                   Cyprus         85.3
## 20264                 2010-01-01                   Cyprus         82.6
## 20265                 2005-01-01                   Cyprus         79.2
## 20266                 2000-01-01                   Cyprus         76.4
## 20267                 1995-01-01                   Cyprus         73.4
## 20268                 1990-01-01                   Cyprus         72.0
## 20269                 2015-01-01                   Cyprus         85.3
## 20270                 2010-01-01                   Cyprus         82.6
## 20271                 2005-01-01                   Cyprus         79.2
## 20272                 2000-01-01                   Cyprus         76.4
## 20273                 1995-01-01                   Cyprus         73.4
## 20274                 1990-01-01                   Cyprus         72.0
## 20275                 2015-01-01                   Cyprus         85.3
## 20276                 2010-01-01                   Cyprus         82.6
## 20277                 2005-01-01                   Cyprus         79.2
## 20278                 2000-01-01                   Cyprus         76.4
## 20279                 1995-01-01                   Cyprus         73.4
## 20280                 1990-01-01                   Cyprus         72.0
## 20281                 2015-01-01                   Cyprus         85.3
## 20282                 2010-01-01                   Cyprus         82.6
## 20283                 2005-01-01                   Cyprus         79.2
## 20284                 2000-01-01                   Cyprus         76.4
## 20285                 1995-01-01                   Cyprus         73.4
## 20286                 1990-01-01                   Cyprus         72.0
## 20287                 2015-01-01                   Cyprus         85.3
## 20288                 2010-01-01                   Cyprus         82.6
## 20289                 2005-01-01                   Cyprus         79.2
## 20290                 2000-01-01                   Cyprus         76.4
## 20291                 1995-01-01                   Cyprus         73.4
## 20292                 1990-01-01                   Cyprus         72.0
## 20293                 2015-01-01                   Cyprus         85.3
## 20294                 2010-01-01                   Cyprus         82.6
## 20295                 2005-01-01                   Cyprus         79.2
## 20296                 2000-01-01                   Cyprus         76.4
## 20297                 1995-01-01                   Cyprus         73.4
## 20298                 1990-01-01                   Cyprus         72.0
## 20299                 2015-01-01                   Cyprus         85.3
## 20300                 2010-01-01                   Cyprus         82.6
## 20301                 2005-01-01                   Cyprus         79.2
## 20302                 2000-01-01                   Cyprus         76.4
## 20303                 1995-01-01                   Cyprus         73.4
## 20304                 1990-01-01                   Cyprus         72.0
## 20305                 2015-01-01                   Cyprus         85.3
## 20306                 2010-01-01                   Cyprus         82.6
## 20307                 2005-01-01                   Cyprus         79.2
## 20308                 2000-01-01                   Cyprus         76.4
## 20309                 1995-01-01                   Cyprus         73.4
## 20310                 1990-01-01                   Cyprus         72.0
## 20311                 2015-01-01                   Cyprus         85.3
## 20312                 2010-01-01                   Cyprus         82.6
## 20313                 2005-01-01                   Cyprus         79.2
## 20314                 2000-01-01                   Cyprus         76.4
## 20315                 1995-01-01                   Cyprus         73.4
## 20316                 1990-01-01                   Cyprus         72.0
## 20317                 2015-01-01                   Cyprus         85.3
## 20318                 2010-01-01                   Cyprus         82.6
## 20319                 2005-01-01                   Cyprus         79.2
## 20320                 2000-01-01                   Cyprus         76.4
## 20321                 1995-01-01                   Cyprus         73.4
## 20322                 1990-01-01                   Cyprus         72.0
## 20323                 2015-01-01                   Cyprus         85.3
## 20324                 2010-01-01                   Cyprus         82.6
## 20325                 2005-01-01                   Cyprus         79.2
## 20326                 2000-01-01                   Cyprus         76.4
## 20327                 1995-01-01                   Cyprus         73.4
## 20328                 1990-01-01                   Cyprus         72.0
## 20329                 2015-01-01                   Cyprus         85.3
## 20330                 2010-01-01                   Cyprus         82.6
## 20331                 2005-01-01                   Cyprus         79.2
## 20332                 2000-01-01                   Cyprus         76.4
## 20333                 1995-01-01                   Cyprus         73.4
## 20334                 1990-01-01                   Cyprus         72.0
## 20335                 2015-01-01                   Cyprus         85.3
## 20336                 2010-01-01                   Cyprus         82.6
## 20337                 2005-01-01                   Cyprus         79.2
## 20338                 2000-01-01                   Cyprus         76.4
## 20339                 1995-01-01                   Cyprus         73.4
## 20340                 1990-01-01                   Cyprus         72.0
## 20341                 2015-01-01                   Cyprus         85.3
## 20342                 2010-01-01                   Cyprus         82.6
## 20343                 2005-01-01                   Cyprus         79.2
## 20344                 2000-01-01                   Cyprus         76.4
## 20345                 1995-01-01                   Cyprus         73.4
## 20346                 1990-01-01                   Cyprus         72.0
## 20347                 2015-01-01                   Cyprus         85.3
## 20348                 2010-01-01                   Cyprus         82.6
## 20349                 2005-01-01                   Cyprus         79.2
## 20350                 2000-01-01                   Cyprus         76.4
## 20351                 1995-01-01                   Cyprus         73.4
## 20352                 1990-01-01                   Cyprus         72.0
## 20353                 2015-01-01                   Cyprus         85.3
## 20354                 2010-01-01                   Cyprus         82.6
## 20355                 2005-01-01                   Cyprus         79.2
## 20356                 2000-01-01                   Cyprus         76.4
## 20357                 1995-01-01                   Cyprus         73.4
## 20358                 1990-01-01                   Cyprus         72.0
## 20359                 2015-01-01                   Cyprus         85.3
## 20360                 2010-01-01                   Cyprus         82.6
## 20361                 2005-01-01                   Cyprus         79.2
## 20362                 2000-01-01                   Cyprus         76.4
## 20363                 1995-01-01                   Cyprus         73.4
## 20364                 1990-01-01                   Cyprus         72.0
## 20365                 2015-01-01                   Cyprus         85.3
## 20366                 2010-01-01                   Cyprus         82.6
## 20367                 2005-01-01                   Cyprus         79.2
## 20368                 2000-01-01                   Cyprus         76.4
## 20369                 1995-01-01                   Cyprus         73.4
## 20370                 1990-01-01                   Cyprus         72.0
## 20371                 2015-01-01                   Cyprus         85.3
## 20372                 2010-01-01                   Cyprus         82.6
## 20373                 2005-01-01                   Cyprus         79.2
## 20374                 2000-01-01                   Cyprus         76.4
## 20375                 1995-01-01                   Cyprus         73.4
## 20376                 1990-01-01                   Cyprus         72.0
## 20377                 2015-01-01                   Cyprus         85.3
## 20378                 2010-01-01                   Cyprus         82.6
## 20379                 2005-01-01                   Cyprus         79.2
## 20380                 2000-01-01                   Cyprus         76.4
## 20381                 1995-01-01                   Cyprus         73.4
## 20382                 1990-01-01                   Cyprus         72.0
## 20383                 2015-01-01                   Cyprus         85.3
## 20384                 2010-01-01                   Cyprus         82.6
## 20385                 2005-01-01                   Cyprus         79.2
## 20386                 2000-01-01                   Cyprus         76.4
## 20387                 1995-01-01                   Cyprus         73.4
## 20388                 1990-01-01                   Cyprus         72.0
## 20389                 2015-01-01                   Cyprus         85.3
## 20390                 2010-01-01                   Cyprus         82.6
## 20391                 2005-01-01                   Cyprus         79.2
## 20392                 2000-01-01                   Cyprus         76.4
## 20393                 1995-01-01                   Cyprus         73.4
## 20394                 1990-01-01                   Cyprus         72.0
## 20395                 2015-01-01                   Cyprus         85.3
## 20396                 2010-01-01                   Cyprus         82.6
## 20397                 2005-01-01                   Cyprus         79.2
## 20398                 2000-01-01                   Cyprus         76.4
## 20399                 1995-01-01                   Cyprus         73.4
## 20400                 1990-01-01                   Cyprus         72.0
## 20401                 2015-01-01                   Cyprus         85.3
## 20402                 2010-01-01                   Cyprus         82.6
## 20403                 2005-01-01                   Cyprus         79.2
## 20404                 2000-01-01                   Cyprus         76.4
## 20405                 1995-01-01                   Cyprus         73.4
## 20406                 1990-01-01                   Cyprus         72.0
## 20407                 2015-01-01           Czech Republic         84.8
## 20408                 2010-01-01           Czech Republic         81.8
## 20409                 2005-01-01           Czech Republic         79.2
## 20410                 2000-01-01           Czech Republic         77.1
## 20411                 1995-01-01           Czech Republic         73.2
## 20412                 1990-01-01           Czech Republic         68.3
## 20413                 2015-01-01           Czech Republic         84.8
## 20414                 2010-01-01           Czech Republic         81.8
## 20415                 2005-01-01           Czech Republic         79.2
## 20416                 2000-01-01           Czech Republic         77.1
## 20417                 1995-01-01           Czech Republic         73.2
## 20418                 1990-01-01           Czech Republic         68.3
## 20419                 2015-01-01           Czech Republic         84.8
## 20420                 2010-01-01           Czech Republic         81.8
## 20421                 2005-01-01           Czech Republic         79.2
## 20422                 2000-01-01           Czech Republic         77.1
## 20423                 1995-01-01           Czech Republic         73.2
## 20424                 1990-01-01           Czech Republic         68.3
## 20425                 2015-01-01           Czech Republic         84.8
## 20426                 2010-01-01           Czech Republic         81.8
## 20427                 2005-01-01           Czech Republic         79.2
## 20428                 2000-01-01           Czech Republic         77.1
## 20429                 1995-01-01           Czech Republic         73.2
## 20430                 1990-01-01           Czech Republic         68.3
## 20431                 2015-01-01           Czech Republic         84.8
## 20432                 2010-01-01           Czech Republic         81.8
## 20433                 2005-01-01           Czech Republic         79.2
## 20434                 2000-01-01           Czech Republic         77.1
## 20435                 1995-01-01           Czech Republic         73.2
## 20436                 1990-01-01           Czech Republic         68.3
## 20437                 2015-01-01           Czech Republic         84.8
## 20438                 2010-01-01           Czech Republic         81.8
## 20439                 2005-01-01           Czech Republic         79.2
## 20440                 2000-01-01           Czech Republic         77.1
## 20441                 1995-01-01           Czech Republic         73.2
## 20442                 1990-01-01           Czech Republic         68.3
## 20443                 2015-01-01           Czech Republic         84.8
## 20444                 2010-01-01           Czech Republic         81.8
## 20445                 2005-01-01           Czech Republic         79.2
## 20446                 2000-01-01           Czech Republic         77.1
## 20447                 1995-01-01           Czech Republic         73.2
## 20448                 1990-01-01           Czech Republic         68.3
## 20449                 2015-01-01           Czech Republic         84.8
## 20450                 2010-01-01           Czech Republic         81.8
## 20451                 2005-01-01           Czech Republic         79.2
## 20452                 2000-01-01           Czech Republic         77.1
## 20453                 1995-01-01           Czech Republic         73.2
## 20454                 1990-01-01           Czech Republic         68.3
## 20455                 2015-01-01           Czech Republic         84.8
## 20456                 2010-01-01           Czech Republic         81.8
## 20457                 2005-01-01           Czech Republic         79.2
## 20458                 2000-01-01           Czech Republic         77.1
## 20459                 1995-01-01           Czech Republic         73.2
## 20460                 1990-01-01           Czech Republic         68.3
## 20461                 2015-01-01           Czech Republic         84.8
## 20462                 2010-01-01           Czech Republic         81.8
## 20463                 2005-01-01           Czech Republic         79.2
## 20464                 2000-01-01           Czech Republic         77.1
## 20465                 1995-01-01           Czech Republic         73.2
## 20466                 1990-01-01           Czech Republic         68.3
## 20467                 2015-01-01           Czech Republic         84.8
## 20468                 2010-01-01           Czech Republic         81.8
## 20469                 2005-01-01           Czech Republic         79.2
## 20470                 2000-01-01           Czech Republic         77.1
## 20471                 1995-01-01           Czech Republic         73.2
## 20472                 1990-01-01           Czech Republic         68.3
## 20473                 2015-01-01           Czech Republic         84.8
## 20474                 2010-01-01           Czech Republic         81.8
## 20475                 2005-01-01           Czech Republic         79.2
## 20476                 2000-01-01           Czech Republic         77.1
## 20477                 1995-01-01           Czech Republic         73.2
## 20478                 1990-01-01           Czech Republic         68.3
## 20479                 2015-01-01           Czech Republic         84.8
## 20480                 2010-01-01           Czech Republic         81.8
## 20481                 2005-01-01           Czech Republic         79.2
## 20482                 2000-01-01           Czech Republic         77.1
## 20483                 1995-01-01           Czech Republic         73.2
## 20484                 1990-01-01           Czech Republic         68.3
## 20485                 2015-01-01           Czech Republic         84.8
## 20486                 2010-01-01           Czech Republic         81.8
## 20487                 2005-01-01           Czech Republic         79.2
## 20488                 2000-01-01           Czech Republic         77.1
## 20489                 1995-01-01           Czech Republic         73.2
## 20490                 1990-01-01           Czech Republic         68.3
## 20491                 2015-01-01           Czech Republic         84.8
## 20492                 2010-01-01           Czech Republic         81.8
## 20493                 2005-01-01           Czech Republic         79.2
## 20494                 2000-01-01           Czech Republic         77.1
## 20495                 1995-01-01           Czech Republic         73.2
## 20496                 1990-01-01           Czech Republic         68.3
## 20497                 2015-01-01           Czech Republic         84.8
## 20498                 2010-01-01           Czech Republic         81.8
## 20499                 2005-01-01           Czech Republic         79.2
## 20500                 2000-01-01           Czech Republic         77.1
## 20501                 1995-01-01           Czech Republic         73.2
## 20502                 1990-01-01           Czech Republic         68.3
## 20503                 2015-01-01           Czech Republic         84.8
## 20504                 2010-01-01           Czech Republic         81.8
## 20505                 2005-01-01           Czech Republic         79.2
## 20506                 2000-01-01           Czech Republic         77.1
## 20507                 1995-01-01           Czech Republic         73.2
## 20508                 1990-01-01           Czech Republic         68.3
## 20509                 2015-01-01           Czech Republic         84.8
## 20510                 2010-01-01           Czech Republic         81.8
## 20511                 2005-01-01           Czech Republic         79.2
## 20512                 2000-01-01           Czech Republic         77.1
## 20513                 1995-01-01           Czech Republic         73.2
## 20514                 1990-01-01           Czech Republic         68.3
## 20515                 2015-01-01           Czech Republic         84.8
## 20516                 2010-01-01           Czech Republic         81.8
## 20517                 2005-01-01           Czech Republic         79.2
## 20518                 2000-01-01           Czech Republic         77.1
## 20519                 1995-01-01           Czech Republic         73.2
## 20520                 1990-01-01           Czech Republic         68.3
## 20521                 2015-01-01           Czech Republic         84.8
## 20522                 2010-01-01           Czech Republic         81.8
## 20523                 2005-01-01           Czech Republic         79.2
## 20524                 2000-01-01           Czech Republic         77.1
## 20525                 1995-01-01           Czech Republic         73.2
## 20526                 1990-01-01           Czech Republic         68.3
## 20527                 2015-01-01           Czech Republic         84.8
## 20528                 2010-01-01           Czech Republic         81.8
## 20529                 2005-01-01           Czech Republic         79.2
## 20530                 2000-01-01           Czech Republic         77.1
## 20531                 1995-01-01           Czech Republic         73.2
## 20532                 1990-01-01           Czech Republic         68.3
## 20533                 2015-01-01           Czech Republic         84.8
## 20534                 2010-01-01           Czech Republic         81.8
## 20535                 2005-01-01           Czech Republic         79.2
## 20536                 2000-01-01           Czech Republic         77.1
## 20537                 1995-01-01           Czech Republic         73.2
## 20538                 1990-01-01           Czech Republic         68.3
## 20539                 2015-01-01           Czech Republic         84.8
## 20540                 2010-01-01           Czech Republic         81.8
## 20541                 2005-01-01           Czech Republic         79.2
## 20542                 2000-01-01           Czech Republic         77.1
## 20543                 1995-01-01           Czech Republic         73.2
## 20544                 1990-01-01           Czech Republic         68.3
## 20545                 2015-01-01           Czech Republic         84.8
## 20546                 2010-01-01           Czech Republic         81.8
## 20547                 2005-01-01           Czech Republic         79.2
## 20548                 2000-01-01           Czech Republic         77.1
## 20549                 1995-01-01           Czech Republic         73.2
## 20550                 1990-01-01           Czech Republic         68.3
## 20551                 2015-01-01           Czech Republic         84.8
## 20552                 2010-01-01           Czech Republic         81.8
## 20553                 2005-01-01           Czech Republic         79.2
## 20554                 2000-01-01           Czech Republic         77.1
## 20555                 1995-01-01           Czech Republic         73.2
## 20556                 1990-01-01           Czech Republic         68.3
## 20557                 2015-01-01           Czech Republic         84.8
## 20558                 2010-01-01           Czech Republic         81.8
## 20559                 2005-01-01           Czech Republic         79.2
## 20560                 2000-01-01           Czech Republic         77.1
## 20561                 1995-01-01           Czech Republic         73.2
## 20562                 1990-01-01           Czech Republic         68.3
## 20563                 2015-01-01           Czech Republic         84.8
## 20564                 2010-01-01           Czech Republic         81.8
## 20565                 2005-01-01           Czech Republic         79.2
## 20566                 2000-01-01           Czech Republic         77.1
## 20567                 1995-01-01           Czech Republic         73.2
## 20568                 1990-01-01           Czech Republic         68.3
## 20569                 2015-01-01           Czech Republic         84.8
## 20570                 2010-01-01           Czech Republic         81.8
## 20571                 2005-01-01           Czech Republic         79.2
## 20572                 2000-01-01           Czech Republic         77.1
## 20573                 1995-01-01           Czech Republic         73.2
## 20574                 1990-01-01           Czech Republic         68.3
## 20575                 2015-01-01           Czech Republic         84.8
## 20576                 2010-01-01           Czech Republic         81.8
## 20577                 2005-01-01           Czech Republic         79.2
## 20578                 2000-01-01           Czech Republic         77.1
## 20579                 1995-01-01           Czech Republic         73.2
## 20580                 1990-01-01           Czech Republic         68.3
## 20581                 2015-01-01           Czech Republic         84.8
## 20582                 2010-01-01           Czech Republic         81.8
## 20583                 2005-01-01           Czech Republic         79.2
## 20584                 2000-01-01           Czech Republic         77.1
## 20585                 1995-01-01           Czech Republic         73.2
## 20586                 1990-01-01           Czech Republic         68.3
## 20587                 2015-01-01           Czech Republic         84.8
## 20588                 2010-01-01           Czech Republic         81.8
## 20589                 2005-01-01           Czech Republic         79.2
## 20590                 2000-01-01           Czech Republic         77.1
## 20591                 1995-01-01           Czech Republic         73.2
## 20592                 1990-01-01           Czech Republic         68.3
## 20593                 2015-01-01           Czech Republic         84.8
## 20594                 2010-01-01           Czech Republic         81.8
## 20595                 2005-01-01           Czech Republic         79.2
## 20596                 2000-01-01           Czech Republic         77.1
## 20597                 1995-01-01           Czech Republic         73.2
## 20598                 1990-01-01           Czech Republic         68.3
## 20599                 2015-01-01           Czech Republic         84.8
## 20600                 2010-01-01           Czech Republic         81.8
## 20601                 2005-01-01           Czech Republic         79.2
## 20602                 2000-01-01           Czech Republic         77.1
## 20603                 1995-01-01           Czech Republic         73.2
## 20604                 1990-01-01           Czech Republic         68.3
## 20605                 2015-01-01           Czech Republic         84.8
## 20606                 2010-01-01           Czech Republic         81.8
## 20607                 2005-01-01           Czech Republic         79.2
## 20608                 2000-01-01           Czech Republic         77.1
## 20609                 1995-01-01           Czech Republic         73.2
## 20610                 1990-01-01           Czech Republic         68.3
## 20611                 2015-01-01           Czech Republic         84.8
## 20612                 2010-01-01           Czech Republic         81.8
## 20613                 2005-01-01           Czech Republic         79.2
## 20614                 2000-01-01           Czech Republic         77.1
## 20615                 1995-01-01           Czech Republic         73.2
## 20616                 1990-01-01           Czech Republic         68.3
## 20617                 2015-01-01           Czech Republic         84.8
## 20618                 2010-01-01           Czech Republic         81.8
## 20619                 2005-01-01           Czech Republic         79.2
## 20620                 2000-01-01           Czech Republic         77.1
## 20621                 1995-01-01           Czech Republic         73.2
## 20622                 1990-01-01           Czech Republic         68.3
## 20623                 2015-01-01           Czech Republic         84.8
## 20624                 2010-01-01           Czech Republic         81.8
## 20625                 2005-01-01           Czech Republic         79.2
## 20626                 2000-01-01           Czech Republic         77.1
## 20627                 1995-01-01           Czech Republic         73.2
## 20628                 1990-01-01           Czech Republic         68.3
## 20629                 2015-01-01           Czech Republic         84.8
## 20630                 2010-01-01           Czech Republic         81.8
## 20631                 2005-01-01           Czech Republic         79.2
## 20632                 2000-01-01           Czech Republic         77.1
## 20633                 1995-01-01           Czech Republic         73.2
## 20634                 1990-01-01           Czech Republic         68.3
## 20635                 2015-01-01           Czech Republic         84.8
## 20636                 2010-01-01           Czech Republic         81.8
## 20637                 2005-01-01           Czech Republic         79.2
## 20638                 2000-01-01           Czech Republic         77.1
## 20639                 1995-01-01           Czech Republic         73.2
## 20640                 1990-01-01           Czech Republic         68.3
## 20641                 2015-01-01           Czech Republic         84.8
## 20642                 2010-01-01           Czech Republic         81.8
## 20643                 2005-01-01           Czech Republic         79.2
## 20644                 2000-01-01           Czech Republic         77.1
## 20645                 1995-01-01           Czech Republic         73.2
## 20646                 1990-01-01           Czech Republic         68.3
## 20647                 2015-01-01           Czech Republic         84.8
## 20648                 2010-01-01           Czech Republic         81.8
## 20649                 2005-01-01           Czech Republic         79.2
## 20650                 2000-01-01           Czech Republic         77.1
## 20651                 1995-01-01           Czech Republic         73.2
## 20652                 1990-01-01           Czech Republic         68.3
## 20653                 2015-01-01           Czech Republic         84.8
## 20654                 2010-01-01           Czech Republic         81.8
## 20655                 2005-01-01           Czech Republic         79.2
## 20656                 2000-01-01           Czech Republic         77.1
## 20657                 1995-01-01           Czech Republic         73.2
## 20658                 1990-01-01           Czech Republic         68.3
## 20659                 2015-01-01           Czech Republic         84.8
## 20660                 2010-01-01           Czech Republic         81.8
## 20661                 2005-01-01           Czech Republic         79.2
## 20662                 2000-01-01           Czech Republic         77.1
## 20663                 1995-01-01           Czech Republic         73.2
## 20664                 1990-01-01           Czech Republic         68.3
## 20665                 2015-01-01           Czech Republic         84.8
## 20666                 2010-01-01           Czech Republic         81.8
## 20667                 2005-01-01           Czech Republic         79.2
## 20668                 2000-01-01           Czech Republic         77.1
## 20669                 1995-01-01           Czech Republic         73.2
## 20670                 1990-01-01           Czech Republic         68.3
## 20671                 2015-01-01           Czech Republic         84.8
## 20672                 2010-01-01           Czech Republic         81.8
## 20673                 2005-01-01           Czech Republic         79.2
## 20674                 2000-01-01           Czech Republic         77.1
## 20675                 1995-01-01           Czech Republic         73.2
## 20676                 1990-01-01           Czech Republic         68.3
## 20677                 2015-01-01           Czech Republic         84.8
## 20678                 2010-01-01           Czech Republic         81.8
## 20679                 2005-01-01           Czech Republic         79.2
## 20680                 2000-01-01           Czech Republic         77.1
## 20681                 1995-01-01           Czech Republic         73.2
## 20682                 1990-01-01           Czech Republic         68.3
## 20683                 2015-01-01           Czech Republic         84.8
## 20684                 2010-01-01           Czech Republic         81.8
## 20685                 2005-01-01           Czech Republic         79.2
## 20686                 2000-01-01           Czech Republic         77.1
## 20687                 1995-01-01           Czech Republic         73.2
## 20688                 1990-01-01           Czech Republic         68.3
## 20689                 2015-01-01           Czech Republic         84.8
## 20690                 2010-01-01           Czech Republic         81.8
## 20691                 2005-01-01           Czech Republic         79.2
## 20692                 2000-01-01           Czech Republic         77.1
## 20693                 1995-01-01           Czech Republic         73.2
## 20694                 1990-01-01           Czech Republic         68.3
## 20695                 2015-01-01           Czech Republic         84.8
## 20696                 2010-01-01           Czech Republic         81.8
## 20697                 2005-01-01           Czech Republic         79.2
## 20698                 2000-01-01           Czech Republic         77.1
## 20699                 1995-01-01           Czech Republic         73.2
## 20700                 1990-01-01           Czech Republic         68.3
## 20701                 2015-01-01           Czech Republic         84.8
## 20702                 2010-01-01           Czech Republic         81.8
## 20703                 2005-01-01           Czech Republic         79.2
## 20704                 2000-01-01           Czech Republic         77.1
## 20705                 1995-01-01           Czech Republic         73.2
## 20706                 1990-01-01           Czech Republic         68.3
## 20707                 2015-01-01           Czech Republic         84.8
## 20708                 2010-01-01           Czech Republic         81.8
## 20709                 2005-01-01           Czech Republic         79.2
## 20710                 2000-01-01           Czech Republic         77.1
## 20711                 1995-01-01           Czech Republic         73.2
## 20712                 1990-01-01           Czech Republic         68.3
## 20713                 2015-01-01           Czech Republic         84.8
## 20714                 2010-01-01           Czech Republic         81.8
## 20715                 2005-01-01           Czech Republic         79.2
## 20716                 2000-01-01           Czech Republic         77.1
## 20717                 1995-01-01           Czech Republic         73.2
## 20718                 1990-01-01           Czech Republic         68.3
## 20719                 2015-01-01           Czech Republic         84.8
## 20720                 2010-01-01           Czech Republic         81.8
## 20721                 2005-01-01           Czech Republic         79.2
## 20722                 2000-01-01           Czech Republic         77.1
## 20723                 1995-01-01           Czech Republic         73.2
## 20724                 1990-01-01           Czech Republic         68.3
## 20725                 2015-01-01           Czech Republic         84.8
## 20726                 2010-01-01           Czech Republic         81.8
## 20727                 2005-01-01           Czech Republic         79.2
## 20728                 2000-01-01           Czech Republic         77.1
## 20729                 1995-01-01           Czech Republic         73.2
## 20730                 1990-01-01           Czech Republic         68.3
## 20731                 2015-01-01           Czech Republic         84.8
## 20732                 2010-01-01           Czech Republic         81.8
## 20733                 2005-01-01           Czech Republic         79.2
## 20734                 2000-01-01           Czech Republic         77.1
## 20735                 1995-01-01           Czech Republic         73.2
## 20736                 1990-01-01           Czech Republic         68.3
## 20737                 2015-01-01           Czech Republic         84.8
## 20738                 2010-01-01           Czech Republic         81.8
## 20739                 2005-01-01           Czech Republic         79.2
## 20740                 2000-01-01           Czech Republic         77.1
## 20741                 1995-01-01           Czech Republic         73.2
## 20742                 1990-01-01           Czech Republic         68.3
## 20743                 2015-01-01           Czech Republic         84.8
## 20744                 2010-01-01           Czech Republic         81.8
## 20745                 2005-01-01           Czech Republic         79.2
## 20746                 2000-01-01           Czech Republic         77.1
## 20747                 1995-01-01           Czech Republic         73.2
## 20748                 1990-01-01           Czech Republic         68.3
## 20749                 2015-01-01           Czech Republic         84.8
## 20750                 2010-01-01           Czech Republic         81.8
## 20751                 2005-01-01           Czech Republic         79.2
## 20752                 2000-01-01           Czech Republic         77.1
## 20753                 1995-01-01           Czech Republic         73.2
## 20754                 1990-01-01           Czech Republic         68.3
## 20755                 2015-01-01           Czech Republic         84.8
## 20756                 2010-01-01           Czech Republic         81.8
## 20757                 2005-01-01           Czech Republic         79.2
## 20758                 2000-01-01           Czech Republic         77.1
## 20759                 1995-01-01           Czech Republic         73.2
## 20760                 1990-01-01           Czech Republic         68.3
## 20761                 2015-01-01           Czech Republic         84.8
## 20762                 2010-01-01           Czech Republic         81.8
## 20763                 2005-01-01           Czech Republic         79.2
## 20764                 2000-01-01           Czech Republic         77.1
## 20765                 1995-01-01           Czech Republic         73.2
## 20766                 1990-01-01           Czech Republic         68.3
## 20767                 2015-01-01           Czech Republic         84.8
## 20768                 2010-01-01           Czech Republic         81.8
## 20769                 2005-01-01           Czech Republic         79.2
## 20770                 2000-01-01           Czech Republic         77.1
## 20771                 1995-01-01           Czech Republic         73.2
## 20772                 1990-01-01           Czech Republic         68.3
## 20773                 2015-01-01           Czech Republic         84.8
## 20774                 2010-01-01           Czech Republic         81.8
## 20775                 2005-01-01           Czech Republic         79.2
## 20776                 2000-01-01           Czech Republic         77.1
## 20777                 1995-01-01           Czech Republic         73.2
## 20778                 1990-01-01           Czech Republic         68.3
## 20779                 2015-01-01           Czech Republic         84.8
## 20780                 2010-01-01           Czech Republic         81.8
## 20781                 2005-01-01           Czech Republic         79.2
## 20782                 2000-01-01           Czech Republic         77.1
## 20783                 1995-01-01           Czech Republic         73.2
## 20784                 1990-01-01           Czech Republic         68.3
## 20785                 2015-01-01           Czech Republic         84.8
## 20786                 2010-01-01           Czech Republic         81.8
## 20787                 2005-01-01           Czech Republic         79.2
## 20788                 2000-01-01           Czech Republic         77.1
## 20789                 1995-01-01           Czech Republic         73.2
## 20790                 1990-01-01           Czech Republic         68.3
## 20791                 2015-01-01           Czech Republic         84.8
## 20792                 2010-01-01           Czech Republic         81.8
## 20793                 2005-01-01           Czech Republic         79.2
## 20794                 2000-01-01           Czech Republic         77.1
## 20795                 1995-01-01           Czech Republic         73.2
## 20796                 1990-01-01           Czech Republic         68.3
## 20797                 2015-01-01           Czech Republic         84.8
## 20798                 2010-01-01           Czech Republic         81.8
## 20799                 2005-01-01           Czech Republic         79.2
## 20800                 2000-01-01           Czech Republic         77.1
## 20801                 1995-01-01           Czech Republic         73.2
## 20802                 1990-01-01           Czech Republic         68.3
## 20803                 2015-01-01           Czech Republic         84.8
## 20804                 2010-01-01           Czech Republic         81.8
## 20805                 2005-01-01           Czech Republic         79.2
## 20806                 2000-01-01           Czech Republic         77.1
## 20807                 1995-01-01           Czech Republic         73.2
## 20808                 1990-01-01           Czech Republic         68.3
## 20809                 2015-01-01           Czech Republic         84.8
## 20810                 2010-01-01           Czech Republic         81.8
## 20811                 2005-01-01           Czech Republic         79.2
## 20812                 2000-01-01           Czech Republic         77.1
## 20813                 1995-01-01           Czech Republic         73.2
## 20814                 1990-01-01           Czech Republic         68.3
## 20815                 2015-01-01           Czech Republic         84.8
## 20816                 2010-01-01           Czech Republic         81.8
## 20817                 2005-01-01           Czech Republic         79.2
## 20818                 2000-01-01           Czech Republic         77.1
## 20819                 1995-01-01           Czech Republic         73.2
## 20820                 1990-01-01           Czech Republic         68.3
## 20821                 2015-01-01           Czech Republic         84.8
## 20822                 2010-01-01           Czech Republic         81.8
## 20823                 2005-01-01           Czech Republic         79.2
## 20824                 2000-01-01           Czech Republic         77.1
## 20825                 1995-01-01           Czech Republic         73.2
## 20826                 1990-01-01           Czech Republic         68.3
## 20827                 2015-01-01           Czech Republic         84.8
## 20828                 2010-01-01           Czech Republic         81.8
## 20829                 2005-01-01           Czech Republic         79.2
## 20830                 2000-01-01           Czech Republic         77.1
## 20831                 1995-01-01           Czech Republic         73.2
## 20832                 1990-01-01           Czech Republic         68.3
## 20833                 2015-01-01           Czech Republic         84.8
## 20834                 2010-01-01           Czech Republic         81.8
## 20835                 2005-01-01           Czech Republic         79.2
## 20836                 2000-01-01           Czech Republic         77.1
## 20837                 1995-01-01           Czech Republic         73.2
## 20838                 1990-01-01           Czech Republic         68.3
## 20839                 2015-01-01           Czech Republic         84.8
## 20840                 2010-01-01           Czech Republic         81.8
## 20841                 2005-01-01           Czech Republic         79.2
## 20842                 2000-01-01           Czech Republic         77.1
## 20843                 1995-01-01           Czech Republic         73.2
## 20844                 1990-01-01           Czech Republic         68.3
## 20845                 2015-01-01           Czech Republic         84.8
## 20846                 2010-01-01           Czech Republic         81.8
## 20847                 2005-01-01           Czech Republic         79.2
## 20848                 2000-01-01           Czech Republic         77.1
## 20849                 1995-01-01           Czech Republic         73.2
## 20850                 1990-01-01           Czech Republic         68.3
## 20851                 2015-01-01           Czech Republic         84.8
## 20852                 2010-01-01           Czech Republic         81.8
## 20853                 2005-01-01           Czech Republic         79.2
## 20854                 2000-01-01           Czech Republic         77.1
## 20855                 1995-01-01           Czech Republic         73.2
## 20856                 1990-01-01           Czech Republic         68.3
## 20857                 2015-01-01           Czech Republic         84.8
## 20858                 2010-01-01           Czech Republic         81.8
## 20859                 2005-01-01           Czech Republic         79.2
## 20860                 2000-01-01           Czech Republic         77.1
## 20861                 1995-01-01           Czech Republic         73.2
## 20862                 1990-01-01           Czech Republic         68.3
## 20863                 2015-01-01           Czech Republic         84.8
## 20864                 2010-01-01           Czech Republic         81.8
## 20865                 2005-01-01           Czech Republic         79.2
## 20866                 2000-01-01           Czech Republic         77.1
## 20867                 1995-01-01           Czech Republic         73.2
## 20868                 1990-01-01           Czech Republic         68.3
## 20869                 2015-01-01           Czech Republic         84.8
## 20870                 2010-01-01           Czech Republic         81.8
## 20871                 2005-01-01           Czech Republic         79.2
## 20872                 2000-01-01           Czech Republic         77.1
## 20873                 1995-01-01           Czech Republic         73.2
## 20874                 1990-01-01           Czech Republic         68.3
## 20875                 2015-01-01           Czech Republic         84.8
## 20876                 2010-01-01           Czech Republic         81.8
## 20877                 2005-01-01           Czech Republic         79.2
## 20878                 2000-01-01           Czech Republic         77.1
## 20879                 1995-01-01           Czech Republic         73.2
## 20880                 1990-01-01           Czech Republic         68.3
## 20881                 2015-01-01           Czech Republic         84.8
## 20882                 2010-01-01           Czech Republic         81.8
## 20883                 2005-01-01           Czech Republic         79.2
## 20884                 2000-01-01           Czech Republic         77.1
## 20885                 1995-01-01           Czech Republic         73.2
## 20886                 1990-01-01           Czech Republic         68.3
## 20887                 2015-01-01           Czech Republic         84.8
## 20888                 2010-01-01           Czech Republic         81.8
## 20889                 2005-01-01           Czech Republic         79.2
## 20890                 2000-01-01           Czech Republic         77.1
## 20891                 1995-01-01           Czech Republic         73.2
## 20892                 1990-01-01           Czech Republic         68.3
## 20893                 2015-01-01           Czech Republic         84.8
## 20894                 2010-01-01           Czech Republic         81.8
## 20895                 2005-01-01           Czech Republic         79.2
## 20896                 2000-01-01           Czech Republic         77.1
## 20897                 1995-01-01           Czech Republic         73.2
## 20898                 1990-01-01           Czech Republic         68.3
## 20899                 2015-01-01           Czech Republic         84.8
## 20900                 2010-01-01           Czech Republic         81.8
## 20901                 2005-01-01           Czech Republic         79.2
## 20902                 2000-01-01           Czech Republic         77.1
## 20903                 1995-01-01           Czech Republic         73.2
## 20904                 1990-01-01           Czech Republic         68.3
## 20905                 2015-01-01           Czech Republic         84.8
## 20906                 2010-01-01           Czech Republic         81.8
## 20907                 2005-01-01           Czech Republic         79.2
## 20908                 2000-01-01           Czech Republic         77.1
## 20909                 1995-01-01           Czech Republic         73.2
## 20910                 1990-01-01           Czech Republic         68.3
## 20911                 2015-01-01           Czech Republic         84.8
## 20912                 2010-01-01           Czech Republic         81.8
## 20913                 2005-01-01           Czech Republic         79.2
## 20914                 2000-01-01           Czech Republic         77.1
## 20915                 1995-01-01           Czech Republic         73.2
## 20916                 1990-01-01           Czech Republic         68.3
## 20917                 2015-01-01           Czech Republic         84.8
## 20918                 2010-01-01           Czech Republic         81.8
## 20919                 2005-01-01           Czech Republic         79.2
## 20920                 2000-01-01           Czech Republic         77.1
## 20921                 1995-01-01           Czech Republic         73.2
## 20922                 1990-01-01           Czech Republic         68.3
## 20923                 2015-01-01           Czech Republic         84.8
## 20924                 2010-01-01           Czech Republic         81.8
## 20925                 2005-01-01           Czech Republic         79.2
## 20926                 2000-01-01           Czech Republic         77.1
## 20927                 1995-01-01           Czech Republic         73.2
## 20928                 1990-01-01           Czech Republic         68.3
## 20929                 2015-01-01           Czech Republic         84.8
## 20930                 2010-01-01           Czech Republic         81.8
## 20931                 2005-01-01           Czech Republic         79.2
## 20932                 2000-01-01           Czech Republic         77.1
## 20933                 1995-01-01           Czech Republic         73.2
## 20934                 1990-01-01           Czech Republic         68.3
## 20935                 2015-01-01           Czech Republic         84.8
## 20936                 2010-01-01           Czech Republic         81.8
## 20937                 2005-01-01           Czech Republic         79.2
## 20938                 2000-01-01           Czech Republic         77.1
## 20939                 1995-01-01           Czech Republic         73.2
## 20940                 1990-01-01           Czech Republic         68.3
## 20941                 2015-01-01           Czech Republic         84.8
## 20942                 2010-01-01           Czech Republic         81.8
## 20943                 2005-01-01           Czech Republic         79.2
## 20944                 2000-01-01           Czech Republic         77.1
## 20945                 1995-01-01           Czech Republic         73.2
## 20946                 1990-01-01           Czech Republic         68.3
## 20947                 2015-01-01           Czech Republic         84.8
## 20948                 2010-01-01           Czech Republic         81.8
## 20949                 2005-01-01           Czech Republic         79.2
## 20950                 2000-01-01           Czech Republic         77.1
## 20951                 1995-01-01           Czech Republic         73.2
## 20952                 1990-01-01           Czech Republic         68.3
## 20953                 2015-01-01           Czech Republic         84.8
## 20954                 2010-01-01           Czech Republic         81.8
## 20955                 2005-01-01           Czech Republic         79.2
## 20956                 2000-01-01           Czech Republic         77.1
## 20957                 1995-01-01           Czech Republic         73.2
## 20958                 1990-01-01           Czech Republic         68.3
## 20959                 2015-01-01           Czech Republic         84.8
## 20960                 2010-01-01           Czech Republic         81.8
## 20961                 2005-01-01           Czech Republic         79.2
## 20962                 2000-01-01           Czech Republic         77.1
## 20963                 1995-01-01           Czech Republic         73.2
## 20964                 1990-01-01           Czech Republic         68.3
## 20965                 2015-01-01           Czech Republic         84.8
## 20966                 2010-01-01           Czech Republic         81.8
## 20967                 2005-01-01           Czech Republic         79.2
## 20968                 2000-01-01           Czech Republic         77.1
## 20969                 1995-01-01           Czech Republic         73.2
## 20970                 1990-01-01           Czech Republic         68.3
## 20971                 2015-01-01           Czech Republic         84.8
## 20972                 2010-01-01           Czech Republic         81.8
## 20973                 2005-01-01           Czech Republic         79.2
## 20974                 2000-01-01           Czech Republic         77.1
## 20975                 1995-01-01           Czech Republic         73.2
## 20976                 1990-01-01           Czech Republic         68.3
## 20977                 2015-01-01           Czech Republic         84.8
## 20978                 2010-01-01           Czech Republic         81.8
## 20979                 2005-01-01           Czech Republic         79.2
## 20980                 2000-01-01           Czech Republic         77.1
## 20981                 1995-01-01           Czech Republic         73.2
## 20982                 1990-01-01           Czech Republic         68.3
## 20983                 2015-01-01           Czech Republic         84.8
## 20984                 2010-01-01           Czech Republic         81.8
## 20985                 2005-01-01           Czech Republic         79.2
## 20986                 2000-01-01           Czech Republic         77.1
## 20987                 1995-01-01           Czech Republic         73.2
## 20988                 1990-01-01           Czech Republic         68.3
## 20989                 2015-01-01           Czech Republic         84.8
## 20990                 2010-01-01           Czech Republic         81.8
## 20991                 2005-01-01           Czech Republic         79.2
## 20992                 2000-01-01           Czech Republic         77.1
## 20993                 1995-01-01           Czech Republic         73.2
## 20994                 1990-01-01           Czech Republic         68.3
## 20995                 2015-01-01           Czech Republic         84.8
## 20996                 2010-01-01           Czech Republic         81.8
## 20997                 2005-01-01           Czech Republic         79.2
## 20998                 2000-01-01           Czech Republic         77.1
## 20999                 1995-01-01           Czech Republic         73.2
## 21000                 1990-01-01           Czech Republic         68.3
## 21001                 2015-01-01           Czech Republic         84.8
## 21002                 2010-01-01           Czech Republic         81.8
## 21003                 2005-01-01           Czech Republic         79.2
## 21004                 2000-01-01           Czech Republic         77.1
## 21005                 1995-01-01           Czech Republic         73.2
## 21006                 1990-01-01           Czech Republic         68.3
## 21007                 2015-01-01           Czech Republic         84.8
## 21008                 2010-01-01           Czech Republic         81.8
## 21009                 2005-01-01           Czech Republic         79.2
## 21010                 2000-01-01           Czech Republic         77.1
## 21011                 1995-01-01           Czech Republic         73.2
## 21012                 1990-01-01           Czech Republic         68.3
## 21013                 2015-01-01           Czech Republic         84.8
## 21014                 2010-01-01           Czech Republic         81.8
## 21015                 2005-01-01           Czech Republic         79.2
## 21016                 2000-01-01           Czech Republic         77.1
## 21017                 1995-01-01           Czech Republic         73.2
## 21018                 1990-01-01           Czech Republic         68.3
## 21019                 2015-01-01           Czech Republic         84.8
## 21020                 2010-01-01           Czech Republic         81.8
## 21021                 2005-01-01           Czech Republic         79.2
## 21022                 2000-01-01           Czech Republic         77.1
## 21023                 1995-01-01           Czech Republic         73.2
## 21024                 1990-01-01           Czech Republic         68.3
## 21025                 2015-01-01           Czech Republic         84.8
## 21026                 2010-01-01           Czech Republic         81.8
## 21027                 2005-01-01           Czech Republic         79.2
## 21028                 2000-01-01           Czech Republic         77.1
## 21029                 1995-01-01           Czech Republic         73.2
## 21030                 1990-01-01           Czech Republic         68.3
## 21031                 2015-01-01           Czech Republic         84.8
## 21032                 2010-01-01           Czech Republic         81.8
## 21033                 2005-01-01           Czech Republic         79.2
## 21034                 2000-01-01           Czech Republic         77.1
## 21035                 1995-01-01           Czech Republic         73.2
## 21036                 1990-01-01           Czech Republic         68.3
## 21037                 2015-01-01           Czech Republic         84.8
## 21038                 2010-01-01           Czech Republic         81.8
## 21039                 2005-01-01           Czech Republic         79.2
## 21040                 2000-01-01           Czech Republic         77.1
## 21041                 1995-01-01           Czech Republic         73.2
## 21042                 1990-01-01           Czech Republic         68.3
## 21043                 2015-01-01           Czech Republic         84.8
## 21044                 2010-01-01           Czech Republic         81.8
## 21045                 2005-01-01           Czech Republic         79.2
## 21046                 2000-01-01           Czech Republic         77.1
## 21047                 1995-01-01           Czech Republic         73.2
## 21048                 1990-01-01           Czech Republic         68.3
## 21049                 2015-01-01           Czech Republic         84.8
## 21050                 2010-01-01           Czech Republic         81.8
## 21051                 2005-01-01           Czech Republic         79.2
## 21052                 2000-01-01           Czech Republic         77.1
## 21053                 1995-01-01           Czech Republic         73.2
## 21054                 1990-01-01           Czech Republic         68.3
## 21055                 2015-01-01           Czech Republic         84.8
## 21056                 2010-01-01           Czech Republic         81.8
## 21057                 2005-01-01           Czech Republic         79.2
## 21058                 2000-01-01           Czech Republic         77.1
## 21059                 1995-01-01           Czech Republic         73.2
## 21060                 1990-01-01           Czech Republic         68.3
## 21061                 2015-01-01           Czech Republic         84.8
## 21062                 2010-01-01           Czech Republic         81.8
## 21063                 2005-01-01           Czech Republic         79.2
## 21064                 2000-01-01           Czech Republic         77.1
## 21065                 1995-01-01           Czech Republic         73.2
## 21066                 1990-01-01           Czech Republic         68.3
## 21067                 2015-01-01           Czech Republic         84.8
## 21068                 2010-01-01           Czech Republic         81.8
## 21069                 2005-01-01           Czech Republic         79.2
## 21070                 2000-01-01           Czech Republic         77.1
## 21071                 1995-01-01           Czech Republic         73.2
## 21072                 1990-01-01           Czech Republic         68.3
## 21073                 2015-01-01           Czech Republic         84.8
## 21074                 2010-01-01           Czech Republic         81.8
## 21075                 2005-01-01           Czech Republic         79.2
## 21076                 2000-01-01           Czech Republic         77.1
## 21077                 1995-01-01           Czech Republic         73.2
## 21078                 1990-01-01           Czech Republic         68.3
## 21079                 2015-01-01           Czech Republic         84.8
## 21080                 2010-01-01           Czech Republic         81.8
## 21081                 2005-01-01           Czech Republic         79.2
## 21082                 2000-01-01           Czech Republic         77.1
## 21083                 1995-01-01           Czech Republic         73.2
## 21084                 1990-01-01           Czech Republic         68.3
## 21085                 2015-01-01           Czech Republic         84.8
## 21086                 2010-01-01           Czech Republic         81.8
## 21087                 2005-01-01           Czech Republic         79.2
## 21088                 2000-01-01           Czech Republic         77.1
## 21089                 1995-01-01           Czech Republic         73.2
## 21090                 1990-01-01           Czech Republic         68.3
## 21091                 2015-01-01           Czech Republic         84.8
## 21092                 2010-01-01           Czech Republic         81.8
## 21093                 2005-01-01           Czech Republic         79.2
## 21094                 2000-01-01           Czech Republic         77.1
## 21095                 1995-01-01           Czech Republic         73.2
## 21096                 1990-01-01           Czech Republic         68.3
## 21097                 2015-01-01           Czech Republic         84.8
## 21098                 2010-01-01           Czech Republic         81.8
## 21099                 2005-01-01           Czech Republic         79.2
## 21100                 2000-01-01           Czech Republic         77.1
## 21101                 1995-01-01           Czech Republic         73.2
## 21102                 1990-01-01           Czech Republic         68.3
## 21103                 2015-01-01           Czech Republic         84.8
## 21104                 2010-01-01           Czech Republic         81.8
## 21105                 2005-01-01           Czech Republic         79.2
## 21106                 2000-01-01           Czech Republic         77.1
## 21107                 1995-01-01           Czech Republic         73.2
## 21108                 1990-01-01           Czech Republic         68.3
## 21109                 2015-01-01           Czech Republic         84.8
## 21110                 2010-01-01           Czech Republic         81.8
## 21111                 2005-01-01           Czech Republic         79.2
## 21112                 2000-01-01           Czech Republic         77.1
## 21113                 1995-01-01           Czech Republic         73.2
## 21114                 1990-01-01           Czech Republic         68.3
## 21115                 2015-01-01           Czech Republic         84.8
## 21116                 2010-01-01           Czech Republic         81.8
## 21117                 2005-01-01           Czech Republic         79.2
## 21118                 2000-01-01           Czech Republic         77.1
## 21119                 1995-01-01           Czech Republic         73.2
## 21120                 1990-01-01           Czech Republic         68.3
## 21121                 2015-01-01           Czech Republic         84.8
## 21122                 2010-01-01           Czech Republic         81.8
## 21123                 2005-01-01           Czech Republic         79.2
## 21124                 2000-01-01           Czech Republic         77.1
## 21125                 1995-01-01           Czech Republic         73.2
## 21126                 1990-01-01           Czech Republic         68.3
## 21127                 2015-01-01           Czech Republic         84.8
## 21128                 2010-01-01           Czech Republic         81.8
## 21129                 2005-01-01           Czech Republic         79.2
## 21130                 2000-01-01           Czech Republic         77.1
## 21131                 1995-01-01           Czech Republic         73.2
## 21132                 1990-01-01           Czech Republic         68.3
## 21133                 2015-01-01           Czech Republic         84.8
## 21134                 2010-01-01           Czech Republic         81.8
## 21135                 2005-01-01           Czech Republic         79.2
## 21136                 2000-01-01           Czech Republic         77.1
## 21137                 1995-01-01           Czech Republic         73.2
## 21138                 1990-01-01           Czech Republic         68.3
## 21139                 2015-01-01           Czech Republic         84.8
## 21140                 2010-01-01           Czech Republic         81.8
## 21141                 2005-01-01           Czech Republic         79.2
## 21142                 2000-01-01           Czech Republic         77.1
## 21143                 1995-01-01           Czech Republic         73.2
## 21144                 1990-01-01           Czech Republic         68.3
## 21145                 2015-01-01           Czech Republic         84.8
## 21146                 2010-01-01           Czech Republic         81.8
## 21147                 2005-01-01           Czech Republic         79.2
## 21148                 2000-01-01           Czech Republic         77.1
## 21149                 1995-01-01           Czech Republic         73.2
## 21150                 1990-01-01           Czech Republic         68.3
## 21151                 2015-01-01           Czech Republic         84.8
## 21152                 2010-01-01           Czech Republic         81.8
## 21153                 2005-01-01           Czech Republic         79.2
## 21154                 2000-01-01           Czech Republic         77.1
## 21155                 1995-01-01           Czech Republic         73.2
## 21156                 1990-01-01           Czech Republic         68.3
## 21157                 2015-01-01           Czech Republic         84.8
## 21158                 2010-01-01           Czech Republic         81.8
## 21159                 2005-01-01           Czech Republic         79.2
## 21160                 2000-01-01           Czech Republic         77.1
## 21161                 1995-01-01           Czech Republic         73.2
## 21162                 1990-01-01           Czech Republic         68.3
## 21163                 2015-01-01           Czech Republic         84.8
## 21164                 2010-01-01           Czech Republic         81.8
## 21165                 2005-01-01           Czech Republic         79.2
## 21166                 2000-01-01           Czech Republic         77.1
## 21167                 1995-01-01           Czech Republic         73.2
## 21168                 1990-01-01           Czech Republic         68.3
## 21169                 2015-01-01           Czech Republic         84.8
## 21170                 2010-01-01           Czech Republic         81.8
## 21171                 2005-01-01           Czech Republic         79.2
## 21172                 2000-01-01           Czech Republic         77.1
## 21173                 1995-01-01           Czech Republic         73.2
## 21174                 1990-01-01           Czech Republic         68.3
## 21175                 2015-01-01           Czech Republic         84.8
## 21176                 2010-01-01           Czech Republic         81.8
## 21177                 2005-01-01           Czech Republic         79.2
## 21178                 2000-01-01           Czech Republic         77.1
## 21179                 1995-01-01           Czech Republic         73.2
## 21180                 1990-01-01           Czech Republic         68.3
## 21181                 2015-01-01           Czech Republic         84.8
## 21182                 2010-01-01           Czech Republic         81.8
## 21183                 2005-01-01           Czech Republic         79.2
## 21184                 2000-01-01           Czech Republic         77.1
## 21185                 1995-01-01           Czech Republic         73.2
## 21186                 1990-01-01           Czech Republic         68.3
## 21187                 2015-01-01           Czech Republic         84.8
## 21188                 2010-01-01           Czech Republic         81.8
## 21189                 2005-01-01           Czech Republic         79.2
## 21190                 2000-01-01           Czech Republic         77.1
## 21191                 1995-01-01           Czech Republic         73.2
## 21192                 1990-01-01           Czech Republic         68.3
## 21193                 2015-01-01           Czech Republic         84.8
## 21194                 2010-01-01           Czech Republic         81.8
## 21195                 2005-01-01           Czech Republic         79.2
## 21196                 2000-01-01           Czech Republic         77.1
## 21197                 1995-01-01           Czech Republic         73.2
## 21198                 1990-01-01           Czech Republic         68.3
## 21199                 2015-01-01           Czech Republic         84.8
## 21200                 2010-01-01           Czech Republic         81.8
## 21201                 2005-01-01           Czech Republic         79.2
## 21202                 2000-01-01           Czech Republic         77.1
## 21203                 1995-01-01           Czech Republic         73.2
## 21204                 1990-01-01           Czech Republic         68.3
## 21205                 2015-01-01           Czech Republic         84.8
## 21206                 2010-01-01           Czech Republic         81.8
## 21207                 2005-01-01           Czech Republic         79.2
## 21208                 2000-01-01           Czech Republic         77.1
## 21209                 1995-01-01           Czech Republic         73.2
## 21210                 1990-01-01           Czech Republic         68.3
## 21211                 2015-01-01           Czech Republic         84.8
## 21212                 2010-01-01           Czech Republic         81.8
## 21213                 2005-01-01           Czech Republic         79.2
## 21214                 2000-01-01           Czech Republic         77.1
## 21215                 1995-01-01           Czech Republic         73.2
## 21216                 1990-01-01           Czech Republic         68.3
## 21217                 2015-01-01           Czech Republic         84.8
## 21218                 2010-01-01           Czech Republic         81.8
## 21219                 2005-01-01           Czech Republic         79.2
## 21220                 2000-01-01           Czech Republic         77.1
## 21221                 1995-01-01           Czech Republic         73.2
## 21222                 1990-01-01           Czech Republic         68.3
## 21223                 2015-01-01           Czech Republic         84.8
## 21224                 2010-01-01           Czech Republic         81.8
## 21225                 2005-01-01           Czech Republic         79.2
## 21226                 2000-01-01           Czech Republic         77.1
## 21227                 1995-01-01           Czech Republic         73.2
## 21228                 1990-01-01           Czech Republic         68.3
## 21229                 2015-01-01           Czech Republic         84.8
## 21230                 2010-01-01           Czech Republic         81.8
## 21231                 2005-01-01           Czech Republic         79.2
## 21232                 2000-01-01           Czech Republic         77.1
## 21233                 1995-01-01           Czech Republic         73.2
## 21234                 1990-01-01           Czech Republic         68.3
## 21235                 2015-01-01           Czech Republic         84.8
## 21236                 2010-01-01           Czech Republic         81.8
## 21237                 2005-01-01           Czech Republic         79.2
## 21238                 2000-01-01           Czech Republic         77.1
## 21239                 1995-01-01           Czech Republic         73.2
## 21240                 1990-01-01           Czech Republic         68.3
## 21241                 2015-01-01           Czech Republic         84.8
## 21242                 2010-01-01           Czech Republic         81.8
## 21243                 2005-01-01           Czech Republic         79.2
## 21244                 2000-01-01           Czech Republic         77.1
## 21245                 1995-01-01           Czech Republic         73.2
## 21246                 1990-01-01           Czech Republic         68.3
## 21247                 2015-01-01           Czech Republic         84.8
## 21248                 2010-01-01           Czech Republic         81.8
## 21249                 2005-01-01           Czech Republic         79.2
## 21250                 2000-01-01           Czech Republic         77.1
## 21251                 1995-01-01           Czech Republic         73.2
## 21252                 1990-01-01           Czech Republic         68.3
## 21253                 2015-01-01           Czech Republic         84.8
## 21254                 2010-01-01           Czech Republic         81.8
## 21255                 2005-01-01           Czech Republic         79.2
## 21256                 2000-01-01           Czech Republic         77.1
## 21257                 1995-01-01           Czech Republic         73.2
## 21258                 1990-01-01           Czech Republic         68.3
## 21259                 2015-01-01           Czech Republic         84.8
## 21260                 2010-01-01           Czech Republic         81.8
## 21261                 2005-01-01           Czech Republic         79.2
## 21262                 2000-01-01           Czech Republic         77.1
## 21263                 1995-01-01           Czech Republic         73.2
## 21264                 1990-01-01           Czech Republic         68.3
## 21265                 2015-01-01           Czech Republic         84.8
## 21266                 2010-01-01           Czech Republic         81.8
## 21267                 2005-01-01           Czech Republic         79.2
## 21268                 2000-01-01           Czech Republic         77.1
## 21269                 1995-01-01           Czech Republic         73.2
## 21270                 1990-01-01           Czech Republic         68.3
## 21271                 2015-01-01           Czech Republic         84.8
## 21272                 2010-01-01           Czech Republic         81.8
## 21273                 2005-01-01           Czech Republic         79.2
## 21274                 2000-01-01           Czech Republic         77.1
## 21275                 1995-01-01           Czech Republic         73.2
## 21276                 1990-01-01           Czech Republic         68.3
## 21277                 2015-01-01           Czech Republic         84.8
## 21278                 2010-01-01           Czech Republic         81.8
## 21279                 2005-01-01           Czech Republic         79.2
## 21280                 2000-01-01           Czech Republic         77.1
## 21281                 1995-01-01           Czech Republic         73.2
## 21282                 1990-01-01           Czech Republic         68.3
## 21283                 2015-01-01           Czech Republic         84.8
## 21284                 2010-01-01           Czech Republic         81.8
## 21285                 2005-01-01           Czech Republic         79.2
## 21286                 2000-01-01           Czech Republic         77.1
## 21287                 1995-01-01           Czech Republic         73.2
## 21288                 1990-01-01           Czech Republic         68.3
## 21289                 2015-01-01           Czech Republic         84.8
## 21290                 2010-01-01           Czech Republic         81.8
## 21291                 2005-01-01           Czech Republic         79.2
## 21292                 2000-01-01           Czech Republic         77.1
## 21293                 1995-01-01           Czech Republic         73.2
## 21294                 1990-01-01           Czech Republic         68.3
## 21295                 2015-01-01           Czech Republic         84.8
## 21296                 2010-01-01           Czech Republic         81.8
## 21297                 2005-01-01           Czech Republic         79.2
## 21298                 2000-01-01           Czech Republic         77.1
## 21299                 1995-01-01           Czech Republic         73.2
## 21300                 1990-01-01           Czech Republic         68.3
## 21301                 2015-01-01           Czech Republic         84.8
## 21302                 2010-01-01           Czech Republic         81.8
## 21303                 2005-01-01           Czech Republic         79.2
## 21304                 2000-01-01           Czech Republic         77.1
## 21305                 1995-01-01           Czech Republic         73.2
## 21306                 1990-01-01           Czech Republic         68.3
## 21307                 2015-01-01           Czech Republic         84.8
## 21308                 2010-01-01           Czech Republic         81.8
## 21309                 2005-01-01           Czech Republic         79.2
## 21310                 2000-01-01           Czech Republic         77.1
## 21311                 1995-01-01           Czech Republic         73.2
## 21312                 1990-01-01           Czech Republic         68.3
## 21313                 2015-01-01           Czech Republic         84.8
## 21314                 2010-01-01           Czech Republic         81.8
## 21315                 2005-01-01           Czech Republic         79.2
## 21316                 2000-01-01           Czech Republic         77.1
## 21317                 1995-01-01           Czech Republic         73.2
## 21318                 1990-01-01           Czech Republic         68.3
## 21319                 2015-01-01           Czech Republic         84.8
## 21320                 2010-01-01           Czech Republic         81.8
## 21321                 2005-01-01           Czech Republic         79.2
## 21322                 2000-01-01           Czech Republic         77.1
## 21323                 1995-01-01           Czech Republic         73.2
## 21324                 1990-01-01           Czech Republic         68.3
## 21325                 2015-01-01           Czech Republic         84.8
## 21326                 2010-01-01           Czech Republic         81.8
## 21327                 2005-01-01           Czech Republic         79.2
## 21328                 2000-01-01           Czech Republic         77.1
## 21329                 1995-01-01           Czech Republic         73.2
## 21330                 1990-01-01           Czech Republic         68.3
## 21331                 2015-01-01           Czech Republic         84.8
## 21332                 2010-01-01           Czech Republic         81.8
## 21333                 2005-01-01           Czech Republic         79.2
## 21334                 2000-01-01           Czech Republic         77.1
## 21335                 1995-01-01           Czech Republic         73.2
## 21336                 1990-01-01           Czech Republic         68.3
## 21337                 2015-01-01           Czech Republic         84.8
## 21338                 2010-01-01           Czech Republic         81.8
## 21339                 2005-01-01           Czech Republic         79.2
## 21340                 2000-01-01           Czech Republic         77.1
## 21341                 1995-01-01           Czech Republic         73.2
## 21342                 1990-01-01           Czech Republic         68.3
## 21343                 2015-01-01           Czech Republic         84.8
## 21344                 2010-01-01           Czech Republic         81.8
## 21345                 2005-01-01           Czech Republic         79.2
## 21346                 2000-01-01           Czech Republic         77.1
## 21347                 1995-01-01           Czech Republic         73.2
## 21348                 1990-01-01           Czech Republic         68.3
## 21349                 2015-01-01           Czech Republic         84.8
## 21350                 2010-01-01           Czech Republic         81.8
## 21351                 2005-01-01           Czech Republic         79.2
## 21352                 2000-01-01           Czech Republic         77.1
## 21353                 1995-01-01           Czech Republic         73.2
## 21354                 1990-01-01           Czech Republic         68.3
## 21355                 2015-01-01           Czech Republic         84.8
## 21356                 2010-01-01           Czech Republic         81.8
## 21357                 2005-01-01           Czech Republic         79.2
## 21358                 2000-01-01           Czech Republic         77.1
## 21359                 1995-01-01           Czech Republic         73.2
## 21360                 1990-01-01           Czech Republic         68.3
## 21361                 2015-01-01           Czech Republic         84.8
## 21362                 2010-01-01           Czech Republic         81.8
## 21363                 2005-01-01           Czech Republic         79.2
## 21364                 2000-01-01           Czech Republic         77.1
## 21365                 1995-01-01           Czech Republic         73.2
## 21366                 1990-01-01           Czech Republic         68.3
## 21367                 2015-01-01           Czech Republic         84.8
## 21368                 2010-01-01           Czech Republic         81.8
## 21369                 2005-01-01           Czech Republic         79.2
## 21370                 2000-01-01           Czech Republic         77.1
## 21371                 1995-01-01           Czech Republic         73.2
## 21372                 1990-01-01           Czech Republic         68.3
## 21373                 2015-01-01           Czech Republic         84.8
## 21374                 2010-01-01           Czech Republic         81.8
## 21375                 2005-01-01           Czech Republic         79.2
## 21376                 2000-01-01           Czech Republic         77.1
## 21377                 1995-01-01           Czech Republic         73.2
## 21378                 1990-01-01           Czech Republic         68.3
## 21379                 2015-01-01           Czech Republic         84.8
## 21380                 2010-01-01           Czech Republic         81.8
## 21381                 2005-01-01           Czech Republic         79.2
## 21382                 2000-01-01           Czech Republic         77.1
## 21383                 1995-01-01           Czech Republic         73.2
## 21384                 1990-01-01           Czech Republic         68.3
## 21385                 2015-01-01           Czech Republic         84.8
## 21386                 2010-01-01           Czech Republic         81.8
## 21387                 2005-01-01           Czech Republic         79.2
## 21388                 2000-01-01           Czech Republic         77.1
## 21389                 1995-01-01           Czech Republic         73.2
## 21390                 1990-01-01           Czech Republic         68.3
## 21391                 2015-01-01           Czech Republic         84.8
## 21392                 2010-01-01           Czech Republic         81.8
## 21393                 2005-01-01           Czech Republic         79.2
## 21394                 2000-01-01           Czech Republic         77.1
## 21395                 1995-01-01           Czech Republic         73.2
## 21396                 1990-01-01           Czech Republic         68.3
## 21397                 2015-01-01           Czech Republic         84.8
## 21398                 2010-01-01           Czech Republic         81.8
## 21399                 2005-01-01           Czech Republic         79.2
## 21400                 2000-01-01           Czech Republic         77.1
## 21401                 1995-01-01           Czech Republic         73.2
## 21402                 1990-01-01           Czech Republic         68.3
## 21403                 2015-01-01           Czech Republic         84.8
## 21404                 2010-01-01           Czech Republic         81.8
## 21405                 2005-01-01           Czech Republic         79.2
## 21406                 2000-01-01           Czech Republic         77.1
## 21407                 1995-01-01           Czech Republic         73.2
## 21408                 1990-01-01           Czech Republic         68.3
## 21409                 2015-01-01           Czech Republic         84.8
## 21410                 2010-01-01           Czech Republic         81.8
## 21411                 2005-01-01           Czech Republic         79.2
## 21412                 2000-01-01           Czech Republic         77.1
## 21413                 1995-01-01           Czech Republic         73.2
## 21414                 1990-01-01           Czech Republic         68.3
## 21415                 2015-01-01           Czech Republic         84.8
## 21416                 2010-01-01           Czech Republic         81.8
## 21417                 2005-01-01           Czech Republic         79.2
## 21418                 2000-01-01           Czech Republic         77.1
## 21419                 1995-01-01           Czech Republic         73.2
## 21420                 1990-01-01           Czech Republic         68.3
## 21421                 2015-01-01           Czech Republic         84.8
## 21422                 2010-01-01           Czech Republic         81.8
## 21423                 2005-01-01           Czech Republic         79.2
## 21424                 2000-01-01           Czech Republic         77.1
## 21425                 1995-01-01           Czech Republic         73.2
## 21426                 1990-01-01           Czech Republic         68.3
## 21427                 2015-01-01           Czech Republic         84.8
## 21428                 2010-01-01           Czech Republic         81.8
## 21429                 2005-01-01           Czech Republic         79.2
## 21430                 2000-01-01           Czech Republic         77.1
## 21431                 1995-01-01           Czech Republic         73.2
## 21432                 1990-01-01           Czech Republic         68.3
## 21433                 2015-01-01           Czech Republic         84.8
## 21434                 2010-01-01           Czech Republic         81.8
## 21435                 2005-01-01           Czech Republic         79.2
## 21436                 2000-01-01           Czech Republic         77.1
## 21437                 1995-01-01           Czech Republic         73.2
## 21438                 1990-01-01           Czech Republic         68.3
## 21439                 2015-01-01           Czech Republic         84.8
## 21440                 2010-01-01           Czech Republic         81.8
## 21441                 2005-01-01           Czech Republic         79.2
## 21442                 2000-01-01           Czech Republic         77.1
## 21443                 1995-01-01           Czech Republic         73.2
## 21444                 1990-01-01           Czech Republic         68.3
## 21445                 2015-01-01           Czech Republic         84.8
## 21446                 2010-01-01           Czech Republic         81.8
## 21447                 2005-01-01           Czech Republic         79.2
## 21448                 2000-01-01           Czech Republic         77.1
## 21449                 1995-01-01           Czech Republic         73.2
## 21450                 1990-01-01           Czech Republic         68.3
## 21451                 2015-01-01           Czech Republic         84.8
## 21452                 2010-01-01           Czech Republic         81.8
## 21453                 2005-01-01           Czech Republic         79.2
## 21454                 2000-01-01           Czech Republic         77.1
## 21455                 1995-01-01           Czech Republic         73.2
## 21456                 1990-01-01           Czech Republic         68.3
## 21457                 2015-01-01           Czech Republic         84.8
## 21458                 2010-01-01           Czech Republic         81.8
## 21459                 2005-01-01           Czech Republic         79.2
## 21460                 2000-01-01           Czech Republic         77.1
## 21461                 1995-01-01           Czech Republic         73.2
## 21462                 1990-01-01           Czech Republic         68.3
## 21463                 2015-01-01                  Denmark         85.7
## 21464                 2010-01-01                  Denmark         83.6
## 21465                 2005-01-01                  Denmark         81.9
## 21466                 2000-01-01                  Denmark         79.5
## 21467                 1995-01-01                  Denmark         77.2
## 21468                 1990-01-01                  Denmark         76.6
## 21469                 2015-01-01                  Denmark         85.7
## 21470                 2010-01-01                  Denmark         83.6
## 21471                 2005-01-01                  Denmark         81.9
## 21472                 2000-01-01                  Denmark         79.5
## 21473                 1995-01-01                  Denmark         77.2
## 21474                 1990-01-01                  Denmark         76.6
## 21475                 2015-01-01                  Denmark         85.7
## 21476                 2010-01-01                  Denmark         83.6
## 21477                 2005-01-01                  Denmark         81.9
## 21478                 2000-01-01                  Denmark         79.5
## 21479                 1995-01-01                  Denmark         77.2
## 21480                 1990-01-01                  Denmark         76.6
## 21481                 2015-01-01                  Denmark         85.7
## 21482                 2010-01-01                  Denmark         83.6
## 21483                 2005-01-01                  Denmark         81.9
## 21484                 2000-01-01                  Denmark         79.5
## 21485                 1995-01-01                  Denmark         77.2
## 21486                 1990-01-01                  Denmark         76.6
## 21487                 2015-01-01                  Denmark         85.7
## 21488                 2010-01-01                  Denmark         83.6
## 21489                 2005-01-01                  Denmark         81.9
## 21490                 2000-01-01                  Denmark         79.5
## 21491                 1995-01-01                  Denmark         77.2
## 21492                 1990-01-01                  Denmark         76.6
## 21493                 2015-01-01                  Denmark         85.7
## 21494                 2010-01-01                  Denmark         83.6
## 21495                 2005-01-01                  Denmark         81.9
## 21496                 2000-01-01                  Denmark         79.5
## 21497                 1995-01-01                  Denmark         77.2
## 21498                 1990-01-01                  Denmark         76.6
## 21499                 2015-01-01                  Denmark         85.7
## 21500                 2010-01-01                  Denmark         83.6
## 21501                 2005-01-01                  Denmark         81.9
## 21502                 2000-01-01                  Denmark         79.5
## 21503                 1995-01-01                  Denmark         77.2
## 21504                 1990-01-01                  Denmark         76.6
## 21505                 2015-01-01                  Denmark         85.7
## 21506                 2010-01-01                  Denmark         83.6
## 21507                 2005-01-01                  Denmark         81.9
## 21508                 2000-01-01                  Denmark         79.5
## 21509                 1995-01-01                  Denmark         77.2
## 21510                 1990-01-01                  Denmark         76.6
## 21511                 2015-01-01                  Denmark         85.7
## 21512                 2010-01-01                  Denmark         83.6
## 21513                 2005-01-01                  Denmark         81.9
## 21514                 2000-01-01                  Denmark         79.5
## 21515                 1995-01-01                  Denmark         77.2
## 21516                 1990-01-01                  Denmark         76.6
## 21517                 2015-01-01                  Denmark         85.7
## 21518                 2010-01-01                  Denmark         83.6
## 21519                 2005-01-01                  Denmark         81.9
## 21520                 2000-01-01                  Denmark         79.5
## 21521                 1995-01-01                  Denmark         77.2
## 21522                 1990-01-01                  Denmark         76.6
## 21523                 2015-01-01                  Denmark         85.7
## 21524                 2010-01-01                  Denmark         83.6
## 21525                 2005-01-01                  Denmark         81.9
## 21526                 2000-01-01                  Denmark         79.5
## 21527                 1995-01-01                  Denmark         77.2
## 21528                 1990-01-01                  Denmark         76.6
## 21529                 2015-01-01                  Denmark         85.7
## 21530                 2010-01-01                  Denmark         83.6
## 21531                 2005-01-01                  Denmark         81.9
## 21532                 2000-01-01                  Denmark         79.5
## 21533                 1995-01-01                  Denmark         77.2
## 21534                 1990-01-01                  Denmark         76.6
## 21535                 2015-01-01                  Denmark         85.7
## 21536                 2010-01-01                  Denmark         83.6
## 21537                 2005-01-01                  Denmark         81.9
## 21538                 2000-01-01                  Denmark         79.5
## 21539                 1995-01-01                  Denmark         77.2
## 21540                 1990-01-01                  Denmark         76.6
## 21541                 2015-01-01                  Denmark         85.7
## 21542                 2010-01-01                  Denmark         83.6
## 21543                 2005-01-01                  Denmark         81.9
## 21544                 2000-01-01                  Denmark         79.5
## 21545                 1995-01-01                  Denmark         77.2
## 21546                 1990-01-01                  Denmark         76.6
## 21547                 2015-01-01                  Denmark         85.7
## 21548                 2010-01-01                  Denmark         83.6
## 21549                 2005-01-01                  Denmark         81.9
## 21550                 2000-01-01                  Denmark         79.5
## 21551                 1995-01-01                  Denmark         77.2
## 21552                 1990-01-01                  Denmark         76.6
## 21553                 2015-01-01                  Denmark         85.7
## 21554                 2010-01-01                  Denmark         83.6
## 21555                 2005-01-01                  Denmark         81.9
## 21556                 2000-01-01                  Denmark         79.5
## 21557                 1995-01-01                  Denmark         77.2
## 21558                 1990-01-01                  Denmark         76.6
## 21559                 2015-01-01                  Denmark         85.7
## 21560                 2010-01-01                  Denmark         83.6
## 21561                 2005-01-01                  Denmark         81.9
## 21562                 2000-01-01                  Denmark         79.5
## 21563                 1995-01-01                  Denmark         77.2
## 21564                 1990-01-01                  Denmark         76.6
## 21565                 2015-01-01                  Denmark         85.7
## 21566                 2010-01-01                  Denmark         83.6
## 21567                 2005-01-01                  Denmark         81.9
## 21568                 2000-01-01                  Denmark         79.5
## 21569                 1995-01-01                  Denmark         77.2
## 21570                 1990-01-01                  Denmark         76.6
## 21571                 2015-01-01                  Denmark         85.7
## 21572                 2010-01-01                  Denmark         83.6
## 21573                 2005-01-01                  Denmark         81.9
## 21574                 2000-01-01                  Denmark         79.5
## 21575                 1995-01-01                  Denmark         77.2
## 21576                 1990-01-01                  Denmark         76.6
## 21577                 2015-01-01                  Denmark         85.7
## 21578                 2010-01-01                  Denmark         83.6
## 21579                 2005-01-01                  Denmark         81.9
## 21580                 2000-01-01                  Denmark         79.5
## 21581                 1995-01-01                  Denmark         77.2
## 21582                 1990-01-01                  Denmark         76.6
## 21583                 2015-01-01                  Denmark         85.7
## 21584                 2010-01-01                  Denmark         83.6
## 21585                 2005-01-01                  Denmark         81.9
## 21586                 2000-01-01                  Denmark         79.5
## 21587                 1995-01-01                  Denmark         77.2
## 21588                 1990-01-01                  Denmark         76.6
## 21589                 2015-01-01                  Denmark         85.7
## 21590                 2010-01-01                  Denmark         83.6
## 21591                 2005-01-01                  Denmark         81.9
## 21592                 2000-01-01                  Denmark         79.5
## 21593                 1995-01-01                  Denmark         77.2
## 21594                 1990-01-01                  Denmark         76.6
## 21595                 2015-01-01                  Denmark         85.7
## 21596                 2010-01-01                  Denmark         83.6
## 21597                 2005-01-01                  Denmark         81.9
## 21598                 2000-01-01                  Denmark         79.5
## 21599                 1995-01-01                  Denmark         77.2
## 21600                 1990-01-01                  Denmark         76.6
## 21601                 2015-01-01                  Denmark         85.7
## 21602                 2010-01-01                  Denmark         83.6
## 21603                 2005-01-01                  Denmark         81.9
## 21604                 2000-01-01                  Denmark         79.5
## 21605                 1995-01-01                  Denmark         77.2
## 21606                 1990-01-01                  Denmark         76.6
## 21607                 2015-01-01                  Denmark         85.7
## 21608                 2010-01-01                  Denmark         83.6
## 21609                 2005-01-01                  Denmark         81.9
## 21610                 2000-01-01                  Denmark         79.5
## 21611                 1995-01-01                  Denmark         77.2
## 21612                 1990-01-01                  Denmark         76.6
## 21613                 2015-01-01                  Denmark         85.7
## 21614                 2010-01-01                  Denmark         83.6
## 21615                 2005-01-01                  Denmark         81.9
## 21616                 2000-01-01                  Denmark         79.5
## 21617                 1995-01-01                  Denmark         77.2
## 21618                 1990-01-01                  Denmark         76.6
## 21619                 2015-01-01                  Denmark         85.7
## 21620                 2010-01-01                  Denmark         83.6
## 21621                 2005-01-01                  Denmark         81.9
## 21622                 2000-01-01                  Denmark         79.5
## 21623                 1995-01-01                  Denmark         77.2
## 21624                 1990-01-01                  Denmark         76.6
## 21625                 2015-01-01                  Denmark         85.7
## 21626                 2010-01-01                  Denmark         83.6
## 21627                 2005-01-01                  Denmark         81.9
## 21628                 2000-01-01                  Denmark         79.5
## 21629                 1995-01-01                  Denmark         77.2
## 21630                 1990-01-01                  Denmark         76.6
## 21631                 2015-01-01                  Denmark         85.7
## 21632                 2010-01-01                  Denmark         83.6
## 21633                 2005-01-01                  Denmark         81.9
## 21634                 2000-01-01                  Denmark         79.5
## 21635                 1995-01-01                  Denmark         77.2
## 21636                 1990-01-01                  Denmark         76.6
## 21637                 2015-01-01                  Denmark         85.7
## 21638                 2010-01-01                  Denmark         83.6
## 21639                 2005-01-01                  Denmark         81.9
## 21640                 2000-01-01                  Denmark         79.5
## 21641                 1995-01-01                  Denmark         77.2
## 21642                 1990-01-01                  Denmark         76.6
## 21643                 2015-01-01                  Denmark         85.7
## 21644                 2010-01-01                  Denmark         83.6
## 21645                 2005-01-01                  Denmark         81.9
## 21646                 2000-01-01                  Denmark         79.5
## 21647                 1995-01-01                  Denmark         77.2
## 21648                 1990-01-01                  Denmark         76.6
## 21649                 2015-01-01                  Denmark         85.7
## 21650                 2010-01-01                  Denmark         83.6
## 21651                 2005-01-01                  Denmark         81.9
## 21652                 2000-01-01                  Denmark         79.5
## 21653                 1995-01-01                  Denmark         77.2
## 21654                 1990-01-01                  Denmark         76.6
## 21655                 2015-01-01                  Denmark         85.7
## 21656                 2010-01-01                  Denmark         83.6
## 21657                 2005-01-01                  Denmark         81.9
## 21658                 2000-01-01                  Denmark         79.5
## 21659                 1995-01-01                  Denmark         77.2
## 21660                 1990-01-01                  Denmark         76.6
## 21661                 2015-01-01                  Denmark         85.7
## 21662                 2010-01-01                  Denmark         83.6
## 21663                 2005-01-01                  Denmark         81.9
## 21664                 2000-01-01                  Denmark         79.5
## 21665                 1995-01-01                  Denmark         77.2
## 21666                 1990-01-01                  Denmark         76.6
## 21667                 2015-01-01                  Denmark         85.7
## 21668                 2010-01-01                  Denmark         83.6
## 21669                 2005-01-01                  Denmark         81.9
## 21670                 2000-01-01                  Denmark         79.5
## 21671                 1995-01-01                  Denmark         77.2
## 21672                 1990-01-01                  Denmark         76.6
## 21673                 2015-01-01                  Denmark         85.7
## 21674                 2010-01-01                  Denmark         83.6
## 21675                 2005-01-01                  Denmark         81.9
## 21676                 2000-01-01                  Denmark         79.5
## 21677                 1995-01-01                  Denmark         77.2
## 21678                 1990-01-01                  Denmark         76.6
## 21679                 2015-01-01                  Denmark         85.7
## 21680                 2010-01-01                  Denmark         83.6
## 21681                 2005-01-01                  Denmark         81.9
## 21682                 2000-01-01                  Denmark         79.5
## 21683                 1995-01-01                  Denmark         77.2
## 21684                 1990-01-01                  Denmark         76.6
## 21685                 2015-01-01                  Denmark         85.7
## 21686                 2010-01-01                  Denmark         83.6
## 21687                 2005-01-01                  Denmark         81.9
## 21688                 2000-01-01                  Denmark         79.5
## 21689                 1995-01-01                  Denmark         77.2
## 21690                 1990-01-01                  Denmark         76.6
## 21691                 2015-01-01                  Denmark         85.7
## 21692                 2010-01-01                  Denmark         83.6
## 21693                 2005-01-01                  Denmark         81.9
## 21694                 2000-01-01                  Denmark         79.5
## 21695                 1995-01-01                  Denmark         77.2
## 21696                 1990-01-01                  Denmark         76.6
## 21697                 2015-01-01                  Denmark         85.7
## 21698                 2010-01-01                  Denmark         83.6
## 21699                 2005-01-01                  Denmark         81.9
## 21700                 2000-01-01                  Denmark         79.5
## 21701                 1995-01-01                  Denmark         77.2
## 21702                 1990-01-01                  Denmark         76.6
## 21703                 2015-01-01                  Denmark         85.7
## 21704                 2010-01-01                  Denmark         83.6
## 21705                 2005-01-01                  Denmark         81.9
## 21706                 2000-01-01                  Denmark         79.5
## 21707                 1995-01-01                  Denmark         77.2
## 21708                 1990-01-01                  Denmark         76.6
## 21709                 2015-01-01                  Denmark         85.7
## 21710                 2010-01-01                  Denmark         83.6
## 21711                 2005-01-01                  Denmark         81.9
## 21712                 2000-01-01                  Denmark         79.5
## 21713                 1995-01-01                  Denmark         77.2
## 21714                 1990-01-01                  Denmark         76.6
## 21715                 2015-01-01                  Denmark         85.7
## 21716                 2010-01-01                  Denmark         83.6
## 21717                 2005-01-01                  Denmark         81.9
## 21718                 2000-01-01                  Denmark         79.5
## 21719                 1995-01-01                  Denmark         77.2
## 21720                 1990-01-01                  Denmark         76.6
## 21721                 2015-01-01                  Denmark         85.7
## 21722                 2010-01-01                  Denmark         83.6
## 21723                 2005-01-01                  Denmark         81.9
## 21724                 2000-01-01                  Denmark         79.5
## 21725                 1995-01-01                  Denmark         77.2
## 21726                 1990-01-01                  Denmark         76.6
## 21727                 2015-01-01                  Denmark         85.7
## 21728                 2010-01-01                  Denmark         83.6
## 21729                 2005-01-01                  Denmark         81.9
## 21730                 2000-01-01                  Denmark         79.5
## 21731                 1995-01-01                  Denmark         77.2
## 21732                 1990-01-01                  Denmark         76.6
## 21733                 2015-01-01                  Denmark         85.7
## 21734                 2010-01-01                  Denmark         83.6
## 21735                 2005-01-01                  Denmark         81.9
## 21736                 2000-01-01                  Denmark         79.5
## 21737                 1995-01-01                  Denmark         77.2
## 21738                 1990-01-01                  Denmark         76.6
## 21739                 2015-01-01                  Denmark         85.7
## 21740                 2010-01-01                  Denmark         83.6
## 21741                 2005-01-01                  Denmark         81.9
## 21742                 2000-01-01                  Denmark         79.5
## 21743                 1995-01-01                  Denmark         77.2
## 21744                 1990-01-01                  Denmark         76.6
## 21745                 2015-01-01                  Denmark         85.7
## 21746                 2010-01-01                  Denmark         83.6
## 21747                 2005-01-01                  Denmark         81.9
## 21748                 2000-01-01                  Denmark         79.5
## 21749                 1995-01-01                  Denmark         77.2
## 21750                 1990-01-01                  Denmark         76.6
## 21751                 2015-01-01                  Denmark         85.7
## 21752                 2010-01-01                  Denmark         83.6
## 21753                 2005-01-01                  Denmark         81.9
## 21754                 2000-01-01                  Denmark         79.5
## 21755                 1995-01-01                  Denmark         77.2
## 21756                 1990-01-01                  Denmark         76.6
## 21757                 2015-01-01                  Denmark         85.7
## 21758                 2010-01-01                  Denmark         83.6
## 21759                 2005-01-01                  Denmark         81.9
## 21760                 2000-01-01                  Denmark         79.5
## 21761                 1995-01-01                  Denmark         77.2
## 21762                 1990-01-01                  Denmark         76.6
## 21763                 2015-01-01                  Denmark         85.7
## 21764                 2010-01-01                  Denmark         83.6
## 21765                 2005-01-01                  Denmark         81.9
## 21766                 2000-01-01                  Denmark         79.5
## 21767                 1995-01-01                  Denmark         77.2
## 21768                 1990-01-01                  Denmark         76.6
## 21769                 2015-01-01                  Denmark         85.7
## 21770                 2010-01-01                  Denmark         83.6
## 21771                 2005-01-01                  Denmark         81.9
## 21772                 2000-01-01                  Denmark         79.5
## 21773                 1995-01-01                  Denmark         77.2
## 21774                 1990-01-01                  Denmark         76.6
## 21775                 2015-01-01                  Denmark         85.7
## 21776                 2010-01-01                  Denmark         83.6
## 21777                 2005-01-01                  Denmark         81.9
## 21778                 2000-01-01                  Denmark         79.5
## 21779                 1995-01-01                  Denmark         77.2
## 21780                 1990-01-01                  Denmark         76.6
## 21781                 2015-01-01                  Denmark         85.7
## 21782                 2010-01-01                  Denmark         83.6
## 21783                 2005-01-01                  Denmark         81.9
## 21784                 2000-01-01                  Denmark         79.5
## 21785                 1995-01-01                  Denmark         77.2
## 21786                 1990-01-01                  Denmark         76.6
## 21787                 2015-01-01                  Denmark         85.7
## 21788                 2010-01-01                  Denmark         83.6
## 21789                 2005-01-01                  Denmark         81.9
## 21790                 2000-01-01                  Denmark         79.5
## 21791                 1995-01-01                  Denmark         77.2
## 21792                 1990-01-01                  Denmark         76.6
## 21793                 2015-01-01                  Denmark         85.7
## 21794                 2010-01-01                  Denmark         83.6
## 21795                 2005-01-01                  Denmark         81.9
## 21796                 2000-01-01                  Denmark         79.5
## 21797                 1995-01-01                  Denmark         77.2
## 21798                 1990-01-01                  Denmark         76.6
## 21799                 2015-01-01                  Denmark         85.7
## 21800                 2010-01-01                  Denmark         83.6
## 21801                 2005-01-01                  Denmark         81.9
## 21802                 2000-01-01                  Denmark         79.5
## 21803                 1995-01-01                  Denmark         77.2
## 21804                 1990-01-01                  Denmark         76.6
## 21805                 2015-01-01                  Denmark         85.7
## 21806                 2010-01-01                  Denmark         83.6
## 21807                 2005-01-01                  Denmark         81.9
## 21808                 2000-01-01                  Denmark         79.5
## 21809                 1995-01-01                  Denmark         77.2
## 21810                 1990-01-01                  Denmark         76.6
## 21811                 2015-01-01                  Denmark         85.7
## 21812                 2010-01-01                  Denmark         83.6
## 21813                 2005-01-01                  Denmark         81.9
## 21814                 2000-01-01                  Denmark         79.5
## 21815                 1995-01-01                  Denmark         77.2
## 21816                 1990-01-01                  Denmark         76.6
## 21817                 2015-01-01                  Denmark         85.7
## 21818                 2010-01-01                  Denmark         83.6
## 21819                 2005-01-01                  Denmark         81.9
## 21820                 2000-01-01                  Denmark         79.5
## 21821                 1995-01-01                  Denmark         77.2
## 21822                 1990-01-01                  Denmark         76.6
## 21823                 2015-01-01                  Denmark         85.7
## 21824                 2010-01-01                  Denmark         83.6
## 21825                 2005-01-01                  Denmark         81.9
## 21826                 2000-01-01                  Denmark         79.5
## 21827                 1995-01-01                  Denmark         77.2
## 21828                 1990-01-01                  Denmark         76.6
## 21829                 2015-01-01                  Denmark         85.7
## 21830                 2010-01-01                  Denmark         83.6
## 21831                 2005-01-01                  Denmark         81.9
## 21832                 2000-01-01                  Denmark         79.5
## 21833                 1995-01-01                  Denmark         77.2
## 21834                 1990-01-01                  Denmark         76.6
## 21835                 2015-01-01                  Denmark         85.7
## 21836                 2010-01-01                  Denmark         83.6
## 21837                 2005-01-01                  Denmark         81.9
## 21838                 2000-01-01                  Denmark         79.5
## 21839                 1995-01-01                  Denmark         77.2
## 21840                 1990-01-01                  Denmark         76.6
## 21841                 2015-01-01                  Denmark         85.7
## 21842                 2010-01-01                  Denmark         83.6
## 21843                 2005-01-01                  Denmark         81.9
## 21844                 2000-01-01                  Denmark         79.5
## 21845                 1995-01-01                  Denmark         77.2
## 21846                 1990-01-01                  Denmark         76.6
## 21847                 2015-01-01                  Denmark         85.7
## 21848                 2010-01-01                  Denmark         83.6
## 21849                 2005-01-01                  Denmark         81.9
## 21850                 2000-01-01                  Denmark         79.5
## 21851                 1995-01-01                  Denmark         77.2
## 21852                 1990-01-01                  Denmark         76.6
## 21853                 2015-01-01                  Denmark         85.7
## 21854                 2010-01-01                  Denmark         83.6
## 21855                 2005-01-01                  Denmark         81.9
## 21856                 2000-01-01                  Denmark         79.5
## 21857                 1995-01-01                  Denmark         77.2
## 21858                 1990-01-01                  Denmark         76.6
## 21859                 2015-01-01                  Denmark         85.7
## 21860                 2010-01-01                  Denmark         83.6
## 21861                 2005-01-01                  Denmark         81.9
## 21862                 2000-01-01                  Denmark         79.5
## 21863                 1995-01-01                  Denmark         77.2
## 21864                 1990-01-01                  Denmark         76.6
## 21865                 2015-01-01                  Denmark         85.7
## 21866                 2010-01-01                  Denmark         83.6
## 21867                 2005-01-01                  Denmark         81.9
## 21868                 2000-01-01                  Denmark         79.5
## 21869                 1995-01-01                  Denmark         77.2
## 21870                 1990-01-01                  Denmark         76.6
## 21871                 2015-01-01                  Denmark         85.7
## 21872                 2010-01-01                  Denmark         83.6
## 21873                 2005-01-01                  Denmark         81.9
## 21874                 2000-01-01                  Denmark         79.5
## 21875                 1995-01-01                  Denmark         77.2
## 21876                 1990-01-01                  Denmark         76.6
## 21877                 2015-01-01                  Denmark         85.7
## 21878                 2010-01-01                  Denmark         83.6
## 21879                 2005-01-01                  Denmark         81.9
## 21880                 2000-01-01                  Denmark         79.5
## 21881                 1995-01-01                  Denmark         77.2
## 21882                 1990-01-01                  Denmark         76.6
## 21883                 2015-01-01                  Denmark         85.7
## 21884                 2010-01-01                  Denmark         83.6
## 21885                 2005-01-01                  Denmark         81.9
## 21886                 2000-01-01                  Denmark         79.5
## 21887                 1995-01-01                  Denmark         77.2
## 21888                 1990-01-01                  Denmark         76.6
## 21889                 2015-01-01                  Denmark         85.7
## 21890                 2010-01-01                  Denmark         83.6
## 21891                 2005-01-01                  Denmark         81.9
## 21892                 2000-01-01                  Denmark         79.5
## 21893                 1995-01-01                  Denmark         77.2
## 21894                 1990-01-01                  Denmark         76.6
## 21895                 2015-01-01                  Denmark         85.7
## 21896                 2010-01-01                  Denmark         83.6
## 21897                 2005-01-01                  Denmark         81.9
## 21898                 2000-01-01                  Denmark         79.5
## 21899                 1995-01-01                  Denmark         77.2
## 21900                 1990-01-01                  Denmark         76.6
## 21901                 2015-01-01                  Denmark         85.7
## 21902                 2010-01-01                  Denmark         83.6
## 21903                 2005-01-01                  Denmark         81.9
## 21904                 2000-01-01                  Denmark         79.5
## 21905                 1995-01-01                  Denmark         77.2
## 21906                 1990-01-01                  Denmark         76.6
## 21907                 2015-01-01                  Denmark         85.7
## 21908                 2010-01-01                  Denmark         83.6
## 21909                 2005-01-01                  Denmark         81.9
## 21910                 2000-01-01                  Denmark         79.5
## 21911                 1995-01-01                  Denmark         77.2
## 21912                 1990-01-01                  Denmark         76.6
## 21913                 2015-01-01                  Denmark         85.7
## 21914                 2010-01-01                  Denmark         83.6
## 21915                 2005-01-01                  Denmark         81.9
## 21916                 2000-01-01                  Denmark         79.5
## 21917                 1995-01-01                  Denmark         77.2
## 21918                 1990-01-01                  Denmark         76.6
## 21919                 2015-01-01                  Denmark         85.7
## 21920                 2010-01-01                  Denmark         83.6
## 21921                 2005-01-01                  Denmark         81.9
## 21922                 2000-01-01                  Denmark         79.5
## 21923                 1995-01-01                  Denmark         77.2
## 21924                 1990-01-01                  Denmark         76.6
## 21925                 2015-01-01                  Denmark         85.7
## 21926                 2010-01-01                  Denmark         83.6
## 21927                 2005-01-01                  Denmark         81.9
## 21928                 2000-01-01                  Denmark         79.5
## 21929                 1995-01-01                  Denmark         77.2
## 21930                 1990-01-01                  Denmark         76.6
## 21931                 2015-01-01                  Denmark         85.7
## 21932                 2010-01-01                  Denmark         83.6
## 21933                 2005-01-01                  Denmark         81.9
## 21934                 2000-01-01                  Denmark         79.5
## 21935                 1995-01-01                  Denmark         77.2
## 21936                 1990-01-01                  Denmark         76.6
## 21937                 2015-01-01                  Denmark         85.7
## 21938                 2010-01-01                  Denmark         83.6
## 21939                 2005-01-01                  Denmark         81.9
## 21940                 2000-01-01                  Denmark         79.5
## 21941                 1995-01-01                  Denmark         77.2
## 21942                 1990-01-01                  Denmark         76.6
## 21943                 2015-01-01                  Denmark         85.7
## 21944                 2010-01-01                  Denmark         83.6
## 21945                 2005-01-01                  Denmark         81.9
## 21946                 2000-01-01                  Denmark         79.5
## 21947                 1995-01-01                  Denmark         77.2
## 21948                 1990-01-01                  Denmark         76.6
## 21949                 2015-01-01                  Denmark         85.7
## 21950                 2010-01-01                  Denmark         83.6
## 21951                 2005-01-01                  Denmark         81.9
## 21952                 2000-01-01                  Denmark         79.5
## 21953                 1995-01-01                  Denmark         77.2
## 21954                 1990-01-01                  Denmark         76.6
## 21955                 2015-01-01                  Denmark         85.7
## 21956                 2010-01-01                  Denmark         83.6
## 21957                 2005-01-01                  Denmark         81.9
## 21958                 2000-01-01                  Denmark         79.5
## 21959                 1995-01-01                  Denmark         77.2
## 21960                 1990-01-01                  Denmark         76.6
## 21961                 2015-01-01                  Denmark         85.7
## 21962                 2010-01-01                  Denmark         83.6
## 21963                 2005-01-01                  Denmark         81.9
## 21964                 2000-01-01                  Denmark         79.5
## 21965                 1995-01-01                  Denmark         77.2
## 21966                 1990-01-01                  Denmark         76.6
## 21967                 2015-01-01                  Denmark         85.7
## 21968                 2010-01-01                  Denmark         83.6
## 21969                 2005-01-01                  Denmark         81.9
## 21970                 2000-01-01                  Denmark         79.5
## 21971                 1995-01-01                  Denmark         77.2
## 21972                 1990-01-01                  Denmark         76.6
## 21973                 2015-01-01                  Denmark         85.7
## 21974                 2010-01-01                  Denmark         83.6
## 21975                 2005-01-01                  Denmark         81.9
## 21976                 2000-01-01                  Denmark         79.5
## 21977                 1995-01-01                  Denmark         77.2
## 21978                 1990-01-01                  Denmark         76.6
## 21979                 2015-01-01                  Denmark         85.7
## 21980                 2010-01-01                  Denmark         83.6
## 21981                 2005-01-01                  Denmark         81.9
## 21982                 2000-01-01                  Denmark         79.5
## 21983                 1995-01-01                  Denmark         77.2
## 21984                 1990-01-01                  Denmark         76.6
## 21985                 2015-01-01                  Denmark         85.7
## 21986                 2010-01-01                  Denmark         83.6
## 21987                 2005-01-01                  Denmark         81.9
## 21988                 2000-01-01                  Denmark         79.5
## 21989                 1995-01-01                  Denmark         77.2
## 21990                 1990-01-01                  Denmark         76.6
## 21991                 2015-01-01                  Denmark         85.7
## 21992                 2010-01-01                  Denmark         83.6
## 21993                 2005-01-01                  Denmark         81.9
## 21994                 2000-01-01                  Denmark         79.5
## 21995                 1995-01-01                  Denmark         77.2
## 21996                 1990-01-01                  Denmark         76.6
## 21997                 2015-01-01                  Denmark         85.7
## 21998                 2010-01-01                  Denmark         83.6
## 21999                 2005-01-01                  Denmark         81.9
## 22000                 2000-01-01                  Denmark         79.5
## 22001                 1995-01-01                  Denmark         77.2
## 22002                 1990-01-01                  Denmark         76.6
## 22003                 2015-01-01                  Denmark         85.7
## 22004                 2010-01-01                  Denmark         83.6
## 22005                 2005-01-01                  Denmark         81.9
## 22006                 2000-01-01                  Denmark         79.5
## 22007                 1995-01-01                  Denmark         77.2
## 22008                 1990-01-01                  Denmark         76.6
## 22009                 2015-01-01                  Denmark         85.7
## 22010                 2010-01-01                  Denmark         83.6
## 22011                 2005-01-01                  Denmark         81.9
## 22012                 2000-01-01                  Denmark         79.5
## 22013                 1995-01-01                  Denmark         77.2
## 22014                 1990-01-01                  Denmark         76.6
## 22015                 2015-01-01                  Denmark         85.7
## 22016                 2010-01-01                  Denmark         83.6
## 22017                 2005-01-01                  Denmark         81.9
## 22018                 2000-01-01                  Denmark         79.5
## 22019                 1995-01-01                  Denmark         77.2
## 22020                 1990-01-01                  Denmark         76.6
## 22021                 2015-01-01                  Denmark         85.7
## 22022                 2010-01-01                  Denmark         83.6
## 22023                 2005-01-01                  Denmark         81.9
## 22024                 2000-01-01                  Denmark         79.5
## 22025                 1995-01-01                  Denmark         77.2
## 22026                 1990-01-01                  Denmark         76.6
## 22027                 2015-01-01                  Denmark         85.7
## 22028                 2010-01-01                  Denmark         83.6
## 22029                 2005-01-01                  Denmark         81.9
## 22030                 2000-01-01                  Denmark         79.5
## 22031                 1995-01-01                  Denmark         77.2
## 22032                 1990-01-01                  Denmark         76.6
## 22033                 2015-01-01                  Denmark         85.7
## 22034                 2010-01-01                  Denmark         83.6
## 22035                 2005-01-01                  Denmark         81.9
## 22036                 2000-01-01                  Denmark         79.5
## 22037                 1995-01-01                  Denmark         77.2
## 22038                 1990-01-01                  Denmark         76.6
## 22039                 2015-01-01                  Denmark         85.7
## 22040                 2010-01-01                  Denmark         83.6
## 22041                 2005-01-01                  Denmark         81.9
## 22042                 2000-01-01                  Denmark         79.5
## 22043                 1995-01-01                  Denmark         77.2
## 22044                 1990-01-01                  Denmark         76.6
## 22045                 2015-01-01                  Denmark         85.7
## 22046                 2010-01-01                  Denmark         83.6
## 22047                 2005-01-01                  Denmark         81.9
## 22048                 2000-01-01                  Denmark         79.5
## 22049                 1995-01-01                  Denmark         77.2
## 22050                 1990-01-01                  Denmark         76.6
## 22051                 2015-01-01                  Denmark         85.7
## 22052                 2010-01-01                  Denmark         83.6
## 22053                 2005-01-01                  Denmark         81.9
## 22054                 2000-01-01                  Denmark         79.5
## 22055                 1995-01-01                  Denmark         77.2
## 22056                 1990-01-01                  Denmark         76.6
## 22057                 2015-01-01                  Denmark         85.7
## 22058                 2010-01-01                  Denmark         83.6
## 22059                 2005-01-01                  Denmark         81.9
## 22060                 2000-01-01                  Denmark         79.5
## 22061                 1995-01-01                  Denmark         77.2
## 22062                 1990-01-01                  Denmark         76.6
## 22063                 2015-01-01                  Denmark         85.7
## 22064                 2010-01-01                  Denmark         83.6
## 22065                 2005-01-01                  Denmark         81.9
## 22066                 2000-01-01                  Denmark         79.5
## 22067                 1995-01-01                  Denmark         77.2
## 22068                 1990-01-01                  Denmark         76.6
## 22069                 2015-01-01                  Denmark         85.7
## 22070                 2010-01-01                  Denmark         83.6
## 22071                 2005-01-01                  Denmark         81.9
## 22072                 2000-01-01                  Denmark         79.5
## 22073                 1995-01-01                  Denmark         77.2
## 22074                 1990-01-01                  Denmark         76.6
## 22075                 2015-01-01                  Denmark         85.7
## 22076                 2010-01-01                  Denmark         83.6
## 22077                 2005-01-01                  Denmark         81.9
## 22078                 2000-01-01                  Denmark         79.5
## 22079                 1995-01-01                  Denmark         77.2
## 22080                 1990-01-01                  Denmark         76.6
## 22081                 2015-01-01                  Denmark         85.7
## 22082                 2010-01-01                  Denmark         83.6
## 22083                 2005-01-01                  Denmark         81.9
## 22084                 2000-01-01                  Denmark         79.5
## 22085                 1995-01-01                  Denmark         77.2
## 22086                 1990-01-01                  Denmark         76.6
## 22087                 2015-01-01                  Denmark         85.7
## 22088                 2010-01-01                  Denmark         83.6
## 22089                 2005-01-01                  Denmark         81.9
## 22090                 2000-01-01                  Denmark         79.5
## 22091                 1995-01-01                  Denmark         77.2
## 22092                 1990-01-01                  Denmark         76.6
## 22093                 2015-01-01                  Denmark         85.7
## 22094                 2010-01-01                  Denmark         83.6
## 22095                 2005-01-01                  Denmark         81.9
## 22096                 2000-01-01                  Denmark         79.5
## 22097                 1995-01-01                  Denmark         77.2
## 22098                 1990-01-01                  Denmark         76.6
## 22099                 2015-01-01                  Denmark         85.7
## 22100                 2010-01-01                  Denmark         83.6
## 22101                 2005-01-01                  Denmark         81.9
## 22102                 2000-01-01                  Denmark         79.5
## 22103                 1995-01-01                  Denmark         77.2
## 22104                 1990-01-01                  Denmark         76.6
## 22105                 2015-01-01                  Denmark         85.7
## 22106                 2010-01-01                  Denmark         83.6
## 22107                 2005-01-01                  Denmark         81.9
## 22108                 2000-01-01                  Denmark         79.5
## 22109                 1995-01-01                  Denmark         77.2
## 22110                 1990-01-01                  Denmark         76.6
## 22111                 2015-01-01                  Denmark         85.7
## 22112                 2010-01-01                  Denmark         83.6
## 22113                 2005-01-01                  Denmark         81.9
## 22114                 2000-01-01                  Denmark         79.5
## 22115                 1995-01-01                  Denmark         77.2
## 22116                 1990-01-01                  Denmark         76.6
## 22117                 2015-01-01                  Denmark         85.7
## 22118                 2010-01-01                  Denmark         83.6
## 22119                 2005-01-01                  Denmark         81.9
## 22120                 2000-01-01                  Denmark         79.5
## 22121                 1995-01-01                  Denmark         77.2
## 22122                 1990-01-01                  Denmark         76.6
## 22123                 2015-01-01                  Denmark         85.7
## 22124                 2010-01-01                  Denmark         83.6
## 22125                 2005-01-01                  Denmark         81.9
## 22126                 2000-01-01                  Denmark         79.5
## 22127                 1995-01-01                  Denmark         77.2
## 22128                 1990-01-01                  Denmark         76.6
## 22129                 2015-01-01                  Denmark         85.7
## 22130                 2010-01-01                  Denmark         83.6
## 22131                 2005-01-01                  Denmark         81.9
## 22132                 2000-01-01                  Denmark         79.5
## 22133                 1995-01-01                  Denmark         77.2
## 22134                 1990-01-01                  Denmark         76.6
## 22135                 2015-01-01                  Denmark         85.7
## 22136                 2010-01-01                  Denmark         83.6
## 22137                 2005-01-01                  Denmark         81.9
## 22138                 2000-01-01                  Denmark         79.5
## 22139                 1995-01-01                  Denmark         77.2
## 22140                 1990-01-01                  Denmark         76.6
## 22141                 2015-01-01                  Denmark         85.7
## 22142                 2010-01-01                  Denmark         83.6
## 22143                 2005-01-01                  Denmark         81.9
## 22144                 2000-01-01                  Denmark         79.5
## 22145                 1995-01-01                  Denmark         77.2
## 22146                 1990-01-01                  Denmark         76.6
## 22147                 2015-01-01                  Denmark         85.7
## 22148                 2010-01-01                  Denmark         83.6
## 22149                 2005-01-01                  Denmark         81.9
## 22150                 2000-01-01                  Denmark         79.5
## 22151                 1995-01-01                  Denmark         77.2
## 22152                 1990-01-01                  Denmark         76.6
## 22153                 2015-01-01                  Denmark         85.7
## 22154                 2010-01-01                  Denmark         83.6
## 22155                 2005-01-01                  Denmark         81.9
## 22156                 2000-01-01                  Denmark         79.5
## 22157                 1995-01-01                  Denmark         77.2
## 22158                 1990-01-01                  Denmark         76.6
## 22159                 2015-01-01                  Denmark         85.7
## 22160                 2010-01-01                  Denmark         83.6
## 22161                 2005-01-01                  Denmark         81.9
## 22162                 2000-01-01                  Denmark         79.5
## 22163                 1995-01-01                  Denmark         77.2
## 22164                 1990-01-01                  Denmark         76.6
## 22165                 2015-01-01                  Denmark         85.7
## 22166                 2010-01-01                  Denmark         83.6
## 22167                 2005-01-01                  Denmark         81.9
## 22168                 2000-01-01                  Denmark         79.5
## 22169                 1995-01-01                  Denmark         77.2
## 22170                 1990-01-01                  Denmark         76.6
## 22171                 2015-01-01                  Denmark         85.7
## 22172                 2010-01-01                  Denmark         83.6
## 22173                 2005-01-01                  Denmark         81.9
## 22174                 2000-01-01                  Denmark         79.5
## 22175                 1995-01-01                  Denmark         77.2
## 22176                 1990-01-01                  Denmark         76.6
## 22177                 2015-01-01                  Denmark         85.7
## 22178                 2010-01-01                  Denmark         83.6
## 22179                 2005-01-01                  Denmark         81.9
## 22180                 2000-01-01                  Denmark         79.5
## 22181                 1995-01-01                  Denmark         77.2
## 22182                 1990-01-01                  Denmark         76.6
## 22183                 2015-01-01                  Denmark         85.7
## 22184                 2010-01-01                  Denmark         83.6
## 22185                 2005-01-01                  Denmark         81.9
## 22186                 2000-01-01                  Denmark         79.5
## 22187                 1995-01-01                  Denmark         77.2
## 22188                 1990-01-01                  Denmark         76.6
## 22189                 2015-01-01                  Denmark         85.7
## 22190                 2010-01-01                  Denmark         83.6
## 22191                 2005-01-01                  Denmark         81.9
## 22192                 2000-01-01                  Denmark         79.5
## 22193                 1995-01-01                  Denmark         77.2
## 22194                 1990-01-01                  Denmark         76.6
## 22195                 2015-01-01                  Denmark         85.7
## 22196                 2010-01-01                  Denmark         83.6
## 22197                 2005-01-01                  Denmark         81.9
## 22198                 2000-01-01                  Denmark         79.5
## 22199                 1995-01-01                  Denmark         77.2
## 22200                 1990-01-01                  Denmark         76.6
## 22201                 2015-01-01                  Denmark         85.7
## 22202                 2010-01-01                  Denmark         83.6
## 22203                 2005-01-01                  Denmark         81.9
## 22204                 2000-01-01                  Denmark         79.5
## 22205                 1995-01-01                  Denmark         77.2
## 22206                 1990-01-01                  Denmark         76.6
## 22207                 2015-01-01                  Denmark         85.7
## 22208                 2010-01-01                  Denmark         83.6
## 22209                 2005-01-01                  Denmark         81.9
## 22210                 2000-01-01                  Denmark         79.5
## 22211                 1995-01-01                  Denmark         77.2
## 22212                 1990-01-01                  Denmark         76.6
## 22213                 2015-01-01                  Denmark         85.7
## 22214                 2010-01-01                  Denmark         83.6
## 22215                 2005-01-01                  Denmark         81.9
## 22216                 2000-01-01                  Denmark         79.5
## 22217                 1995-01-01                  Denmark         77.2
## 22218                 1990-01-01                  Denmark         76.6
## 22219                 2015-01-01                  Denmark         85.7
## 22220                 2010-01-01                  Denmark         83.6
## 22221                 2005-01-01                  Denmark         81.9
## 22222                 2000-01-01                  Denmark         79.5
## 22223                 1995-01-01                  Denmark         77.2
## 22224                 1990-01-01                  Denmark         76.6
## 22225                 2015-01-01                  Denmark         85.7
## 22226                 2010-01-01                  Denmark         83.6
## 22227                 2005-01-01                  Denmark         81.9
## 22228                 2000-01-01                  Denmark         79.5
## 22229                 1995-01-01                  Denmark         77.2
## 22230                 1990-01-01                  Denmark         76.6
## 22231                 2015-01-01                  Denmark         85.7
## 22232                 2010-01-01                  Denmark         83.6
## 22233                 2005-01-01                  Denmark         81.9
## 22234                 2000-01-01                  Denmark         79.5
## 22235                 1995-01-01                  Denmark         77.2
## 22236                 1990-01-01                  Denmark         76.6
## 22237                 2015-01-01                  Denmark         85.7
## 22238                 2010-01-01                  Denmark         83.6
## 22239                 2005-01-01                  Denmark         81.9
## 22240                 2000-01-01                  Denmark         79.5
## 22241                 1995-01-01                  Denmark         77.2
## 22242                 1990-01-01                  Denmark         76.6
## 22243                 2015-01-01                  Denmark         85.7
## 22244                 2010-01-01                  Denmark         83.6
## 22245                 2005-01-01                  Denmark         81.9
## 22246                 2000-01-01                  Denmark         79.5
## 22247                 1995-01-01                  Denmark         77.2
## 22248                 1990-01-01                  Denmark         76.6
## 22249                 2015-01-01                  Denmark         85.7
## 22250                 2010-01-01                  Denmark         83.6
## 22251                 2005-01-01                  Denmark         81.9
## 22252                 2000-01-01                  Denmark         79.5
## 22253                 1995-01-01                  Denmark         77.2
## 22254                 1990-01-01                  Denmark         76.6
## 22255                 2015-01-01                  Denmark         85.7
## 22256                 2010-01-01                  Denmark         83.6
## 22257                 2005-01-01                  Denmark         81.9
## 22258                 2000-01-01                  Denmark         79.5
## 22259                 1995-01-01                  Denmark         77.2
## 22260                 1990-01-01                  Denmark         76.6
## 22261                 2015-01-01                  Denmark         85.7
## 22262                 2010-01-01                  Denmark         83.6
## 22263                 2005-01-01                  Denmark         81.9
## 22264                 2000-01-01                  Denmark         79.5
## 22265                 1995-01-01                  Denmark         77.2
## 22266                 1990-01-01                  Denmark         76.6
## 22267                 2015-01-01                  Denmark         85.7
## 22268                 2010-01-01                  Denmark         83.6
## 22269                 2005-01-01                  Denmark         81.9
## 22270                 2000-01-01                  Denmark         79.5
## 22271                 1995-01-01                  Denmark         77.2
## 22272                 1990-01-01                  Denmark         76.6
## 22273                 2015-01-01                  Denmark         85.7
## 22274                 2010-01-01                  Denmark         83.6
## 22275                 2005-01-01                  Denmark         81.9
## 22276                 2000-01-01                  Denmark         79.5
## 22277                 1995-01-01                  Denmark         77.2
## 22278                 1990-01-01                  Denmark         76.6
## 22279                 2015-01-01                  Denmark         85.7
## 22280                 2010-01-01                  Denmark         83.6
## 22281                 2005-01-01                  Denmark         81.9
## 22282                 2000-01-01                  Denmark         79.5
## 22283                 1995-01-01                  Denmark         77.2
## 22284                 1990-01-01                  Denmark         76.6
## 22285                 2015-01-01                  Denmark         85.7
## 22286                 2010-01-01                  Denmark         83.6
## 22287                 2005-01-01                  Denmark         81.9
## 22288                 2000-01-01                  Denmark         79.5
## 22289                 1995-01-01                  Denmark         77.2
## 22290                 1990-01-01                  Denmark         76.6
## 22291                 2015-01-01                  Denmark         85.7
## 22292                 2010-01-01                  Denmark         83.6
## 22293                 2005-01-01                  Denmark         81.9
## 22294                 2000-01-01                  Denmark         79.5
## 22295                 1995-01-01                  Denmark         77.2
## 22296                 1990-01-01                  Denmark         76.6
## 22297                 2015-01-01                  Denmark         85.7
## 22298                 2010-01-01                  Denmark         83.6
## 22299                 2005-01-01                  Denmark         81.9
## 22300                 2000-01-01                  Denmark         79.5
## 22301                 1995-01-01                  Denmark         77.2
## 22302                 1990-01-01                  Denmark         76.6
## 22303                 2015-01-01                  Denmark         85.7
## 22304                 2010-01-01                  Denmark         83.6
## 22305                 2005-01-01                  Denmark         81.9
## 22306                 2000-01-01                  Denmark         79.5
## 22307                 1995-01-01                  Denmark         77.2
## 22308                 1990-01-01                  Denmark         76.6
## 22309                 2015-01-01                  Denmark         85.7
## 22310                 2010-01-01                  Denmark         83.6
## 22311                 2005-01-01                  Denmark         81.9
## 22312                 2000-01-01                  Denmark         79.5
## 22313                 1995-01-01                  Denmark         77.2
## 22314                 1990-01-01                  Denmark         76.6
## 22315                 2015-01-01                  Denmark         85.7
## 22316                 2010-01-01                  Denmark         83.6
## 22317                 2005-01-01                  Denmark         81.9
## 22318                 2000-01-01                  Denmark         79.5
## 22319                 1995-01-01                  Denmark         77.2
## 22320                 1990-01-01                  Denmark         76.6
## 22321                 2015-01-01                  Denmark         85.7
## 22322                 2010-01-01                  Denmark         83.6
## 22323                 2005-01-01                  Denmark         81.9
## 22324                 2000-01-01                  Denmark         79.5
## 22325                 1995-01-01                  Denmark         77.2
## 22326                 1990-01-01                  Denmark         76.6
## 22327                 2015-01-01                  Denmark         85.7
## 22328                 2010-01-01                  Denmark         83.6
## 22329                 2005-01-01                  Denmark         81.9
## 22330                 2000-01-01                  Denmark         79.5
## 22331                 1995-01-01                  Denmark         77.2
## 22332                 1990-01-01                  Denmark         76.6
## 22333                 2015-01-01                  Denmark         85.7
## 22334                 2010-01-01                  Denmark         83.6
## 22335                 2005-01-01                  Denmark         81.9
## 22336                 2000-01-01                  Denmark         79.5
## 22337                 1995-01-01                  Denmark         77.2
## 22338                 1990-01-01                  Denmark         76.6
## 22339                 2015-01-01                  Denmark         85.7
## 22340                 2010-01-01                  Denmark         83.6
## 22341                 2005-01-01                  Denmark         81.9
## 22342                 2000-01-01                  Denmark         79.5
## 22343                 1995-01-01                  Denmark         77.2
## 22344                 1990-01-01                  Denmark         76.6
## 22345                 2015-01-01                  Denmark         85.7
## 22346                 2010-01-01                  Denmark         83.6
## 22347                 2005-01-01                  Denmark         81.9
## 22348                 2000-01-01                  Denmark         79.5
## 22349                 1995-01-01                  Denmark         77.2
## 22350                 1990-01-01                  Denmark         76.6
## 22351                 2015-01-01                  Denmark         85.7
## 22352                 2010-01-01                  Denmark         83.6
## 22353                 2005-01-01                  Denmark         81.9
## 22354                 2000-01-01                  Denmark         79.5
## 22355                 1995-01-01                  Denmark         77.2
## 22356                 1990-01-01                  Denmark         76.6
## 22357                 2015-01-01                  Denmark         85.7
## 22358                 2010-01-01                  Denmark         83.6
## 22359                 2005-01-01                  Denmark         81.9
## 22360                 2000-01-01                  Denmark         79.5
## 22361                 1995-01-01                  Denmark         77.2
## 22362                 1990-01-01                  Denmark         76.6
## 22363                 2015-01-01                  Denmark         85.7
## 22364                 2010-01-01                  Denmark         83.6
## 22365                 2005-01-01                  Denmark         81.9
## 22366                 2000-01-01                  Denmark         79.5
## 22367                 1995-01-01                  Denmark         77.2
## 22368                 1990-01-01                  Denmark         76.6
## 22369                 2015-01-01                  Denmark         85.7
## 22370                 2010-01-01                  Denmark         83.6
## 22371                 2005-01-01                  Denmark         81.9
## 22372                 2000-01-01                  Denmark         79.5
## 22373                 1995-01-01                  Denmark         77.2
## 22374                 1990-01-01                  Denmark         76.6
## 22375                 2015-01-01                  Denmark         85.7
## 22376                 2010-01-01                  Denmark         83.6
## 22377                 2005-01-01                  Denmark         81.9
## 22378                 2000-01-01                  Denmark         79.5
## 22379                 1995-01-01                  Denmark         77.2
## 22380                 1990-01-01                  Denmark         76.6
## 22381                 2015-01-01                  Denmark         85.7
## 22382                 2010-01-01                  Denmark         83.6
## 22383                 2005-01-01                  Denmark         81.9
## 22384                 2000-01-01                  Denmark         79.5
## 22385                 1995-01-01                  Denmark         77.2
## 22386                 1990-01-01                  Denmark         76.6
## 22387                 2015-01-01                  Denmark         85.7
## 22388                 2010-01-01                  Denmark         83.6
## 22389                 2005-01-01                  Denmark         81.9
## 22390                 2000-01-01                  Denmark         79.5
## 22391                 1995-01-01                  Denmark         77.2
## 22392                 1990-01-01                  Denmark         76.6
## 22393                 2015-01-01                  Denmark         85.7
## 22394                 2010-01-01                  Denmark         83.6
## 22395                 2005-01-01                  Denmark         81.9
## 22396                 2000-01-01                  Denmark         79.5
## 22397                 1995-01-01                  Denmark         77.2
## 22398                 1990-01-01                  Denmark         76.6
## 22399                 2015-01-01                  Denmark         85.7
## 22400                 2010-01-01                  Denmark         83.6
## 22401                 2005-01-01                  Denmark         81.9
## 22402                 2000-01-01                  Denmark         79.5
## 22403                 1995-01-01                  Denmark         77.2
## 22404                 1990-01-01                  Denmark         76.6
## 22405                 2015-01-01                  Denmark         85.7
## 22406                 2010-01-01                  Denmark         83.6
## 22407                 2005-01-01                  Denmark         81.9
## 22408                 2000-01-01                  Denmark         79.5
## 22409                 1995-01-01                  Denmark         77.2
## 22410                 1990-01-01                  Denmark         76.6
## 22411                 2015-01-01                  Denmark         85.7
## 22412                 2010-01-01                  Denmark         83.6
## 22413                 2005-01-01                  Denmark         81.9
## 22414                 2000-01-01                  Denmark         79.5
## 22415                 1995-01-01                  Denmark         77.2
## 22416                 1990-01-01                  Denmark         76.6
## 22417                 2015-01-01                  Denmark         85.7
## 22418                 2010-01-01                  Denmark         83.6
## 22419                 2005-01-01                  Denmark         81.9
## 22420                 2000-01-01                  Denmark         79.5
## 22421                 1995-01-01                  Denmark         77.2
## 22422                 1990-01-01                  Denmark         76.6
## 22423                 2015-01-01                  Denmark         85.7
## 22424                 2010-01-01                  Denmark         83.6
## 22425                 2005-01-01                  Denmark         81.9
## 22426                 2000-01-01                  Denmark         79.5
## 22427                 1995-01-01                  Denmark         77.2
## 22428                 1990-01-01                  Denmark         76.6
## 22429                 2015-01-01                  Denmark         85.7
## 22430                 2010-01-01                  Denmark         83.6
## 22431                 2005-01-01                  Denmark         81.9
## 22432                 2000-01-01                  Denmark         79.5
## 22433                 1995-01-01                  Denmark         77.2
## 22434                 1990-01-01                  Denmark         76.6
## 22435                 2015-01-01                  Denmark         85.7
## 22436                 2010-01-01                  Denmark         83.6
## 22437                 2005-01-01                  Denmark         81.9
## 22438                 2000-01-01                  Denmark         79.5
## 22439                 1995-01-01                  Denmark         77.2
## 22440                 1990-01-01                  Denmark         76.6
## 22441                 2015-01-01                  Denmark         85.7
## 22442                 2010-01-01                  Denmark         83.6
## 22443                 2005-01-01                  Denmark         81.9
## 22444                 2000-01-01                  Denmark         79.5
## 22445                 1995-01-01                  Denmark         77.2
## 22446                 1990-01-01                  Denmark         76.6
## 22447                 2015-01-01                  Denmark         85.7
## 22448                 2010-01-01                  Denmark         83.6
## 22449                 2005-01-01                  Denmark         81.9
## 22450                 2000-01-01                  Denmark         79.5
## 22451                 1995-01-01                  Denmark         77.2
## 22452                 1990-01-01                  Denmark         76.6
## 22453                 2015-01-01                  Denmark         85.7
## 22454                 2010-01-01                  Denmark         83.6
## 22455                 2005-01-01                  Denmark         81.9
## 22456                 2000-01-01                  Denmark         79.5
## 22457                 1995-01-01                  Denmark         77.2
## 22458                 1990-01-01                  Denmark         76.6
## 22459                 2015-01-01                  Denmark         85.7
## 22460                 2010-01-01                  Denmark         83.6
## 22461                 2005-01-01                  Denmark         81.9
## 22462                 2000-01-01                  Denmark         79.5
## 22463                 1995-01-01                  Denmark         77.2
## 22464                 1990-01-01                  Denmark         76.6
## 22465                 2015-01-01                  Denmark         85.7
## 22466                 2010-01-01                  Denmark         83.6
## 22467                 2005-01-01                  Denmark         81.9
## 22468                 2000-01-01                  Denmark         79.5
## 22469                 1995-01-01                  Denmark         77.2
## 22470                 1990-01-01                  Denmark         76.6
## 22471                 2015-01-01                  Denmark         85.7
## 22472                 2010-01-01                  Denmark         83.6
## 22473                 2005-01-01                  Denmark         81.9
## 22474                 2000-01-01                  Denmark         79.5
## 22475                 1995-01-01                  Denmark         77.2
## 22476                 1990-01-01                  Denmark         76.6
## 22477                 2015-01-01                  Denmark         85.7
## 22478                 2010-01-01                  Denmark         83.6
## 22479                 2005-01-01                  Denmark         81.9
## 22480                 2000-01-01                  Denmark         79.5
## 22481                 1995-01-01                  Denmark         77.2
## 22482                 1990-01-01                  Denmark         76.6
## 22483                 2015-01-01                  Denmark         85.7
## 22484                 2010-01-01                  Denmark         83.6
## 22485                 2005-01-01                  Denmark         81.9
## 22486                 2000-01-01                  Denmark         79.5
## 22487                 1995-01-01                  Denmark         77.2
## 22488                 1990-01-01                  Denmark         76.6
## 22489                 2015-01-01                  Denmark         85.7
## 22490                 2010-01-01                  Denmark         83.6
## 22491                 2005-01-01                  Denmark         81.9
## 22492                 2000-01-01                  Denmark         79.5
## 22493                 1995-01-01                  Denmark         77.2
## 22494                 1990-01-01                  Denmark         76.6
## 22495                 2015-01-01                  Denmark         85.7
## 22496                 2010-01-01                  Denmark         83.6
## 22497                 2005-01-01                  Denmark         81.9
## 22498                 2000-01-01                  Denmark         79.5
## 22499                 1995-01-01                  Denmark         77.2
## 22500                 1990-01-01                  Denmark         76.6
## 22501                 2015-01-01                  Denmark         85.7
## 22502                 2010-01-01                  Denmark         83.6
## 22503                 2005-01-01                  Denmark         81.9
## 22504                 2000-01-01                  Denmark         79.5
## 22505                 1995-01-01                  Denmark         77.2
## 22506                 1990-01-01                  Denmark         76.6
## 22507                 2015-01-01                  Denmark         85.7
## 22508                 2010-01-01                  Denmark         83.6
## 22509                 2005-01-01                  Denmark         81.9
## 22510                 2000-01-01                  Denmark         79.5
## 22511                 1995-01-01                  Denmark         77.2
## 22512                 1990-01-01                  Denmark         76.6
## 22513                 2015-01-01                  Denmark         85.7
## 22514                 2010-01-01                  Denmark         83.6
## 22515                 2005-01-01                  Denmark         81.9
## 22516                 2000-01-01                  Denmark         79.5
## 22517                 1995-01-01                  Denmark         77.2
## 22518                 1990-01-01                  Denmark         76.6
## 22519                 2015-01-01                  Denmark         85.7
## 22520                 2010-01-01                  Denmark         83.6
## 22521                 2005-01-01                  Denmark         81.9
## 22522                 2000-01-01                  Denmark         79.5
## 22523                 1995-01-01                  Denmark         77.2
## 22524                 1990-01-01                  Denmark         76.6
## 22525                 2015-01-01                  Denmark         85.7
## 22526                 2010-01-01                  Denmark         83.6
## 22527                 2005-01-01                  Denmark         81.9
## 22528                 2000-01-01                  Denmark         79.5
## 22529                 1995-01-01                  Denmark         77.2
## 22530                 1990-01-01                  Denmark         76.6
## 22531                 2015-01-01                  Denmark         85.7
## 22532                 2010-01-01                  Denmark         83.6
## 22533                 2005-01-01                  Denmark         81.9
## 22534                 2000-01-01                  Denmark         79.5
## 22535                 1995-01-01                  Denmark         77.2
## 22536                 1990-01-01                  Denmark         76.6
## 22537                 2015-01-01                  Denmark         85.7
## 22538                 2010-01-01                  Denmark         83.6
## 22539                 2005-01-01                  Denmark         81.9
## 22540                 2000-01-01                  Denmark         79.5
## 22541                 1995-01-01                  Denmark         77.2
## 22542                 1990-01-01                  Denmark         76.6
## 22543                 2015-01-01                  Denmark         85.7
## 22544                 2010-01-01                  Denmark         83.6
## 22545                 2005-01-01                  Denmark         81.9
## 22546                 2000-01-01                  Denmark         79.5
## 22547                 1995-01-01                  Denmark         77.2
## 22548                 1990-01-01                  Denmark         76.6
## 22549                 2015-01-01                  Denmark         85.7
## 22550                 2010-01-01                  Denmark         83.6
## 22551                 2005-01-01                  Denmark         81.9
## 22552                 2000-01-01                  Denmark         79.5
## 22553                 1995-01-01                  Denmark         77.2
## 22554                 1990-01-01                  Denmark         76.6
## 22555                 2015-01-01                  Denmark         85.7
## 22556                 2010-01-01                  Denmark         83.6
## 22557                 2005-01-01                  Denmark         81.9
## 22558                 2000-01-01                  Denmark         79.5
## 22559                 1995-01-01                  Denmark         77.2
## 22560                 1990-01-01                  Denmark         76.6
## 22561                 2015-01-01                  Denmark         85.7
## 22562                 2010-01-01                  Denmark         83.6
## 22563                 2005-01-01                  Denmark         81.9
## 22564                 2000-01-01                  Denmark         79.5
## 22565                 1995-01-01                  Denmark         77.2
## 22566                 1990-01-01                  Denmark         76.6
## 22567                 2015-01-01                  Denmark         85.7
## 22568                 2010-01-01                  Denmark         83.6
## 22569                 2005-01-01                  Denmark         81.9
## 22570                 2000-01-01                  Denmark         79.5
## 22571                 1995-01-01                  Denmark         77.2
## 22572                 1990-01-01                  Denmark         76.6
## 22573                 2015-01-01                  Denmark         85.7
## 22574                 2010-01-01                  Denmark         83.6
## 22575                 2005-01-01                  Denmark         81.9
## 22576                 2000-01-01                  Denmark         79.5
## 22577                 1995-01-01                  Denmark         77.2
## 22578                 1990-01-01                  Denmark         76.6
## 22579                 2015-01-01                 Djibouti         44.7
## 22580                 2010-01-01                 Djibouti         43.2
## 22581                 2005-01-01                 Djibouti         40.9
## 22582                 2000-01-01                 Djibouti         39.4
## 22583                 1995-01-01                 Djibouti         38.8
## 22584                 1990-01-01                 Djibouti         38.9
## 22585                 2015-01-01                 Djibouti         44.7
## 22586                 2010-01-01                 Djibouti         43.2
## 22587                 2005-01-01                 Djibouti         40.9
## 22588                 2000-01-01                 Djibouti         39.4
## 22589                 1995-01-01                 Djibouti         38.8
## 22590                 1990-01-01                 Djibouti         38.9
## 22591                 2015-01-01                 Djibouti         44.7
## 22592                 2010-01-01                 Djibouti         43.2
## 22593                 2005-01-01                 Djibouti         40.9
## 22594                 2000-01-01                 Djibouti         39.4
## 22595                 1995-01-01                 Djibouti         38.8
## 22596                 1990-01-01                 Djibouti         38.9
## 22597                 2015-01-01                 Djibouti         44.7
## 22598                 2010-01-01                 Djibouti         43.2
## 22599                 2005-01-01                 Djibouti         40.9
## 22600                 2000-01-01                 Djibouti         39.4
## 22601                 1995-01-01                 Djibouti         38.8
## 22602                 1990-01-01                 Djibouti         38.9
## 22603                 2015-01-01                 Djibouti         44.7
## 22604                 2010-01-01                 Djibouti         43.2
## 22605                 2005-01-01                 Djibouti         40.9
## 22606                 2000-01-01                 Djibouti         39.4
## 22607                 1995-01-01                 Djibouti         38.8
## 22608                 1990-01-01                 Djibouti         38.9
## 22609                 2015-01-01                 Djibouti         44.7
## 22610                 2010-01-01                 Djibouti         43.2
## 22611                 2005-01-01                 Djibouti         40.9
## 22612                 2000-01-01                 Djibouti         39.4
## 22613                 1995-01-01                 Djibouti         38.8
## 22614                 1990-01-01                 Djibouti         38.9
## 22615                 2015-01-01                 Djibouti         44.7
## 22616                 2010-01-01                 Djibouti         43.2
## 22617                 2005-01-01                 Djibouti         40.9
## 22618                 2000-01-01                 Djibouti         39.4
## 22619                 1995-01-01                 Djibouti         38.8
## 22620                 1990-01-01                 Djibouti         38.9
## 22621                 2015-01-01                 Djibouti         44.7
## 22622                 2010-01-01                 Djibouti         43.2
## 22623                 2005-01-01                 Djibouti         40.9
## 22624                 2000-01-01                 Djibouti         39.4
## 22625                 1995-01-01                 Djibouti         38.8
## 22626                 1990-01-01                 Djibouti         38.9
## 22627                 2015-01-01                 Djibouti         44.7
## 22628                 2010-01-01                 Djibouti         43.2
## 22629                 2005-01-01                 Djibouti         40.9
## 22630                 2000-01-01                 Djibouti         39.4
## 22631                 1995-01-01                 Djibouti         38.8
## 22632                 1990-01-01                 Djibouti         38.9
## 22633                 2015-01-01                 Djibouti         44.7
## 22634                 2010-01-01                 Djibouti         43.2
## 22635                 2005-01-01                 Djibouti         40.9
## 22636                 2000-01-01                 Djibouti         39.4
## 22637                 1995-01-01                 Djibouti         38.8
## 22638                 1990-01-01                 Djibouti         38.9
## 22639                 2015-01-01                 Djibouti         44.7
## 22640                 2010-01-01                 Djibouti         43.2
## 22641                 2005-01-01                 Djibouti         40.9
## 22642                 2000-01-01                 Djibouti         39.4
## 22643                 1995-01-01                 Djibouti         38.8
## 22644                 1990-01-01                 Djibouti         38.9
## 22645                 2015-01-01                 Djibouti         44.7
## 22646                 2010-01-01                 Djibouti         43.2
## 22647                 2005-01-01                 Djibouti         40.9
## 22648                 2000-01-01                 Djibouti         39.4
## 22649                 1995-01-01                 Djibouti         38.8
## 22650                 1990-01-01                 Djibouti         38.9
## 22651                 2015-01-01                 Djibouti         44.7
## 22652                 2010-01-01                 Djibouti         43.2
## 22653                 2005-01-01                 Djibouti         40.9
## 22654                 2000-01-01                 Djibouti         39.4
## 22655                 1995-01-01                 Djibouti         38.8
## 22656                 1990-01-01                 Djibouti         38.9
## 22657                 2015-01-01                 Djibouti         44.7
## 22658                 2010-01-01                 Djibouti         43.2
## 22659                 2005-01-01                 Djibouti         40.9
## 22660                 2000-01-01                 Djibouti         39.4
## 22661                 1995-01-01                 Djibouti         38.8
## 22662                 1990-01-01                 Djibouti         38.9
## 22663                 2015-01-01                 Djibouti         44.7
## 22664                 2010-01-01                 Djibouti         43.2
## 22665                 2005-01-01                 Djibouti         40.9
## 22666                 2000-01-01                 Djibouti         39.4
## 22667                 1995-01-01                 Djibouti         38.8
## 22668                 1990-01-01                 Djibouti         38.9
## 22669                 2015-01-01                 Djibouti         44.7
## 22670                 2010-01-01                 Djibouti         43.2
## 22671                 2005-01-01                 Djibouti         40.9
## 22672                 2000-01-01                 Djibouti         39.4
## 22673                 1995-01-01                 Djibouti         38.8
## 22674                 1990-01-01                 Djibouti         38.9
## 22675                 2015-01-01                 Djibouti         44.7
## 22676                 2010-01-01                 Djibouti         43.2
## 22677                 2005-01-01                 Djibouti         40.9
## 22678                 2000-01-01                 Djibouti         39.4
## 22679                 1995-01-01                 Djibouti         38.8
## 22680                 1990-01-01                 Djibouti         38.9
## 22681                 2015-01-01                 Djibouti         44.7
## 22682                 2010-01-01                 Djibouti         43.2
## 22683                 2005-01-01                 Djibouti         40.9
## 22684                 2000-01-01                 Djibouti         39.4
## 22685                 1995-01-01                 Djibouti         38.8
## 22686                 1990-01-01                 Djibouti         38.9
## 22687                 2015-01-01                 Djibouti         44.7
## 22688                 2010-01-01                 Djibouti         43.2
## 22689                 2005-01-01                 Djibouti         40.9
## 22690                 2000-01-01                 Djibouti         39.4
## 22691                 1995-01-01                 Djibouti         38.8
## 22692                 1990-01-01                 Djibouti         38.9
## 22693                 2015-01-01                 Djibouti         44.7
## 22694                 2010-01-01                 Djibouti         43.2
## 22695                 2005-01-01                 Djibouti         40.9
## 22696                 2000-01-01                 Djibouti         39.4
## 22697                 1995-01-01                 Djibouti         38.8
## 22698                 1990-01-01                 Djibouti         38.9
## 22699                 2015-01-01                 Djibouti         44.7
## 22700                 2010-01-01                 Djibouti         43.2
## 22701                 2005-01-01                 Djibouti         40.9
## 22702                 2000-01-01                 Djibouti         39.4
## 22703                 1995-01-01                 Djibouti         38.8
## 22704                 1990-01-01                 Djibouti         38.9
## 22705                 2015-01-01                 Djibouti         44.7
## 22706                 2010-01-01                 Djibouti         43.2
## 22707                 2005-01-01                 Djibouti         40.9
## 22708                 2000-01-01                 Djibouti         39.4
## 22709                 1995-01-01                 Djibouti         38.8
## 22710                 1990-01-01                 Djibouti         38.9
## 22711                 2015-01-01                 Djibouti         44.7
## 22712                 2010-01-01                 Djibouti         43.2
## 22713                 2005-01-01                 Djibouti         40.9
## 22714                 2000-01-01                 Djibouti         39.4
## 22715                 1995-01-01                 Djibouti         38.8
## 22716                 1990-01-01                 Djibouti         38.9
## 22717                 2015-01-01                 Djibouti         44.7
## 22718                 2010-01-01                 Djibouti         43.2
## 22719                 2005-01-01                 Djibouti         40.9
## 22720                 2000-01-01                 Djibouti         39.4
## 22721                 1995-01-01                 Djibouti         38.8
## 22722                 1990-01-01                 Djibouti         38.9
## 22723                 2015-01-01                 Djibouti         44.7
## 22724                 2010-01-01                 Djibouti         43.2
## 22725                 2005-01-01                 Djibouti         40.9
## 22726                 2000-01-01                 Djibouti         39.4
## 22727                 1995-01-01                 Djibouti         38.8
## 22728                 1990-01-01                 Djibouti         38.9
## 22729                 2015-01-01                 Djibouti         44.7
## 22730                 2010-01-01                 Djibouti         43.2
## 22731                 2005-01-01                 Djibouti         40.9
## 22732                 2000-01-01                 Djibouti         39.4
## 22733                 1995-01-01                 Djibouti         38.8
## 22734                 1990-01-01                 Djibouti         38.9
## 22735                 2015-01-01                 Djibouti         44.7
## 22736                 2010-01-01                 Djibouti         43.2
## 22737                 2005-01-01                 Djibouti         40.9
## 22738                 2000-01-01                 Djibouti         39.4
## 22739                 1995-01-01                 Djibouti         38.8
## 22740                 1990-01-01                 Djibouti         38.9
## 22741                 2015-01-01                 Djibouti         44.7
## 22742                 2010-01-01                 Djibouti         43.2
## 22743                 2005-01-01                 Djibouti         40.9
## 22744                 2000-01-01                 Djibouti         39.4
## 22745                 1995-01-01                 Djibouti         38.8
## 22746                 1990-01-01                 Djibouti         38.9
## 22747                 2015-01-01                 Djibouti         44.7
## 22748                 2010-01-01                 Djibouti         43.2
## 22749                 2005-01-01                 Djibouti         40.9
## 22750                 2000-01-01                 Djibouti         39.4
## 22751                 1995-01-01                 Djibouti         38.8
## 22752                 1990-01-01                 Djibouti         38.9
## 22753                 2015-01-01                 Djibouti         44.7
## 22754                 2010-01-01                 Djibouti         43.2
## 22755                 2005-01-01                 Djibouti         40.9
## 22756                 2000-01-01                 Djibouti         39.4
## 22757                 1995-01-01                 Djibouti         38.8
## 22758                 1990-01-01                 Djibouti         38.9
## 22759                 2015-01-01                 Djibouti         44.7
## 22760                 2010-01-01                 Djibouti         43.2
## 22761                 2005-01-01                 Djibouti         40.9
## 22762                 2000-01-01                 Djibouti         39.4
## 22763                 1995-01-01                 Djibouti         38.8
## 22764                 1990-01-01                 Djibouti         38.9
## 22765                 2015-01-01                 Djibouti         44.7
## 22766                 2010-01-01                 Djibouti         43.2
## 22767                 2005-01-01                 Djibouti         40.9
## 22768                 2000-01-01                 Djibouti         39.4
## 22769                 1995-01-01                 Djibouti         38.8
## 22770                 1990-01-01                 Djibouti         38.9
## 22771                 2015-01-01                 Djibouti         44.7
## 22772                 2010-01-01                 Djibouti         43.2
## 22773                 2005-01-01                 Djibouti         40.9
## 22774                 2000-01-01                 Djibouti         39.4
## 22775                 1995-01-01                 Djibouti         38.8
## 22776                 1990-01-01                 Djibouti         38.9
## 22777                 2015-01-01                 Djibouti         44.7
## 22778                 2010-01-01                 Djibouti         43.2
## 22779                 2005-01-01                 Djibouti         40.9
## 22780                 2000-01-01                 Djibouti         39.4
## 22781                 1995-01-01                 Djibouti         38.8
## 22782                 1990-01-01                 Djibouti         38.9
## 22783                 2015-01-01                 Djibouti         44.7
## 22784                 2010-01-01                 Djibouti         43.2
## 22785                 2005-01-01                 Djibouti         40.9
## 22786                 2000-01-01                 Djibouti         39.4
## 22787                 1995-01-01                 Djibouti         38.8
## 22788                 1990-01-01                 Djibouti         38.9
## 22789                 2015-01-01                 Djibouti         44.7
## 22790                 2010-01-01                 Djibouti         43.2
## 22791                 2005-01-01                 Djibouti         40.9
## 22792                 2000-01-01                 Djibouti         39.4
## 22793                 1995-01-01                 Djibouti         38.8
## 22794                 1990-01-01                 Djibouti         38.9
## 22795                 2015-01-01                 Djibouti         44.7
## 22796                 2010-01-01                 Djibouti         43.2
## 22797                 2005-01-01                 Djibouti         40.9
## 22798                 2000-01-01                 Djibouti         39.4
## 22799                 1995-01-01                 Djibouti         38.8
## 22800                 1990-01-01                 Djibouti         38.9
## 22801                 2015-01-01                 Djibouti         44.7
## 22802                 2010-01-01                 Djibouti         43.2
## 22803                 2005-01-01                 Djibouti         40.9
## 22804                 2000-01-01                 Djibouti         39.4
## 22805                 1995-01-01                 Djibouti         38.8
## 22806                 1990-01-01                 Djibouti         38.9
## 22807                 2015-01-01                 Djibouti         44.7
## 22808                 2010-01-01                 Djibouti         43.2
## 22809                 2005-01-01                 Djibouti         40.9
## 22810                 2000-01-01                 Djibouti         39.4
## 22811                 1995-01-01                 Djibouti         38.8
## 22812                 1990-01-01                 Djibouti         38.9
## 22813                 2015-01-01                 Djibouti         44.7
## 22814                 2010-01-01                 Djibouti         43.2
## 22815                 2005-01-01                 Djibouti         40.9
## 22816                 2000-01-01                 Djibouti         39.4
## 22817                 1995-01-01                 Djibouti         38.8
## 22818                 1990-01-01                 Djibouti         38.9
## 22819                 2015-01-01                 Djibouti         44.7
## 22820                 2010-01-01                 Djibouti         43.2
## 22821                 2005-01-01                 Djibouti         40.9
## 22822                 2000-01-01                 Djibouti         39.4
## 22823                 1995-01-01                 Djibouti         38.8
## 22824                 1990-01-01                 Djibouti         38.9
## 22825                 2015-01-01                 Djibouti         44.7
## 22826                 2010-01-01                 Djibouti         43.2
## 22827                 2005-01-01                 Djibouti         40.9
## 22828                 2000-01-01                 Djibouti         39.4
## 22829                 1995-01-01                 Djibouti         38.8
## 22830                 1990-01-01                 Djibouti         38.9
## 22831                 2015-01-01                 Djibouti         44.7
## 22832                 2010-01-01                 Djibouti         43.2
## 22833                 2005-01-01                 Djibouti         40.9
## 22834                 2000-01-01                 Djibouti         39.4
## 22835                 1995-01-01                 Djibouti         38.8
## 22836                 1990-01-01                 Djibouti         38.9
## 22837                 2015-01-01                 Djibouti         44.7
## 22838                 2010-01-01                 Djibouti         43.2
## 22839                 2005-01-01                 Djibouti         40.9
## 22840                 2000-01-01                 Djibouti         39.4
## 22841                 1995-01-01                 Djibouti         38.8
## 22842                 1990-01-01                 Djibouti         38.9
## 22843                 2015-01-01                 Djibouti         44.7
## 22844                 2010-01-01                 Djibouti         43.2
## 22845                 2005-01-01                 Djibouti         40.9
## 22846                 2000-01-01                 Djibouti         39.4
## 22847                 1995-01-01                 Djibouti         38.8
## 22848                 1990-01-01                 Djibouti         38.9
## 22849                 2015-01-01                 Djibouti         44.7
## 22850                 2010-01-01                 Djibouti         43.2
## 22851                 2005-01-01                 Djibouti         40.9
## 22852                 2000-01-01                 Djibouti         39.4
## 22853                 1995-01-01                 Djibouti         38.8
## 22854                 1990-01-01                 Djibouti         38.9
## 22855                 2015-01-01                 Djibouti         44.7
## 22856                 2010-01-01                 Djibouti         43.2
## 22857                 2005-01-01                 Djibouti         40.9
## 22858                 2000-01-01                 Djibouti         39.4
## 22859                 1995-01-01                 Djibouti         38.8
## 22860                 1990-01-01                 Djibouti         38.9
## 22861                 2015-01-01                 Djibouti         44.7
## 22862                 2010-01-01                 Djibouti         43.2
## 22863                 2005-01-01                 Djibouti         40.9
## 22864                 2000-01-01                 Djibouti         39.4
## 22865                 1995-01-01                 Djibouti         38.8
## 22866                 1990-01-01                 Djibouti         38.9
## 22867                 2015-01-01                 Djibouti         44.7
## 22868                 2010-01-01                 Djibouti         43.2
## 22869                 2005-01-01                 Djibouti         40.9
## 22870                 2000-01-01                 Djibouti         39.4
## 22871                 1995-01-01                 Djibouti         38.8
## 22872                 1990-01-01                 Djibouti         38.9
## 22873                 2015-01-01                 Djibouti         44.7
## 22874                 2010-01-01                 Djibouti         43.2
## 22875                 2005-01-01                 Djibouti         40.9
## 22876                 2000-01-01                 Djibouti         39.4
## 22877                 1995-01-01                 Djibouti         38.8
## 22878                 1990-01-01                 Djibouti         38.9
## 22879                 2015-01-01                 Djibouti         44.7
## 22880                 2010-01-01                 Djibouti         43.2
## 22881                 2005-01-01                 Djibouti         40.9
## 22882                 2000-01-01                 Djibouti         39.4
## 22883                 1995-01-01                 Djibouti         38.8
## 22884                 1990-01-01                 Djibouti         38.9
## 22885                 2015-01-01                 Djibouti         44.7
## 22886                 2010-01-01                 Djibouti         43.2
## 22887                 2005-01-01                 Djibouti         40.9
## 22888                 2000-01-01                 Djibouti         39.4
## 22889                 1995-01-01                 Djibouti         38.8
## 22890                 1990-01-01                 Djibouti         38.9
## 22891                 2015-01-01                 Djibouti         44.7
## 22892                 2010-01-01                 Djibouti         43.2
## 22893                 2005-01-01                 Djibouti         40.9
## 22894                 2000-01-01                 Djibouti         39.4
## 22895                 1995-01-01                 Djibouti         38.8
## 22896                 1990-01-01                 Djibouti         38.9
## 22897                 2015-01-01                 Dominica         58.1
## 22898                 2010-01-01                 Dominica         58.5
## 22899                 2005-01-01                 Dominica         59.0
## 22900                 2000-01-01                 Dominica         57.7
## 22901                 1995-01-01                 Dominica         54.6
## 22902                 1990-01-01                 Dominica         53.0
## 22903                 2015-01-01                 Dominica         58.1
## 22904                 2010-01-01                 Dominica         58.5
## 22905                 2005-01-01                 Dominica         59.0
## 22906                 2000-01-01                 Dominica         57.7
## 22907                 1995-01-01                 Dominica         54.6
## 22908                 1990-01-01                 Dominica         53.0
## 22909                 2015-01-01                 Dominica         58.1
## 22910                 2010-01-01                 Dominica         58.5
## 22911                 2005-01-01                 Dominica         59.0
## 22912                 2000-01-01                 Dominica         57.7
## 22913                 1995-01-01                 Dominica         54.6
## 22914                 1990-01-01                 Dominica         53.0
## 22915                 2015-01-01                 Dominica         58.1
## 22916                 2010-01-01                 Dominica         58.5
## 22917                 2005-01-01                 Dominica         59.0
## 22918                 2000-01-01                 Dominica         57.7
## 22919                 1995-01-01                 Dominica         54.6
## 22920                 1990-01-01                 Dominica         53.0
## 22921                 2015-01-01                 Dominica         58.1
## 22922                 2010-01-01                 Dominica         58.5
## 22923                 2005-01-01                 Dominica         59.0
## 22924                 2000-01-01                 Dominica         57.7
## 22925                 1995-01-01                 Dominica         54.6
## 22926                 1990-01-01                 Dominica         53.0
## 22927                 2015-01-01                 Dominica         58.1
## 22928                 2010-01-01                 Dominica         58.5
## 22929                 2005-01-01                 Dominica         59.0
## 22930                 2000-01-01                 Dominica         57.7
## 22931                 1995-01-01                 Dominica         54.6
## 22932                 1990-01-01                 Dominica         53.0
## 22933                 2015-01-01                 Dominica         58.1
## 22934                 2010-01-01                 Dominica         58.5
## 22935                 2005-01-01                 Dominica         59.0
## 22936                 2000-01-01                 Dominica         57.7
## 22937                 1995-01-01                 Dominica         54.6
## 22938                 1990-01-01                 Dominica         53.0
## 22939                 2015-01-01                 Dominica         58.1
## 22940                 2010-01-01                 Dominica         58.5
## 22941                 2005-01-01                 Dominica         59.0
## 22942                 2000-01-01                 Dominica         57.7
## 22943                 1995-01-01                 Dominica         54.6
## 22944                 1990-01-01                 Dominica         53.0
## 22945                 2015-01-01                 Dominica         58.1
## 22946                 2010-01-01                 Dominica         58.5
## 22947                 2005-01-01                 Dominica         59.0
## 22948                 2000-01-01                 Dominica         57.7
## 22949                 1995-01-01                 Dominica         54.6
## 22950                 1990-01-01                 Dominica         53.0
## 22951                 2015-01-01                 Dominica         58.1
## 22952                 2010-01-01                 Dominica         58.5
## 22953                 2005-01-01                 Dominica         59.0
## 22954                 2000-01-01                 Dominica         57.7
## 22955                 1995-01-01                 Dominica         54.6
## 22956                 1990-01-01                 Dominica         53.0
## 22957                 2015-01-01                 Dominica         58.1
## 22958                 2010-01-01                 Dominica         58.5
## 22959                 2005-01-01                 Dominica         59.0
## 22960                 2000-01-01                 Dominica         57.7
## 22961                 1995-01-01                 Dominica         54.6
## 22962                 1990-01-01                 Dominica         53.0
## 22963                 2015-01-01                 Dominica         58.1
## 22964                 2010-01-01                 Dominica         58.5
## 22965                 2005-01-01                 Dominica         59.0
## 22966                 2000-01-01                 Dominica         57.7
## 22967                 1995-01-01                 Dominica         54.6
## 22968                 1990-01-01                 Dominica         53.0
## 22969                 2015-01-01                 Dominica         58.1
## 22970                 2010-01-01                 Dominica         58.5
## 22971                 2005-01-01                 Dominica         59.0
## 22972                 2000-01-01                 Dominica         57.7
## 22973                 1995-01-01                 Dominica         54.6
## 22974                 1990-01-01                 Dominica         53.0
## 22975                 2015-01-01                 Dominica         58.1
## 22976                 2010-01-01                 Dominica         58.5
## 22977                 2005-01-01                 Dominica         59.0
## 22978                 2000-01-01                 Dominica         57.7
## 22979                 1995-01-01                 Dominica         54.6
## 22980                 1990-01-01                 Dominica         53.0
## 22981                 2015-01-01                 Dominica         58.1
## 22982                 2010-01-01                 Dominica         58.5
## 22983                 2005-01-01                 Dominica         59.0
## 22984                 2000-01-01                 Dominica         57.7
## 22985                 1995-01-01                 Dominica         54.6
## 22986                 1990-01-01                 Dominica         53.0
## 22987                 2015-01-01                 Dominica         58.1
## 22988                 2010-01-01                 Dominica         58.5
## 22989                 2005-01-01                 Dominica         59.0
## 22990                 2000-01-01                 Dominica         57.7
## 22991                 1995-01-01                 Dominica         54.6
## 22992                 1990-01-01                 Dominica         53.0
## 22993                 2015-01-01                 Dominica         58.1
## 22994                 2010-01-01                 Dominica         58.5
## 22995                 2005-01-01                 Dominica         59.0
## 22996                 2000-01-01                 Dominica         57.7
## 22997                 1995-01-01                 Dominica         54.6
## 22998                 1990-01-01                 Dominica         53.0
## 22999                 2015-01-01                 Dominica         58.1
## 23000                 2010-01-01                 Dominica         58.5
## 23001                 2005-01-01                 Dominica         59.0
## 23002                 2000-01-01                 Dominica         57.7
## 23003                 1995-01-01                 Dominica         54.6
## 23004                 1990-01-01                 Dominica         53.0
## 23005                 2015-01-01                 Dominica         58.1
## 23006                 2010-01-01                 Dominica         58.5
## 23007                 2005-01-01                 Dominica         59.0
## 23008                 2000-01-01                 Dominica         57.7
## 23009                 1995-01-01                 Dominica         54.6
## 23010                 1990-01-01                 Dominica         53.0
## 23011                 2015-01-01                 Dominica         58.1
## 23012                 2010-01-01                 Dominica         58.5
## 23013                 2005-01-01                 Dominica         59.0
## 23014                 2000-01-01                 Dominica         57.7
## 23015                 1995-01-01                 Dominica         54.6
## 23016                 1990-01-01                 Dominica         53.0
## 23017                 2015-01-01                 Dominica         58.1
## 23018                 2010-01-01                 Dominica         58.5
## 23019                 2005-01-01                 Dominica         59.0
## 23020                 2000-01-01                 Dominica         57.7
## 23021                 1995-01-01                 Dominica         54.6
## 23022                 1990-01-01                 Dominica         53.0
## 23023                 2015-01-01                 Dominica         58.1
## 23024                 2010-01-01                 Dominica         58.5
## 23025                 2005-01-01                 Dominica         59.0
## 23026                 2000-01-01                 Dominica         57.7
## 23027                 1995-01-01                 Dominica         54.6
## 23028                 1990-01-01                 Dominica         53.0
## 23029                 2015-01-01                 Dominica         58.1
## 23030                 2010-01-01                 Dominica         58.5
## 23031                 2005-01-01                 Dominica         59.0
## 23032                 2000-01-01                 Dominica         57.7
## 23033                 1995-01-01                 Dominica         54.6
## 23034                 1990-01-01                 Dominica         53.0
## 23035                 2015-01-01                 Dominica         58.1
## 23036                 2010-01-01                 Dominica         58.5
## 23037                 2005-01-01                 Dominica         59.0
## 23038                 2000-01-01                 Dominica         57.7
## 23039                 1995-01-01                 Dominica         54.6
## 23040                 1990-01-01                 Dominica         53.0
## 23041                 2015-01-01                 Dominica         58.1
## 23042                 2010-01-01                 Dominica         58.5
## 23043                 2005-01-01                 Dominica         59.0
## 23044                 2000-01-01                 Dominica         57.7
## 23045                 1995-01-01                 Dominica         54.6
## 23046                 1990-01-01                 Dominica         53.0
## 23047                 2015-01-01                 Dominica         58.1
## 23048                 2010-01-01                 Dominica         58.5
## 23049                 2005-01-01                 Dominica         59.0
## 23050                 2000-01-01                 Dominica         57.7
## 23051                 1995-01-01                 Dominica         54.6
## 23052                 1990-01-01                 Dominica         53.0
## 23053                 2015-01-01                 Dominica         58.1
## 23054                 2010-01-01                 Dominica         58.5
## 23055                 2005-01-01                 Dominica         59.0
## 23056                 2000-01-01                 Dominica         57.7
## 23057                 1995-01-01                 Dominica         54.6
## 23058                 1990-01-01                 Dominica         53.0
## 23059                 2015-01-01                 Dominica         58.1
## 23060                 2010-01-01                 Dominica         58.5
## 23061                 2005-01-01                 Dominica         59.0
## 23062                 2000-01-01                 Dominica         57.7
## 23063                 1995-01-01                 Dominica         54.6
## 23064                 1990-01-01                 Dominica         53.0
## 23065                 2015-01-01                 Dominica         58.1
## 23066                 2010-01-01                 Dominica         58.5
## 23067                 2005-01-01                 Dominica         59.0
## 23068                 2000-01-01                 Dominica         57.7
## 23069                 1995-01-01                 Dominica         54.6
## 23070                 1990-01-01                 Dominica         53.0
## 23071                 2015-01-01                 Dominica         58.1
## 23072                 2010-01-01                 Dominica         58.5
## 23073                 2005-01-01                 Dominica         59.0
## 23074                 2000-01-01                 Dominica         57.7
## 23075                 1995-01-01                 Dominica         54.6
## 23076                 1990-01-01                 Dominica         53.0
## 23077                 2015-01-01                 Dominica         58.1
## 23078                 2010-01-01                 Dominica         58.5
## 23079                 2005-01-01                 Dominica         59.0
## 23080                 2000-01-01                 Dominica         57.7
## 23081                 1995-01-01                 Dominica         54.6
## 23082                 1990-01-01                 Dominica         53.0
## 23083                 2015-01-01                 Dominica         58.1
## 23084                 2010-01-01                 Dominica         58.5
## 23085                 2005-01-01                 Dominica         59.0
## 23086                 2000-01-01                 Dominica         57.7
## 23087                 1995-01-01                 Dominica         54.6
## 23088                 1990-01-01                 Dominica         53.0
## 23089                 2015-01-01                 Dominica         58.1
## 23090                 2010-01-01                 Dominica         58.5
## 23091                 2005-01-01                 Dominica         59.0
## 23092                 2000-01-01                 Dominica         57.7
## 23093                 1995-01-01                 Dominica         54.6
## 23094                 1990-01-01                 Dominica         53.0
## 23095                 2015-01-01                 Dominica         58.1
## 23096                 2010-01-01                 Dominica         58.5
## 23097                 2005-01-01                 Dominica         59.0
## 23098                 2000-01-01                 Dominica         57.7
## 23099                 1995-01-01                 Dominica         54.6
## 23100                 1990-01-01                 Dominica         53.0
## 23101                 2015-01-01                 Dominica         58.1
## 23102                 2010-01-01                 Dominica         58.5
## 23103                 2005-01-01                 Dominica         59.0
## 23104                 2000-01-01                 Dominica         57.7
## 23105                 1995-01-01                 Dominica         54.6
## 23106                 1990-01-01                 Dominica         53.0
## 23107                 2015-01-01                 Dominica         58.1
## 23108                 2010-01-01                 Dominica         58.5
## 23109                 2005-01-01                 Dominica         59.0
## 23110                 2000-01-01                 Dominica         57.7
## 23111                 1995-01-01                 Dominica         54.6
## 23112                 1990-01-01                 Dominica         53.0
## 23113                 2015-01-01                 Dominica         58.1
## 23114                 2010-01-01                 Dominica         58.5
## 23115                 2005-01-01                 Dominica         59.0
## 23116                 2000-01-01                 Dominica         57.7
## 23117                 1995-01-01                 Dominica         54.6
## 23118                 1990-01-01                 Dominica         53.0
## 23119                 2015-01-01                 Dominica         58.1
## 23120                 2010-01-01                 Dominica         58.5
## 23121                 2005-01-01                 Dominica         59.0
## 23122                 2000-01-01                 Dominica         57.7
## 23123                 1995-01-01                 Dominica         54.6
## 23124                 1990-01-01                 Dominica         53.0
## 23125                 2015-01-01                 Dominica         58.1
## 23126                 2010-01-01                 Dominica         58.5
## 23127                 2005-01-01                 Dominica         59.0
## 23128                 2000-01-01                 Dominica         57.7
## 23129                 1995-01-01                 Dominica         54.6
## 23130                 1990-01-01                 Dominica         53.0
## 23131                 2015-01-01                 Dominica         58.1
## 23132                 2010-01-01                 Dominica         58.5
## 23133                 2005-01-01                 Dominica         59.0
## 23134                 2000-01-01                 Dominica         57.7
## 23135                 1995-01-01                 Dominica         54.6
## 23136                 1990-01-01                 Dominica         53.0
## 23137                 2015-01-01                 Dominica         58.1
## 23138                 2010-01-01                 Dominica         58.5
## 23139                 2005-01-01                 Dominica         59.0
## 23140                 2000-01-01                 Dominica         57.7
## 23141                 1995-01-01                 Dominica         54.6
## 23142                 1990-01-01                 Dominica         53.0
## 23143                 2015-01-01                 Dominica         58.1
## 23144                 2010-01-01                 Dominica         58.5
## 23145                 2005-01-01                 Dominica         59.0
## 23146                 2000-01-01                 Dominica         57.7
## 23147                 1995-01-01                 Dominica         54.6
## 23148                 1990-01-01                 Dominica         53.0
## 23149                 2015-01-01                 Dominica         58.1
## 23150                 2010-01-01                 Dominica         58.5
## 23151                 2005-01-01                 Dominica         59.0
## 23152                 2000-01-01                 Dominica         57.7
## 23153                 1995-01-01                 Dominica         54.6
## 23154                 1990-01-01                 Dominica         53.0
## 23155                 2015-01-01                 Dominica         58.1
## 23156                 2010-01-01                 Dominica         58.5
## 23157                 2005-01-01                 Dominica         59.0
## 23158                 2000-01-01                 Dominica         57.7
## 23159                 1995-01-01                 Dominica         54.6
## 23160                 1990-01-01                 Dominica         53.0
## 23161                 2015-01-01                 Dominica         58.1
## 23162                 2010-01-01                 Dominica         58.5
## 23163                 2005-01-01                 Dominica         59.0
## 23164                 2000-01-01                 Dominica         57.7
## 23165                 1995-01-01                 Dominica         54.6
## 23166                 1990-01-01                 Dominica         53.0
## 23167                 2015-01-01                 Dominica         58.1
## 23168                 2010-01-01                 Dominica         58.5
## 23169                 2005-01-01                 Dominica         59.0
## 23170                 2000-01-01                 Dominica         57.7
## 23171                 1995-01-01                 Dominica         54.6
## 23172                 1990-01-01                 Dominica         53.0
## 23173                 2015-01-01                 Dominica         58.1
## 23174                 2010-01-01                 Dominica         58.5
## 23175                 2005-01-01                 Dominica         59.0
## 23176                 2000-01-01                 Dominica         57.7
## 23177                 1995-01-01                 Dominica         54.6
## 23178                 1990-01-01                 Dominica         53.0
## 23179                 2015-01-01                 Dominica         58.1
## 23180                 2010-01-01                 Dominica         58.5
## 23181                 2005-01-01                 Dominica         59.0
## 23182                 2000-01-01                 Dominica         57.7
## 23183                 1995-01-01                 Dominica         54.6
## 23184                 1990-01-01                 Dominica         53.0
## 23185                 2015-01-01                 Dominica         58.1
## 23186                 2010-01-01                 Dominica         58.5
## 23187                 2005-01-01                 Dominica         59.0
## 23188                 2000-01-01                 Dominica         57.7
## 23189                 1995-01-01                 Dominica         54.6
## 23190                 1990-01-01                 Dominica         53.0
## 23191                 2015-01-01                 Dominica         58.1
## 23192                 2010-01-01                 Dominica         58.5
## 23193                 2005-01-01                 Dominica         59.0
## 23194                 2000-01-01                 Dominica         57.7
## 23195                 1995-01-01                 Dominica         54.6
## 23196                 1990-01-01                 Dominica         53.0
## 23197                 2015-01-01                 Dominica         58.1
## 23198                 2010-01-01                 Dominica         58.5
## 23199                 2005-01-01                 Dominica         59.0
## 23200                 2000-01-01                 Dominica         57.7
## 23201                 1995-01-01                 Dominica         54.6
## 23202                 1990-01-01                 Dominica         53.0
## 23203                 2015-01-01                 Dominica         58.1
## 23204                 2010-01-01                 Dominica         58.5
## 23205                 2005-01-01                 Dominica         59.0
## 23206                 2000-01-01                 Dominica         57.7
## 23207                 1995-01-01                 Dominica         54.6
## 23208                 1990-01-01                 Dominica         53.0
## 23209                 2015-01-01                 Dominica         58.1
## 23210                 2010-01-01                 Dominica         58.5
## 23211                 2005-01-01                 Dominica         59.0
## 23212                 2000-01-01                 Dominica         57.7
## 23213                 1995-01-01                 Dominica         54.6
## 23214                 1990-01-01                 Dominica         53.0
## 23215                 2015-01-01                 Dominica         58.1
## 23216                 2010-01-01                 Dominica         58.5
## 23217                 2005-01-01                 Dominica         59.0
## 23218                 2000-01-01                 Dominica         57.7
## 23219                 1995-01-01                 Dominica         54.6
## 23220                 1990-01-01                 Dominica         53.0
## 23221                 2015-01-01                 Dominica         58.1
## 23222                 2010-01-01                 Dominica         58.5
## 23223                 2005-01-01                 Dominica         59.0
## 23224                 2000-01-01                 Dominica         57.7
## 23225                 1995-01-01                 Dominica         54.6
## 23226                 1990-01-01                 Dominica         53.0
## 23227                 2015-01-01                 Dominica         58.1
## 23228                 2010-01-01                 Dominica         58.5
## 23229                 2005-01-01                 Dominica         59.0
## 23230                 2000-01-01                 Dominica         57.7
## 23231                 1995-01-01                 Dominica         54.6
## 23232                 1990-01-01                 Dominica         53.0
## 23233                 2015-01-01                 Dominica         58.1
## 23234                 2010-01-01                 Dominica         58.5
## 23235                 2005-01-01                 Dominica         59.0
## 23236                 2000-01-01                 Dominica         57.7
## 23237                 1995-01-01                 Dominica         54.6
## 23238                 1990-01-01                 Dominica         53.0
## 23239                 2015-01-01                 Dominica         58.1
## 23240                 2010-01-01                 Dominica         58.5
## 23241                 2005-01-01                 Dominica         59.0
## 23242                 2000-01-01                 Dominica         57.7
## 23243                 1995-01-01                 Dominica         54.6
## 23244                 1990-01-01                 Dominica         53.0
## 23245                 2015-01-01                 Dominica         58.1
## 23246                 2010-01-01                 Dominica         58.5
## 23247                 2005-01-01                 Dominica         59.0
## 23248                 2000-01-01                 Dominica         57.7
## 23249                 1995-01-01                 Dominica         54.6
## 23250                 1990-01-01                 Dominica         53.0
## 23251                 2015-01-01                 Dominica         58.1
## 23252                 2010-01-01                 Dominica         58.5
## 23253                 2005-01-01                 Dominica         59.0
## 23254                 2000-01-01                 Dominica         57.7
## 23255                 1995-01-01                 Dominica         54.6
## 23256                 1990-01-01                 Dominica         53.0
## 23257                 2015-01-01                 Dominica         58.1
## 23258                 2010-01-01                 Dominica         58.5
## 23259                 2005-01-01                 Dominica         59.0
## 23260                 2000-01-01                 Dominica         57.7
## 23261                 1995-01-01                 Dominica         54.6
## 23262                 1990-01-01                 Dominica         53.0
## 23263                 2015-01-01                    Italy         88.7
## 23264                 2010-01-01                    Italy         87.5
## 23265                 2005-01-01                    Italy         85.5
## 23266                 2000-01-01                    Italy         82.5
## 23267                 1995-01-01                    Italy         79.1
## 23268                 1990-01-01                    Italy         76.2
## 23269                 2015-01-01                 Dominica         58.1
## 23270                 2010-01-01                 Dominica         58.5
## 23271                 2005-01-01                 Dominica         59.0
## 23272                 2000-01-01                 Dominica         57.7
## 23273                 1995-01-01                 Dominica         54.6
## 23274                 1990-01-01                 Dominica         53.0
## 23275                 2015-01-01                 Dominica         58.1
## 23276                 2010-01-01                 Dominica         58.5
## 23277                 2005-01-01                 Dominica         59.0
## 23278                 2000-01-01                 Dominica         57.7
## 23279                 1995-01-01                 Dominica         54.6
## 23280                 1990-01-01                 Dominica         53.0
## 23281                 2015-01-01                 Dominica         58.1
## 23282                 2010-01-01                 Dominica         58.5
## 23283                 2005-01-01                 Dominica         59.0
## 23284                 2000-01-01                 Dominica         57.7
## 23285                 1995-01-01                 Dominica         54.6
## 23286                 1990-01-01                 Dominica         53.0
## 23287                 2015-01-01                 Dominica         58.1
## 23288                 2010-01-01                 Dominica         58.5
## 23289                 2005-01-01                 Dominica         59.0
## 23290                 2000-01-01                 Dominica         57.7
## 23291                 1995-01-01                 Dominica         54.6
## 23292                 1990-01-01                 Dominica         53.0
## 23293                 2015-01-01                 Dominica         58.1
## 23294                 2010-01-01                 Dominica         58.5
## 23295                 2005-01-01                 Dominica         59.0
## 23296                 2000-01-01                 Dominica         57.7
## 23297                 1995-01-01                 Dominica         54.6
## 23298                 1990-01-01                 Dominica         53.0
## 23299                 2015-01-01                 Dominica         58.1
## 23300                 2010-01-01                 Dominica         58.5
## 23301                 2005-01-01                 Dominica         59.0
## 23302                 2000-01-01                 Dominica         57.7
## 23303                 1995-01-01                 Dominica         54.6
## 23304                 1990-01-01                 Dominica         53.0
## 23305                 2015-01-01                 Dominica         58.1
## 23306                 2010-01-01                 Dominica         58.5
## 23307                 2005-01-01                 Dominica         59.0
## 23308                 2000-01-01                 Dominica         57.7
## 23309                 1995-01-01                 Dominica         54.6
## 23310                 1990-01-01                 Dominica         53.0
## 23311                 2015-01-01                 Dominica         58.1
## 23312                 2010-01-01                 Dominica         58.5
## 23313                 2005-01-01                 Dominica         59.0
## 23314                 2000-01-01                 Dominica         57.7
## 23315                 1995-01-01                 Dominica         54.6
## 23316                 1990-01-01                 Dominica         53.0
## 23317                 2015-01-01                 Dominica         58.1
## 23318                 2010-01-01                 Dominica         58.5
## 23319                 2005-01-01                 Dominica         59.0
## 23320                 2000-01-01                 Dominica         57.7
## 23321                 1995-01-01                 Dominica         54.6
## 23322                 1990-01-01                 Dominica         53.0
## 23323                 2015-01-01                 Dominica         58.1
## 23324                 2010-01-01                 Dominica         58.5
## 23325                 2005-01-01                 Dominica         59.0
## 23326                 2000-01-01                 Dominica         57.7
## 23327                 1995-01-01                 Dominica         54.6
## 23328                 1990-01-01                 Dominica         53.0
## 23329                 2015-01-01                 Dominica         58.1
## 23330                 2010-01-01                 Dominica         58.5
## 23331                 2005-01-01                 Dominica         59.0
## 23332                 2000-01-01                 Dominica         57.7
## 23333                 1995-01-01                 Dominica         54.6
## 23334                 1990-01-01                 Dominica         53.0
## 23335                 2015-01-01                 Dominica         58.1
## 23336                 2010-01-01                 Dominica         58.5
## 23337                 2005-01-01                 Dominica         59.0
## 23338                 2000-01-01                 Dominica         57.7
## 23339                 1995-01-01                 Dominica         54.6
## 23340                 1990-01-01                 Dominica         53.0
## 23341                 2015-01-01                 Dominica         58.1
## 23342                 2010-01-01                 Dominica         58.5
## 23343                 2005-01-01                 Dominica         59.0
## 23344                 2000-01-01                 Dominica         57.7
## 23345                 1995-01-01                 Dominica         54.6
## 23346                 1990-01-01                 Dominica         53.0
## 23347                 2015-01-01                 Dominica         58.1
## 23348                 2010-01-01                 Dominica         58.5
## 23349                 2005-01-01                 Dominica         59.0
## 23350                 2000-01-01                 Dominica         57.7
## 23351                 1995-01-01                 Dominica         54.6
## 23352                 1990-01-01                 Dominica         53.0
## 23353                 2015-01-01                 Dominica         58.1
## 23354                 2010-01-01                 Dominica         58.5
## 23355                 2005-01-01                 Dominica         59.0
## 23356                 2000-01-01                 Dominica         57.7
## 23357                 1995-01-01                 Dominica         54.6
## 23358                 1990-01-01                 Dominica         53.0
## 23359                 2015-01-01                 Dominica         58.1
## 23360                 2010-01-01                 Dominica         58.5
## 23361                 2005-01-01                 Dominica         59.0
## 23362                 2000-01-01                 Dominica         57.7
## 23363                 1995-01-01                 Dominica         54.6
## 23364                 1990-01-01                 Dominica         53.0
## 23365                 2015-01-01                 Dominica         58.1
## 23366                 2010-01-01                 Dominica         58.5
## 23367                 2005-01-01                 Dominica         59.0
## 23368                 2000-01-01                 Dominica         57.7
## 23369                 1995-01-01                 Dominica         54.6
## 23370                 1990-01-01                 Dominica         53.0
## 23371                 2015-01-01                 Dominica         58.1
## 23372                 2010-01-01                 Dominica         58.5
## 23373                 2005-01-01                 Dominica         59.0
## 23374                 2000-01-01                 Dominica         57.7
## 23375                 1995-01-01                 Dominica         54.6
## 23376                 1990-01-01                 Dominica         53.0
## 23377                 2015-01-01                 Dominica         58.1
## 23378                 2010-01-01                 Dominica         58.5
## 23379                 2005-01-01                 Dominica         59.0
## 23380                 2000-01-01                 Dominica         57.7
## 23381                 1995-01-01                 Dominica         54.6
## 23382                 1990-01-01                 Dominica         53.0
## 23383                 2015-01-01                 Dominica         58.1
## 23384                 2010-01-01                 Dominica         58.5
## 23385                 2005-01-01                 Dominica         59.0
## 23386                 2000-01-01                 Dominica         57.7
## 23387                 1995-01-01                 Dominica         54.6
## 23388                 1990-01-01                 Dominica         53.0
## 23389                 2015-01-01                 Dominica         58.1
## 23390                 2010-01-01                 Dominica         58.5
## 23391                 2005-01-01                 Dominica         59.0
## 23392                 2000-01-01                 Dominica         57.7
## 23393                 1995-01-01                 Dominica         54.6
## 23394                 1990-01-01                 Dominica         53.0
## 23395                 2015-01-01       Dominican Republic         62.5
## 23396                 2010-01-01       Dominican Republic         60.8
## 23397                 2005-01-01       Dominican Republic         58.6
## 23398                 2000-01-01       Dominican Republic         56.6
## 23399                 1995-01-01       Dominican Republic         52.2
## 23400                 1990-01-01       Dominican Republic         47.9
## 23401                 2015-01-01       Dominican Republic         62.5
## 23402                 2010-01-01       Dominican Republic         60.8
## 23403                 2005-01-01       Dominican Republic         58.6
## 23404                 2000-01-01       Dominican Republic         56.6
## 23405                 1995-01-01       Dominican Republic         52.2
## 23406                 1990-01-01       Dominican Republic         47.9
## 23407                 2015-01-01       Dominican Republic         62.5
## 23408                 2010-01-01       Dominican Republic         60.8
## 23409                 2005-01-01       Dominican Republic         58.6
## 23410                 2000-01-01       Dominican Republic         56.6
## 23411                 1995-01-01       Dominican Republic         52.2
## 23412                 1990-01-01       Dominican Republic         47.9
## 23413                 2015-01-01       Dominican Republic         62.5
## 23414                 2010-01-01       Dominican Republic         60.8
## 23415                 2005-01-01       Dominican Republic         58.6
## 23416                 2000-01-01       Dominican Republic         56.6
## 23417                 1995-01-01       Dominican Republic         52.2
## 23418                 1990-01-01       Dominican Republic         47.9
## 23419                 2015-01-01       Dominican Republic         62.5
## 23420                 2010-01-01       Dominican Republic         60.8
## 23421                 2005-01-01       Dominican Republic         58.6
## 23422                 2000-01-01       Dominican Republic         56.6
## 23423                 1995-01-01       Dominican Republic         52.2
## 23424                 1990-01-01       Dominican Republic         47.9
## 23425                 2015-01-01       Dominican Republic         62.5
## 23426                 2010-01-01       Dominican Republic         60.8
## 23427                 2005-01-01       Dominican Republic         58.6
## 23428                 2000-01-01       Dominican Republic         56.6
## 23429                 1995-01-01       Dominican Republic         52.2
## 23430                 1990-01-01       Dominican Republic         47.9
## 23431                 2015-01-01       Dominican Republic         62.5
## 23432                 2010-01-01       Dominican Republic         60.8
## 23433                 2005-01-01       Dominican Republic         58.6
## 23434                 2000-01-01       Dominican Republic         56.6
## 23435                 1995-01-01       Dominican Republic         52.2
## 23436                 1990-01-01       Dominican Republic         47.9
## 23437                 2015-01-01       Dominican Republic         62.5
## 23438                 2010-01-01       Dominican Republic         60.8
## 23439                 2005-01-01       Dominican Republic         58.6
## 23440                 2000-01-01       Dominican Republic         56.6
## 23441                 1995-01-01       Dominican Republic         52.2
## 23442                 1990-01-01       Dominican Republic         47.9
## 23443                 2015-01-01       Dominican Republic         62.5
## 23444                 2010-01-01       Dominican Republic         60.8
## 23445                 2005-01-01       Dominican Republic         58.6
## 23446                 2000-01-01       Dominican Republic         56.6
## 23447                 1995-01-01       Dominican Republic         52.2
## 23448                 1990-01-01       Dominican Republic         47.9
## 23449                 2015-01-01       Dominican Republic         62.5
## 23450                 2010-01-01       Dominican Republic         60.8
## 23451                 2005-01-01       Dominican Republic         58.6
## 23452                 2000-01-01       Dominican Republic         56.6
## 23453                 1995-01-01       Dominican Republic         52.2
## 23454                 1990-01-01       Dominican Republic         47.9
## 23455                 2015-01-01       Dominican Republic         62.5
## 23456                 2010-01-01       Dominican Republic         60.8
## 23457                 2005-01-01       Dominican Republic         58.6
## 23458                 2000-01-01       Dominican Republic         56.6
## 23459                 1995-01-01       Dominican Republic         52.2
## 23460                 1990-01-01       Dominican Republic         47.9
## 23461                 2015-01-01       Dominican Republic         62.5
## 23462                 2010-01-01       Dominican Republic         60.8
## 23463                 2005-01-01       Dominican Republic         58.6
## 23464                 2000-01-01       Dominican Republic         56.6
## 23465                 1995-01-01       Dominican Republic         52.2
## 23466                 1990-01-01       Dominican Republic         47.9
## 23467                 2015-01-01       Dominican Republic         62.5
## 23468                 2010-01-01       Dominican Republic         60.8
## 23469                 2005-01-01       Dominican Republic         58.6
## 23470                 2000-01-01       Dominican Republic         56.6
## 23471                 1995-01-01       Dominican Republic         52.2
## 23472                 1990-01-01       Dominican Republic         47.9
## 23473                 2015-01-01       Dominican Republic         62.5
## 23474                 2010-01-01       Dominican Republic         60.8
## 23475                 2005-01-01       Dominican Republic         58.6
## 23476                 2000-01-01       Dominican Republic         56.6
## 23477                 1995-01-01       Dominican Republic         52.2
## 23478                 1990-01-01       Dominican Republic         47.9
## 23479                 2015-01-01       Dominican Republic         62.5
## 23480                 2010-01-01       Dominican Republic         60.8
## 23481                 2005-01-01       Dominican Republic         58.6
## 23482                 2000-01-01       Dominican Republic         56.6
## 23483                 1995-01-01       Dominican Republic         52.2
## 23484                 1990-01-01       Dominican Republic         47.9
## 23485                 2015-01-01       Dominican Republic         62.5
## 23486                 2010-01-01       Dominican Republic         60.8
## 23487                 2005-01-01       Dominican Republic         58.6
## 23488                 2000-01-01       Dominican Republic         56.6
## 23489                 1995-01-01       Dominican Republic         52.2
## 23490                 1990-01-01       Dominican Republic         47.9
## 23491                 2015-01-01       Dominican Republic         62.5
## 23492                 2010-01-01       Dominican Republic         60.8
## 23493                 2005-01-01       Dominican Republic         58.6
## 23494                 2000-01-01       Dominican Republic         56.6
## 23495                 1995-01-01       Dominican Republic         52.2
## 23496                 1990-01-01       Dominican Republic         47.9
## 23497                 2015-01-01       Dominican Republic         62.5
## 23498                 2010-01-01       Dominican Republic         60.8
## 23499                 2005-01-01       Dominican Republic         58.6
## 23500                 2000-01-01       Dominican Republic         56.6
## 23501                 1995-01-01       Dominican Republic         52.2
## 23502                 1990-01-01       Dominican Republic         47.9
## 23503                 2015-01-01       Dominican Republic         62.5
## 23504                 2010-01-01       Dominican Republic         60.8
## 23505                 2005-01-01       Dominican Republic         58.6
## 23506                 2000-01-01       Dominican Republic         56.6
## 23507                 1995-01-01       Dominican Republic         52.2
## 23508                 1990-01-01       Dominican Republic         47.9
## 23509                 2015-01-01       Dominican Republic         62.5
## 23510                 2010-01-01       Dominican Republic         60.8
## 23511                 2005-01-01       Dominican Republic         58.6
## 23512                 2000-01-01       Dominican Republic         56.6
## 23513                 1995-01-01       Dominican Republic         52.2
## 23514                 1990-01-01       Dominican Republic         47.9
## 23515                 2015-01-01       Dominican Republic         62.5
## 23516                 2010-01-01       Dominican Republic         60.8
## 23517                 2005-01-01       Dominican Republic         58.6
## 23518                 2000-01-01       Dominican Republic         56.6
## 23519                 1995-01-01       Dominican Republic         52.2
## 23520                 1990-01-01       Dominican Republic         47.9
## 23521                 2015-01-01       Dominican Republic         62.5
## 23522                 2010-01-01       Dominican Republic         60.8
## 23523                 2005-01-01       Dominican Republic         58.6
## 23524                 2000-01-01       Dominican Republic         56.6
## 23525                 1995-01-01       Dominican Republic         52.2
## 23526                 1990-01-01       Dominican Republic         47.9
## 23527                 2015-01-01       Dominican Republic         62.5
## 23528                 2010-01-01       Dominican Republic         60.8
## 23529                 2005-01-01       Dominican Republic         58.6
## 23530                 2000-01-01       Dominican Republic         56.6
## 23531                 1995-01-01       Dominican Republic         52.2
## 23532                 1990-01-01       Dominican Republic         47.9
## 23533                 2015-01-01       Dominican Republic         62.5
## 23534                 2010-01-01       Dominican Republic         60.8
## 23535                 2005-01-01       Dominican Republic         58.6
## 23536                 2000-01-01       Dominican Republic         56.6
## 23537                 1995-01-01       Dominican Republic         52.2
## 23538                 1990-01-01       Dominican Republic         47.9
## 23539                 2015-01-01       Dominican Republic         62.5
## 23540                 2010-01-01       Dominican Republic         60.8
## 23541                 2005-01-01       Dominican Republic         58.6
## 23542                 2000-01-01       Dominican Republic         56.6
## 23543                 1995-01-01       Dominican Republic         52.2
## 23544                 1990-01-01       Dominican Republic         47.9
## 23545                 2015-01-01       Dominican Republic         62.5
## 23546                 2010-01-01       Dominican Republic         60.8
## 23547                 2005-01-01       Dominican Republic         58.6
## 23548                 2000-01-01       Dominican Republic         56.6
## 23549                 1995-01-01       Dominican Republic         52.2
## 23550                 1990-01-01       Dominican Republic         47.9
## 23551                 2015-01-01       Dominican Republic         62.5
## 23552                 2010-01-01       Dominican Republic         60.8
## 23553                 2005-01-01       Dominican Republic         58.6
## 23554                 2000-01-01       Dominican Republic         56.6
## 23555                 1995-01-01       Dominican Republic         52.2
## 23556                 1990-01-01       Dominican Republic         47.9
## 23557                 2015-01-01       Dominican Republic         62.5
## 23558                 2010-01-01       Dominican Republic         60.8
## 23559                 2005-01-01       Dominican Republic         58.6
## 23560                 2000-01-01       Dominican Republic         56.6
## 23561                 1995-01-01       Dominican Republic         52.2
## 23562                 1990-01-01       Dominican Republic         47.9
## 23563                 2015-01-01       Dominican Republic         62.5
## 23564                 2010-01-01       Dominican Republic         60.8
## 23565                 2005-01-01       Dominican Republic         58.6
## 23566                 2000-01-01       Dominican Republic         56.6
## 23567                 1995-01-01       Dominican Republic         52.2
## 23568                 1990-01-01       Dominican Republic         47.9
## 23569                 2015-01-01       Dominican Republic         62.5
## 23570                 2010-01-01       Dominican Republic         60.8
## 23571                 2005-01-01       Dominican Republic         58.6
## 23572                 2000-01-01       Dominican Republic         56.6
## 23573                 1995-01-01       Dominican Republic         52.2
## 23574                 1990-01-01       Dominican Republic         47.9
## 23575                 2015-01-01       Dominican Republic         62.5
## 23576                 2010-01-01       Dominican Republic         60.8
## 23577                 2005-01-01       Dominican Republic         58.6
## 23578                 2000-01-01       Dominican Republic         56.6
## 23579                 1995-01-01       Dominican Republic         52.2
## 23580                 1990-01-01       Dominican Republic         47.9
## 23581                 2015-01-01       Dominican Republic         62.5
## 23582                 2010-01-01       Dominican Republic         60.8
## 23583                 2005-01-01       Dominican Republic         58.6
## 23584                 2000-01-01       Dominican Republic         56.6
## 23585                 1995-01-01       Dominican Republic         52.2
## 23586                 1990-01-01       Dominican Republic         47.9
## 23587                 2015-01-01       Dominican Republic         62.5
## 23588                 2010-01-01       Dominican Republic         60.8
## 23589                 2005-01-01       Dominican Republic         58.6
## 23590                 2000-01-01       Dominican Republic         56.6
## 23591                 1995-01-01       Dominican Republic         52.2
## 23592                 1990-01-01       Dominican Republic         47.9
## 23593                 2015-01-01       Dominican Republic         62.5
## 23594                 2010-01-01       Dominican Republic         60.8
## 23595                 2005-01-01       Dominican Republic         58.6
## 23596                 2000-01-01       Dominican Republic         56.6
## 23597                 1995-01-01       Dominican Republic         52.2
## 23598                 1990-01-01       Dominican Republic         47.9
## 23599                 2015-01-01       Dominican Republic         62.5
## 23600                 2010-01-01       Dominican Republic         60.8
## 23601                 2005-01-01       Dominican Republic         58.6
## 23602                 2000-01-01       Dominican Republic         56.6
## 23603                 1995-01-01       Dominican Republic         52.2
## 23604                 1990-01-01       Dominican Republic         47.9
## 23605                 2015-01-01       Dominican Republic         62.5
## 23606                 2010-01-01       Dominican Republic         60.8
## 23607                 2005-01-01       Dominican Republic         58.6
## 23608                 2000-01-01       Dominican Republic         56.6
## 23609                 1995-01-01       Dominican Republic         52.2
## 23610                 1990-01-01       Dominican Republic         47.9
## 23611                 2015-01-01       Dominican Republic         62.5
## 23612                 2010-01-01       Dominican Republic         60.8
## 23613                 2005-01-01       Dominican Republic         58.6
## 23614                 2000-01-01       Dominican Republic         56.6
## 23615                 1995-01-01       Dominican Republic         52.2
## 23616                 1990-01-01       Dominican Republic         47.9
## 23617                 2015-01-01       Dominican Republic         62.5
## 23618                 2010-01-01       Dominican Republic         60.8
## 23619                 2005-01-01       Dominican Republic         58.6
## 23620                 2000-01-01       Dominican Republic         56.6
## 23621                 1995-01-01       Dominican Republic         52.2
## 23622                 1990-01-01       Dominican Republic         47.9
## 23623                 2015-01-01       Dominican Republic         62.5
## 23624                 2010-01-01       Dominican Republic         60.8
## 23625                 2005-01-01       Dominican Republic         58.6
## 23626                 2000-01-01       Dominican Republic         56.6
## 23627                 1995-01-01       Dominican Republic         52.2
## 23628                 1990-01-01       Dominican Republic         47.9
## 23629                 2015-01-01       Dominican Republic         62.5
## 23630                 2010-01-01       Dominican Republic         60.8
## 23631                 2005-01-01       Dominican Republic         58.6
## 23632                 2000-01-01       Dominican Republic         56.6
## 23633                 1995-01-01       Dominican Republic         52.2
## 23634                 1990-01-01       Dominican Republic         47.9
## 23635                 2015-01-01       Dominican Republic         62.5
## 23636                 2010-01-01       Dominican Republic         60.8
## 23637                 2005-01-01       Dominican Republic         58.6
## 23638                 2000-01-01       Dominican Republic         56.6
## 23639                 1995-01-01       Dominican Republic         52.2
## 23640                 1990-01-01       Dominican Republic         47.9
## 23641                 2015-01-01       Dominican Republic         62.5
## 23642                 2010-01-01       Dominican Republic         60.8
## 23643                 2005-01-01       Dominican Republic         58.6
## 23644                 2000-01-01       Dominican Republic         56.6
## 23645                 1995-01-01       Dominican Republic         52.2
## 23646                 1990-01-01       Dominican Republic         47.9
## 23647                 2015-01-01       Dominican Republic         62.5
## 23648                 2010-01-01       Dominican Republic         60.8
## 23649                 2005-01-01       Dominican Republic         58.6
## 23650                 2000-01-01       Dominican Republic         56.6
## 23651                 1995-01-01       Dominican Republic         52.2
## 23652                 1990-01-01       Dominican Republic         47.9
## 23653                 2015-01-01       Dominican Republic         62.5
## 23654                 2010-01-01       Dominican Republic         60.8
## 23655                 2005-01-01       Dominican Republic         58.6
## 23656                 2000-01-01       Dominican Republic         56.6
## 23657                 1995-01-01       Dominican Republic         52.2
## 23658                 1990-01-01       Dominican Republic         47.9
## 23659                 2015-01-01       Dominican Republic         62.5
## 23660                 2010-01-01       Dominican Republic         60.8
## 23661                 2005-01-01       Dominican Republic         58.6
## 23662                 2000-01-01       Dominican Republic         56.6
## 23663                 1995-01-01       Dominican Republic         52.2
## 23664                 1990-01-01       Dominican Republic         47.9
## 23665                 2015-01-01       Dominican Republic         62.5
## 23666                 2010-01-01       Dominican Republic         60.8
## 23667                 2005-01-01       Dominican Republic         58.6
## 23668                 2000-01-01       Dominican Republic         56.6
## 23669                 1995-01-01       Dominican Republic         52.2
## 23670                 1990-01-01       Dominican Republic         47.9
## 23671                 2015-01-01       Dominican Republic         62.5
## 23672                 2010-01-01       Dominican Republic         60.8
## 23673                 2005-01-01       Dominican Republic         58.6
## 23674                 2000-01-01       Dominican Republic         56.6
## 23675                 1995-01-01       Dominican Republic         52.2
## 23676                 1990-01-01       Dominican Republic         47.9
## 23677                 2015-01-01       Dominican Republic         62.5
## 23678                 2010-01-01       Dominican Republic         60.8
## 23679                 2005-01-01       Dominican Republic         58.6
## 23680                 2000-01-01       Dominican Republic         56.6
## 23681                 1995-01-01       Dominican Republic         52.2
## 23682                 1990-01-01       Dominican Republic         47.9
## 23683                 2015-01-01       Dominican Republic         62.5
## 23684                 2010-01-01       Dominican Republic         60.8
## 23685                 2005-01-01       Dominican Republic         58.6
## 23686                 2000-01-01       Dominican Republic         56.6
## 23687                 1995-01-01       Dominican Republic         52.2
## 23688                 1990-01-01       Dominican Republic         47.9
## 23689                 2015-01-01       Dominican Republic         62.5
## 23690                 2010-01-01       Dominican Republic         60.8
## 23691                 2005-01-01       Dominican Republic         58.6
## 23692                 2000-01-01       Dominican Republic         56.6
## 23693                 1995-01-01       Dominican Republic         52.2
## 23694                 1990-01-01       Dominican Republic         47.9
## 23695                 2015-01-01       Dominican Republic         62.5
## 23696                 2010-01-01       Dominican Republic         60.8
## 23697                 2005-01-01       Dominican Republic         58.6
## 23698                 2000-01-01       Dominican Republic         56.6
## 23699                 1995-01-01       Dominican Republic         52.2
## 23700                 1990-01-01       Dominican Republic         47.9
## 23701                 2015-01-01       Dominican Republic         62.5
## 23702                 2010-01-01       Dominican Republic         60.8
## 23703                 2005-01-01       Dominican Republic         58.6
## 23704                 2000-01-01       Dominican Republic         56.6
## 23705                 1995-01-01       Dominican Republic         52.2
## 23706                 1990-01-01       Dominican Republic         47.9
## 23707                 2015-01-01       Dominican Republic         62.5
## 23708                 2010-01-01       Dominican Republic         60.8
## 23709                 2005-01-01       Dominican Republic         58.6
## 23710                 2000-01-01       Dominican Republic         56.6
## 23711                 1995-01-01       Dominican Republic         52.2
## 23712                 1990-01-01       Dominican Republic         47.9
## 23713                 2015-01-01       Dominican Republic         62.5
## 23714                 2010-01-01       Dominican Republic         60.8
## 23715                 2005-01-01       Dominican Republic         58.6
## 23716                 2000-01-01       Dominican Republic         56.6
## 23717                 1995-01-01       Dominican Republic         52.2
## 23718                 1990-01-01       Dominican Republic         47.9
## 23719                 2015-01-01       Dominican Republic         62.5
## 23720                 2010-01-01       Dominican Republic         60.8
## 23721                 2005-01-01       Dominican Republic         58.6
## 23722                 2000-01-01       Dominican Republic         56.6
## 23723                 1995-01-01       Dominican Republic         52.2
## 23724                 1990-01-01       Dominican Republic         47.9
## 23725                 2015-01-01       Dominican Republic         62.5
## 23726                 2010-01-01       Dominican Republic         60.8
## 23727                 2005-01-01       Dominican Republic         58.6
## 23728                 2000-01-01       Dominican Republic         56.6
## 23729                 1995-01-01       Dominican Republic         52.2
## 23730                 1990-01-01       Dominican Republic         47.9
## 23731                 2015-01-01       Dominican Republic         62.5
## 23732                 2010-01-01       Dominican Republic         60.8
## 23733                 2005-01-01       Dominican Republic         58.6
## 23734                 2000-01-01       Dominican Republic         56.6
## 23735                 1995-01-01       Dominican Republic         52.2
## 23736                 1990-01-01       Dominican Republic         47.9
## 23737                 2015-01-01       Dominican Republic         62.5
## 23738                 2010-01-01       Dominican Republic         60.8
## 23739                 2005-01-01       Dominican Republic         58.6
## 23740                 2000-01-01       Dominican Republic         56.6
## 23741                 1995-01-01       Dominican Republic         52.2
## 23742                 1990-01-01       Dominican Republic         47.9
## 23743                 2015-01-01       Dominican Republic         62.5
## 23744                 2010-01-01       Dominican Republic         60.8
## 23745                 2005-01-01       Dominican Republic         58.6
## 23746                 2000-01-01       Dominican Republic         56.6
## 23747                 1995-01-01       Dominican Republic         52.2
## 23748                 1990-01-01       Dominican Republic         47.9
## 23749                 2015-01-01       Dominican Republic         62.5
## 23750                 2010-01-01       Dominican Republic         60.8
## 23751                 2005-01-01       Dominican Republic         58.6
## 23752                 2000-01-01       Dominican Republic         56.6
## 23753                 1995-01-01       Dominican Republic         52.2
## 23754                 1990-01-01       Dominican Republic         47.9
## 23755                 2015-01-01       Dominican Republic         62.5
## 23756                 2010-01-01       Dominican Republic         60.8
## 23757                 2005-01-01       Dominican Republic         58.6
## 23758                 2000-01-01       Dominican Republic         56.6
## 23759                 1995-01-01       Dominican Republic         52.2
## 23760                 1990-01-01       Dominican Republic         47.9
## 23761                 2015-01-01       Dominican Republic         62.5
## 23762                 2010-01-01       Dominican Republic         60.8
## 23763                 2005-01-01       Dominican Republic         58.6
## 23764                 2000-01-01       Dominican Republic         56.6
## 23765                 1995-01-01       Dominican Republic         52.2
## 23766                 1990-01-01       Dominican Republic         47.9
## 23767                 2015-01-01                  Ecuador         61.2
## 23768                 2010-01-01                  Ecuador         58.6
## 23769                 2005-01-01                  Ecuador         56.1
## 23770                 2000-01-01                  Ecuador         53.5
## 23771                 1995-01-01                  Ecuador         48.7
## 23772                 1990-01-01                  Ecuador         45.4
## 23773                 2015-01-01                  Ecuador         61.2
## 23774                 2010-01-01                  Ecuador         58.6
## 23775                 2005-01-01                  Ecuador         56.1
## 23776                 2000-01-01                  Ecuador         53.5
## 23777                 1995-01-01                  Ecuador         48.7
## 23778                 1990-01-01                  Ecuador         45.4
## 23779                 2015-01-01                  Ecuador         61.2
## 23780                 2010-01-01                  Ecuador         58.6
## 23781                 2005-01-01                  Ecuador         56.1
## 23782                 2000-01-01                  Ecuador         53.5
## 23783                 1995-01-01                  Ecuador         48.7
## 23784                 1990-01-01                  Ecuador         45.4
## 23785                 2015-01-01                  Ecuador         61.2
## 23786                 2010-01-01                  Ecuador         58.6
## 23787                 2005-01-01                  Ecuador         56.1
## 23788                 2000-01-01                  Ecuador         53.5
## 23789                 1995-01-01                  Ecuador         48.7
## 23790                 1990-01-01                  Ecuador         45.4
## 23791                 2015-01-01                  Ecuador         61.2
## 23792                 2010-01-01                  Ecuador         58.6
## 23793                 2005-01-01                  Ecuador         56.1
## 23794                 2000-01-01                  Ecuador         53.5
## 23795                 1995-01-01                  Ecuador         48.7
## 23796                 1990-01-01                  Ecuador         45.4
## 23797                 2015-01-01                  Ecuador         61.2
## 23798                 2010-01-01                  Ecuador         58.6
## 23799                 2005-01-01                  Ecuador         56.1
## 23800                 2000-01-01                  Ecuador         53.5
## 23801                 1995-01-01                  Ecuador         48.7
## 23802                 1990-01-01                  Ecuador         45.4
## 23803                 2015-01-01                  Ecuador         61.2
## 23804                 2010-01-01                  Ecuador         58.6
## 23805                 2005-01-01                  Ecuador         56.1
## 23806                 2000-01-01                  Ecuador         53.5
## 23807                 1995-01-01                  Ecuador         48.7
## 23808                 1990-01-01                  Ecuador         45.4
## 23809                 2015-01-01                  Ecuador         61.2
## 23810                 2010-01-01                  Ecuador         58.6
## 23811                 2005-01-01                  Ecuador         56.1
## 23812                 2000-01-01                  Ecuador         53.5
## 23813                 1995-01-01                  Ecuador         48.7
## 23814                 1990-01-01                  Ecuador         45.4
## 23815                 2015-01-01                  Ecuador         61.2
## 23816                 2010-01-01                  Ecuador         58.6
## 23817                 2005-01-01                  Ecuador         56.1
## 23818                 2000-01-01                  Ecuador         53.5
## 23819                 1995-01-01                  Ecuador         48.7
## 23820                 1990-01-01                  Ecuador         45.4
## 23821                 2015-01-01                  Ecuador         61.2
## 23822                 2010-01-01                  Ecuador         58.6
## 23823                 2005-01-01                  Ecuador         56.1
## 23824                 2000-01-01                  Ecuador         53.5
## 23825                 1995-01-01                  Ecuador         48.7
## 23826                 1990-01-01                  Ecuador         45.4
## 23827                 2015-01-01                  Ecuador         61.2
## 23828                 2010-01-01                  Ecuador         58.6
## 23829                 2005-01-01                  Ecuador         56.1
## 23830                 2000-01-01                  Ecuador         53.5
## 23831                 1995-01-01                  Ecuador         48.7
## 23832                 1990-01-01                  Ecuador         45.4
## 23833                 2015-01-01                  Ecuador         61.2
## 23834                 2010-01-01                  Ecuador         58.6
## 23835                 2005-01-01                  Ecuador         56.1
## 23836                 2000-01-01                  Ecuador         53.5
## 23837                 1995-01-01                  Ecuador         48.7
## 23838                 1990-01-01                  Ecuador         45.4
## 23839                 2015-01-01                  Ecuador         61.2
## 23840                 2010-01-01                  Ecuador         58.6
## 23841                 2005-01-01                  Ecuador         56.1
## 23842                 2000-01-01                  Ecuador         53.5
## 23843                 1995-01-01                  Ecuador         48.7
## 23844                 1990-01-01                  Ecuador         45.4
## 23845                 2015-01-01                  Ecuador         61.2
## 23846                 2010-01-01                  Ecuador         58.6
## 23847                 2005-01-01                  Ecuador         56.1
## 23848                 2000-01-01                  Ecuador         53.5
## 23849                 1995-01-01                  Ecuador         48.7
## 23850                 1990-01-01                  Ecuador         45.4
## 23851                 2015-01-01                  Ecuador         61.2
## 23852                 2010-01-01                  Ecuador         58.6
## 23853                 2005-01-01                  Ecuador         56.1
## 23854                 2000-01-01                  Ecuador         53.5
## 23855                 1995-01-01                  Ecuador         48.7
## 23856                 1990-01-01                  Ecuador         45.4
## 23857                 2015-01-01                  Ecuador         61.2
## 23858                 2010-01-01                  Ecuador         58.6
## 23859                 2005-01-01                  Ecuador         56.1
## 23860                 2000-01-01                  Ecuador         53.5
## 23861                 1995-01-01                  Ecuador         48.7
## 23862                 1990-01-01                  Ecuador         45.4
## 23863                 2015-01-01                  Ecuador         61.2
## 23864                 2010-01-01                  Ecuador         58.6
## 23865                 2005-01-01                  Ecuador         56.1
## 23866                 2000-01-01                  Ecuador         53.5
## 23867                 1995-01-01                  Ecuador         48.7
## 23868                 1990-01-01                  Ecuador         45.4
## 23869                 2015-01-01                  Ecuador         61.2
## 23870                 2010-01-01                  Ecuador         58.6
## 23871                 2005-01-01                  Ecuador         56.1
## 23872                 2000-01-01                  Ecuador         53.5
## 23873                 1995-01-01                  Ecuador         48.7
## 23874                 1990-01-01                  Ecuador         45.4
## 23875                 2015-01-01                  Ecuador         61.2
## 23876                 2010-01-01                  Ecuador         58.6
## 23877                 2005-01-01                  Ecuador         56.1
## 23878                 2000-01-01                  Ecuador         53.5
## 23879                 1995-01-01                  Ecuador         48.7
## 23880                 1990-01-01                  Ecuador         45.4
## 23881                 2015-01-01                  Ecuador         61.2
## 23882                 2010-01-01                  Ecuador         58.6
## 23883                 2005-01-01                  Ecuador         56.1
## 23884                 2000-01-01                  Ecuador         53.5
## 23885                 1995-01-01                  Ecuador         48.7
## 23886                 1990-01-01                  Ecuador         45.4
## 23887                 2015-01-01                  Ecuador         61.2
## 23888                 2010-01-01                  Ecuador         58.6
## 23889                 2005-01-01                  Ecuador         56.1
## 23890                 2000-01-01                  Ecuador         53.5
## 23891                 1995-01-01                  Ecuador         48.7
## 23892                 1990-01-01                  Ecuador         45.4
## 23893                 2015-01-01                  Ecuador         61.2
## 23894                 2010-01-01                  Ecuador         58.6
## 23895                 2005-01-01                  Ecuador         56.1
## 23896                 2000-01-01                  Ecuador         53.5
## 23897                 1995-01-01                  Ecuador         48.7
## 23898                 1990-01-01                  Ecuador         45.4
## 23899                 2015-01-01                  Ecuador         61.2
## 23900                 2010-01-01                  Ecuador         58.6
## 23901                 2005-01-01                  Ecuador         56.1
## 23902                 2000-01-01                  Ecuador         53.5
## 23903                 1995-01-01                  Ecuador         48.7
## 23904                 1990-01-01                  Ecuador         45.4
## 23905                 2015-01-01                  Ecuador         61.2
## 23906                 2010-01-01                  Ecuador         58.6
## 23907                 2005-01-01                  Ecuador         56.1
## 23908                 2000-01-01                  Ecuador         53.5
## 23909                 1995-01-01                  Ecuador         48.7
## 23910                 1990-01-01                  Ecuador         45.4
## 23911                 2015-01-01                  Ecuador         61.2
## 23912                 2010-01-01                  Ecuador         58.6
## 23913                 2005-01-01                  Ecuador         56.1
## 23914                 2000-01-01                  Ecuador         53.5
## 23915                 1995-01-01                  Ecuador         48.7
## 23916                 1990-01-01                  Ecuador         45.4
## 23917                 2015-01-01                  Ecuador         61.2
## 23918                 2010-01-01                  Ecuador         58.6
## 23919                 2005-01-01                  Ecuador         56.1
## 23920                 2000-01-01                  Ecuador         53.5
## 23921                 1995-01-01                  Ecuador         48.7
## 23922                 1990-01-01                  Ecuador         45.4
## 23923                 2015-01-01                  Ecuador         61.2
## 23924                 2010-01-01                  Ecuador         58.6
## 23925                 2005-01-01                  Ecuador         56.1
## 23926                 2000-01-01                  Ecuador         53.5
## 23927                 1995-01-01                  Ecuador         48.7
## 23928                 1990-01-01                  Ecuador         45.4
## 23929                 2015-01-01                  Ecuador         61.2
## 23930                 2010-01-01                  Ecuador         58.6
## 23931                 2005-01-01                  Ecuador         56.1
## 23932                 2000-01-01                  Ecuador         53.5
## 23933                 1995-01-01                  Ecuador         48.7
## 23934                 1990-01-01                  Ecuador         45.4
## 23935                 2015-01-01                  Ecuador         61.2
## 23936                 2010-01-01                  Ecuador         58.6
## 23937                 2005-01-01                  Ecuador         56.1
## 23938                 2000-01-01                  Ecuador         53.5
## 23939                 1995-01-01                  Ecuador         48.7
## 23940                 1990-01-01                  Ecuador         45.4
## 23941                 2015-01-01                  Ecuador         61.2
## 23942                 2010-01-01                  Ecuador         58.6
## 23943                 2005-01-01                  Ecuador         56.1
## 23944                 2000-01-01                  Ecuador         53.5
## 23945                 1995-01-01                  Ecuador         48.7
## 23946                 1990-01-01                  Ecuador         45.4
## 23947                 2015-01-01                  Ecuador         61.2
## 23948                 2010-01-01                  Ecuador         58.6
## 23949                 2005-01-01                  Ecuador         56.1
## 23950                 2000-01-01                  Ecuador         53.5
## 23951                 1995-01-01                  Ecuador         48.7
## 23952                 1990-01-01                  Ecuador         45.4
## 23953                 2015-01-01                  Ecuador         61.2
## 23954                 2010-01-01                  Ecuador         58.6
## 23955                 2005-01-01                  Ecuador         56.1
## 23956                 2000-01-01                  Ecuador         53.5
## 23957                 1995-01-01                  Ecuador         48.7
## 23958                 1990-01-01                  Ecuador         45.4
## 23959                 2015-01-01                  Ecuador         61.2
## 23960                 2010-01-01                  Ecuador         58.6
## 23961                 2005-01-01                  Ecuador         56.1
## 23962                 2000-01-01                  Ecuador         53.5
## 23963                 1995-01-01                  Ecuador         48.7
## 23964                 1990-01-01                  Ecuador         45.4
## 23965                 2015-01-01                  Ecuador         61.2
## 23966                 2010-01-01                  Ecuador         58.6
## 23967                 2005-01-01                  Ecuador         56.1
## 23968                 2000-01-01                  Ecuador         53.5
## 23969                 1995-01-01                  Ecuador         48.7
## 23970                 1990-01-01                  Ecuador         45.4
## 23971                 2015-01-01                  Ecuador         61.2
## 23972                 2010-01-01                  Ecuador         58.6
## 23973                 2005-01-01                  Ecuador         56.1
## 23974                 2000-01-01                  Ecuador         53.5
## 23975                 1995-01-01                  Ecuador         48.7
## 23976                 1990-01-01                  Ecuador         45.4
## 23977                 2015-01-01                  Ecuador         61.2
## 23978                 2010-01-01                  Ecuador         58.6
## 23979                 2005-01-01                  Ecuador         56.1
## 23980                 2000-01-01                  Ecuador         53.5
## 23981                 1995-01-01                  Ecuador         48.7
## 23982                 1990-01-01                  Ecuador         45.4
## 23983                 2015-01-01                  Ecuador         61.2
## 23984                 2010-01-01                  Ecuador         58.6
## 23985                 2005-01-01                  Ecuador         56.1
## 23986                 2000-01-01                  Ecuador         53.5
## 23987                 1995-01-01                  Ecuador         48.7
## 23988                 1990-01-01                  Ecuador         45.4
## 23989                 2015-01-01                  Ecuador         61.2
## 23990                 2010-01-01                  Ecuador         58.6
## 23991                 2005-01-01                  Ecuador         56.1
## 23992                 2000-01-01                  Ecuador         53.5
## 23993                 1995-01-01                  Ecuador         48.7
## 23994                 1990-01-01                  Ecuador         45.4
## 23995                 2015-01-01                  Ecuador         61.2
## 23996                 2010-01-01                  Ecuador         58.6
## 23997                 2005-01-01                  Ecuador         56.1
## 23998                 2000-01-01                  Ecuador         53.5
## 23999                 1995-01-01                  Ecuador         48.7
## 24000                 1990-01-01                  Ecuador         45.4
## 24001                 2015-01-01                  Ecuador         61.2
## 24002                 2010-01-01                  Ecuador         58.6
## 24003                 2005-01-01                  Ecuador         56.1
## 24004                 2000-01-01                  Ecuador         53.5
## 24005                 1995-01-01                  Ecuador         48.7
## 24006                 1990-01-01                  Ecuador         45.4
## 24007                 2015-01-01                  Ecuador         61.2
## 24008                 2010-01-01                  Ecuador         58.6
## 24009                 2005-01-01                  Ecuador         56.1
## 24010                 2000-01-01                  Ecuador         53.5
## 24011                 1995-01-01                  Ecuador         48.7
## 24012                 1990-01-01                  Ecuador         45.4
## 24013                 2015-01-01                  Ecuador         61.2
## 24014                 2010-01-01                  Ecuador         58.6
## 24015                 2005-01-01                  Ecuador         56.1
## 24016                 2000-01-01                  Ecuador         53.5
## 24017                 1995-01-01                  Ecuador         48.7
## 24018                 1990-01-01                  Ecuador         45.4
## 24019                 2015-01-01                  Ecuador         61.2
## 24020                 2010-01-01                  Ecuador         58.6
## 24021                 2005-01-01                  Ecuador         56.1
## 24022                 2000-01-01                  Ecuador         53.5
## 24023                 1995-01-01                  Ecuador         48.7
## 24024                 1990-01-01                  Ecuador         45.4
## 24025                 2015-01-01                  Ecuador         61.2
## 24026                 2010-01-01                  Ecuador         58.6
## 24027                 2005-01-01                  Ecuador         56.1
## 24028                 2000-01-01                  Ecuador         53.5
## 24029                 1995-01-01                  Ecuador         48.7
## 24030                 1990-01-01                  Ecuador         45.4
## 24031                 2015-01-01                  Ecuador         61.2
## 24032                 2010-01-01                  Ecuador         58.6
## 24033                 2005-01-01                  Ecuador         56.1
## 24034                 2000-01-01                  Ecuador         53.5
## 24035                 1995-01-01                  Ecuador         48.7
## 24036                 1990-01-01                  Ecuador         45.4
## 24037                 2015-01-01                  Ecuador         61.2
## 24038                 2010-01-01                  Ecuador         58.6
## 24039                 2005-01-01                  Ecuador         56.1
## 24040                 2000-01-01                  Ecuador         53.5
## 24041                 1995-01-01                  Ecuador         48.7
## 24042                 1990-01-01                  Ecuador         45.4
## 24043                 2015-01-01                  Ecuador         61.2
## 24044                 2010-01-01                  Ecuador         58.6
## 24045                 2005-01-01                  Ecuador         56.1
## 24046                 2000-01-01                  Ecuador         53.5
## 24047                 1995-01-01                  Ecuador         48.7
## 24048                 1990-01-01                  Ecuador         45.4
## 24049                 2015-01-01                  Ecuador         61.2
## 24050                 2010-01-01                  Ecuador         58.6
## 24051                 2005-01-01                  Ecuador         56.1
## 24052                 2000-01-01                  Ecuador         53.5
## 24053                 1995-01-01                  Ecuador         48.7
## 24054                 1990-01-01                  Ecuador         45.4
## 24055                 2015-01-01                  Ecuador         61.2
## 24056                 2010-01-01                  Ecuador         58.6
## 24057                 2005-01-01                  Ecuador         56.1
## 24058                 2000-01-01                  Ecuador         53.5
## 24059                 1995-01-01                  Ecuador         48.7
## 24060                 1990-01-01                  Ecuador         45.4
## 24061                 2015-01-01                  Ecuador         61.2
## 24062                 2010-01-01                  Ecuador         58.6
## 24063                 2005-01-01                  Ecuador         56.1
## 24064                 2000-01-01                  Ecuador         53.5
## 24065                 1995-01-01                  Ecuador         48.7
## 24066                 1990-01-01                  Ecuador         45.4
## 24067                 2015-01-01                  Ecuador         61.2
## 24068                 2010-01-01                  Ecuador         58.6
## 24069                 2005-01-01                  Ecuador         56.1
## 24070                 2000-01-01                  Ecuador         53.5
## 24071                 1995-01-01                  Ecuador         48.7
## 24072                 1990-01-01                  Ecuador         45.4
## 24073                 2015-01-01                  Ecuador         61.2
## 24074                 2010-01-01                  Ecuador         58.6
## 24075                 2005-01-01                  Ecuador         56.1
## 24076                 2000-01-01                  Ecuador         53.5
## 24077                 1995-01-01                  Ecuador         48.7
## 24078                 1990-01-01                  Ecuador         45.4
## 24079                 2015-01-01                  Ecuador         61.2
## 24080                 2010-01-01                  Ecuador         58.6
## 24081                 2005-01-01                  Ecuador         56.1
## 24082                 2000-01-01                  Ecuador         53.5
## 24083                 1995-01-01                  Ecuador         48.7
## 24084                 1990-01-01                  Ecuador         45.4
## 24085                 2015-01-01                  Ecuador         61.2
## 24086                 2010-01-01                  Ecuador         58.6
## 24087                 2005-01-01                  Ecuador         56.1
## 24088                 2000-01-01                  Ecuador         53.5
## 24089                 1995-01-01                  Ecuador         48.7
## 24090                 1990-01-01                  Ecuador         45.4
## 24091                 2015-01-01                  Ecuador         61.2
## 24092                 2010-01-01                  Ecuador         58.6
## 24093                 2005-01-01                  Ecuador         56.1
## 24094                 2000-01-01                  Ecuador         53.5
## 24095                 1995-01-01                  Ecuador         48.7
## 24096                 1990-01-01                  Ecuador         45.4
## 24097                 2015-01-01                  Ecuador         61.2
## 24098                 2010-01-01                  Ecuador         58.6
## 24099                 2005-01-01                  Ecuador         56.1
## 24100                 2000-01-01                  Ecuador         53.5
## 24101                 1995-01-01                  Ecuador         48.7
## 24102                 1990-01-01                  Ecuador         45.4
## 24103                 2015-01-01                  Ecuador         61.2
## 24104                 2010-01-01                  Ecuador         58.6
## 24105                 2005-01-01                  Ecuador         56.1
## 24106                 2000-01-01                  Ecuador         53.5
## 24107                 1995-01-01                  Ecuador         48.7
## 24108                 1990-01-01                  Ecuador         45.4
## 24109                 2015-01-01                  Ecuador         61.2
## 24110                 2010-01-01                  Ecuador         58.6
## 24111                 2005-01-01                  Ecuador         56.1
## 24112                 2000-01-01                  Ecuador         53.5
## 24113                 1995-01-01                  Ecuador         48.7
## 24114                 1990-01-01                  Ecuador         45.4
## 24115                 2015-01-01                  Ecuador         61.2
## 24116                 2010-01-01                  Ecuador         58.6
## 24117                 2005-01-01                  Ecuador         56.1
## 24118                 2000-01-01                  Ecuador         53.5
## 24119                 1995-01-01                  Ecuador         48.7
## 24120                 1990-01-01                  Ecuador         45.4
## 24121                 2015-01-01                  Ecuador         61.2
## 24122                 2010-01-01                  Ecuador         58.6
## 24123                 2005-01-01                  Ecuador         56.1
## 24124                 2000-01-01                  Ecuador         53.5
## 24125                 1995-01-01                  Ecuador         48.7
## 24126                 1990-01-01                  Ecuador         45.4
## 24127                 2015-01-01                    Egypt         61.0
## 24128                 2010-01-01                    Egypt         58.2
## 24129                 2005-01-01                    Egypt         56.9
## 24130                 2000-01-01                    Egypt         54.4
## 24131                 1995-01-01                    Egypt         49.3
## 24132                 1990-01-01                    Egypt         45.0
## 24133                 2015-01-01                    Egypt         61.0
## 24134                 2010-01-01                    Egypt         58.2
## 24135                 2005-01-01                    Egypt         56.9
## 24136                 2000-01-01                    Egypt         54.4
## 24137                 1995-01-01                    Egypt         49.3
## 24138                 1990-01-01                    Egypt         45.0
## 24139                 2015-01-01                    Egypt         61.0
## 24140                 2010-01-01                    Egypt         58.2
## 24141                 2005-01-01                    Egypt         56.9
## 24142                 2000-01-01                    Egypt         54.4
## 24143                 1995-01-01                    Egypt         49.3
## 24144                 1990-01-01                    Egypt         45.0
## 24145                 2015-01-01                    Egypt         61.0
## 24146                 2010-01-01                    Egypt         58.2
## 24147                 2005-01-01                    Egypt         56.9
## 24148                 2000-01-01                    Egypt         54.4
## 24149                 1995-01-01                    Egypt         49.3
## 24150                 1990-01-01                    Egypt         45.0
## 24151                 2015-01-01                    Egypt         61.0
## 24152                 2010-01-01                    Egypt         58.2
## 24153                 2005-01-01                    Egypt         56.9
## 24154                 2000-01-01                    Egypt         54.4
## 24155                 1995-01-01                    Egypt         49.3
## 24156                 1990-01-01                    Egypt         45.0
## 24157                 2015-01-01                    Egypt         61.0
## 24158                 2010-01-01                    Egypt         58.2
## 24159                 2005-01-01                    Egypt         56.9
## 24160                 2000-01-01                    Egypt         54.4
## 24161                 1995-01-01                    Egypt         49.3
## 24162                 1990-01-01                    Egypt         45.0
## 24163                 2015-01-01                    Egypt         61.0
## 24164                 2010-01-01                    Egypt         58.2
## 24165                 2005-01-01                    Egypt         56.9
## 24166                 2000-01-01                    Egypt         54.4
## 24167                 1995-01-01                    Egypt         49.3
## 24168                 1990-01-01                    Egypt         45.0
## 24169                 2015-01-01                    Egypt         61.0
## 24170                 2010-01-01                    Egypt         58.2
## 24171                 2005-01-01                    Egypt         56.9
## 24172                 2000-01-01                    Egypt         54.4
## 24173                 1995-01-01                    Egypt         49.3
## 24174                 1990-01-01                    Egypt         45.0
## 24175                 2015-01-01                    Egypt         61.0
## 24176                 2010-01-01                    Egypt         58.2
## 24177                 2005-01-01                    Egypt         56.9
## 24178                 2000-01-01                    Egypt         54.4
## 24179                 1995-01-01                    Egypt         49.3
## 24180                 1990-01-01                    Egypt         45.0
## 24181                 2015-01-01                    Egypt         61.0
## 24182                 2010-01-01                    Egypt         58.2
## 24183                 2005-01-01                    Egypt         56.9
## 24184                 2000-01-01                    Egypt         54.4
## 24185                 1995-01-01                    Egypt         49.3
## 24186                 1990-01-01                    Egypt         45.0
## 24187                 2015-01-01                    Egypt         61.0
## 24188                 2010-01-01                    Egypt         58.2
## 24189                 2005-01-01                    Egypt         56.9
## 24190                 2000-01-01                    Egypt         54.4
## 24191                 1995-01-01                    Egypt         49.3
## 24192                 1990-01-01                    Egypt         45.0
## 24193                 2015-01-01                    Egypt         61.0
## 24194                 2010-01-01                    Egypt         58.2
## 24195                 2005-01-01                    Egypt         56.9
## 24196                 2000-01-01                    Egypt         54.4
## 24197                 1995-01-01                    Egypt         49.3
## 24198                 1990-01-01                    Egypt         45.0
## 24199                 2015-01-01                    Egypt         61.0
## 24200                 2010-01-01                    Egypt         58.2
## 24201                 2005-01-01                    Egypt         56.9
## 24202                 2000-01-01                    Egypt         54.4
## 24203                 1995-01-01                    Egypt         49.3
## 24204                 1990-01-01                    Egypt         45.0
## 24205                 2015-01-01                    Egypt         61.0
## 24206                 2010-01-01                    Egypt         58.2
## 24207                 2005-01-01                    Egypt         56.9
## 24208                 2000-01-01                    Egypt         54.4
## 24209                 1995-01-01                    Egypt         49.3
## 24210                 1990-01-01                    Egypt         45.0
## 24211                 2015-01-01                    Egypt         61.0
## 24212                 2010-01-01                    Egypt         58.2
## 24213                 2005-01-01                    Egypt         56.9
## 24214                 2000-01-01                    Egypt         54.4
## 24215                 1995-01-01                    Egypt         49.3
## 24216                 1990-01-01                    Egypt         45.0
## 24217                 2015-01-01                    Egypt         61.0
## 24218                 2010-01-01                    Egypt         58.2
## 24219                 2005-01-01                    Egypt         56.9
## 24220                 2000-01-01                    Egypt         54.4
## 24221                 1995-01-01                    Egypt         49.3
## 24222                 1990-01-01                    Egypt         45.0
## 24223                 2015-01-01                    Egypt         61.0
## 24224                 2010-01-01                    Egypt         58.2
## 24225                 2005-01-01                    Egypt         56.9
## 24226                 2000-01-01                    Egypt         54.4
## 24227                 1995-01-01                    Egypt         49.3
## 24228                 1990-01-01                    Egypt         45.0
## 24229                 2015-01-01                    Egypt         61.0
## 24230                 2010-01-01                    Egypt         58.2
## 24231                 2005-01-01                    Egypt         56.9
## 24232                 2000-01-01                    Egypt         54.4
## 24233                 1995-01-01                    Egypt         49.3
## 24234                 1990-01-01                    Egypt         45.0
## 24235                 2015-01-01                    Egypt         61.0
## 24236                 2010-01-01                    Egypt         58.2
## 24237                 2005-01-01                    Egypt         56.9
## 24238                 2000-01-01                    Egypt         54.4
## 24239                 1995-01-01                    Egypt         49.3
## 24240                 1990-01-01                    Egypt         45.0
## 24241                 2015-01-01                    Egypt         61.0
## 24242                 2010-01-01                    Egypt         58.2
## 24243                 2005-01-01                    Egypt         56.9
## 24244                 2000-01-01                    Egypt         54.4
## 24245                 1995-01-01                    Egypt         49.3
## 24246                 1990-01-01                    Egypt         45.0
## 24247                 2015-01-01                    Egypt         61.0
## 24248                 2010-01-01                    Egypt         58.2
## 24249                 2005-01-01                    Egypt         56.9
## 24250                 2000-01-01                    Egypt         54.4
## 24251                 1995-01-01                    Egypt         49.3
## 24252                 1990-01-01                    Egypt         45.0
## 24253                 2015-01-01                    Egypt         61.0
## 24254                 2010-01-01                    Egypt         58.2
## 24255                 2005-01-01                    Egypt         56.9
## 24256                 2000-01-01                    Egypt         54.4
## 24257                 1995-01-01                    Egypt         49.3
## 24258                 1990-01-01                    Egypt         45.0
## 24259                 2015-01-01                    Egypt         61.0
## 24260                 2010-01-01                    Egypt         58.2
## 24261                 2005-01-01                    Egypt         56.9
## 24262                 2000-01-01                    Egypt         54.4
## 24263                 1995-01-01                    Egypt         49.3
## 24264                 1990-01-01                    Egypt         45.0
## 24265                 2015-01-01                    Egypt         61.0
## 24266                 2010-01-01                    Egypt         58.2
## 24267                 2005-01-01                    Egypt         56.9
## 24268                 2000-01-01                    Egypt         54.4
## 24269                 1995-01-01                    Egypt         49.3
## 24270                 1990-01-01                    Egypt         45.0
## 24271                 2015-01-01                    Egypt         61.0
## 24272                 2010-01-01                    Egypt         58.2
## 24273                 2005-01-01                    Egypt         56.9
## 24274                 2000-01-01                    Egypt         54.4
## 24275                 1995-01-01                    Egypt         49.3
## 24276                 1990-01-01                    Egypt         45.0
## 24277                 2015-01-01                    Egypt         61.0
## 24278                 2010-01-01                    Egypt         58.2
## 24279                 2005-01-01                    Egypt         56.9
## 24280                 2000-01-01                    Egypt         54.4
## 24281                 1995-01-01                    Egypt         49.3
## 24282                 1990-01-01                    Egypt         45.0
## 24283                 2015-01-01                    Egypt         61.0
## 24284                 2010-01-01                    Egypt         58.2
## 24285                 2005-01-01                    Egypt         56.9
## 24286                 2000-01-01                    Egypt         54.4
## 24287                 1995-01-01                    Egypt         49.3
## 24288                 1990-01-01                    Egypt         45.0
## 24289                 2015-01-01                    Egypt         61.0
## 24290                 2010-01-01                    Egypt         58.2
## 24291                 2005-01-01                    Egypt         56.9
## 24292                 2000-01-01                    Egypt         54.4
## 24293                 1995-01-01                    Egypt         49.3
## 24294                 1990-01-01                    Egypt         45.0
## 24295                 2015-01-01                    Egypt         61.0
## 24296                 2010-01-01                    Egypt         58.2
## 24297                 2005-01-01                    Egypt         56.9
## 24298                 2000-01-01                    Egypt         54.4
## 24299                 1995-01-01                    Egypt         49.3
## 24300                 1990-01-01                    Egypt         45.0
## 24301                 2015-01-01                    Nepal         50.8
## 24302                 2010-01-01                    Nepal         48.2
## 24303                 2005-01-01                    Nepal         45.7
## 24304                 2000-01-01                    Nepal         41.6
## 24305                 1995-01-01                    Nepal         37.1
## 24306                 1990-01-01                    Nepal         34.0
## 24307                 2015-01-01                    Egypt         61.0
## 24308                 2010-01-01                    Egypt         58.2
## 24309                 2005-01-01                    Egypt         56.9
## 24310                 2000-01-01                    Egypt         54.4
## 24311                 1995-01-01                    Egypt         49.3
## 24312                 1990-01-01                    Egypt         45.0
## 24313                 2015-01-01                    Egypt         61.0
## 24314                 2010-01-01                    Egypt         58.2
## 24315                 2005-01-01                    Egypt         56.9
## 24316                 2000-01-01                    Egypt         54.4
## 24317                 1995-01-01                    Egypt         49.3
## 24318                 1990-01-01                    Egypt         45.0
## 24319                 2015-01-01                    Egypt         61.0
## 24320                 2010-01-01                    Egypt         58.2
## 24321                 2005-01-01                    Egypt         56.9
## 24322                 2000-01-01                    Egypt         54.4
## 24323                 1995-01-01                    Egypt         49.3
## 24324                 1990-01-01                    Egypt         45.0
## 24325                 2015-01-01                    Egypt         61.0
## 24326                 2010-01-01                    Egypt         58.2
## 24327                 2005-01-01                    Egypt         56.9
## 24328                 2000-01-01                    Egypt         54.4
## 24329                 1995-01-01                    Egypt         49.3
## 24330                 1990-01-01                    Egypt         45.0
## 24331                 2015-01-01                    Egypt         61.0
## 24332                 2010-01-01                    Egypt         58.2
## 24333                 2005-01-01                    Egypt         56.9
## 24334                 2000-01-01                    Egypt         54.4
## 24335                 1995-01-01                    Egypt         49.3
## 24336                 1990-01-01                    Egypt         45.0
## 24337                 2015-01-01                    Egypt         61.0
## 24338                 2010-01-01                    Egypt         58.2
## 24339                 2005-01-01                    Egypt         56.9
## 24340                 2000-01-01                    Egypt         54.4
## 24341                 1995-01-01                    Egypt         49.3
## 24342                 1990-01-01                    Egypt         45.0
## 24343                 2015-01-01                    Egypt         61.0
## 24344                 2010-01-01                    Egypt         58.2
## 24345                 2005-01-01                    Egypt         56.9
## 24346                 2000-01-01                    Egypt         54.4
## 24347                 1995-01-01                    Egypt         49.3
## 24348                 1990-01-01                    Egypt         45.0
## 24349                 2015-01-01                    Egypt         61.0
## 24350                 2010-01-01                    Egypt         58.2
## 24351                 2005-01-01                    Egypt         56.9
## 24352                 2000-01-01                    Egypt         54.4
## 24353                 1995-01-01                    Egypt         49.3
## 24354                 1990-01-01                    Egypt         45.0
## 24355                 2015-01-01                    Egypt         61.0
## 24356                 2010-01-01                    Egypt         58.2
## 24357                 2005-01-01                    Egypt         56.9
## 24358                 2000-01-01                    Egypt         54.4
## 24359                 1995-01-01                    Egypt         49.3
## 24360                 1990-01-01                    Egypt         45.0
## 24361                 2015-01-01                    Egypt         61.0
## 24362                 2010-01-01                    Egypt         58.2
## 24363                 2005-01-01                    Egypt         56.9
## 24364                 2000-01-01                    Egypt         54.4
## 24365                 1995-01-01                    Egypt         49.3
## 24366                 1990-01-01                    Egypt         45.0
## 24367                 2015-01-01                    Egypt         61.0
## 24368                 2010-01-01                    Egypt         58.2
## 24369                 2005-01-01                    Egypt         56.9
## 24370                 2000-01-01                    Egypt         54.4
## 24371                 1995-01-01                    Egypt         49.3
## 24372                 1990-01-01                    Egypt         45.0
## 24373                 2015-01-01                    Egypt         61.0
## 24374                 2010-01-01                    Egypt         58.2
## 24375                 2005-01-01                    Egypt         56.9
## 24376                 2000-01-01                    Egypt         54.4
## 24377                 1995-01-01                    Egypt         49.3
## 24378                 1990-01-01                    Egypt         45.0
## 24379                 2015-01-01                    Egypt         61.0
## 24380                 2010-01-01                    Egypt         58.2
## 24381                 2005-01-01                    Egypt         56.9
## 24382                 2000-01-01                    Egypt         54.4
## 24383                 1995-01-01                    Egypt         49.3
## 24384                 1990-01-01                    Egypt         45.0
## 24385                 2015-01-01                    Egypt         61.0
## 24386                 2010-01-01                    Egypt         58.2
## 24387                 2005-01-01                    Egypt         56.9
## 24388                 2000-01-01                    Egypt         54.4
## 24389                 1995-01-01                    Egypt         49.3
## 24390                 1990-01-01                    Egypt         45.0
## 24391                 2015-01-01                    Egypt         61.0
## 24392                 2010-01-01                    Egypt         58.2
## 24393                 2005-01-01                    Egypt         56.9
## 24394                 2000-01-01                    Egypt         54.4
## 24395                 1995-01-01                    Egypt         49.3
## 24396                 1990-01-01                    Egypt         45.0
## 24397                 2015-01-01                    Egypt         61.0
## 24398                 2010-01-01                    Egypt         58.2
## 24399                 2005-01-01                    Egypt         56.9
## 24400                 2000-01-01                    Egypt         54.4
## 24401                 1995-01-01                    Egypt         49.3
## 24402                 1990-01-01                    Egypt         45.0
## 24403                 2015-01-01              El Salvador         64.4
## 24404                 2010-01-01              El Salvador         62.2
## 24405                 2005-01-01              El Salvador         59.6
## 24406                 2000-01-01              El Salvador         55.3
## 24407                 1995-01-01              El Salvador         49.0
## 24408                 1990-01-01              El Salvador         44.3
## 24409                 2015-01-01              El Salvador         64.4
## 24410                 2010-01-01              El Salvador         62.2
## 24411                 2005-01-01              El Salvador         59.6
## 24412                 2000-01-01              El Salvador         55.3
## 24413                 1995-01-01              El Salvador         49.0
## 24414                 1990-01-01              El Salvador         44.3
## 24415                 2015-01-01              El Salvador         64.4
## 24416                 2010-01-01              El Salvador         62.2
## 24417                 2005-01-01              El Salvador         59.6
## 24418                 2000-01-01              El Salvador         55.3
## 24419                 1995-01-01              El Salvador         49.0
## 24420                 1990-01-01              El Salvador         44.3
## 24421                 2015-01-01              El Salvador         64.4
## 24422                 2010-01-01              El Salvador         62.2
## 24423                 2005-01-01              El Salvador         59.6
## 24424                 2000-01-01              El Salvador         55.3
## 24425                 1995-01-01              El Salvador         49.0
## 24426                 1990-01-01              El Salvador         44.3
## 24427                 2015-01-01              El Salvador         64.4
## 24428                 2010-01-01              El Salvador         62.2
## 24429                 2005-01-01              El Salvador         59.6
## 24430                 2000-01-01              El Salvador         55.3
## 24431                 1995-01-01              El Salvador         49.0
## 24432                 1990-01-01              El Salvador         44.3
## 24433                 2015-01-01              El Salvador         64.4
## 24434                 2010-01-01              El Salvador         62.2
## 24435                 2005-01-01              El Salvador         59.6
## 24436                 2000-01-01              El Salvador         55.3
## 24437                 1995-01-01              El Salvador         49.0
## 24438                 1990-01-01              El Salvador         44.3
## 24439                 2015-01-01              El Salvador         64.4
## 24440                 2010-01-01              El Salvador         62.2
## 24441                 2005-01-01              El Salvador         59.6
## 24442                 2000-01-01              El Salvador         55.3
## 24443                 1995-01-01              El Salvador         49.0
## 24444                 1990-01-01              El Salvador         44.3
## 24445                 2015-01-01              El Salvador         64.4
## 24446                 2010-01-01              El Salvador         62.2
## 24447                 2005-01-01              El Salvador         59.6
## 24448                 2000-01-01              El Salvador         55.3
## 24449                 1995-01-01              El Salvador         49.0
## 24450                 1990-01-01              El Salvador         44.3
## 24451                 2015-01-01              El Salvador         64.4
## 24452                 2010-01-01              El Salvador         62.2
## 24453                 2005-01-01              El Salvador         59.6
## 24454                 2000-01-01              El Salvador         55.3
## 24455                 1995-01-01              El Salvador         49.0
## 24456                 1990-01-01              El Salvador         44.3
## 24457                 2015-01-01              El Salvador         64.4
## 24458                 2010-01-01              El Salvador         62.2
## 24459                 2005-01-01              El Salvador         59.6
## 24460                 2000-01-01              El Salvador         55.3
## 24461                 1995-01-01              El Salvador         49.0
## 24462                 1990-01-01              El Salvador         44.3
## 24463                 2015-01-01              El Salvador         64.4
## 24464                 2010-01-01              El Salvador         62.2
## 24465                 2005-01-01              El Salvador         59.6
## 24466                 2000-01-01              El Salvador         55.3
## 24467                 1995-01-01              El Salvador         49.0
## 24468                 1990-01-01              El Salvador         44.3
## 24469                 2015-01-01              El Salvador         64.4
## 24470                 2010-01-01              El Salvador         62.2
## 24471                 2005-01-01              El Salvador         59.6
## 24472                 2000-01-01              El Salvador         55.3
## 24473                 1995-01-01              El Salvador         49.0
## 24474                 1990-01-01              El Salvador         44.3
## 24475                 2015-01-01              El Salvador         64.4
## 24476                 2010-01-01              El Salvador         62.2
## 24477                 2005-01-01              El Salvador         59.6
## 24478                 2000-01-01              El Salvador         55.3
## 24479                 1995-01-01              El Salvador         49.0
## 24480                 1990-01-01              El Salvador         44.3
## 24481                 2015-01-01              El Salvador         64.4
## 24482                 2010-01-01              El Salvador         62.2
## 24483                 2005-01-01              El Salvador         59.6
## 24484                 2000-01-01              El Salvador         55.3
## 24485                 1995-01-01              El Salvador         49.0
## 24486                 1990-01-01              El Salvador         44.3
## 24487                 2015-01-01              El Salvador         64.4
## 24488                 2010-01-01              El Salvador         62.2
## 24489                 2005-01-01              El Salvador         59.6
## 24490                 2000-01-01              El Salvador         55.3
## 24491                 1995-01-01              El Salvador         49.0
## 24492                 1990-01-01              El Salvador         44.3
## 24493                 2015-01-01              El Salvador         64.4
## 24494                 2010-01-01              El Salvador         62.2
## 24495                 2005-01-01              El Salvador         59.6
## 24496                 2000-01-01              El Salvador         55.3
## 24497                 1995-01-01              El Salvador         49.0
## 24498                 1990-01-01              El Salvador         44.3
## 24499                 2015-01-01              El Salvador         64.4
## 24500                 2010-01-01              El Salvador         62.2
## 24501                 2005-01-01              El Salvador         59.6
## 24502                 2000-01-01              El Salvador         55.3
## 24503                 1995-01-01              El Salvador         49.0
## 24504                 1990-01-01              El Salvador         44.3
## 24505                 2015-01-01              El Salvador         64.4
## 24506                 2010-01-01              El Salvador         62.2
## 24507                 2005-01-01              El Salvador         59.6
## 24508                 2000-01-01              El Salvador         55.3
## 24509                 1995-01-01              El Salvador         49.0
## 24510                 1990-01-01              El Salvador         44.3
## 24511                 2015-01-01              El Salvador         64.4
## 24512                 2010-01-01              El Salvador         62.2
## 24513                 2005-01-01              El Salvador         59.6
## 24514                 2000-01-01              El Salvador         55.3
## 24515                 1995-01-01              El Salvador         49.0
## 24516                 1990-01-01              El Salvador         44.3
## 24517                 2015-01-01              El Salvador         64.4
## 24518                 2010-01-01              El Salvador         62.2
## 24519                 2005-01-01              El Salvador         59.6
## 24520                 2000-01-01              El Salvador         55.3
## 24521                 1995-01-01              El Salvador         49.0
## 24522                 1990-01-01              El Salvador         44.3
## 24523                 2015-01-01              El Salvador         64.4
## 24524                 2010-01-01              El Salvador         62.2
## 24525                 2005-01-01              El Salvador         59.6
## 24526                 2000-01-01              El Salvador         55.3
## 24527                 1995-01-01              El Salvador         49.0
## 24528                 1990-01-01              El Salvador         44.3
## 24529                 2015-01-01              El Salvador         64.4
## 24530                 2010-01-01              El Salvador         62.2
## 24531                 2005-01-01              El Salvador         59.6
## 24532                 2000-01-01              El Salvador         55.3
## 24533                 1995-01-01              El Salvador         49.0
## 24534                 1990-01-01              El Salvador         44.3
## 24535                 2015-01-01              El Salvador         64.4
## 24536                 2010-01-01              El Salvador         62.2
## 24537                 2005-01-01              El Salvador         59.6
## 24538                 2000-01-01              El Salvador         55.3
## 24539                 1995-01-01              El Salvador         49.0
## 24540                 1990-01-01              El Salvador         44.3
## 24541                 2015-01-01              El Salvador         64.4
## 24542                 2010-01-01              El Salvador         62.2
## 24543                 2005-01-01              El Salvador         59.6
## 24544                 2000-01-01              El Salvador         55.3
## 24545                 1995-01-01              El Salvador         49.0
## 24546                 1990-01-01              El Salvador         44.3
## 24547                 2015-01-01              El Salvador         64.4
## 24548                 2010-01-01              El Salvador         62.2
## 24549                 2005-01-01              El Salvador         59.6
## 24550                 2000-01-01              El Salvador         55.3
## 24551                 1995-01-01              El Salvador         49.0
## 24552                 1990-01-01              El Salvador         44.3
## 24553                 2015-01-01              El Salvador         64.4
## 24554                 2010-01-01              El Salvador         62.2
## 24555                 2005-01-01              El Salvador         59.6
## 24556                 2000-01-01              El Salvador         55.3
## 24557                 1995-01-01              El Salvador         49.0
## 24558                 1990-01-01              El Salvador         44.3
## 24559                 2015-01-01              El Salvador         64.4
## 24560                 2010-01-01              El Salvador         62.2
## 24561                 2005-01-01              El Salvador         59.6
## 24562                 2000-01-01              El Salvador         55.3
## 24563                 1995-01-01              El Salvador         49.0
## 24564                 1990-01-01              El Salvador         44.3
## 24565                 2015-01-01              El Salvador         64.4
## 24566                 2010-01-01              El Salvador         62.2
## 24567                 2005-01-01              El Salvador         59.6
## 24568                 2000-01-01              El Salvador         55.3
## 24569                 1995-01-01              El Salvador         49.0
## 24570                 1990-01-01              El Salvador         44.3
## 24571                 2015-01-01              El Salvador         64.4
## 24572                 2010-01-01              El Salvador         62.2
## 24573                 2005-01-01              El Salvador         59.6
## 24574                 2000-01-01              El Salvador         55.3
## 24575                 1995-01-01              El Salvador         49.0
## 24576                 1990-01-01              El Salvador         44.3
## 24577                 2015-01-01              El Salvador         64.4
## 24578                 2010-01-01              El Salvador         62.2
## 24579                 2005-01-01              El Salvador         59.6
## 24580                 2000-01-01              El Salvador         55.3
## 24581                 1995-01-01              El Salvador         49.0
## 24582                 1990-01-01              El Salvador         44.3
## 24583                 2015-01-01              El Salvador         64.4
## 24584                 2010-01-01              El Salvador         62.2
## 24585                 2005-01-01              El Salvador         59.6
## 24586                 2000-01-01              El Salvador         55.3
## 24587                 1995-01-01              El Salvador         49.0
## 24588                 1990-01-01              El Salvador         44.3
## 24589                 2015-01-01              El Salvador         64.4
## 24590                 2010-01-01              El Salvador         62.2
## 24591                 2005-01-01              El Salvador         59.6
## 24592                 2000-01-01              El Salvador         55.3
## 24593                 1995-01-01              El Salvador         49.0
## 24594                 1990-01-01              El Salvador         44.3
## 24595                 2015-01-01              El Salvador         64.4
## 24596                 2010-01-01              El Salvador         62.2
## 24597                 2005-01-01              El Salvador         59.6
## 24598                 2000-01-01              El Salvador         55.3
## 24599                 1995-01-01              El Salvador         49.0
## 24600                 1990-01-01              El Salvador         44.3
## 24601                 2015-01-01              El Salvador         64.4
## 24602                 2010-01-01              El Salvador         62.2
## 24603                 2005-01-01              El Salvador         59.6
## 24604                 2000-01-01              El Salvador         55.3
## 24605                 1995-01-01              El Salvador         49.0
## 24606                 1990-01-01              El Salvador         44.3
## 24607                 2015-01-01              El Salvador         64.4
## 24608                 2010-01-01              El Salvador         62.2
## 24609                 2005-01-01              El Salvador         59.6
## 24610                 2000-01-01              El Salvador         55.3
## 24611                 1995-01-01              El Salvador         49.0
## 24612                 1990-01-01              El Salvador         44.3
## 24613                 2015-01-01              El Salvador         64.4
## 24614                 2010-01-01              El Salvador         62.2
## 24615                 2005-01-01              El Salvador         59.6
## 24616                 2000-01-01              El Salvador         55.3
## 24617                 1995-01-01              El Salvador         49.0
## 24618                 1990-01-01              El Salvador         44.3
## 24619                 2015-01-01              El Salvador         64.4
## 24620                 2010-01-01              El Salvador         62.2
## 24621                 2005-01-01              El Salvador         59.6
## 24622                 2000-01-01              El Salvador         55.3
## 24623                 1995-01-01              El Salvador         49.0
## 24624                 1990-01-01              El Salvador         44.3
## 24625                 2015-01-01              El Salvador         64.4
## 24626                 2010-01-01              El Salvador         62.2
## 24627                 2005-01-01              El Salvador         59.6
## 24628                 2000-01-01              El Salvador         55.3
## 24629                 1995-01-01              El Salvador         49.0
## 24630                 1990-01-01              El Salvador         44.3
## 24631                 2015-01-01              El Salvador         64.4
## 24632                 2010-01-01              El Salvador         62.2
## 24633                 2005-01-01              El Salvador         59.6
## 24634                 2000-01-01              El Salvador         55.3
## 24635                 1995-01-01              El Salvador         49.0
## 24636                 1990-01-01              El Salvador         44.3
## 24637                 2015-01-01              El Salvador         64.4
## 24638                 2010-01-01              El Salvador         62.2
## 24639                 2005-01-01              El Salvador         59.6
## 24640                 2000-01-01              El Salvador         55.3
## 24641                 1995-01-01              El Salvador         49.0
## 24642                 1990-01-01              El Salvador         44.3
## 24643                 2015-01-01              El Salvador         64.4
## 24644                 2010-01-01              El Salvador         62.2
## 24645                 2005-01-01              El Salvador         59.6
## 24646                 2000-01-01              El Salvador         55.3
## 24647                 1995-01-01              El Salvador         49.0
## 24648                 1990-01-01              El Salvador         44.3
## 24649                 2015-01-01              El Salvador         64.4
## 24650                 2010-01-01              El Salvador         62.2
## 24651                 2005-01-01              El Salvador         59.6
## 24652                 2000-01-01              El Salvador         55.3
## 24653                 1995-01-01              El Salvador         49.0
## 24654                 1990-01-01              El Salvador         44.3
## 24655                 2015-01-01              El Salvador         64.4
## 24656                 2010-01-01              El Salvador         62.2
## 24657                 2005-01-01              El Salvador         59.6
## 24658                 2000-01-01              El Salvador         55.3
## 24659                 1995-01-01              El Salvador         49.0
## 24660                 1990-01-01              El Salvador         44.3
## 24661                 2015-01-01              El Salvador         64.4
## 24662                 2010-01-01              El Salvador         62.2
## 24663                 2005-01-01              El Salvador         59.6
## 24664                 2000-01-01              El Salvador         55.3
## 24665                 1995-01-01              El Salvador         49.0
## 24666                 1990-01-01              El Salvador         44.3
## 24667                 2015-01-01              El Salvador         64.4
## 24668                 2010-01-01              El Salvador         62.2
## 24669                 2005-01-01              El Salvador         59.6
## 24670                 2000-01-01              El Salvador         55.3
## 24671                 1995-01-01              El Salvador         49.0
## 24672                 1990-01-01              El Salvador         44.3
## 24673                 2015-01-01              El Salvador         64.4
## 24674                 2010-01-01              El Salvador         62.2
## 24675                 2005-01-01              El Salvador         59.6
## 24676                 2000-01-01              El Salvador         55.3
## 24677                 1995-01-01              El Salvador         49.0
## 24678                 1990-01-01              El Salvador         44.3
## 24679                 2015-01-01              El Salvador         64.4
## 24680                 2010-01-01              El Salvador         62.2
## 24681                 2005-01-01              El Salvador         59.6
## 24682                 2000-01-01              El Salvador         55.3
## 24683                 1995-01-01              El Salvador         49.0
## 24684                 1990-01-01              El Salvador         44.3
## 24685                 2015-01-01              El Salvador         64.4
## 24686                 2010-01-01              El Salvador         62.2
## 24687                 2005-01-01              El Salvador         59.6
## 24688                 2000-01-01              El Salvador         55.3
## 24689                 1995-01-01              El Salvador         49.0
## 24690                 1990-01-01              El Salvador         44.3
## 24691                 2015-01-01              El Salvador         64.4
## 24692                 2010-01-01              El Salvador         62.2
## 24693                 2005-01-01              El Salvador         59.6
## 24694                 2000-01-01              El Salvador         55.3
## 24695                 1995-01-01              El Salvador         49.0
## 24696                 1990-01-01              El Salvador         44.3
## 24697                 2015-01-01              El Salvador         64.4
## 24698                 2010-01-01              El Salvador         62.2
## 24699                 2005-01-01              El Salvador         59.6
## 24700                 2000-01-01              El Salvador         55.3
## 24701                 1995-01-01              El Salvador         49.0
## 24702                 1990-01-01              El Salvador         44.3
## 24703                 2015-01-01              El Salvador         64.4
## 24704                 2010-01-01              El Salvador         62.2
## 24705                 2005-01-01              El Salvador         59.6
## 24706                 2000-01-01              El Salvador         55.3
## 24707                 1995-01-01              El Salvador         49.0
## 24708                 1990-01-01              El Salvador         44.3
## 24709                 2015-01-01              El Salvador         64.4
## 24710                 2010-01-01              El Salvador         62.2
## 24711                 2005-01-01              El Salvador         59.6
## 24712                 2000-01-01              El Salvador         55.3
## 24713                 1995-01-01              El Salvador         49.0
## 24714                 1990-01-01              El Salvador         44.3
## 24715                 2015-01-01              El Salvador         64.4
## 24716                 2010-01-01              El Salvador         62.2
## 24717                 2005-01-01              El Salvador         59.6
## 24718                 2000-01-01              El Salvador         55.3
## 24719                 1995-01-01              El Salvador         49.0
## 24720                 1990-01-01              El Salvador         44.3
## 24721                 2015-01-01              El Salvador         64.4
## 24722                 2010-01-01              El Salvador         62.2
## 24723                 2005-01-01              El Salvador         59.6
## 24724                 2000-01-01              El Salvador         55.3
## 24725                 1995-01-01              El Salvador         49.0
## 24726                 1990-01-01              El Salvador         44.3
## 24727                 2015-01-01              El Salvador         64.4
## 24728                 2010-01-01              El Salvador         62.2
## 24729                 2005-01-01              El Salvador         59.6
## 24730                 2000-01-01              El Salvador         55.3
## 24731                 1995-01-01              El Salvador         49.0
## 24732                 1990-01-01              El Salvador         44.3
## 24733                 2015-01-01              El Salvador         64.4
## 24734                 2010-01-01              El Salvador         62.2
## 24735                 2005-01-01              El Salvador         59.6
## 24736                 2000-01-01              El Salvador         55.3
## 24737                 1995-01-01              El Salvador         49.0
## 24738                 1990-01-01              El Salvador         44.3
## 24739                 2015-01-01              El Salvador         64.4
## 24740                 2010-01-01              El Salvador         62.2
## 24741                 2005-01-01              El Salvador         59.6
## 24742                 2000-01-01              El Salvador         55.3
## 24743                 1995-01-01              El Salvador         49.0
## 24744                 1990-01-01              El Salvador         44.3
## 24745                 2015-01-01              El Salvador         64.4
## 24746                 2010-01-01              El Salvador         62.2
## 24747                 2005-01-01              El Salvador         59.6
## 24748                 2000-01-01              El Salvador         55.3
## 24749                 1995-01-01              El Salvador         49.0
## 24750                 1990-01-01              El Salvador         44.3
## 24751                 2015-01-01              El Salvador         64.4
## 24752                 2010-01-01              El Salvador         62.2
## 24753                 2005-01-01              El Salvador         59.6
## 24754                 2000-01-01              El Salvador         55.3
## 24755                 1995-01-01              El Salvador         49.0
## 24756                 1990-01-01              El Salvador         44.3
## 24757                 2015-01-01              El Salvador         64.4
## 24758                 2010-01-01              El Salvador         62.2
## 24759                 2005-01-01              El Salvador         59.6
## 24760                 2000-01-01              El Salvador         55.3
## 24761                 1995-01-01              El Salvador         49.0
## 24762                 1990-01-01              El Salvador         44.3
## 24763                 2015-01-01              El Salvador         64.4
## 24764                 2010-01-01              El Salvador         62.2
## 24765                 2005-01-01              El Salvador         59.6
## 24766                 2000-01-01              El Salvador         55.3
## 24767                 1995-01-01              El Salvador         49.0
## 24768                 1990-01-01              El Salvador         44.3
## 24769                 2015-01-01              El Salvador         64.4
## 24770                 2010-01-01              El Salvador         62.2
## 24771                 2005-01-01              El Salvador         59.6
## 24772                 2000-01-01              El Salvador         55.3
## 24773                 1995-01-01              El Salvador         49.0
## 24774                 1990-01-01              El Salvador         44.3
## 24775                 2015-01-01              El Salvador         64.4
## 24776                 2010-01-01              El Salvador         62.2
## 24777                 2005-01-01              El Salvador         59.6
## 24778                 2000-01-01              El Salvador         55.3
## 24779                 1995-01-01              El Salvador         49.0
## 24780                 1990-01-01              El Salvador         44.3
## 24781                 2015-01-01              El Salvador         64.4
## 24782                 2010-01-01              El Salvador         62.2
## 24783                 2005-01-01              El Salvador         59.6
## 24784                 2000-01-01              El Salvador         55.3
## 24785                 1995-01-01              El Salvador         49.0
## 24786                 1990-01-01              El Salvador         44.3
## 24787                 2015-01-01              El Salvador         64.4
## 24788                 2010-01-01              El Salvador         62.2
## 24789                 2005-01-01              El Salvador         59.6
## 24790                 2000-01-01              El Salvador         55.3
## 24791                 1995-01-01              El Salvador         49.0
## 24792                 1990-01-01              El Salvador         44.3
## 24793                 2015-01-01              El Salvador         64.4
## 24794                 2010-01-01              El Salvador         62.2
## 24795                 2005-01-01              El Salvador         59.6
## 24796                 2000-01-01              El Salvador         55.3
## 24797                 1995-01-01              El Salvador         49.0
## 24798                 1990-01-01              El Salvador         44.3
## 24799                 2015-01-01              El Salvador         64.4
## 24800                 2010-01-01              El Salvador         62.2
## 24801                 2005-01-01              El Salvador         59.6
## 24802                 2000-01-01              El Salvador         55.3
## 24803                 1995-01-01              El Salvador         49.0
## 24804                 1990-01-01              El Salvador         44.3
## 24805                 2015-01-01              El Salvador         64.4
## 24806                 2010-01-01              El Salvador         62.2
## 24807                 2005-01-01              El Salvador         59.6
## 24808                 2000-01-01              El Salvador         55.3
## 24809                 1995-01-01              El Salvador         49.0
## 24810                 1990-01-01              El Salvador         44.3
## 24811                 2015-01-01              El Salvador         64.4
## 24812                 2010-01-01              El Salvador         62.2
## 24813                 2005-01-01              El Salvador         59.6
## 24814                 2000-01-01              El Salvador         55.3
## 24815                 1995-01-01              El Salvador         49.0
## 24816                 1990-01-01              El Salvador         44.3
## 24817                 2015-01-01              El Salvador         64.4
## 24818                 2010-01-01              El Salvador         62.2
## 24819                 2005-01-01              El Salvador         59.6
## 24820                 2000-01-01              El Salvador         55.3
## 24821                 1995-01-01              El Salvador         49.0
## 24822                 1990-01-01              El Salvador         44.3
## 24823                 2015-01-01              El Salvador         64.4
## 24824                 2010-01-01              El Salvador         62.2
## 24825                 2005-01-01              El Salvador         59.6
## 24826                 2000-01-01              El Salvador         55.3
## 24827                 1995-01-01              El Salvador         49.0
## 24828                 1990-01-01              El Salvador         44.3
## 24829                 2015-01-01              El Salvador         64.4
## 24830                 2010-01-01              El Salvador         62.2
## 24831                 2005-01-01              El Salvador         59.6
## 24832                 2000-01-01              El Salvador         55.3
## 24833                 1995-01-01              El Salvador         49.0
## 24834                 1990-01-01              El Salvador         44.3
## 24835                 2015-01-01              El Salvador         64.4
## 24836                 2010-01-01              El Salvador         62.2
## 24837                 2005-01-01              El Salvador         59.6
## 24838                 2000-01-01              El Salvador         55.3
## 24839                 1995-01-01              El Salvador         49.0
## 24840                 1990-01-01              El Salvador         44.3
## 24841                 2015-01-01              El Salvador         64.4
## 24842                 2010-01-01              El Salvador         62.2
## 24843                 2005-01-01              El Salvador         59.6
## 24844                 2000-01-01              El Salvador         55.3
## 24845                 1995-01-01              El Salvador         49.0
## 24846                 1990-01-01              El Salvador         44.3
## 24847                 2015-01-01              El Salvador         64.4
## 24848                 2010-01-01              El Salvador         62.2
## 24849                 2005-01-01              El Salvador         59.6
## 24850                 2000-01-01              El Salvador         55.3
## 24851                 1995-01-01              El Salvador         49.0
## 24852                 1990-01-01              El Salvador         44.3
## 24853                 2015-01-01              El Salvador         64.4
## 24854                 2010-01-01              El Salvador         62.2
## 24855                 2005-01-01              El Salvador         59.6
## 24856                 2000-01-01              El Salvador         55.3
## 24857                 1995-01-01              El Salvador         49.0
## 24858                 1990-01-01              El Salvador         44.3
## 24859                 2015-01-01              El Salvador         64.4
## 24860                 2010-01-01              El Salvador         62.2
## 24861                 2005-01-01              El Salvador         59.6
## 24862                 2000-01-01              El Salvador         55.3
## 24863                 1995-01-01              El Salvador         49.0
## 24864                 1990-01-01              El Salvador         44.3
## 24865                 2015-01-01              El Salvador         64.4
## 24866                 2010-01-01              El Salvador         62.2
## 24867                 2005-01-01              El Salvador         59.6
## 24868                 2000-01-01              El Salvador         55.3
## 24869                 1995-01-01              El Salvador         49.0
## 24870                 1990-01-01              El Salvador         44.3
## 24871                 2015-01-01              El Salvador         64.4
## 24872                 2010-01-01              El Salvador         62.2
## 24873                 2005-01-01              El Salvador         59.6
## 24874                 2000-01-01              El Salvador         55.3
## 24875                 1995-01-01              El Salvador         49.0
## 24876                 1990-01-01              El Salvador         44.3
## 24877                 2015-01-01              El Salvador         64.4
## 24878                 2010-01-01              El Salvador         62.2
## 24879                 2005-01-01              El Salvador         59.6
## 24880                 2000-01-01              El Salvador         55.3
## 24881                 1995-01-01              El Salvador         49.0
## 24882                 1990-01-01              El Salvador         44.3
## 24883                 2015-01-01              El Salvador         64.4
## 24884                 2010-01-01              El Salvador         62.2
## 24885                 2005-01-01              El Salvador         59.6
## 24886                 2000-01-01              El Salvador         55.3
## 24887                 1995-01-01              El Salvador         49.0
## 24888                 1990-01-01              El Salvador         44.3
## 24889                 2015-01-01              El Salvador         64.4
## 24890                 2010-01-01              El Salvador         62.2
## 24891                 2005-01-01              El Salvador         59.6
## 24892                 2000-01-01              El Salvador         55.3
## 24893                 1995-01-01              El Salvador         49.0
## 24894                 1990-01-01              El Salvador         44.3
## 24895                 2015-01-01              El Salvador         64.4
## 24896                 2010-01-01              El Salvador         62.2
## 24897                 2005-01-01              El Salvador         59.6
## 24898                 2000-01-01              El Salvador         55.3
## 24899                 1995-01-01              El Salvador         49.0
## 24900                 1990-01-01              El Salvador         44.3
## 24901                 2015-01-01        Equatorial Guinea         48.4
## 24902                 2010-01-01        Equatorial Guinea         45.6
## 24903                 2005-01-01        Equatorial Guinea         42.9
## 24904                 2000-01-01        Equatorial Guinea         35.4
## 24905                 1995-01-01        Equatorial Guinea         27.5
## 24906                 1990-01-01        Equatorial Guinea         26.1
## 24907                 2015-01-01        Equatorial Guinea         48.4
## 24908                 2010-01-01        Equatorial Guinea         45.6
## 24909                 2005-01-01        Equatorial Guinea         42.9
## 24910                 2000-01-01        Equatorial Guinea         35.4
## 24911                 1995-01-01        Equatorial Guinea         27.5
## 24912                 1990-01-01        Equatorial Guinea         26.1
## 24913                 2015-01-01        Equatorial Guinea         48.4
## 24914                 2010-01-01        Equatorial Guinea         45.6
## 24915                 2005-01-01        Equatorial Guinea         42.9
## 24916                 2000-01-01        Equatorial Guinea         35.4
## 24917                 1995-01-01        Equatorial Guinea         27.5
## 24918                 1990-01-01        Equatorial Guinea         26.1
## 24919                 2015-01-01        Equatorial Guinea         48.4
## 24920                 2010-01-01        Equatorial Guinea         45.6
## 24921                 2005-01-01        Equatorial Guinea         42.9
## 24922                 2000-01-01        Equatorial Guinea         35.4
## 24923                 1995-01-01        Equatorial Guinea         27.5
## 24924                 1990-01-01        Equatorial Guinea         26.1
## 24925                 2015-01-01        Equatorial Guinea         48.4
## 24926                 2010-01-01        Equatorial Guinea         45.6
## 24927                 2005-01-01        Equatorial Guinea         42.9
## 24928                 2000-01-01        Equatorial Guinea         35.4
## 24929                 1995-01-01        Equatorial Guinea         27.5
## 24930                 1990-01-01        Equatorial Guinea         26.1
## 24931                 2015-01-01        Equatorial Guinea         48.4
## 24932                 2010-01-01        Equatorial Guinea         45.6
## 24933                 2005-01-01        Equatorial Guinea         42.9
## 24934                 2000-01-01        Equatorial Guinea         35.4
## 24935                 1995-01-01        Equatorial Guinea         27.5
## 24936                 1990-01-01        Equatorial Guinea         26.1
## 24937                 2015-01-01        Equatorial Guinea         48.4
## 24938                 2010-01-01        Equatorial Guinea         45.6
## 24939                 2005-01-01        Equatorial Guinea         42.9
## 24940                 2000-01-01        Equatorial Guinea         35.4
## 24941                 1995-01-01        Equatorial Guinea         27.5
## 24942                 1990-01-01        Equatorial Guinea         26.1
## 24943                 2015-01-01        Equatorial Guinea         48.4
## 24944                 2010-01-01        Equatorial Guinea         45.6
## 24945                 2005-01-01        Equatorial Guinea         42.9
## 24946                 2000-01-01        Equatorial Guinea         35.4
## 24947                 1995-01-01        Equatorial Guinea         27.5
## 24948                 1990-01-01        Equatorial Guinea         26.1
## 24949                 2015-01-01        Equatorial Guinea         48.4
## 24950                 2010-01-01        Equatorial Guinea         45.6
## 24951                 2005-01-01        Equatorial Guinea         42.9
## 24952                 2000-01-01        Equatorial Guinea         35.4
## 24953                 1995-01-01        Equatorial Guinea         27.5
## 24954                 1990-01-01        Equatorial Guinea         26.1
## 24955                 2015-01-01        Equatorial Guinea         48.4
## 24956                 2010-01-01        Equatorial Guinea         45.6
## 24957                 2005-01-01        Equatorial Guinea         42.9
## 24958                 2000-01-01        Equatorial Guinea         35.4
## 24959                 1995-01-01        Equatorial Guinea         27.5
## 24960                 1990-01-01        Equatorial Guinea         26.1
## 24961                 2015-01-01        Equatorial Guinea         48.4
## 24962                 2010-01-01        Equatorial Guinea         45.6
## 24963                 2005-01-01        Equatorial Guinea         42.9
## 24964                 2000-01-01        Equatorial Guinea         35.4
## 24965                 1995-01-01        Equatorial Guinea         27.5
## 24966                 1990-01-01        Equatorial Guinea         26.1
## 24967                 2015-01-01        Equatorial Guinea         48.4
## 24968                 2010-01-01        Equatorial Guinea         45.6
## 24969                 2005-01-01        Equatorial Guinea         42.9
## 24970                 2000-01-01        Equatorial Guinea         35.4
## 24971                 1995-01-01        Equatorial Guinea         27.5
## 24972                 1990-01-01        Equatorial Guinea         26.1
## 24973                 2015-01-01        Equatorial Guinea         48.4
## 24974                 2010-01-01        Equatorial Guinea         45.6
## 24975                 2005-01-01        Equatorial Guinea         42.9
## 24976                 2000-01-01        Equatorial Guinea         35.4
## 24977                 1995-01-01        Equatorial Guinea         27.5
## 24978                 1990-01-01        Equatorial Guinea         26.1
## 24979                 2015-01-01        Equatorial Guinea         48.4
## 24980                 2010-01-01        Equatorial Guinea         45.6
## 24981                 2005-01-01        Equatorial Guinea         42.9
## 24982                 2000-01-01        Equatorial Guinea         35.4
## 24983                 1995-01-01        Equatorial Guinea         27.5
## 24984                 1990-01-01        Equatorial Guinea         26.1
## 24985                 2015-01-01        Equatorial Guinea         48.4
## 24986                 2010-01-01        Equatorial Guinea         45.6
## 24987                 2005-01-01        Equatorial Guinea         42.9
## 24988                 2000-01-01        Equatorial Guinea         35.4
## 24989                 1995-01-01        Equatorial Guinea         27.5
## 24990                 1990-01-01        Equatorial Guinea         26.1
## 24991                 2015-01-01        Equatorial Guinea         48.4
## 24992                 2010-01-01        Equatorial Guinea         45.6
## 24993                 2005-01-01        Equatorial Guinea         42.9
## 24994                 2000-01-01        Equatorial Guinea         35.4
## 24995                 1995-01-01        Equatorial Guinea         27.5
## 24996                 1990-01-01        Equatorial Guinea         26.1
## 24997                 2015-01-01        Equatorial Guinea         48.4
## 24998                 2010-01-01        Equatorial Guinea         45.6
## 24999                 2005-01-01        Equatorial Guinea         42.9
##                                         countermeasures_mitigation
## 1               Health screenings in airports and border crossings
## 2               Health screenings in airports and border crossings
## 3               Health screenings in airports and border crossings
## 4               Health screenings in airports and border crossings
## 5               Health screenings in airports and border crossings
## 6               Health screenings in airports and border crossings
## 7                                Isolation and quarantine policies
## 8                                Isolation and quarantine policies
## 9                                Isolation and quarantine policies
## 10                               Isolation and quarantine policies
## 11                               Isolation and quarantine policies
## 12                               Isolation and quarantine policies
## 13                                             Awareness campaigns
## 14                                             Awareness campaigns
## 15                                             Awareness campaigns
## 16                                             Awareness campaigns
## 17                                             Awareness campaigns
## 18                                             Awareness campaigns
## 19    Emergency administrative structures activated or established
## 20    Emergency administrative structures activated or established
## 21    Emergency administrative structures activated or established
## 22    Emergency administrative structures activated or established
## 23    Emergency administrative structures activated or established
## 24    Emergency administrative structures activated or established
## 25                                         Limit public gatherings
## 26                                         Limit public gatherings
## 27                                         Limit public gatherings
## 28                                         Limit public gatherings
## 29                                         Limit public gatherings
## 30                                         Limit public gatherings
## 31                                                 Border closure 
## 32                                                 Border closure 
## 33                                                 Border closure 
## 34                                                 Border closure 
## 35                                                 Border closure 
## 36                                                 Border closure 
## 37                                                Schools closure 
## 38                                                Schools closure 
## 39                                                Schools closure 
## 40                                                Schools closure 
## 41                                                Schools closure 
## 42                                                Schools closure 
## 43                                         Limit public gatherings
## 44                                         Limit public gatherings
## 45                                         Limit public gatherings
## 46                                         Limit public gatherings
## 47                                         Limit public gatherings
## 48                                         Limit public gatherings
## 49                          Strengthening the public health system
## 50                          Strengthening the public health system
## 51                          Strengthening the public health system
## 52                          Strengthening the public health system
## 53                          Strengthening the public health system
## 54                          Strengthening the public health system
## 55                                   Limit product imports/exports
## 56                                   Limit product imports/exports
## 57                                   Limit product imports/exports
## 58                                   Limit product imports/exports
## 59                                   Limit product imports/exports
## 60                                   Limit product imports/exports
## 61                                                  Border checks 
## 62                                                  Border checks 
## 63                                                  Border checks 
## 64                                                  Border checks 
## 65                                                  Border checks 
## 66                                                  Border checks 
## 67                                             Awareness campaigns
## 68                                             Awareness campaigns
## 69                                             Awareness campaigns
## 70                                             Awareness campaigns
## 71                                             Awareness campaigns
## 72                                             Awareness campaigns
## 73              Health screenings in airports and border crossings
## 74              Health screenings in airports and border crossings
## 75              Health screenings in airports and border crossings
## 76              Health screenings in airports and border crossings
## 77              Health screenings in airports and border crossings
## 78              Health screenings in airports and border crossings
## 79                                International flights suspension
## 80                                International flights suspension
## 81                                International flights suspension
## 82                                International flights suspension
## 83                                International flights suspension
## 84                                International flights suspension
## 85              Health screenings in airports and border crossings
## 86              Health screenings in airports and border crossings
## 87              Health screenings in airports and border crossings
## 88              Health screenings in airports and border crossings
## 89              Health screenings in airports and border crossings
## 90              Health screenings in airports and border crossings
## 91                          Strengthening the public health system
## 92                          Strengthening the public health system
## 93                          Strengthening the public health system
## 94                          Strengthening the public health system
## 95                          Strengthening the public health system
## 96                          Strengthening the public health system
## 97                               Isolation and quarantine policies
## 98                               Isolation and quarantine policies
## 99                               Isolation and quarantine policies
## 100                              Isolation and quarantine policies
## 101                              Isolation and quarantine policies
## 102                              Isolation and quarantine policies
## 103                                            Awareness campaigns
## 104                                            Awareness campaigns
## 105                                            Awareness campaigns
## 106                                            Awareness campaigns
## 107                                            Awareness campaigns
## 108                                            Awareness campaigns
## 109                         Strengthening the public health system
## 110                         Strengthening the public health system
## 111                         Strengthening the public health system
## 112                         Strengthening the public health system
## 113                         Strengthening the public health system
## 114                         Strengthening the public health system
## 115   Emergency administrative structures activated or established
## 116   Emergency administrative structures activated or established
## 117   Emergency administrative structures activated or established
## 118   Emergency administrative structures activated or established
## 119   Emergency administrative structures activated or established
## 120   Emergency administrative structures activated or established
## 121                                            Awareness campaigns
## 122                                            Awareness campaigns
## 123                                            Awareness campaigns
## 124                                            Awareness campaigns
## 125                                            Awareness campaigns
## 126                                            Awareness campaigns
## 127                              Isolation and quarantine policies
## 128                              Isolation and quarantine policies
## 129                              Isolation and quarantine policies
## 130                              Isolation and quarantine policies
## 131                              Isolation and quarantine policies
## 132                              Isolation and quarantine policies
## 133                                    Surveillance and monitoring
## 134                                    Surveillance and monitoring
## 135                                    Surveillance and monitoring
## 136                                    Surveillance and monitoring
## 137                                    Surveillance and monitoring
## 138                                    Surveillance and monitoring
## 139                          Other public health measures enforced
## 140                          Other public health measures enforced
## 141                          Other public health measures enforced
## 142                          Other public health measures enforced
## 143                          Other public health measures enforced
## 144                          Other public health measures enforced
## 145                         Strengthening the public health system
## 146                         Strengthening the public health system
## 147                         Strengthening the public health system
## 148                         Strengthening the public health system
## 149                         Strengthening the public health system
## 150                         Strengthening the public health system
## 151                                   Domestic travel restrictions
## 152                                   Domestic travel restrictions
## 153                                   Domestic travel restrictions
## 154                                   Domestic travel restrictions
## 155                                   Domestic travel restrictions
## 156                                   Domestic travel restrictions
## 157                                    State of emergency declared
## 158                                    State of emergency declared
## 159                                    State of emergency declared
## 160                                    State of emergency declared
## 161                                    State of emergency declared
## 162                                    State of emergency declared
## 163                                            Awareness campaigns
## 164                                            Awareness campaigns
## 165                                            Awareness campaigns
## 166                                            Awareness campaigns
## 167                                            Awareness campaigns
## 168                                            Awareness campaigns
## 169                                        General recommendations
## 170                                        General recommendations
## 171                                        General recommendations
## 172                                        General recommendations
## 173                                        General recommendations
## 174                                        General recommendations
## 175                                                 Border checks 
## 176                                                 Border checks 
## 177                                                 Border checks 
## 178                                                 Border checks 
## 179                                                 Border checks 
## 180                                                 Border checks 
## 181                         Strengthening the public health system
## 182                         Strengthening the public health system
## 183                         Strengthening the public health system
## 184                         Strengthening the public health system
## 185                         Strengthening the public health system
## 186                         Strengthening the public health system
## 187                         Strengthening the public health system
## 188                         Strengthening the public health system
## 189                         Strengthening the public health system
## 190                         Strengthening the public health system
## 191                         Strengthening the public health system
## 192                         Strengthening the public health system
## 193                          Other public health measures enforced
## 194                          Other public health measures enforced
## 195                          Other public health measures enforced
## 196                          Other public health measures enforced
## 197                          Other public health measures enforced
## 198                          Other public health measures enforced
## 199                                            Awareness campaigns
## 200                                            Awareness campaigns
## 201                                            Awareness campaigns
## 202                                            Awareness campaigns
## 203                                            Awareness campaigns
## 204                                            Awareness campaigns
## 205                                               Schools closure 
## 206                                               Schools closure 
## 207                                               Schools closure 
## 208                                               Schools closure 
## 209                                               Schools closure 
## 210                                               Schools closure 
## 211             Health screenings in airports and border crossings
## 212             Health screenings in airports and border crossings
## 213             Health screenings in airports and border crossings
## 214             Health screenings in airports and border crossings
## 215             Health screenings in airports and border crossings
## 216             Health screenings in airports and border crossings
## 217                                    Surveillance and monitoring
## 218                                    Surveillance and monitoring
## 219                                    Surveillance and monitoring
## 220                                    Surveillance and monitoring
## 221                                    Surveillance and monitoring
## 222                                    Surveillance and monitoring
## 223                         Strengthening the public health system
## 224                         Strengthening the public health system
## 225                         Strengthening the public health system
## 226                         Strengthening the public health system
## 227                         Strengthening the public health system
## 228                         Strengthening the public health system
## 229                                    State of emergency declared
## 230                                    State of emergency declared
## 231                                    State of emergency declared
## 232                                    State of emergency declared
## 233                                    State of emergency declared
## 234                                    State of emergency declared
## 235                         Strengthening the public health system
## 236                         Strengthening the public health system
## 237                         Strengthening the public health system
## 238                         Strengthening the public health system
## 239                         Strengthening the public health system
## 240                         Strengthening the public health system
## 241                                        Limit public gatherings
## 242                                        Limit public gatherings
## 243                                        Limit public gatherings
## 244                                        Limit public gatherings
## 245                                        Limit public gatherings
## 246                                        Limit public gatherings
## 247                         Strengthening the public health system
## 248                         Strengthening the public health system
## 249                         Strengthening the public health system
## 250                         Strengthening the public health system
## 251                         Strengthening the public health system
## 252                         Strengthening the public health system
## 253                                               Partial lockdown
## 254                                               Partial lockdown
## 255                                               Partial lockdown
## 256                                               Partial lockdown
## 257                                               Partial lockdown
## 258                                               Partial lockdown
## 259                                        General recommendations
## 260                                        General recommendations
## 261                                        General recommendations
## 262                                        General recommendations
## 263                                        General recommendations
## 264                                        General recommendations
## 265                                        General recommendations
## 266                                        General recommendations
## 267                                        General recommendations
## 268                                        General recommendations
## 269                                        General recommendations
## 270                                        General recommendations
## 271                         Strengthening the public health system
## 272                         Strengthening the public health system
## 273                         Strengthening the public health system
## 274                         Strengthening the public health system
## 275                         Strengthening the public health system
## 276                         Strengthening the public health system
## 277                         Strengthening the public health system
## 278                         Strengthening the public health system
## 279                         Strengthening the public health system
## 280                         Strengthening the public health system
## 281                         Strengthening the public health system
## 282                         Strengthening the public health system
## 283                         Strengthening the public health system
## 284                         Strengthening the public health system
## 285                         Strengthening the public health system
## 286                         Strengthening the public health system
## 287                         Strengthening the public health system
## 288                         Strengthening the public health system
## 289                         Strengthening the public health system
## 290                         Strengthening the public health system
## 291                         Strengthening the public health system
## 292                         Strengthening the public health system
## 293                         Strengthening the public health system
## 294                         Strengthening the public health system
## 295                             Changes in prison-related policies
## 296                             Changes in prison-related policies
## 297                             Changes in prison-related policies
## 298                             Changes in prison-related policies
## 299                             Changes in prison-related policies
## 300                             Changes in prison-related policies
## 301                               International flights suspension
## 302                               International flights suspension
## 303                               International flights suspension
## 304                               International flights suspension
## 305                               International flights suspension
## 306                               International flights suspension
## 307                                            Awareness campaigns
## 308                                            Awareness campaigns
## 309                                            Awareness campaigns
## 310                                            Awareness campaigns
## 311                                            Awareness campaigns
## 312                                            Awareness campaigns
## 313                                                Border closure 
## 314                                                Border closure 
## 315                                                Border closure 
## 316                                                Border closure 
## 317                                                Border closure 
## 318                                                Border closure 
## 319                               International flights suspension
## 320                               International flights suspension
## 321                               International flights suspension
## 322                               International flights suspension
## 323                               International flights suspension
## 324                               International flights suspension
## 325                         Strengthening the public health system
## 326                         Strengthening the public health system
## 327                         Strengthening the public health system
## 328                         Strengthening the public health system
## 329                         Strengthening the public health system
## 330                         Strengthening the public health system
## 331                         Strengthening the public health system
## 332                         Strengthening the public health system
## 333                         Strengthening the public health system
## 334                         Strengthening the public health system
## 335                         Strengthening the public health system
## 336                         Strengthening the public health system
## 337                               International flights suspension
## 338                               International flights suspension
## 339                               International flights suspension
## 340                               International flights suspension
## 341                               International flights suspension
## 342                               International flights suspension
## 343                                   Domestic travel restrictions
## 344                                   Domestic travel restrictions
## 345                                   Domestic travel restrictions
## 346                                   Domestic travel restrictions
## 347                                   Domestic travel restrictions
## 348                                   Domestic travel restrictions
## 349                                               Schools closure 
## 350                                               Schools closure 
## 351                                               Schools closure 
## 352                                               Schools closure 
## 353                                               Schools closure 
## 354                                               Schools closure 
## 355                                        Limit public gatherings
## 356                                        Limit public gatherings
## 357                                        Limit public gatherings
## 358                                        Limit public gatherings
## 359                                        Limit public gatherings
## 360                                        Limit public gatherings
## 361                                 Checkpoints within the country
## 362                                 Checkpoints within the country
## 363                                 Checkpoints within the country
## 364                                 Checkpoints within the country
## 365                                 Checkpoints within the country
## 366                                 Checkpoints within the country
## 367                              Isolation and quarantine policies
## 368                              Isolation and quarantine policies
## 369                              Isolation and quarantine policies
## 370                              Isolation and quarantine policies
## 371                              Isolation and quarantine policies
## 372                              Isolation and quarantine policies
## 373                                              Economic measures
## 374                                              Economic measures
## 375                                              Economic measures
## 376                                              Economic measures
## 377                                              Economic measures
## 378                                              Economic measures
## 379                                            Awareness campaigns
## 380                                            Awareness campaigns
## 381                                            Awareness campaigns
## 382                                            Awareness campaigns
## 383                                            Awareness campaigns
## 384                                            Awareness campaigns
## 385             Health screenings in airports and border crossings
## 386             Health screenings in airports and border crossings
## 387             Health screenings in airports and border crossings
## 388             Health screenings in airports and border crossings
## 389             Health screenings in airports and border crossings
## 390             Health screenings in airports and border crossings
## 391                         Strengthening the public health system
## 392                         Strengthening the public health system
## 393                         Strengthening the public health system
## 394                         Strengthening the public health system
## 395                         Strengthening the public health system
## 396                         Strengthening the public health system
## 397                         Strengthening the public health system
## 398                         Strengthening the public health system
## 399                         Strengthening the public health system
## 400                         Strengthening the public health system
## 401                         Strengthening the public health system
## 402                         Strengthening the public health system
## 403                                                Border closure 
## 404                                                Border closure 
## 405                                                Border closure 
## 406                                                Border closure 
## 407                                                Border closure 
## 408                                                Border closure 
## 409   Emergency administrative structures activated or established
## 410   Emergency administrative structures activated or established
## 411   Emergency administrative structures activated or established
## 412   Emergency administrative structures activated or established
## 413   Emergency administrative structures activated or established
## 414   Emergency administrative structures activated or established
## 415                               International flights suspension
## 416                               International flights suspension
## 417                               International flights suspension
## 418                               International flights suspension
## 419                               International flights suspension
## 420                               International flights suspension
## 421                                                Border closure 
## 422                                                Border closure 
## 423                                                Border closure 
## 424                                                Border closure 
## 425                                                Border closure 
## 426                                                Border closure 
## 427                                        Limit public gatherings
## 428                                        Limit public gatherings
## 429                                        Limit public gatherings
## 430                                        Limit public gatherings
## 431                                        Limit public gatherings
## 432                                        Limit public gatherings
## 433                                              Economic measures
## 434                                              Economic measures
## 435                                              Economic measures
## 436                                              Economic measures
## 437                                              Economic measures
## 438                                              Economic measures
## 439                         Strengthening the public health system
## 440                         Strengthening the public health system
## 441                         Strengthening the public health system
## 442                         Strengthening the public health system
## 443                         Strengthening the public health system
## 444                         Strengthening the public health system
## 445                                        General recommendations
## 446                                        General recommendations
## 447                                        General recommendations
## 448                                        General recommendations
## 449                                        General recommendations
## 450                                        General recommendations
## 451                                               Partial lockdown
## 452                                               Partial lockdown
## 453                                               Partial lockdown
## 454                                               Partial lockdown
## 455                                               Partial lockdown
## 456                                               Partial lockdown
## 457                                                        Curfews
## 458                                                        Curfews
## 459                                                        Curfews
## 460                                                        Curfews
## 461                                                        Curfews
## 462                                                        Curfews
## 463                                   Domestic travel restrictions
## 464                                   Domestic travel restrictions
## 465                                   Domestic travel restrictions
## 466                                   Domestic travel restrictions
## 467                                   Domestic travel restrictions
## 468                                   Domestic travel restrictions
## 469                                                        Curfews
## 470                                                        Curfews
## 471                                                        Curfews
## 472                                                        Curfews
## 473                                                        Curfews
## 474                                                        Curfews
## 475                                               Partial lockdown
## 476                                               Partial lockdown
## 477                                               Partial lockdown
## 478                                               Partial lockdown
## 479                                               Partial lockdown
## 480                                               Partial lockdown
## 481                                        Limit public gatherings
## 482                                        Limit public gatherings
## 483                                        Limit public gatherings
## 484                                        Limit public gatherings
## 485                                        Limit public gatherings
## 486                                        Limit public gatherings
## 487   Emergency administrative structures activated or established
## 488   Emergency administrative structures activated or established
## 489   Emergency administrative structures activated or established
## 490   Emergency administrative structures activated or established
## 491   Emergency administrative structures activated or established
## 492   Emergency administrative structures activated or established
## 493                             Changes in prison-related policies
## 494                             Changes in prison-related policies
## 495                             Changes in prison-related policies
## 496                             Changes in prison-related policies
## 497                             Changes in prison-related policies
## 498                             Changes in prison-related policies
## 499                             Changes in prison-related policies
## 500                             Changes in prison-related policies
## 501                             Changes in prison-related policies
## 502                             Changes in prison-related policies
## 503                             Changes in prison-related policies
## 504                             Changes in prison-related policies
## 505                         Strengthening the public health system
## 506                         Strengthening the public health system
## 507                         Strengthening the public health system
## 508                         Strengthening the public health system
## 509                         Strengthening the public health system
## 510                         Strengthening the public health system
## 511                         Strengthening the public health system
## 512                         Strengthening the public health system
## 513                         Strengthening the public health system
## 514                         Strengthening the public health system
## 515                         Strengthening the public health system
## 516                         Strengthening the public health system
## 517                          Other public health measures enforced
## 518                          Other public health measures enforced
## 519                          Other public health measures enforced
## 520                          Other public health measures enforced
## 521                          Other public health measures enforced
## 522                          Other public health measures enforced
## 523                         Strengthening the public health system
## 524                         Strengthening the public health system
## 525                         Strengthening the public health system
## 526                         Strengthening the public health system
## 527                         Strengthening the public health system
## 528                         Strengthening the public health system
## 529                                  Limit product imports/exports
## 530                                  Limit product imports/exports
## 531                                  Limit product imports/exports
## 532                                  Limit product imports/exports
## 533                                  Limit product imports/exports
## 534                                  Limit product imports/exports
## 535                                        Limit public gatherings
## 536                                        Limit public gatherings
## 537                                        Limit public gatherings
## 538                                        Limit public gatherings
## 539                                        Limit public gatherings
## 540                                        Limit public gatherings
## 541                                              Economic measures
## 542                                              Economic measures
## 543                                              Economic measures
## 544                                              Economic measures
## 545                                              Economic measures
## 546                                              Economic measures
## 547                      Closure of businesses and public services
## 548                      Closure of businesses and public services
## 549                      Closure of businesses and public services
## 550                      Closure of businesses and public services
## 551                      Closure of businesses and public services
## 552                      Closure of businesses and public services
## 553                      Closure of businesses and public services
## 554                      Closure of businesses and public services
## 555                      Closure of businesses and public services
## 556                      Closure of businesses and public services
## 557                      Closure of businesses and public services
## 558                      Closure of businesses and public services
## 559                                            Military deployment
## 560                                            Military deployment
## 561                                            Military deployment
## 562                                            Military deployment
## 563                                            Military deployment
## 564                                            Military deployment
## 565                                              Economic measures
## 566                                              Economic measures
## 567                                              Economic measures
## 568                                              Economic measures
## 569                                              Economic measures
## 570                                              Economic measures
## 571                                              Economic measures
## 572                                              Economic measures
## 573                                              Economic measures
## 574                                              Economic measures
## 575                                              Economic measures
## 576                                              Economic measures
## 577                                              Economic measures
## 578                                              Economic measures
## 579                                              Economic measures
## 580                                              Economic measures
## 581                                              Economic measures
## 582                                              Economic measures
## 583                                              Economic measures
## 584                                              Economic measures
## 585                                              Economic measures
## 586                                              Economic measures
## 587                                              Economic measures
## 588                                              Economic measures
## 589                                              Economic measures
## 590                                              Economic measures
## 591                                              Economic measures
## 592                                              Economic measures
## 593                                              Economic measures
## 594                                              Economic measures
## 595                                              Economic measures
## 596                                              Economic measures
## 597                                              Economic measures
## 598                                              Economic measures
## 599                                              Economic measures
## 600                                              Economic measures
## 601                                              Economic measures
## 602                                              Economic measures
## 603                                              Economic measures
## 604                                              Economic measures
## 605                                              Economic measures
## 606                                              Economic measures
## 607                      Closure of businesses and public services
## 608                      Closure of businesses and public services
## 609                      Closure of businesses and public services
## 610                      Closure of businesses and public services
## 611                      Closure of businesses and public services
## 612                      Closure of businesses and public services
## 613                                   Domestic travel restrictions
## 614                                   Domestic travel restrictions
## 615                                   Domestic travel restrictions
## 616                                   Domestic travel restrictions
## 617                                   Domestic travel restrictions
## 618                                   Domestic travel restrictions
## 619                                    State of emergency declared
## 620                                    State of emergency declared
## 621                                    State of emergency declared
## 622                                    State of emergency declared
## 623                                    State of emergency declared
## 624                                    State of emergency declared
## 625                                                        Curfews
## 626                                                        Curfews
## 627                                                        Curfews
## 628                                                        Curfews
## 629                                                        Curfews
## 630                                                        Curfews
## 631                                    Surveillance and monitoring
## 632                                    Surveillance and monitoring
## 633                                    Surveillance and monitoring
## 634                                    Surveillance and monitoring
## 635                                    Surveillance and monitoring
## 636                                    Surveillance and monitoring
## 637                      Closure of businesses and public services
## 638                      Closure of businesses and public services
## 639                      Closure of businesses and public services
## 640                      Closure of businesses and public services
## 641                      Closure of businesses and public services
## 642                      Closure of businesses and public services
## 643                      Closure of businesses and public services
## 644                      Closure of businesses and public services
## 645                      Closure of businesses and public services
## 646                      Closure of businesses and public services
## 647                      Closure of businesses and public services
## 648                      Closure of businesses and public services
## 649                                   Domestic travel restrictions
## 650                                   Domestic travel restrictions
## 651                                   Domestic travel restrictions
## 652                                   Domestic travel restrictions
## 653                                   Domestic travel restrictions
## 654                                   Domestic travel restrictions
## 655                      Closure of businesses and public services
## 656                      Closure of businesses and public services
## 657                      Closure of businesses and public services
## 658                      Closure of businesses and public services
## 659                      Closure of businesses and public services
## 660                      Closure of businesses and public services
## 661                                               Schools closure 
## 662                                               Schools closure 
## 663                                               Schools closure 
## 664                                               Schools closure 
## 665                                               Schools closure 
## 666                                               Schools closure 
## 667                              Isolation and quarantine policies
## 668                              Isolation and quarantine policies
## 669                              Isolation and quarantine policies
## 670                              Isolation and quarantine policies
## 671                              Isolation and quarantine policies
## 672                              Isolation and quarantine policies
## 673                                   Domestic travel restrictions
## 674                                   Domestic travel restrictions
## 675                                   Domestic travel restrictions
## 676                                   Domestic travel restrictions
## 677                                   Domestic travel restrictions
## 678                                   Domestic travel restrictions
## 679                                   Domestic travel restrictions
## 680                                   Domestic travel restrictions
## 681                                   Domestic travel restrictions
## 682                                   Domestic travel restrictions
## 683                                   Domestic travel restrictions
## 684                                   Domestic travel restrictions
## 685                      Closure of businesses and public services
## 686                      Closure of businesses and public services
## 687                      Closure of businesses and public services
## 688                      Closure of businesses and public services
## 689                      Closure of businesses and public services
## 690                      Closure of businesses and public services
## 691                                                Border closure 
## 692                                                Border closure 
## 693                                                Border closure 
## 694                                                Border closure 
## 695                                                Border closure 
## 696                                                Border closure 
## 697                               International flights suspension
## 698                               International flights suspension
## 699                               International flights suspension
## 700                               International flights suspension
## 701                               International flights suspension
## 702                               International flights suspension
## 703                                              Visa restrictions
## 704                                              Visa restrictions
## 705                                              Visa restrictions
## 706                                              Visa restrictions
## 707                                              Visa restrictions
## 708                                              Visa restrictions
## 709                                                Border closure 
## 710                                                Border closure 
## 711                                                Border closure 
## 712                                                Border closure 
## 713                                                Border closure 
## 714                                                Border closure 
## 715                      Closure of businesses and public services
## 716                      Closure of businesses and public services
## 717                      Closure of businesses and public services
## 718                      Closure of businesses and public services
## 719                      Closure of businesses and public services
## 720                      Closure of businesses and public services
## 721                                            Awareness campaigns
## 722                                            Awareness campaigns
## 723                                            Awareness campaigns
## 724                                            Awareness campaigns
## 725                                            Awareness campaigns
## 726                                            Awareness campaigns
## 727                                               Schools closure 
## 728                                               Schools closure 
## 729                                               Schools closure 
## 730                                               Schools closure 
## 731                                               Schools closure 
## 732                                               Schools closure 
## 733                                                 Border checks 
## 734                                                 Border checks 
## 735                                                 Border checks 
## 736                                                 Border checks 
## 737                                                 Border checks 
## 738                                                 Border checks 
## 739                                        Limit public gatherings
## 740                                        Limit public gatherings
## 741                                        Limit public gatherings
## 742                                        Limit public gatherings
## 743                                        Limit public gatherings
## 744                                        Limit public gatherings
## 745                      Closure of businesses and public services
## 746                      Closure of businesses and public services
## 747                      Closure of businesses and public services
## 748                      Closure of businesses and public services
## 749                      Closure of businesses and public services
## 750                      Closure of businesses and public services
## 751                                                Border closure 
## 752                                                Border closure 
## 753                                                Border closure 
## 754                                                Border closure 
## 755                                                Border closure 
## 756                                                Border closure 
## 757                               International flights suspension
## 758                               International flights suspension
## 759                               International flights suspension
## 760                               International flights suspension
## 761                               International flights suspension
## 762                               International flights suspension
## 763                                            Awareness campaigns
## 764                                            Awareness campaigns
## 765                                            Awareness campaigns
## 766                                            Awareness campaigns
## 767                                            Awareness campaigns
## 768                                            Awareness campaigns
## 769                              Isolation and quarantine policies
## 770                              Isolation and quarantine policies
## 771                              Isolation and quarantine policies
## 772                              Isolation and quarantine policies
## 773                              Isolation and quarantine policies
## 774                              Isolation and quarantine policies
## 775                                                Border closure 
## 776                                                Border closure 
## 777                                                Border closure 
## 778                                                Border closure 
## 779                                                Border closure 
## 780                                                Border closure 
## 781                                   Domestic travel restrictions
## 782                                   Domestic travel restrictions
## 783                                   Domestic travel restrictions
## 784                                   Domestic travel restrictions
## 785                                   Domestic travel restrictions
## 786                                   Domestic travel restrictions
## 787                                                  Full lockdown
## 788                                                  Full lockdown
## 789                                                  Full lockdown
## 790                                                  Full lockdown
## 791                                                  Full lockdown
## 792                                                  Full lockdown
## 793                                                        Curfews
## 794                                                        Curfews
## 795                                                        Curfews
## 796                                                        Curfews
## 797                                                        Curfews
## 798                                                        Curfews
## 799                                   Domestic travel restrictions
## 800                                   Domestic travel restrictions
## 801                                   Domestic travel restrictions
## 802                                   Domestic travel restrictions
## 803                                   Domestic travel restrictions
## 804                                   Domestic travel restrictions
## 805                                            Military deployment
## 806                                            Military deployment
## 807                                            Military deployment
## 808                                            Military deployment
## 809                                            Military deployment
## 810                                            Military deployment
## 811                                                        Curfews
## 812                                                        Curfews
## 813                                                        Curfews
## 814                                                        Curfews
## 815                                                        Curfews
## 816                                                        Curfews
## 817                               International flights suspension
## 818                               International flights suspension
## 819                               International flights suspension
## 820                               International flights suspension
## 821                               International flights suspension
## 822                               International flights suspension
## 823                                   Domestic travel restrictions
## 824                                   Domestic travel restrictions
## 825                                   Domestic travel restrictions
## 826                                   Domestic travel restrictions
## 827                                   Domestic travel restrictions
## 828                                   Domestic travel restrictions
## 829                                               Partial lockdown
## 830                                               Partial lockdown
## 831                                               Partial lockdown
## 832                                               Partial lockdown
## 833                                               Partial lockdown
## 834                                               Partial lockdown
## 835                                                        Curfews
## 836                                                        Curfews
## 837                                                        Curfews
## 838                                                        Curfews
## 839                                                        Curfews
## 840                                                        Curfews
## 841                                                  Full lockdown
## 842                                                  Full lockdown
## 843                                                  Full lockdown
## 844                                                  Full lockdown
## 845                                                  Full lockdown
## 846                                                  Full lockdown
## 847                                               Partial lockdown
## 848                                               Partial lockdown
## 849                                               Partial lockdown
## 850                                               Partial lockdown
## 851                                               Partial lockdown
## 852                                               Partial lockdown
## 853                               International flights suspension
## 854                               International flights suspension
## 855                               International flights suspension
## 856                               International flights suspension
## 857                               International flights suspension
## 858                               International flights suspension
## 859                                   Domestic travel restrictions
## 860                                   Domestic travel restrictions
## 861                                   Domestic travel restrictions
## 862                                   Domestic travel restrictions
## 863                                   Domestic travel restrictions
## 864                                   Domestic travel restrictions
## 865                      Closure of businesses and public services
## 866                      Closure of businesses and public services
## 867                      Closure of businesses and public services
## 868                      Closure of businesses and public services
## 869                      Closure of businesses and public services
## 870                      Closure of businesses and public services
## 871                                        Limit public gatherings
## 872                                        Limit public gatherings
## 873                                        Limit public gatherings
## 874                                        Limit public gatherings
## 875                                        Limit public gatherings
## 876                                        Limit public gatherings
## 877                      Closure of businesses and public services
## 878                      Closure of businesses and public services
## 879                      Closure of businesses and public services
## 880                      Closure of businesses and public services
## 881                      Closure of businesses and public services
## 882                      Closure of businesses and public services
## 883   Emergency administrative structures activated or established
## 884   Emergency administrative structures activated or established
## 885   Emergency administrative structures activated or established
## 886   Emergency administrative structures activated or established
## 887   Emergency administrative structures activated or established
## 888   Emergency administrative structures activated or established
## 889                                               Partial lockdown
## 890                                               Partial lockdown
## 891                                               Partial lockdown
## 892                                               Partial lockdown
## 893                                               Partial lockdown
## 894                                               Partial lockdown
## 895                                                        Curfews
## 896                                                        Curfews
## 897                                                        Curfews
## 898                                                        Curfews
## 899                                                        Curfews
## 900                                                        Curfews
## 901                                               Partial lockdown
## 902                                               Partial lockdown
## 903                                               Partial lockdown
## 904                                               Partial lockdown
## 905                                               Partial lockdown
## 906                                               Partial lockdown
## 907                                 Checkpoints within the country
## 908                                 Checkpoints within the country
## 909                                 Checkpoints within the country
## 910                                 Checkpoints within the country
## 911                                 Checkpoints within the country
## 912                                 Checkpoints within the country
## 913                                                  Full lockdown
## 914                                                  Full lockdown
## 915                                                  Full lockdown
## 916                                                  Full lockdown
## 917                                                  Full lockdown
## 918                                                  Full lockdown
## 919                                                        Curfews
## 920                                                        Curfews
## 921                                                        Curfews
## 922                                                        Curfews
## 923                                                        Curfews
## 924                                                        Curfews
## 925                                   Domestic travel restrictions
## 926                                   Domestic travel restrictions
## 927                                   Domestic travel restrictions
## 928                                   Domestic travel restrictions
## 929                                   Domestic travel restrictions
## 930                                   Domestic travel restrictions
## 931                                   Domestic travel restrictions
## 932                                   Domestic travel restrictions
## 933                                   Domestic travel restrictions
## 934                                   Domestic travel restrictions
## 935                                   Domestic travel restrictions
## 936                                   Domestic travel restrictions
## 937                                               Schools closure 
## 938                                               Schools closure 
## 939                                               Schools closure 
## 940                                               Schools closure 
## 941                                               Schools closure 
## 942                                               Schools closure 
## 943                      Closure of businesses and public services
## 944                      Closure of businesses and public services
## 945                      Closure of businesses and public services
## 946                      Closure of businesses and public services
## 947                      Closure of businesses and public services
## 948                      Closure of businesses and public services
## 949                      Closure of businesses and public services
## 950                      Closure of businesses and public services
## 951                      Closure of businesses and public services
## 952                      Closure of businesses and public services
## 953                      Closure of businesses and public services
## 954                      Closure of businesses and public services
## 955                               International flights suspension
## 956                               International flights suspension
## 957                               International flights suspension
## 958                               International flights suspension
## 959                               International flights suspension
## 960                               International flights suspension
## 961                               International flights suspension
## 962                               International flights suspension
## 963                               International flights suspension
## 964                               International flights suspension
## 965                               International flights suspension
## 966                               International flights suspension
## 967                  Requirement to wear protective gear in public
## 968                  Requirement to wear protective gear in public
## 969                  Requirement to wear protective gear in public
## 970                  Requirement to wear protective gear in public
## 971                  Requirement to wear protective gear in public
## 972                  Requirement to wear protective gear in public
## 973                                               Partial lockdown
## 974                                               Partial lockdown
## 975                                               Partial lockdown
## 976                                               Partial lockdown
## 977                                               Partial lockdown
## 978                                               Partial lockdown
## 979                                                        Curfews
## 980                                                        Curfews
## 981                                                        Curfews
## 982                                                        Curfews
## 983                                                        Curfews
## 984                                                        Curfews
## 985                                   Domestic travel restrictions
## 986                                   Domestic travel restrictions
## 987                                   Domestic travel restrictions
## 988                                   Domestic travel restrictions
## 989                                   Domestic travel restrictions
## 990                                   Domestic travel restrictions
## 991                                                        Curfews
## 992                                                        Curfews
## 993                                                        Curfews
## 994                                                        Curfews
## 995                                                        Curfews
## 996                                                        Curfews
## 997                                   Domestic travel restrictions
## 998                                   Domestic travel restrictions
## 999                                   Domestic travel restrictions
## 1000                                  Domestic travel restrictions
## 1001                                  Domestic travel restrictions
## 1002                                  Domestic travel restrictions
## 1003                 Requirement to wear protective gear in public
## 1004                 Requirement to wear protective gear in public
## 1005                 Requirement to wear protective gear in public
## 1006                 Requirement to wear protective gear in public
## 1007                 Requirement to wear protective gear in public
## 1008                 Requirement to wear protective gear in public
## 1009                                  Domestic travel restrictions
## 1010                                  Domestic travel restrictions
## 1011                                  Domestic travel restrictions
## 1012                                  Domestic travel restrictions
## 1013                                  Domestic travel restrictions
## 1014                                  Domestic travel restrictions
## 1015                                              Partial lockdown
## 1016                                              Partial lockdown
## 1017                                              Partial lockdown
## 1018                                              Partial lockdown
## 1019                                              Partial lockdown
## 1020                                              Partial lockdown
## 1021                                                       Curfews
## 1022                                                       Curfews
## 1023                                                       Curfews
## 1024                                                       Curfews
## 1025                                                       Curfews
## 1026                                                       Curfews
## 1027                     Closure of businesses and public services
## 1028                     Closure of businesses and public services
## 1029                     Closure of businesses and public services
## 1030                     Closure of businesses and public services
## 1031                     Closure of businesses and public services
## 1032                     Closure of businesses and public services
## 1033                                                       Curfews
## 1034                                                       Curfews
## 1035                                                       Curfews
## 1036                                                       Curfews
## 1037                                                       Curfews
## 1038                                                       Curfews
## 1039                     Closure of businesses and public services
## 1040                     Closure of businesses and public services
## 1041                     Closure of businesses and public services
## 1042                     Closure of businesses and public services
## 1043                     Closure of businesses and public services
## 1044                     Closure of businesses and public services
## 1045            Health screenings in airports and border crossings
## 1046            Health screenings in airports and border crossings
## 1047            Health screenings in airports and border crossings
## 1048            Health screenings in airports and border crossings
## 1049            Health screenings in airports and border crossings
## 1050            Health screenings in airports and border crossings
## 1051                             Isolation and quarantine policies
## 1052                             Isolation and quarantine policies
## 1053                             Isolation and quarantine policies
## 1054                             Isolation and quarantine policies
## 1055                             Isolation and quarantine policies
## 1056                             Isolation and quarantine policies
## 1057                                           Awareness campaigns
## 1058                                           Awareness campaigns
## 1059                                           Awareness campaigns
## 1060                                           Awareness campaigns
## 1061                                           Awareness campaigns
## 1062                                           Awareness campaigns
## 1063                              International flights suspension
## 1064                              International flights suspension
## 1065                              International flights suspension
## 1066                              International flights suspension
## 1067                              International flights suspension
## 1068                              International flights suspension
## 1069                                             Visa restrictions
## 1070                                             Visa restrictions
## 1071                                             Visa restrictions
## 1072                                             Visa restrictions
## 1073                                             Visa restrictions
## 1074                                             Visa restrictions
## 1075                                             Visa restrictions
## 1076                                             Visa restrictions
## 1077                                             Visa restrictions
## 1078                                             Visa restrictions
## 1079                                             Visa restrictions
## 1080                                             Visa restrictions
## 1081                             Isolation and quarantine policies
## 1082                             Isolation and quarantine policies
## 1083                             Isolation and quarantine policies
## 1084                             Isolation and quarantine policies
## 1085                             Isolation and quarantine policies
## 1086                             Isolation and quarantine policies
## 1087                              International flights suspension
## 1088                              International flights suspension
## 1089                              International flights suspension
## 1090                              International flights suspension
## 1091                              International flights suspension
## 1092                              International flights suspension
## 1093                                              Schools closure 
## 1094                                              Schools closure 
## 1095                                              Schools closure 
## 1096                                              Schools closure 
## 1097                                              Schools closure 
## 1098                                              Schools closure 
## 1099                                       General recommendations
## 1100                                       General recommendations
## 1101                                       General recommendations
## 1102                                       General recommendations
## 1103                                       General recommendations
## 1104                                       General recommendations
## 1105                                           Awareness campaigns
## 1106                                           Awareness campaigns
## 1107                                           Awareness campaigns
## 1108                                           Awareness campaigns
## 1109                                           Awareness campaigns
## 1110                                           Awareness campaigns
## 1111                                           Awareness campaigns
## 1112                                           Awareness campaigns
## 1113                                           Awareness campaigns
## 1114                                           Awareness campaigns
## 1115                                           Awareness campaigns
## 1116                                           Awareness campaigns
## 1117                                   State of emergency declared
## 1118                                   State of emergency declared
## 1119                                   State of emergency declared
## 1120                                   State of emergency declared
## 1121                                   State of emergency declared
## 1122                                   State of emergency declared
## 1123                                   State of emergency declared
## 1124                                   State of emergency declared
## 1125                                   State of emergency declared
## 1126                                   State of emergency declared
## 1127                                   State of emergency declared
## 1128                                   State of emergency declared
## 1129                        Strengthening the public health system
## 1130                        Strengthening the public health system
## 1131                        Strengthening the public health system
## 1132                        Strengthening the public health system
## 1133                        Strengthening the public health system
## 1134                        Strengthening the public health system
## 1135                        Strengthening the public health system
## 1136                        Strengthening the public health system
## 1137                        Strengthening the public health system
## 1138                        Strengthening the public health system
## 1139                        Strengthening the public health system
## 1140                        Strengthening the public health system
## 1141                                                Border checks 
## 1142                                                Border checks 
## 1143                                                Border checks 
## 1144                                                Border checks 
## 1145                                                Border checks 
## 1146                                                Border checks 
## 1147                                             Economic measures
## 1148                                             Economic measures
## 1149                                             Economic measures
## 1150                                             Economic measures
## 1151                                             Economic measures
## 1152                                             Economic measures
## 1153                                             Economic measures
## 1154                                             Economic measures
## 1155                                             Economic measures
## 1156                                             Economic measures
## 1157                                             Economic measures
## 1158                                             Economic measures
## 1159                        Strengthening the public health system
## 1160                        Strengthening the public health system
## 1161                        Strengthening the public health system
## 1162                        Strengthening the public health system
## 1163                        Strengthening the public health system
## 1164                        Strengthening the public health system
## 1165                        Strengthening the public health system
## 1166                        Strengthening the public health system
## 1167                        Strengthening the public health system
## 1168                        Strengthening the public health system
## 1169                        Strengthening the public health system
## 1170                        Strengthening the public health system
## 1171                                             Economic measures
## 1172                                             Economic measures
## 1173                                             Economic measures
## 1174                                             Economic measures
## 1175                                             Economic measures
## 1176                                             Economic measures
## 1177                     Closure of businesses and public services
## 1178                     Closure of businesses and public services
## 1179                     Closure of businesses and public services
## 1180                     Closure of businesses and public services
## 1181                     Closure of businesses and public services
## 1182                     Closure of businesses and public services
## 1183                                 Limit product imports/exports
## 1184                                 Limit product imports/exports
## 1185                                 Limit product imports/exports
## 1186                                 Limit product imports/exports
## 1187                                 Limit product imports/exports
## 1188                                 Limit product imports/exports
## 1189                                  Domestic travel restrictions
## 1190                                  Domestic travel restrictions
## 1191                                  Domestic travel restrictions
## 1192                                  Domestic travel restrictions
## 1193                                  Domestic travel restrictions
## 1194                                  Domestic travel restrictions
## 1195             Lockdown of refugee/idp camps or other minorities
## 1196             Lockdown of refugee/idp camps or other minorities
## 1197             Lockdown of refugee/idp camps or other minorities
## 1198             Lockdown of refugee/idp camps or other minorities
## 1199             Lockdown of refugee/idp camps or other minorities
## 1200             Lockdown of refugee/idp camps or other minorities
## 1201                                           Awareness campaigns
## 1202                                           Awareness campaigns
## 1203                                           Awareness campaigns
## 1204                                           Awareness campaigns
## 1205                                           Awareness campaigns
## 1206                                           Awareness campaigns
## 1207                        Strengthening the public health system
## 1208                        Strengthening the public health system
## 1209                        Strengthening the public health system
## 1210                        Strengthening the public health system
## 1211                        Strengthening the public health system
## 1212                        Strengthening the public health system
## 1213                        Strengthening the public health system
## 1214                        Strengthening the public health system
## 1215                        Strengthening the public health system
## 1216                        Strengthening the public health system
## 1217                        Strengthening the public health system
## 1218                        Strengthening the public health system
## 1219                        Strengthening the public health system
## 1220                        Strengthening the public health system
## 1221                        Strengthening the public health system
## 1222                        Strengthening the public health system
## 1223                        Strengthening the public health system
## 1224                        Strengthening the public health system
## 1225                        Strengthening the public health system
## 1226                        Strengthening the public health system
## 1227                        Strengthening the public health system
## 1228                        Strengthening the public health system
## 1229                        Strengthening the public health system
## 1230                        Strengthening the public health system
## 1231                        Strengthening the public health system
## 1232                        Strengthening the public health system
## 1233                        Strengthening the public health system
## 1234                        Strengthening the public health system
## 1235                        Strengthening the public health system
## 1236                        Strengthening the public health system
## 1237                        Strengthening the public health system
## 1238                        Strengthening the public health system
## 1239                        Strengthening the public health system
## 1240                        Strengthening the public health system
## 1241                        Strengthening the public health system
## 1242                        Strengthening the public health system
## 1243                                           Awareness campaigns
## 1244                                           Awareness campaigns
## 1245                                           Awareness campaigns
## 1246                                           Awareness campaigns
## 1247                                           Awareness campaigns
## 1248                                           Awareness campaigns
## 1249                        Strengthening the public health system
## 1250                        Strengthening the public health system
## 1251                        Strengthening the public health system
## 1252                        Strengthening the public health system
## 1253                        Strengthening the public health system
## 1254                        Strengthening the public health system
## 1255                        Strengthening the public health system
## 1256                        Strengthening the public health system
## 1257                        Strengthening the public health system
## 1258                        Strengthening the public health system
## 1259                        Strengthening the public health system
## 1260                        Strengthening the public health system
## 1261                                       General recommendations
## 1262                                       General recommendations
## 1263                                       General recommendations
## 1264                                       General recommendations
## 1265                                       General recommendations
## 1266                                       General recommendations
## 1267                                              Schools closure 
## 1268                                              Schools closure 
## 1269                                              Schools closure 
## 1270                                              Schools closure 
## 1271                                              Schools closure 
## 1272                                              Schools closure 
## 1273                        Strengthening the public health system
## 1274                        Strengthening the public health system
## 1275                        Strengthening the public health system
## 1276                        Strengthening the public health system
## 1277                        Strengthening the public health system
## 1278                        Strengthening the public health system
## 1279                            Changes in prison-related policies
## 1280                            Changes in prison-related policies
## 1281                            Changes in prison-related policies
## 1282                            Changes in prison-related policies
## 1283                            Changes in prison-related policies
## 1284                            Changes in prison-related policies
## 1285                        Strengthening the public health system
## 1286                        Strengthening the public health system
## 1287                        Strengthening the public health system
## 1288                        Strengthening the public health system
## 1289                        Strengthening the public health system
## 1290                        Strengthening the public health system
## 1291                        Strengthening the public health system
## 1292                        Strengthening the public health system
## 1293                        Strengthening the public health system
## 1294                        Strengthening the public health system
## 1295                        Strengthening the public health system
## 1296                        Strengthening the public health system
## 1297                        Strengthening the public health system
## 1298                        Strengthening the public health system
## 1299                        Strengthening the public health system
## 1300                        Strengthening the public health system
## 1301                        Strengthening the public health system
## 1302                        Strengthening the public health system
## 1303                                           Awareness campaigns
## 1304                                           Awareness campaigns
## 1305                                           Awareness campaigns
## 1306                                           Awareness campaigns
## 1307                                           Awareness campaigns
## 1308                                           Awareness campaigns
## 1309                                       Limit public gatherings
## 1310                                       Limit public gatherings
## 1311                                       Limit public gatherings
## 1312                                       Limit public gatherings
## 1313                                       Limit public gatherings
## 1314                                       Limit public gatherings
## 1315                                       Limit public gatherings
## 1316                                       Limit public gatherings
## 1317                                       Limit public gatherings
## 1318                                       Limit public gatherings
## 1319                                       Limit public gatherings
## 1320                                       Limit public gatherings
## 1321  Emergency administrative structures activated or established
## 1322  Emergency administrative structures activated or established
## 1323  Emergency administrative structures activated or established
## 1324  Emergency administrative structures activated or established
## 1325  Emergency administrative structures activated or established
## 1326  Emergency administrative structures activated or established
## 1327                                             Economic measures
## 1328                                             Economic measures
## 1329                                             Economic measures
## 1330                                             Economic measures
## 1331                                             Economic measures
## 1332                                             Economic measures
## 1333                                       Limit public gatherings
## 1334                                       Limit public gatherings
## 1335                                       Limit public gatherings
## 1336                                       Limit public gatherings
## 1337                                       Limit public gatherings
## 1338                                       Limit public gatherings
## 1339                        Strengthening the public health system
## 1340                        Strengthening the public health system
## 1341                        Strengthening the public health system
## 1342                        Strengthening the public health system
## 1343                        Strengthening the public health system
## 1344                        Strengthening the public health system
## 1345                                       Limit public gatherings
## 1346                                       Limit public gatherings
## 1347                                       Limit public gatherings
## 1348                                       Limit public gatherings
## 1349                                       Limit public gatherings
## 1350                                       Limit public gatherings
## 1351                                   State of emergency declared
## 1352                                   State of emergency declared
## 1353                                   State of emergency declared
## 1354                                   State of emergency declared
## 1355                                   State of emergency declared
## 1356                                   State of emergency declared
## 1357                                  Domestic travel restrictions
## 1358                                  Domestic travel restrictions
## 1359                                  Domestic travel restrictions
## 1360                                  Domestic travel restrictions
## 1361                                  Domestic travel restrictions
## 1362                                  Domestic travel restrictions
## 1363                                  Domestic travel restrictions
## 1364                                  Domestic travel restrictions
## 1365                                  Domestic travel restrictions
## 1366                                  Domestic travel restrictions
## 1367                                  Domestic travel restrictions
## 1368                                  Domestic travel restrictions
## 1369         Additional health/documents requirements upon arrival
## 1370         Additional health/documents requirements upon arrival
## 1371         Additional health/documents requirements upon arrival
## 1372         Additional health/documents requirements upon arrival
## 1373         Additional health/documents requirements upon arrival
## 1374         Additional health/documents requirements upon arrival
## 1375                                             Economic measures
## 1376                                             Economic measures
## 1377                                             Economic measures
## 1378                                             Economic measures
## 1379                                             Economic measures
## 1380                                             Economic measures
## 1381                        Strengthening the public health system
## 1382                        Strengthening the public health system
## 1383                        Strengthening the public health system
## 1384                        Strengthening the public health system
## 1385                        Strengthening the public health system
## 1386                        Strengthening the public health system
## 1387                        Strengthening the public health system
## 1388                        Strengthening the public health system
## 1389                        Strengthening the public health system
## 1390                        Strengthening the public health system
## 1391                        Strengthening the public health system
## 1392                        Strengthening the public health system
## 1393                             Isolation and quarantine policies
## 1394                             Isolation and quarantine policies
## 1395                             Isolation and quarantine policies
## 1396                             Isolation and quarantine policies
## 1397                             Isolation and quarantine policies
## 1398                             Isolation and quarantine policies
## 1399                                  Domestic travel restrictions
## 1400                                  Domestic travel restrictions
## 1401                                  Domestic travel restrictions
## 1402                                  Domestic travel restrictions
## 1403                                  Domestic travel restrictions
## 1404                                  Domestic travel restrictions
## 1405                             Isolation and quarantine policies
## 1406                             Isolation and quarantine policies
## 1407                             Isolation and quarantine policies
## 1408                             Isolation and quarantine policies
## 1409                             Isolation and quarantine policies
## 1410                             Isolation and quarantine policies
## 1411                        Strengthening the public health system
## 1412                        Strengthening the public health system
## 1413                        Strengthening the public health system
## 1414                        Strengthening the public health system
## 1415                        Strengthening the public health system
## 1416                        Strengthening the public health system
## 1417                                  Domestic travel restrictions
## 1418                                  Domestic travel restrictions
## 1419                                  Domestic travel restrictions
## 1420                                  Domestic travel restrictions
## 1421                                  Domestic travel restrictions
## 1422                                  Domestic travel restrictions
## 1423                                             Economic measures
## 1424                                             Economic measures
## 1425                                             Economic measures
## 1426                                             Economic measures
## 1427                                             Economic measures
## 1428                                             Economic measures
## 1429                                             Economic measures
## 1430                                             Economic measures
## 1431                                             Economic measures
## 1432                                             Economic measures
## 1433                                             Economic measures
## 1434                                             Economic measures
## 1435                                             Economic measures
## 1436                                             Economic measures
## 1437                                             Economic measures
## 1438                                             Economic measures
## 1439                                             Economic measures
## 1440                                             Economic measures
## 1441                        Strengthening the public health system
## 1442                        Strengthening the public health system
## 1443                        Strengthening the public health system
## 1444                        Strengthening the public health system
## 1445                        Strengthening the public health system
## 1446                        Strengthening the public health system
## 1447                                  Domestic travel restrictions
## 1448                                  Domestic travel restrictions
## 1449                                  Domestic travel restrictions
## 1450                                  Domestic travel restrictions
## 1451                                  Domestic travel restrictions
## 1452                                  Domestic travel restrictions
## 1453                 Requirement to wear protective gear in public
## 1454                 Requirement to wear protective gear in public
## 1455                 Requirement to wear protective gear in public
## 1456                 Requirement to wear protective gear in public
## 1457                 Requirement to wear protective gear in public
## 1458                 Requirement to wear protective gear in public
## 1459                        Strengthening the public health system
## 1460                        Strengthening the public health system
## 1461                        Strengthening the public health system
## 1462                        Strengthening the public health system
## 1463                        Strengthening the public health system
## 1464                        Strengthening the public health system
## 1465                        Strengthening the public health system
## 1466                        Strengthening the public health system
## 1467                        Strengthening the public health system
## 1468                        Strengthening the public health system
## 1469                        Strengthening the public health system
## 1470                        Strengthening the public health system
## 1471                        Strengthening the public health system
## 1472                        Strengthening the public health system
## 1473                        Strengthening the public health system
## 1474                        Strengthening the public health system
## 1475                        Strengthening the public health system
## 1476                        Strengthening the public health system
## 1477                        Strengthening the public health system
## 1478                        Strengthening the public health system
## 1479                        Strengthening the public health system
## 1480                        Strengthening the public health system
## 1481                        Strengthening the public health system
## 1482                        Strengthening the public health system
## 1483                                             Economic measures
## 1484                                             Economic measures
## 1485                                             Economic measures
## 1486                                             Economic measures
## 1487                                             Economic measures
## 1488                                             Economic measures
## 1489                        Strengthening the public health system
## 1490                        Strengthening the public health system
## 1491                        Strengthening the public health system
## 1492                        Strengthening the public health system
## 1493                        Strengthening the public health system
## 1494                        Strengthening the public health system
## 1495                        Strengthening the public health system
## 1496                        Strengthening the public health system
## 1497                        Strengthening the public health system
## 1498                        Strengthening the public health system
## 1499                        Strengthening the public health system
## 1500                        Strengthening the public health system
## 1501                        Strengthening the public health system
## 1502                        Strengthening the public health system
## 1503                        Strengthening the public health system
## 1504                        Strengthening the public health system
## 1505                        Strengthening the public health system
## 1506                        Strengthening the public health system
## 1507                        Strengthening the public health system
## 1508                        Strengthening the public health system
## 1509                        Strengthening the public health system
## 1510                        Strengthening the public health system
## 1511                        Strengthening the public health system
## 1512                        Strengthening the public health system
## 1513                                              Schools closure 
## 1514                                              Schools closure 
## 1515                                              Schools closure 
## 1516                                              Schools closure 
## 1517                                              Schools closure 
## 1518                                              Schools closure 
## 1519                                              Partial lockdown
## 1520                                              Partial lockdown
## 1521                                              Partial lockdown
## 1522                                              Partial lockdown
## 1523                                              Partial lockdown
## 1524                                              Partial lockdown
## 1525                                       Mass population testing
## 1526                                       Mass population testing
## 1527                                       Mass population testing
## 1528                                       Mass population testing
## 1529                                       Mass population testing
## 1530                                       Mass population testing
## 1531                            Changes in prison-related policies
## 1532                            Changes in prison-related policies
## 1533                            Changes in prison-related policies
## 1534                            Changes in prison-related policies
## 1535                            Changes in prison-related policies
## 1536                            Changes in prison-related policies
## 1537                                              Partial lockdown
## 1538                                              Partial lockdown
## 1539                                              Partial lockdown
## 1540                                              Partial lockdown
## 1541                                              Partial lockdown
## 1542                                              Partial lockdown
## 1543                                  Domestic travel restrictions
## 1544                                  Domestic travel restrictions
## 1545                                  Domestic travel restrictions
## 1546                                  Domestic travel restrictions
## 1547                                  Domestic travel restrictions
## 1548                                  Domestic travel restrictions
## 1549                     Closure of businesses and public services
## 1550                     Closure of businesses and public services
## 1551                     Closure of businesses and public services
## 1552                     Closure of businesses and public services
## 1553                     Closure of businesses and public services
## 1554                     Closure of businesses and public services
## 1555                     Closure of businesses and public services
## 1556                     Closure of businesses and public services
## 1557                     Closure of businesses and public services
## 1558                     Closure of businesses and public services
## 1559                     Closure of businesses and public services
## 1560                     Closure of businesses and public services
## 1561                     Closure of businesses and public services
## 1562                     Closure of businesses and public services
## 1563                     Closure of businesses and public services
## 1564                     Closure of businesses and public services
## 1565                     Closure of businesses and public services
## 1566                     Closure of businesses and public services
## 1567                                                       Curfews
## 1568                                                       Curfews
## 1569                                                       Curfews
## 1570                                                       Curfews
## 1571                                                       Curfews
## 1572                                                       Curfews
## 1573                     Closure of businesses and public services
## 1574                     Closure of businesses and public services
## 1575                     Closure of businesses and public services
## 1576                     Closure of businesses and public services
## 1577                     Closure of businesses and public services
## 1578                     Closure of businesses and public services
## 1579                 Requirement to wear protective gear in public
## 1580                 Requirement to wear protective gear in public
## 1581                 Requirement to wear protective gear in public
## 1582                 Requirement to wear protective gear in public
## 1583                 Requirement to wear protective gear in public
## 1584                 Requirement to wear protective gear in public
## 1585                                  Domestic travel restrictions
## 1586                                  Domestic travel restrictions
## 1587                                  Domestic travel restrictions
## 1588                                  Domestic travel restrictions
## 1589                                  Domestic travel restrictions
## 1590                                  Domestic travel restrictions
## 1591                                               Border closure 
## 1592                                               Border closure 
## 1593                                               Border closure 
## 1594                                               Border closure 
## 1595                                               Border closure 
## 1596                                               Border closure 
## 1597                                   State of emergency declared
## 1598                                   State of emergency declared
## 1599                                   State of emergency declared
## 1600                                   State of emergency declared
## 1601                                   State of emergency declared
## 1602                                   State of emergency declared
## 1603                        Strengthening the public health system
## 1604                        Strengthening the public health system
## 1605                        Strengthening the public health system
## 1606                        Strengthening the public health system
## 1607                        Strengthening the public health system
## 1608                        Strengthening the public health system
## 1609                                  Domestic travel restrictions
## 1610                                  Domestic travel restrictions
## 1611                                  Domestic travel restrictions
## 1612                                  Domestic travel restrictions
## 1613                                  Domestic travel restrictions
## 1614                                  Domestic travel restrictions
## 1615                        Strengthening the public health system
## 1616                        Strengthening the public health system
## 1617                        Strengthening the public health system
## 1618                        Strengthening the public health system
## 1619                        Strengthening the public health system
## 1620                        Strengthening the public health system
## 1621                            Changes in prison-related policies
## 1622                            Changes in prison-related policies
## 1623                            Changes in prison-related policies
## 1624                            Changes in prison-related policies
## 1625                            Changes in prison-related policies
## 1626                            Changes in prison-related policies
## 1627                                           Awareness campaigns
## 1628                                           Awareness campaigns
## 1629                                           Awareness campaigns
## 1630                                           Awareness campaigns
## 1631                                           Awareness campaigns
## 1632                                           Awareness campaigns
## 1633                         Other public health measures enforced
## 1634                         Other public health measures enforced
## 1635                         Other public health measures enforced
## 1636                         Other public health measures enforced
## 1637                         Other public health measures enforced
## 1638                         Other public health measures enforced
## 1639                                   Surveillance and monitoring
## 1640                                   Surveillance and monitoring
## 1641                                   Surveillance and monitoring
## 1642                                   Surveillance and monitoring
## 1643                                   Surveillance and monitoring
## 1644                                   Surveillance and monitoring
## 1645                                           Awareness campaigns
## 1646                                           Awareness campaigns
## 1647                                           Awareness campaigns
## 1648                                           Awareness campaigns
## 1649                                           Awareness campaigns
## 1650                                           Awareness campaigns
## 1651                                       Mass population testing
## 1652                                       Mass population testing
## 1653                                       Mass population testing
## 1654                                       Mass population testing
## 1655                                       Mass population testing
## 1656                                       Mass population testing
## 1657                                             Economic measures
## 1658                                             Economic measures
## 1659                                             Economic measures
## 1660                                             Economic measures
## 1661                                             Economic measures
## 1662                                             Economic measures
## 1663                             Isolation and quarantine policies
## 1664                             Isolation and quarantine policies
## 1665                             Isolation and quarantine policies
## 1666                             Isolation and quarantine policies
## 1667                             Isolation and quarantine policies
## 1668                             Isolation and quarantine policies
## 1669                                  Domestic travel restrictions
## 1670                                  Domestic travel restrictions
## 1671                                  Domestic travel restrictions
## 1672                                  Domestic travel restrictions
## 1673                                  Domestic travel restrictions
## 1674                                  Domestic travel restrictions
## 1675                        Strengthening the public health system
## 1676                        Strengthening the public health system
## 1677                        Strengthening the public health system
## 1678                        Strengthening the public health system
## 1679                        Strengthening the public health system
## 1680                        Strengthening the public health system
## 1681                         Other public health measures enforced
## 1682                         Other public health measures enforced
## 1683                         Other public health measures enforced
## 1684                         Other public health measures enforced
## 1685                         Other public health measures enforced
## 1686                         Other public health measures enforced
## 1687                                   Surveillance and monitoring
## 1688                                   Surveillance and monitoring
## 1689                                   Surveillance and monitoring
## 1690                                   Surveillance and monitoring
## 1691                                   Surveillance and monitoring
## 1692                                   Surveillance and monitoring
## 1693                                   Surveillance and monitoring
## 1694                                   Surveillance and monitoring
## 1695                                   Surveillance and monitoring
## 1696                                   Surveillance and monitoring
## 1697                                   Surveillance and monitoring
## 1698                                   Surveillance and monitoring
## 1699                                   State of emergency declared
## 1700                                   State of emergency declared
## 1701                                   State of emergency declared
## 1702                                   State of emergency declared
## 1703                                   State of emergency declared
## 1704                                   State of emergency declared
## 1705                     Closure of businesses and public services
## 1706                     Closure of businesses and public services
## 1707                     Closure of businesses and public services
## 1708                     Closure of businesses and public services
## 1709                     Closure of businesses and public services
## 1710                     Closure of businesses and public services
## 1711                 Requirement to wear protective gear in public
## 1712                 Requirement to wear protective gear in public
## 1713                 Requirement to wear protective gear in public
## 1714                 Requirement to wear protective gear in public
## 1715                 Requirement to wear protective gear in public
## 1716                 Requirement to wear protective gear in public
## 1717                                  Domestic travel restrictions
## 1718                                  Domestic travel restrictions
## 1719                                  Domestic travel restrictions
## 1720                                  Domestic travel restrictions
## 1721                                  Domestic travel restrictions
## 1722                                  Domestic travel restrictions
## 1723                                              Schools closure 
## 1724                                              Schools closure 
## 1725                                              Schools closure 
## 1726                                              Schools closure 
## 1727                                              Schools closure 
## 1728                                              Schools closure 
## 1729                                       Limit public gatherings
## 1730                                       Limit public gatherings
## 1731                                       Limit public gatherings
## 1732                                       Limit public gatherings
## 1733                                       Limit public gatherings
## 1734                                       Limit public gatherings
## 1735                             Isolation and quarantine policies
## 1736                             Isolation and quarantine policies
## 1737                             Isolation and quarantine policies
## 1738                             Isolation and quarantine policies
## 1739                             Isolation and quarantine policies
## 1740                             Isolation and quarantine policies
## 1741                                                Testing policy
## 1742                                                Testing policy
## 1743                                                Testing policy
## 1744                                                Testing policy
## 1745                                                Testing policy
## 1746                                                Testing policy
## 1747                                             Economic measures
## 1748                                             Economic measures
## 1749                                             Economic measures
## 1750                                             Economic measures
## 1751                                             Economic measures
## 1752                                             Economic measures
## 1753                                             Economic measures
## 1754                                             Economic measures
## 1755                                             Economic measures
## 1756                                             Economic measures
## 1757                                             Economic measures
## 1758                                             Economic measures
## 1759                                       Limit public gatherings
## 1760                                       Limit public gatherings
## 1761                                       Limit public gatherings
## 1762                                       Limit public gatherings
## 1763                                       Limit public gatherings
## 1764                                       Limit public gatherings
## 1765                     Closure of businesses and public services
## 1766                     Closure of businesses and public services
## 1767                     Closure of businesses and public services
## 1768                     Closure of businesses and public services
## 1769                     Closure of businesses and public services
## 1770                     Closure of businesses and public services
## 1771                     Closure of businesses and public services
## 1772                     Closure of businesses and public services
## 1773                     Closure of businesses and public services
## 1774                     Closure of businesses and public services
## 1775                     Closure of businesses and public services
## 1776                     Closure of businesses and public services
## 1777                                   Surveillance and monitoring
## 1778                                   Surveillance and monitoring
## 1779                                   Surveillance and monitoring
## 1780                                   Surveillance and monitoring
## 1781                                   Surveillance and monitoring
## 1782                                   Surveillance and monitoring
## 1783                        Strengthening the public health system
## 1784                        Strengthening the public health system
## 1785                        Strengthening the public health system
## 1786                        Strengthening the public health system
## 1787                        Strengthening the public health system
## 1788                        Strengthening the public health system
## 1789                                   Surveillance and monitoring
## 1790                                   Surveillance and monitoring
## 1791                                   Surveillance and monitoring
## 1792                                   Surveillance and monitoring
## 1793                                   Surveillance and monitoring
## 1794                                   Surveillance and monitoring
## 1795                                   Surveillance and monitoring
## 1796                                   Surveillance and monitoring
## 1797                                   Surveillance and monitoring
## 1798                                   Surveillance and monitoring
## 1799                                   Surveillance and monitoring
## 1800                                   Surveillance and monitoring
## 1801                                             Economic measures
## 1802                                             Economic measures
## 1803                                             Economic measures
## 1804                                             Economic measures
## 1805                                             Economic measures
## 1806                                             Economic measures
## 1807                                                 Full lockdown
## 1808                                                 Full lockdown
## 1809                                                 Full lockdown
## 1810                                                 Full lockdown
## 1811                                                 Full lockdown
## 1812                                                 Full lockdown
## 1813                                             Economic measures
## 1814                                             Economic measures
## 1815                                             Economic measures
## 1816                                             Economic measures
## 1817                                             Economic measures
## 1818                                             Economic measures
## 1819                        Strengthening the public health system
## 1820                        Strengthening the public health system
## 1821                        Strengthening the public health system
## 1822                        Strengthening the public health system
## 1823                        Strengthening the public health system
## 1824                        Strengthening the public health system
## 1825                        Strengthening the public health system
## 1826                        Strengthening the public health system
## 1827                        Strengthening the public health system
## 1828                        Strengthening the public health system
## 1829                        Strengthening the public health system
## 1830                        Strengthening the public health system
## 1831                                             Economic measures
## 1832                                             Economic measures
## 1833                                             Economic measures
## 1834                                             Economic measures
## 1835                                             Economic measures
## 1836                                             Economic measures
## 1837                                             Economic measures
## 1838                                             Economic measures
## 1839                                             Economic measures
## 1840                                             Economic measures
## 1841                                             Economic measures
## 1842                                             Economic measures
## 1843                                           Awareness campaigns
## 1844                                           Awareness campaigns
## 1845                                           Awareness campaigns
## 1846                                           Awareness campaigns
## 1847                                           Awareness campaigns
## 1848                                           Awareness campaigns
## 1849                                   Surveillance and monitoring
## 1850                                   Surveillance and monitoring
## 1851                                   Surveillance and monitoring
## 1852                                   Surveillance and monitoring
## 1853                                   Surveillance and monitoring
## 1854                                   Surveillance and monitoring
## 1855                                   Surveillance and monitoring
## 1856                                   Surveillance and monitoring
## 1857                                   Surveillance and monitoring
## 1858                                   Surveillance and monitoring
## 1859                                   Surveillance and monitoring
## 1860                                   Surveillance and monitoring
## 1861                                              Partial lockdown
## 1862                                              Partial lockdown
## 1863                                              Partial lockdown
## 1864                                              Partial lockdown
## 1865                                              Partial lockdown
## 1866                                              Partial lockdown
## 1867                        Strengthening the public health system
## 1868                        Strengthening the public health system
## 1869                        Strengthening the public health system
## 1870                        Strengthening the public health system
## 1871                        Strengthening the public health system
## 1872                        Strengthening the public health system
## 1873                                             Economic measures
## 1874                                             Economic measures
## 1875                                             Economic measures
## 1876                                             Economic measures
## 1877                                             Economic measures
## 1878                                             Economic measures
## 1879  Emergency administrative structures activated or established
## 1880  Emergency administrative structures activated or established
## 1881  Emergency administrative structures activated or established
## 1882  Emergency administrative structures activated or established
## 1883  Emergency administrative structures activated or established
## 1884  Emergency administrative structures activated or established
## 1885                                             Economic measures
## 1886                                             Economic measures
## 1887                                             Economic measures
## 1888                                             Economic measures
## 1889                                             Economic measures
## 1890                                             Economic measures
## 1891                        Strengthening the public health system
## 1892                        Strengthening the public health system
## 1893                        Strengthening the public health system
## 1894                        Strengthening the public health system
## 1895                        Strengthening the public health system
## 1896                        Strengthening the public health system
## 1897  Emergency administrative structures activated or established
## 1898  Emergency administrative structures activated or established
## 1899  Emergency administrative structures activated or established
## 1900  Emergency administrative structures activated or established
## 1901  Emergency administrative structures activated or established
## 1902  Emergency administrative structures activated or established
## 1903                                       General recommendations
## 1904                                       General recommendations
## 1905                                       General recommendations
## 1906                                       General recommendations
## 1907                                       General recommendations
## 1908                                       General recommendations
## 1909                                           Awareness campaigns
## 1910                                           Awareness campaigns
## 1911                                           Awareness campaigns
## 1912                                           Awareness campaigns
## 1913                                           Awareness campaigns
## 1914                                           Awareness campaigns
## 1915                                   Surveillance and monitoring
## 1916                                   Surveillance and monitoring
## 1917                                   Surveillance and monitoring
## 1918                                   Surveillance and monitoring
## 1919                                   Surveillance and monitoring
## 1920                                   Surveillance and monitoring
## 1921                                   State of emergency declared
## 1922                                   State of emergency declared
## 1923                                   State of emergency declared
## 1924                                   State of emergency declared
## 1925                                   State of emergency declared
## 1926                                   State of emergency declared
## 1927                     Closure of businesses and public services
## 1928                     Closure of businesses and public services
## 1929                     Closure of businesses and public services
## 1930                     Closure of businesses and public services
## 1931                     Closure of businesses and public services
## 1932                     Closure of businesses and public services
## 1933                                              Partial lockdown
## 1934                                              Partial lockdown
## 1935                                              Partial lockdown
## 1936                                              Partial lockdown
## 1937                                              Partial lockdown
## 1938                                              Partial lockdown
## 1939  Emergency administrative structures activated or established
## 1940  Emergency administrative structures activated or established
## 1941  Emergency administrative structures activated or established
## 1942  Emergency administrative structures activated or established
## 1943  Emergency administrative structures activated or established
## 1944  Emergency administrative structures activated or established
## 1945                                  Domestic travel restrictions
## 1946                                  Domestic travel restrictions
## 1947                                  Domestic travel restrictions
## 1948                                  Domestic travel restrictions
## 1949                                  Domestic travel restrictions
## 1950                                  Domestic travel restrictions
## 1951                     Closure of businesses and public services
## 1952                     Closure of businesses and public services
## 1953                     Closure of businesses and public services
## 1954                     Closure of businesses and public services
## 1955                     Closure of businesses and public services
## 1956                     Closure of businesses and public services
## 1957                                       Limit public gatherings
## 1958                                       Limit public gatherings
## 1959                                       Limit public gatherings
## 1960                                       Limit public gatherings
## 1961                                       Limit public gatherings
## 1962                                       Limit public gatherings
## 1963                     Closure of businesses and public services
## 1964                     Closure of businesses and public services
## 1965                     Closure of businesses and public services
## 1966                     Closure of businesses and public services
## 1967                     Closure of businesses and public services
## 1968                     Closure of businesses and public services
## 1969                                              Schools closure 
## 1970                                              Schools closure 
## 1971                                              Schools closure 
## 1972                                              Schools closure 
## 1973                                              Schools closure 
## 1974                                              Schools closure 
## 1975                                                       Curfews
## 1976                                                       Curfews
## 1977                                                       Curfews
## 1978                                                       Curfews
## 1979                                                       Curfews
## 1980                                                       Curfews
## 1981                                       Limit public gatherings
## 1982                                       Limit public gatherings
## 1983                                       Limit public gatherings
## 1984                                       Limit public gatherings
## 1985                                       Limit public gatherings
## 1986                                       Limit public gatherings
## 1987                         Other public health measures enforced
## 1988                         Other public health measures enforced
## 1989                         Other public health measures enforced
## 1990                         Other public health measures enforced
## 1991                         Other public health measures enforced
## 1992                         Other public health measures enforced
## 1993                     Closure of businesses and public services
## 1994                     Closure of businesses and public services
## 1995                     Closure of businesses and public services
## 1996                     Closure of businesses and public services
## 1997                     Closure of businesses and public services
## 1998                     Closure of businesses and public services
## 1999                                       Limit public gatherings
## 2000                                       Limit public gatherings
## 2001                                       Limit public gatherings
## 2002                                       Limit public gatherings
## 2003                                       Limit public gatherings
## 2004                                       Limit public gatherings
## 2005                     Closure of businesses and public services
## 2006                     Closure of businesses and public services
## 2007                     Closure of businesses and public services
## 2008                     Closure of businesses and public services
## 2009                     Closure of businesses and public services
## 2010                     Closure of businesses and public services
## 2011                     Closure of businesses and public services
## 2012                     Closure of businesses and public services
## 2013                     Closure of businesses and public services
## 2014                     Closure of businesses and public services
## 2015                     Closure of businesses and public services
## 2016                     Closure of businesses and public services
## 2017                     Closure of businesses and public services
## 2018                     Closure of businesses and public services
## 2019                     Closure of businesses and public services
## 2020                     Closure of businesses and public services
## 2021                     Closure of businesses and public services
## 2022                     Closure of businesses and public services
## 2023                     Closure of businesses and public services
## 2024                     Closure of businesses and public services
## 2025                     Closure of businesses and public services
## 2026                     Closure of businesses and public services
## 2027                     Closure of businesses and public services
## 2028                     Closure of businesses and public services
## 2029                            Changes in prison-related policies
## 2030                            Changes in prison-related policies
## 2031                            Changes in prison-related policies
## 2032                            Changes in prison-related policies
## 2033                            Changes in prison-related policies
## 2034                            Changes in prison-related policies
## 2035                            Changes in prison-related policies
## 2036                            Changes in prison-related policies
## 2037                            Changes in prison-related policies
## 2038                            Changes in prison-related policies
## 2039                            Changes in prison-related policies
## 2040                            Changes in prison-related policies
## 2041                            Changes in prison-related policies
## 2042                            Changes in prison-related policies
## 2043                            Changes in prison-related policies
## 2044                            Changes in prison-related policies
## 2045                            Changes in prison-related policies
## 2046                            Changes in prison-related policies
## 2047                         Other public health measures enforced
## 2048                         Other public health measures enforced
## 2049                         Other public health measures enforced
## 2050                         Other public health measures enforced
## 2051                         Other public health measures enforced
## 2052                         Other public health measures enforced
## 2053                        Strengthening the public health system
## 2054                        Strengthening the public health system
## 2055                        Strengthening the public health system
## 2056                        Strengthening the public health system
## 2057                        Strengthening the public health system
## 2058                        Strengthening the public health system
## 2059                                              Schools closure 
## 2060                                              Schools closure 
## 2061                                              Schools closure 
## 2062                                              Schools closure 
## 2063                                              Schools closure 
## 2064                                              Schools closure 
## 2065                                  Domestic travel restrictions
## 2066                                  Domestic travel restrictions
## 2067                                  Domestic travel restrictions
## 2068                                  Domestic travel restrictions
## 2069                                  Domestic travel restrictions
## 2070                                  Domestic travel restrictions
## 2071                                       Limit public gatherings
## 2072                                       Limit public gatherings
## 2073                                       Limit public gatherings
## 2074                                       Limit public gatherings
## 2075                                       Limit public gatherings
## 2076                                       Limit public gatherings
## 2077                     Closure of businesses and public services
## 2078                     Closure of businesses and public services
## 2079                     Closure of businesses and public services
## 2080                     Closure of businesses and public services
## 2081                     Closure of businesses and public services
## 2082                     Closure of businesses and public services
## 2083                        Strengthening the public health system
## 2084                        Strengthening the public health system
## 2085                        Strengthening the public health system
## 2086                        Strengthening the public health system
## 2087                        Strengthening the public health system
## 2088                        Strengthening the public health system
## 2089                                             Economic measures
## 2090                                             Economic measures
## 2091                                             Economic measures
## 2092                                             Economic measures
## 2093                                             Economic measures
## 2094                                             Economic measures
## 2095                                   Surveillance and monitoring
## 2096                                   Surveillance and monitoring
## 2097                                   Surveillance and monitoring
## 2098                                   Surveillance and monitoring
## 2099                                   Surveillance and monitoring
## 2100                                   Surveillance and monitoring
## 2101                         Other public health measures enforced
## 2102                         Other public health measures enforced
## 2103                         Other public health measures enforced
## 2104                         Other public health measures enforced
## 2105                         Other public health measures enforced
## 2106                         Other public health measures enforced
## 2107                                   Surveillance and monitoring
## 2108                                   Surveillance and monitoring
## 2109                                   Surveillance and monitoring
## 2110                                   Surveillance and monitoring
## 2111                                   Surveillance and monitoring
## 2112                                   Surveillance and monitoring
## 2113                                              Partial lockdown
## 2114                                              Partial lockdown
## 2115                                              Partial lockdown
## 2116                                              Partial lockdown
## 2117                                              Partial lockdown
## 2118                                              Partial lockdown
## 2119                     Closure of businesses and public services
## 2120                     Closure of businesses and public services
## 2121                     Closure of businesses and public services
## 2122                     Closure of businesses and public services
## 2123                     Closure of businesses and public services
## 2124                     Closure of businesses and public services
## 2125                                           Awareness campaigns
## 2126                                           Awareness campaigns
## 2127                                           Awareness campaigns
## 2128                                           Awareness campaigns
## 2129                                           Awareness campaigns
## 2130                                           Awareness campaigns
## 2131                        Strengthening the public health system
## 2132                        Strengthening the public health system
## 2133                        Strengthening the public health system
## 2134                        Strengthening the public health system
## 2135                        Strengthening the public health system
## 2136                        Strengthening the public health system
## 2137                                              Partial lockdown
## 2138                                              Partial lockdown
## 2139                                              Partial lockdown
## 2140                                              Partial lockdown
## 2141                                              Partial lockdown
## 2142                                              Partial lockdown
## 2143                        Strengthening the public health system
## 2144                        Strengthening the public health system
## 2145                        Strengthening the public health system
## 2146                        Strengthening the public health system
## 2147                        Strengthening the public health system
## 2148                        Strengthening the public health system
## 2149  Emergency administrative structures activated or established
## 2150  Emergency administrative structures activated or established
## 2151  Emergency administrative structures activated or established
## 2152  Emergency administrative structures activated or established
## 2153  Emergency administrative structures activated or established
## 2154  Emergency administrative structures activated or established
## 2155                                           Awareness campaigns
## 2156                                           Awareness campaigns
## 2157                                           Awareness campaigns
## 2158                                           Awareness campaigns
## 2159                                           Awareness campaigns
## 2160                                           Awareness campaigns
## 2161                                       Humanitarian exemptions
## 2162                                       Humanitarian exemptions
## 2163                                       Humanitarian exemptions
## 2164                                       Humanitarian exemptions
## 2165                                       Humanitarian exemptions
## 2166                                       Humanitarian exemptions
## 2167                                              Partial lockdown
## 2168                                              Partial lockdown
## 2169                                              Partial lockdown
## 2170                                              Partial lockdown
## 2171                                              Partial lockdown
## 2172                                              Partial lockdown
## 2173                                              Partial lockdown
## 2174                                              Partial lockdown
## 2175                                              Partial lockdown
## 2176                                              Partial lockdown
## 2177                                              Partial lockdown
## 2178                                              Partial lockdown
## 2179                        Strengthening the public health system
## 2180                        Strengthening the public health system
## 2181                        Strengthening the public health system
## 2182                        Strengthening the public health system
## 2183                        Strengthening the public health system
## 2184                        Strengthening the public health system
## 2185                     Closure of businesses and public services
## 2186                     Closure of businesses and public services
## 2187                     Closure of businesses and public services
## 2188                     Closure of businesses and public services
## 2189                     Closure of businesses and public services
## 2190                     Closure of businesses and public services
## 2191                              International flights suspension
## 2192                              International flights suspension
## 2193                              International flights suspension
## 2194                              International flights suspension
## 2195                              International flights suspension
## 2196                              International flights suspension
## 2197                                             Visa restrictions
## 2198                                             Visa restrictions
## 2199                                             Visa restrictions
## 2200                                             Visa restrictions
## 2201                                             Visa restrictions
## 2202                                             Visa restrictions
## 2203                        Strengthening the public health system
## 2204                        Strengthening the public health system
## 2205                        Strengthening the public health system
## 2206                        Strengthening the public health system
## 2207                        Strengthening the public health system
## 2208                        Strengthening the public health system
## 2209                            Changes in prison-related policies
## 2210                            Changes in prison-related policies
## 2211                            Changes in prison-related policies
## 2212                            Changes in prison-related policies
## 2213                            Changes in prison-related policies
## 2214                            Changes in prison-related policies
## 2215                                   Surveillance and monitoring
## 2216                                   Surveillance and monitoring
## 2217                                   Surveillance and monitoring
## 2218                                   Surveillance and monitoring
## 2219                                   Surveillance and monitoring
## 2220                                   Surveillance and monitoring
## 2221                                           Awareness campaigns
## 2222                                           Awareness campaigns
## 2223                                           Awareness campaigns
## 2224                                           Awareness campaigns
## 2225                                           Awareness campaigns
## 2226                                           Awareness campaigns
## 2227                                             Visa restrictions
## 2228                                             Visa restrictions
## 2229                                             Visa restrictions
## 2230                                             Visa restrictions
## 2231                                             Visa restrictions
## 2232                                             Visa restrictions
## 2233                                       Limit public gatherings
## 2234                                       Limit public gatherings
## 2235                                       Limit public gatherings
## 2236                                       Limit public gatherings
## 2237                                       Limit public gatherings
## 2238                                       Limit public gatherings
## 2239                                       Limit public gatherings
## 2240                                       Limit public gatherings
## 2241                                       Limit public gatherings
## 2242                                       Limit public gatherings
## 2243                                       Limit public gatherings
## 2244                                       Limit public gatherings
## 2245                                           Awareness campaigns
## 2246                                           Awareness campaigns
## 2247                                           Awareness campaigns
## 2248                                           Awareness campaigns
## 2249                                           Awareness campaigns
## 2250                                           Awareness campaigns
## 2251                                              Schools closure 
## 2252                                              Schools closure 
## 2253                                              Schools closure 
## 2254                                              Schools closure 
## 2255                                              Schools closure 
## 2256                                              Schools closure 
## 2257  Emergency administrative structures activated or established
## 2258  Emergency administrative structures activated or established
## 2259  Emergency administrative structures activated or established
## 2260  Emergency administrative structures activated or established
## 2261  Emergency administrative structures activated or established
## 2262  Emergency administrative structures activated or established
## 2263                                             Economic measures
## 2264                                             Economic measures
## 2265                                             Economic measures
## 2266                                             Economic measures
## 2267                                             Economic measures
## 2268                                             Economic measures
## 2269                        Strengthening the public health system
## 2270                        Strengthening the public health system
## 2271                        Strengthening the public health system
## 2272                        Strengthening the public health system
## 2273                        Strengthening the public health system
## 2274                        Strengthening the public health system
## 2275                        Strengthening the public health system
## 2276                        Strengthening the public health system
## 2277                        Strengthening the public health system
## 2278                        Strengthening the public health system
## 2279                        Strengthening the public health system
## 2280                        Strengthening the public health system
## 2281                        Strengthening the public health system
## 2282                        Strengthening the public health system
## 2283                        Strengthening the public health system
## 2284                        Strengthening the public health system
## 2285                        Strengthening the public health system
## 2286                        Strengthening the public health system
## 2287                     Closure of businesses and public services
## 2288                     Closure of businesses and public services
## 2289                     Closure of businesses and public services
## 2290                     Closure of businesses and public services
## 2291                     Closure of businesses and public services
## 2292                     Closure of businesses and public services
## 2293                        Strengthening the public health system
## 2294                        Strengthening the public health system
## 2295                        Strengthening the public health system
## 2296                        Strengthening the public health system
## 2297                        Strengthening the public health system
## 2298                        Strengthening the public health system
## 2299                                             Economic measures
## 2300                                             Economic measures
## 2301                                             Economic measures
## 2302                                             Economic measures
## 2303                                             Economic measures
## 2304                                             Economic measures
## 2305                     Closure of businesses and public services
## 2306                     Closure of businesses and public services
## 2307                     Closure of businesses and public services
## 2308                     Closure of businesses and public services
## 2309                     Closure of businesses and public services
## 2310                     Closure of businesses and public services
## 2311                                   State of emergency declared
## 2312                                   State of emergency declared
## 2313                                   State of emergency declared
## 2314                                   State of emergency declared
## 2315                                   State of emergency declared
## 2316                                   State of emergency declared
## 2317                                                       Curfews
## 2318                                                       Curfews
## 2319                                                       Curfews
## 2320                                                       Curfews
## 2321                                                       Curfews
## 2322                                                       Curfews
## 2323                 Requirement to wear protective gear in public
## 2324                 Requirement to wear protective gear in public
## 2325                 Requirement to wear protective gear in public
## 2326                 Requirement to wear protective gear in public
## 2327                 Requirement to wear protective gear in public
## 2328                 Requirement to wear protective gear in public
## 2329                  Amendments to funeral and burial regulations
## 2330                  Amendments to funeral and burial regulations
## 2331                  Amendments to funeral and burial regulations
## 2332                  Amendments to funeral and burial regulations
## 2333                  Amendments to funeral and burial regulations
## 2334                  Amendments to funeral and burial regulations
## 2335                                       Limit public gatherings
## 2336                                       Limit public gatherings
## 2337                                       Limit public gatherings
## 2338                                       Limit public gatherings
## 2339                                       Limit public gatherings
## 2340                                       Limit public gatherings
## 2341                            Changes in prison-related policies
## 2342                            Changes in prison-related policies
## 2343                            Changes in prison-related policies
## 2344                            Changes in prison-related policies
## 2345                            Changes in prison-related policies
## 2346                            Changes in prison-related policies
## 2347                         Other public health measures enforced
## 2348                         Other public health measures enforced
## 2349                         Other public health measures enforced
## 2350                         Other public health measures enforced
## 2351                         Other public health measures enforced
## 2352                         Other public health measures enforced
## 2353                                                 Full lockdown
## 2354                                                 Full lockdown
## 2355                                                 Full lockdown
## 2356                                                 Full lockdown
## 2357                                                 Full lockdown
## 2358                                                 Full lockdown
## 2359                                                 Full lockdown
## 2360                                                 Full lockdown
## 2361                                                 Full lockdown
## 2362                                                 Full lockdown
## 2363                                                 Full lockdown
## 2364                                                 Full lockdown
## 2365                                              Partial lockdown
## 2366                                              Partial lockdown
## 2367                                              Partial lockdown
## 2368                                              Partial lockdown
## 2369                                              Partial lockdown
## 2370                                              Partial lockdown
## 2371                                              Partial lockdown
## 2372                                              Partial lockdown
## 2373                                              Partial lockdown
## 2374                                              Partial lockdown
## 2375                                              Partial lockdown
## 2376                                              Partial lockdown
## 2377                                              Partial lockdown
## 2378                                              Partial lockdown
## 2379                                              Partial lockdown
## 2380                                              Partial lockdown
## 2381                                              Partial lockdown
## 2382                                              Partial lockdown
## 2383                                             Economic measures
## 2384                                             Economic measures
## 2385                                             Economic measures
## 2386                                             Economic measures
## 2387                                             Economic measures
## 2388                                             Economic measures
## 2389                              International flights suspension
## 2390                              International flights suspension
## 2391                              International flights suspension
## 2392                              International flights suspension
## 2393                              International flights suspension
## 2394                              International flights suspension
## 2395                                              Partial lockdown
## 2396                                              Partial lockdown
## 2397                                              Partial lockdown
## 2398                                              Partial lockdown
## 2399                                              Partial lockdown
## 2400                                              Partial lockdown
## 2401                                   State of emergency declared
## 2402                                   State of emergency declared
## 2403                                   State of emergency declared
## 2404                                   State of emergency declared
## 2405                                   State of emergency declared
## 2406                                   State of emergency declared
## 2407                                       Limit public gatherings
## 2408                                       Limit public gatherings
## 2409                                       Limit public gatherings
## 2410                                       Limit public gatherings
## 2411                                       Limit public gatherings
## 2412                                       Limit public gatherings
## 2413                 Requirement to wear protective gear in public
## 2414                 Requirement to wear protective gear in public
## 2415                 Requirement to wear protective gear in public
## 2416                 Requirement to wear protective gear in public
## 2417                 Requirement to wear protective gear in public
## 2418                 Requirement to wear protective gear in public
## 2419                                              Partial lockdown
## 2420                                              Partial lockdown
## 2421                                              Partial lockdown
## 2422                                              Partial lockdown
## 2423                                              Partial lockdown
## 2424                                              Partial lockdown
## 2425                                             Visa restrictions
## 2426                                             Visa restrictions
## 2427                                             Visa restrictions
## 2428                                             Visa restrictions
## 2429                                             Visa restrictions
## 2430                                             Visa restrictions
## 2431                                   State of emergency declared
## 2432                                   State of emergency declared
## 2433                                   State of emergency declared
## 2434                                   State of emergency declared
## 2435                                   State of emergency declared
## 2436                                   State of emergency declared
## 2437                                   State of emergency declared
## 2438                                   State of emergency declared
## 2439                                   State of emergency declared
## 2440                                   State of emergency declared
## 2441                                   State of emergency declared
## 2442                                   State of emergency declared
## 2443                     Closure of businesses and public services
## 2444                     Closure of businesses and public services
## 2445                     Closure of businesses and public services
## 2446                     Closure of businesses and public services
## 2447                     Closure of businesses and public services
## 2448                     Closure of businesses and public services
## 2449                                               Border closure 
## 2450                                               Border closure 
## 2451                                               Border closure 
## 2452                                               Border closure 
## 2453                                               Border closure 
## 2454                                               Border closure 
## 2455         Additional health/documents requirements upon arrival
## 2456         Additional health/documents requirements upon arrival
## 2457         Additional health/documents requirements upon arrival
## 2458         Additional health/documents requirements upon arrival
## 2459         Additional health/documents requirements upon arrival
## 2460         Additional health/documents requirements upon arrival
## 2461            Health screenings in airports and border crossings
## 2462            Health screenings in airports and border crossings
## 2463            Health screenings in airports and border crossings
## 2464            Health screenings in airports and border crossings
## 2465            Health screenings in airports and border crossings
## 2466            Health screenings in airports and border crossings
## 2467                             Isolation and quarantine policies
## 2468                             Isolation and quarantine policies
## 2469                             Isolation and quarantine policies
## 2470                             Isolation and quarantine policies
## 2471                             Isolation and quarantine policies
## 2472                             Isolation and quarantine policies
## 2473                                       Mass population testing
## 2474                                       Mass population testing
## 2475                                       Mass population testing
## 2476                                       Mass population testing
## 2477                                       Mass population testing
## 2478                                       Mass population testing
## 2479                                       Limit public gatherings
## 2480                                       Limit public gatherings
## 2481                                       Limit public gatherings
## 2482                                       Limit public gatherings
## 2483                                       Limit public gatherings
## 2484                                       Limit public gatherings
## 2485                         Other public health measures enforced
## 2486                         Other public health measures enforced
## 2487                         Other public health measures enforced
## 2488                         Other public health measures enforced
## 2489                         Other public health measures enforced
## 2490                         Other public health measures enforced
## 2491                              International flights suspension
## 2492                              International flights suspension
## 2493                              International flights suspension
## 2494                              International flights suspension
## 2495                              International flights suspension
## 2496                              International flights suspension
## 2497  Emergency administrative structures activated or established
## 2498  Emergency administrative structures activated or established
## 2499  Emergency administrative structures activated or established
## 2500  Emergency administrative structures activated or established
## 2501  Emergency administrative structures activated or established
## 2502  Emergency administrative structures activated or established
## 2503                                                       Curfews
## 2504                                                       Curfews
## 2505                                                       Curfews
## 2506                                                       Curfews
## 2507                                                       Curfews
## 2508                                                       Curfews
## 2509                                             Economic measures
## 2510                                             Economic measures
## 2511                                             Economic measures
## 2512                                             Economic measures
## 2513                                             Economic measures
## 2514                                             Economic measures
## 2515                                               Border closure 
## 2516                                               Border closure 
## 2517                                               Border closure 
## 2518                                               Border closure 
## 2519                                               Border closure 
## 2520                                               Border closure 
## 2521                              International flights suspension
## 2522                              International flights suspension
## 2523                              International flights suspension
## 2524                              International flights suspension
## 2525                              International flights suspension
## 2526                              International flights suspension
## 2527                     Closure of businesses and public services
## 2528                     Closure of businesses and public services
## 2529                     Closure of businesses and public services
## 2530                     Closure of businesses and public services
## 2531                     Closure of businesses and public services
## 2532                     Closure of businesses and public services
## 2533                                                       Curfews
## 2534                                                       Curfews
## 2535                                                       Curfews
## 2536                                                       Curfews
## 2537                                                       Curfews
## 2538                                                       Curfews
## 2539                     Closure of businesses and public services
## 2540                     Closure of businesses and public services
## 2541                     Closure of businesses and public services
## 2542                     Closure of businesses and public services
## 2543                     Closure of businesses and public services
## 2544                     Closure of businesses and public services
## 2545                     Closure of businesses and public services
## 2546                     Closure of businesses and public services
## 2547                     Closure of businesses and public services
## 2548                     Closure of businesses and public services
## 2549                     Closure of businesses and public services
## 2550                     Closure of businesses and public services
## 2551                                       Limit public gatherings
## 2552                                       Limit public gatherings
## 2553                                       Limit public gatherings
## 2554                                       Limit public gatherings
## 2555                                       Limit public gatherings
## 2556                                       Limit public gatherings
## 2557                                       Limit public gatherings
## 2558                                       Limit public gatherings
## 2559                                       Limit public gatherings
## 2560                                       Limit public gatherings
## 2561                                       Limit public gatherings
## 2562                                       Limit public gatherings
## 2563                        Strengthening the public health system
## 2564                        Strengthening the public health system
## 2565                        Strengthening the public health system
## 2566                        Strengthening the public health system
## 2567                        Strengthening the public health system
## 2568                        Strengthening the public health system
## 2569                         Other public health measures enforced
## 2570                         Other public health measures enforced
## 2571                         Other public health measures enforced
## 2572                         Other public health measures enforced
## 2573                         Other public health measures enforced
## 2574                         Other public health measures enforced
## 2575                         Other public health measures enforced
## 2576                         Other public health measures enforced
## 2577                         Other public health measures enforced
## 2578                         Other public health measures enforced
## 2579                         Other public health measures enforced
## 2580                         Other public health measures enforced
## 2581                         Other public health measures enforced
## 2582                         Other public health measures enforced
## 2583                         Other public health measures enforced
## 2584                         Other public health measures enforced
## 2585                         Other public health measures enforced
## 2586                         Other public health measures enforced
## 2587                             Isolation and quarantine policies
## 2588                             Isolation and quarantine policies
## 2589                             Isolation and quarantine policies
## 2590                             Isolation and quarantine policies
## 2591                             Isolation and quarantine policies
## 2592                             Isolation and quarantine policies
## 2593                 Requirement to wear protective gear in public
## 2594                 Requirement to wear protective gear in public
## 2595                 Requirement to wear protective gear in public
## 2596                 Requirement to wear protective gear in public
## 2597                 Requirement to wear protective gear in public
## 2598                 Requirement to wear protective gear in public
## 2599         Additional health/documents requirements upon arrival
## 2600         Additional health/documents requirements upon arrival
## 2601         Additional health/documents requirements upon arrival
## 2602         Additional health/documents requirements upon arrival
## 2603         Additional health/documents requirements upon arrival
## 2604         Additional health/documents requirements upon arrival
## 2605                                   Surveillance and monitoring
## 2606                                   Surveillance and monitoring
## 2607                                   Surveillance and monitoring
## 2608                                   Surveillance and monitoring
## 2609                                   Surveillance and monitoring
## 2610                                   Surveillance and monitoring
## 2611                             Isolation and quarantine policies
## 2612                             Isolation and quarantine policies
## 2613                             Isolation and quarantine policies
## 2614                             Isolation and quarantine policies
## 2615                             Isolation and quarantine policies
## 2616                             Isolation and quarantine policies
## 2617                              International flights suspension
## 2618                              International flights suspension
## 2619                              International flights suspension
## 2620                              International flights suspension
## 2621                              International flights suspension
## 2622                              International flights suspension
## 2623                                             Visa restrictions
## 2624                                             Visa restrictions
## 2625                                             Visa restrictions
## 2626                                             Visa restrictions
## 2627                                             Visa restrictions
## 2628                                             Visa restrictions
## 2629                             Isolation and quarantine policies
## 2630                             Isolation and quarantine policies
## 2631                             Isolation and quarantine policies
## 2632                             Isolation and quarantine policies
## 2633                             Isolation and quarantine policies
## 2634                             Isolation and quarantine policies
## 2635                                       Limit public gatherings
## 2636                                       Limit public gatherings
## 2637                                       Limit public gatherings
## 2638                                       Limit public gatherings
## 2639                                       Limit public gatherings
## 2640                                       Limit public gatherings
## 2641                                             Visa restrictions
## 2642                                             Visa restrictions
## 2643                                             Visa restrictions
## 2644                                             Visa restrictions
## 2645                                             Visa restrictions
## 2646                                             Visa restrictions
## 2647                                  Domestic travel restrictions
## 2648                                  Domestic travel restrictions
## 2649                                  Domestic travel restrictions
## 2650                                  Domestic travel restrictions
## 2651                                  Domestic travel restrictions
## 2652                                  Domestic travel restrictions
## 2653                                       Limit public gatherings
## 2654                                       Limit public gatherings
## 2655                                       Limit public gatherings
## 2656                                       Limit public gatherings
## 2657                                       Limit public gatherings
## 2658                                       Limit public gatherings
## 2659                     Closure of businesses and public services
## 2660                     Closure of businesses and public services
## 2661                     Closure of businesses and public services
## 2662                     Closure of businesses and public services
## 2663                     Closure of businesses and public services
## 2664                     Closure of businesses and public services
## 2665                                             Economic measures
## 2666                                             Economic measures
## 2667                                             Economic measures
## 2668                                             Economic measures
## 2669                                             Economic measures
## 2670                                             Economic measures
## 2671                                             Economic measures
## 2672                                             Economic measures
## 2673                                             Economic measures
## 2674                                             Economic measures
## 2675                                             Economic measures
## 2676                                             Economic measures
## 2677                        Strengthening the public health system
## 2678                        Strengthening the public health system
## 2679                        Strengthening the public health system
## 2680                        Strengthening the public health system
## 2681                        Strengthening the public health system
## 2682                        Strengthening the public health system
## 2683                                              Partial lockdown
## 2684                                              Partial lockdown
## 2685                                              Partial lockdown
## 2686                                              Partial lockdown
## 2687                                              Partial lockdown
## 2688                                              Partial lockdown
## 2689                                           Awareness campaigns
## 2690                                           Awareness campaigns
## 2691                                           Awareness campaigns
## 2692                                           Awareness campaigns
## 2693                                           Awareness campaigns
## 2694                                           Awareness campaigns
## 2695                                             Economic measures
## 2696                                             Economic measures
## 2697                                             Economic measures
## 2698                                             Economic measures
## 2699                                             Economic measures
## 2700                                             Economic measures
## 2701                                             Economic measures
## 2702                                             Economic measures
## 2703                                             Economic measures
## 2704                                             Economic measures
## 2705                                             Economic measures
## 2706                                             Economic measures
## 2707                                   State of emergency declared
## 2708                                   State of emergency declared
## 2709                                   State of emergency declared
## 2710                                   State of emergency declared
## 2711                                   State of emergency declared
## 2712                                   State of emergency declared
## 2713                                              Schools closure 
## 2714                                              Schools closure 
## 2715                                              Schools closure 
## 2716                                              Schools closure 
## 2717                                              Schools closure 
## 2718                                              Schools closure 
## 2719                                             Economic measures
## 2720                                             Economic measures
## 2721                                             Economic measures
## 2722                                             Economic measures
## 2723                                             Economic measures
## 2724                                             Economic measures
## 2725                                   Surveillance and monitoring
## 2726                                   Surveillance and monitoring
## 2727                                   Surveillance and monitoring
## 2728                                   Surveillance and monitoring
## 2729                                   Surveillance and monitoring
## 2730                                   Surveillance and monitoring
## 2731                                               Border closure 
## 2732                                               Border closure 
## 2733                                               Border closure 
## 2734                                               Border closure 
## 2735                                               Border closure 
## 2736                                               Border closure 
## 2737                                             Economic measures
## 2738                                             Economic measures
## 2739                                             Economic measures
## 2740                                             Economic measures
## 2741                                             Economic measures
## 2742                                             Economic measures
## 2743                                             Economic measures
## 2744                                             Economic measures
## 2745                                             Economic measures
## 2746                                             Economic measures
## 2747                                             Economic measures
## 2748                                             Economic measures
## 2749                                             Economic measures
## 2750                                             Economic measures
## 2751                                             Economic measures
## 2752                                             Economic measures
## 2753                                             Economic measures
## 2754                                             Economic measures
## 2755                                   State of emergency declared
## 2756                                   State of emergency declared
## 2757                                   State of emergency declared
## 2758                                   State of emergency declared
## 2759                                   State of emergency declared
## 2760                                   State of emergency declared
## 2761                                              Partial lockdown
## 2762                                              Partial lockdown
## 2763                                              Partial lockdown
## 2764                                              Partial lockdown
## 2765                                              Partial lockdown
## 2766                                              Partial lockdown
## 2767                                               Border closure 
## 2768                                               Border closure 
## 2769                                               Border closure 
## 2770                                               Border closure 
## 2771                                               Border closure 
## 2772                                               Border closure 
## 2773                                             Economic measures
## 2774                                             Economic measures
## 2775                                             Economic measures
## 2776                                             Economic measures
## 2777                                             Economic measures
## 2778                                             Economic measures
## 2779                                             Economic measures
## 2780                                             Economic measures
## 2781                                             Economic measures
## 2782                                             Economic measures
## 2783                                             Economic measures
## 2784                                             Economic measures
## 2785                                               Border closure 
## 2786                                               Border closure 
## 2787                                               Border closure 
## 2788                                               Border closure 
## 2789                                               Border closure 
## 2790                                               Border closure 
## 2791                                             Economic measures
## 2792                                             Economic measures
## 2793                                             Economic measures
## 2794                                             Economic measures
## 2795                                             Economic measures
## 2796                                             Economic measures
## 2797                 Requirement to wear protective gear in public
## 2798                 Requirement to wear protective gear in public
## 2799                 Requirement to wear protective gear in public
## 2800                 Requirement to wear protective gear in public
## 2801                 Requirement to wear protective gear in public
## 2802                 Requirement to wear protective gear in public
## 2803                                              Partial lockdown
## 2804                                              Partial lockdown
## 2805                                              Partial lockdown
## 2806                                              Partial lockdown
## 2807                                              Partial lockdown
## 2808                                              Partial lockdown
## 2809                                             Economic measures
## 2810                                             Economic measures
## 2811                                             Economic measures
## 2812                                             Economic measures
## 2813                                             Economic measures
## 2814                                             Economic measures
## 2815                                               Border closure 
## 2816                                               Border closure 
## 2817                                               Border closure 
## 2818                                               Border closure 
## 2819                                               Border closure 
## 2820                                               Border closure 
## 2821                 Requirement to wear protective gear in public
## 2822                 Requirement to wear protective gear in public
## 2823                 Requirement to wear protective gear in public
## 2824                 Requirement to wear protective gear in public
## 2825                 Requirement to wear protective gear in public
## 2826                 Requirement to wear protective gear in public
## 2827                                       General recommendations
## 2828                                       General recommendations
## 2829                                       General recommendations
## 2830                                       General recommendations
## 2831                                       General recommendations
## 2832                                       General recommendations
## 2833                                             Economic measures
## 2834                                             Economic measures
## 2835                                             Economic measures
## 2836                                             Economic measures
## 2837                                             Economic measures
## 2838                                             Economic measures
## 2839                                             Economic measures
## 2840                                             Economic measures
## 2841                                             Economic measures
## 2842                                             Economic measures
## 2843                                             Economic measures
## 2844                                             Economic measures
## 2845                                             Economic measures
## 2846                                             Economic measures
## 2847                                             Economic measures
## 2848                                             Economic measures
## 2849                                             Economic measures
## 2850                                             Economic measures
## 2851                                                Testing policy
## 2852                                                Testing policy
## 2853                                                Testing policy
## 2854                                                Testing policy
## 2855                                                Testing policy
## 2856                                                Testing policy
## 2857                                             Economic measures
## 2858                                             Economic measures
## 2859                                             Economic measures
## 2860                                             Economic measures
## 2861                                             Economic measures
## 2862                                             Economic measures
## 2863                                              Partial lockdown
## 2864                                              Partial lockdown
## 2865                                              Partial lockdown
## 2866                                              Partial lockdown
## 2867                                              Partial lockdown
## 2868                                              Partial lockdown
## 2869                                               Border closure 
## 2870                                               Border closure 
## 2871                                               Border closure 
## 2872                                               Border closure 
## 2873                                               Border closure 
## 2874                                               Border closure 
## 2875                              International flights suspension
## 2876                              International flights suspension
## 2877                              International flights suspension
## 2878                              International flights suspension
## 2879                              International flights suspension
## 2880                              International flights suspension
## 2881                                             Economic measures
## 2882                                             Economic measures
## 2883                                             Economic measures
## 2884                                             Economic measures
## 2885                                             Economic measures
## 2886                                             Economic measures
## 2887                                             Economic measures
## 2888                                             Economic measures
## 2889                                             Economic measures
## 2890                                             Economic measures
## 2891                                             Economic measures
## 2892                                             Economic measures
## 2893                                             Economic measures
## 2894                                             Economic measures
## 2895                                             Economic measures
## 2896                                             Economic measures
## 2897                                             Economic measures
## 2898                                             Economic measures
## 2899                                             Economic measures
## 2900                                             Economic measures
## 2901                                             Economic measures
## 2902                                             Economic measures
## 2903                                             Economic measures
## 2904                                             Economic measures
## 2905                                             Economic measures
## 2906                                             Economic measures
## 2907                                             Economic measures
## 2908                                             Economic measures
## 2909                                             Economic measures
## 2910                                             Economic measures
## 2911                                             Economic measures
## 2912                                             Economic measures
## 2913                                             Economic measures
## 2914                                             Economic measures
## 2915                                             Economic measures
## 2916                                             Economic measures
## 2917                                       Mass population testing
## 2918                                       Mass population testing
## 2919                                       Mass population testing
## 2920                                       Mass population testing
## 2921                                       Mass population testing
## 2922                                       Mass population testing
## 2923                                              Partial lockdown
## 2924                                              Partial lockdown
## 2925                                              Partial lockdown
## 2926                                              Partial lockdown
## 2927                                              Partial lockdown
## 2928                                              Partial lockdown
## 2929                     Closure of businesses and public services
## 2930                     Closure of businesses and public services
## 2931                     Closure of businesses and public services
## 2932                     Closure of businesses and public services
## 2933                     Closure of businesses and public services
## 2934                     Closure of businesses and public services
## 2935                                             Economic measures
## 2936                                             Economic measures
## 2937                                             Economic measures
## 2938                                             Economic measures
## 2939                                             Economic measures
## 2940                                             Economic measures
## 2941                                             Economic measures
## 2942                                             Economic measures
## 2943                                             Economic measures
## 2944                                             Economic measures
## 2945                                             Economic measures
## 2946                                             Economic measures
## 2947                                             Economic measures
## 2948                                             Economic measures
## 2949                                             Economic measures
## 2950                                             Economic measures
## 2951                                             Economic measures
## 2952                                             Economic measures
## 2953                                             Economic measures
## 2954                                             Economic measures
## 2955                                             Economic measures
## 2956                                             Economic measures
## 2957                                             Economic measures
## 2958                                             Economic measures
## 2959                             Isolation and quarantine policies
## 2960                             Isolation and quarantine policies
## 2961                             Isolation and quarantine policies
## 2962                             Isolation and quarantine policies
## 2963                             Isolation and quarantine policies
## 2964                             Isolation and quarantine policies
## 2965                                              Partial lockdown
## 2966                                              Partial lockdown
## 2967                                              Partial lockdown
## 2968                                              Partial lockdown
## 2969                                              Partial lockdown
## 2970                                              Partial lockdown
## 2971                                             Economic measures
## 2972                                             Economic measures
## 2973                                             Economic measures
## 2974                                             Economic measures
## 2975                                             Economic measures
## 2976                                             Economic measures
## 2977                                             Economic measures
## 2978                                             Economic measures
## 2979                                             Economic measures
## 2980                                             Economic measures
## 2981                                             Economic measures
## 2982                                             Economic measures
## 2983                                             Economic measures
## 2984                                             Economic measures
## 2985                                             Economic measures
## 2986                                             Economic measures
## 2987                                             Economic measures
## 2988                                             Economic measures
## 2989                                   Surveillance and monitoring
## 2990                                   Surveillance and monitoring
## 2991                                   Surveillance and monitoring
## 2992                                   Surveillance and monitoring
## 2993                                   Surveillance and monitoring
## 2994                                   Surveillance and monitoring
## 2995                                              Partial lockdown
## 2996                                              Partial lockdown
## 2997                                              Partial lockdown
## 2998                                              Partial lockdown
## 2999                                              Partial lockdown
## 3000                                              Partial lockdown
## 3001                                              Partial lockdown
## 3002                                              Partial lockdown
## 3003                                              Partial lockdown
## 3004                                              Partial lockdown
## 3005                                              Partial lockdown
## 3006                                              Partial lockdown
## 3007                                              Partial lockdown
## 3008                                              Partial lockdown
## 3009                                              Partial lockdown
## 3010                                              Partial lockdown
## 3011                                              Partial lockdown
## 3012                                              Partial lockdown
## 3013                     Closure of businesses and public services
## 3014                     Closure of businesses and public services
## 3015                     Closure of businesses and public services
## 3016                     Closure of businesses and public services
## 3017                     Closure of businesses and public services
## 3018                     Closure of businesses and public services
## 3019                             Isolation and quarantine policies
## 3020                             Isolation and quarantine policies
## 3021                             Isolation and quarantine policies
## 3022                             Isolation and quarantine policies
## 3023                             Isolation and quarantine policies
## 3024                             Isolation and quarantine policies
## 3025                                             Economic measures
## 3026                                             Economic measures
## 3027                                             Economic measures
## 3028                                             Economic measures
## 3029                                             Economic measures
## 3030                                             Economic measures
## 3031                                              Partial lockdown
## 3032                                              Partial lockdown
## 3033                                              Partial lockdown
## 3034                                              Partial lockdown
## 3035                                              Partial lockdown
## 3036                                              Partial lockdown
## 3037                                  Domestic travel restrictions
## 3038                                  Domestic travel restrictions
## 3039                                  Domestic travel restrictions
## 3040                                  Domestic travel restrictions
## 3041                                  Domestic travel restrictions
## 3042                                  Domestic travel restrictions
## 3043                     Closure of businesses and public services
## 3044                     Closure of businesses and public services
## 3045                     Closure of businesses and public services
## 3046                     Closure of businesses and public services
## 3047                     Closure of businesses and public services
## 3048                     Closure of businesses and public services
## 3049                                              Schools closure 
## 3050                                              Schools closure 
## 3051                                              Schools closure 
## 3052                                              Schools closure 
## 3053                                              Schools closure 
## 3054                                              Schools closure 
## 3055                                       Limit public gatherings
## 3056                                       Limit public gatherings
## 3057                                       Limit public gatherings
## 3058                                       Limit public gatherings
## 3059                                       Limit public gatherings
## 3060                                       Limit public gatherings
## 3061                                       Limit public gatherings
## 3062                                       Limit public gatherings
## 3063                                       Limit public gatherings
## 3064                                       Limit public gatherings
## 3065                                       Limit public gatherings
## 3066                                       Limit public gatherings
## 3067                              International flights suspension
## 3068                              International flights suspension
## 3069                              International flights suspension
## 3070                              International flights suspension
## 3071                              International flights suspension
## 3072                              International flights suspension
## 3073                                  Domestic travel restrictions
## 3074                                  Domestic travel restrictions
## 3075                                  Domestic travel restrictions
## 3076                                  Domestic travel restrictions
## 3077                                  Domestic travel restrictions
## 3078                                  Domestic travel restrictions
## 3079                                             Visa restrictions
## 3080                                             Visa restrictions
## 3081                                             Visa restrictions
## 3082                                             Visa restrictions
## 3083                                             Visa restrictions
## 3084                                             Visa restrictions
## 3085                 Requirement to wear protective gear in public
## 3086                 Requirement to wear protective gear in public
## 3087                 Requirement to wear protective gear in public
## 3088                 Requirement to wear protective gear in public
## 3089                 Requirement to wear protective gear in public
## 3090                 Requirement to wear protective gear in public
## 3091            Health screenings in airports and border crossings
## 3092            Health screenings in airports and border crossings
## 3093            Health screenings in airports and border crossings
## 3094            Health screenings in airports and border crossings
## 3095            Health screenings in airports and border crossings
## 3096            Health screenings in airports and border crossings
## 3097                                               Border closure 
## 3098                                               Border closure 
## 3099                                               Border closure 
## 3100                                               Border closure 
## 3101                                               Border closure 
## 3102                                               Border closure 
## 3103                                             Visa restrictions
## 3104                                             Visa restrictions
## 3105                                             Visa restrictions
## 3106                                             Visa restrictions
## 3107                                             Visa restrictions
## 3108                                             Visa restrictions
## 3109                                               Border closure 
## 3110                                               Border closure 
## 3111                                               Border closure 
## 3112                                               Border closure 
## 3113                                               Border closure 
## 3114                                               Border closure 
## 3115                                           Awareness campaigns
## 3116                                           Awareness campaigns
## 3117                                           Awareness campaigns
## 3118                                           Awareness campaigns
## 3119                                           Awareness campaigns
## 3120                                           Awareness campaigns
## 3121                             Isolation and quarantine policies
## 3122                             Isolation and quarantine policies
## 3123                             Isolation and quarantine policies
## 3124                             Isolation and quarantine policies
## 3125                             Isolation and quarantine policies
## 3126                             Isolation and quarantine policies
## 3127                                              Schools closure 
## 3128                                              Schools closure 
## 3129                                              Schools closure 
## 3130                                              Schools closure 
## 3131                                              Schools closure 
## 3132                                              Schools closure 
## 3133                                   State of emergency declared
## 3134                                   State of emergency declared
## 3135                                   State of emergency declared
## 3136                                   State of emergency declared
## 3137                                   State of emergency declared
## 3138                                   State of emergency declared
## 3139                                              Schools closure 
## 3140                                              Schools closure 
## 3141                                              Schools closure 
## 3142                                              Schools closure 
## 3143                                              Schools closure 
## 3144                                              Schools closure 
## 3145                                       Limit public gatherings
## 3146                                       Limit public gatherings
## 3147                                       Limit public gatherings
## 3148                                       Limit public gatherings
## 3149                                       Limit public gatherings
## 3150                                       Limit public gatherings
## 3151                                             Visa restrictions
## 3152                                             Visa restrictions
## 3153                                             Visa restrictions
## 3154                                             Visa restrictions
## 3155                                             Visa restrictions
## 3156                                             Visa restrictions
## 3157            Health screenings in airports and border crossings
## 3158            Health screenings in airports and border crossings
## 3159            Health screenings in airports and border crossings
## 3160            Health screenings in airports and border crossings
## 3161            Health screenings in airports and border crossings
## 3162            Health screenings in airports and border crossings
## 3163                                               Border closure 
## 3164                                               Border closure 
## 3165                                               Border closure 
## 3166                                               Border closure 
## 3167                                               Border closure 
## 3168                                               Border closure 
## 3169                                             Visa restrictions
## 3170                                             Visa restrictions
## 3171                                             Visa restrictions
## 3172                                             Visa restrictions
## 3173                                             Visa restrictions
## 3174                                             Visa restrictions
## 3175                                             Visa restrictions
## 3176                                             Visa restrictions
## 3177                                             Visa restrictions
## 3178                                             Visa restrictions
## 3179                                             Visa restrictions
## 3180                                             Visa restrictions
## 3181                              International flights suspension
## 3182                              International flights suspension
## 3183                              International flights suspension
## 3184                              International flights suspension
## 3185                              International flights suspension
## 3186                              International flights suspension
## 3187                                               Border closure 
## 3188                                               Border closure 
## 3189                                               Border closure 
## 3190                                               Border closure 
## 3191                                               Border closure 
## 3192                                               Border closure 
## 3193                             Isolation and quarantine policies
## 3194                             Isolation and quarantine policies
## 3195                             Isolation and quarantine policies
## 3196                             Isolation and quarantine policies
## 3197                             Isolation and quarantine policies
## 3198                             Isolation and quarantine policies
## 3199                             Isolation and quarantine policies
## 3200                             Isolation and quarantine policies
## 3201                             Isolation and quarantine policies
## 3202                             Isolation and quarantine policies
## 3203                             Isolation and quarantine policies
## 3204                             Isolation and quarantine policies
## 3205                                  Domestic travel restrictions
## 3206                                  Domestic travel restrictions
## 3207                                  Domestic travel restrictions
## 3208                                  Domestic travel restrictions
## 3209                                  Domestic travel restrictions
## 3210                                  Domestic travel restrictions
## 3211                                  Domestic travel restrictions
## 3212                                  Domestic travel restrictions
## 3213                                  Domestic travel restrictions
## 3214                                  Domestic travel restrictions
## 3215                                  Domestic travel restrictions
## 3216                                  Domestic travel restrictions
## 3217                             Isolation and quarantine policies
## 3218                             Isolation and quarantine policies
## 3219                             Isolation and quarantine policies
## 3220                             Isolation and quarantine policies
## 3221                             Isolation and quarantine policies
## 3222                             Isolation and quarantine policies
## 3223                                             Visa restrictions
## 3224                                             Visa restrictions
## 3225                                             Visa restrictions
## 3226                                             Visa restrictions
## 3227                                             Visa restrictions
## 3228                                             Visa restrictions
## 3229                                              Partial lockdown
## 3230                                              Partial lockdown
## 3231                                              Partial lockdown
## 3232                                              Partial lockdown
## 3233                                              Partial lockdown
## 3234                                              Partial lockdown
## 3235                                              Partial lockdown
## 3236                                              Partial lockdown
## 3237                                              Partial lockdown
## 3238                                              Partial lockdown
## 3239                                              Partial lockdown
## 3240                                              Partial lockdown
## 3241                                   State of emergency declared
## 3242                                   State of emergency declared
## 3243                                   State of emergency declared
## 3244                                   State of emergency declared
## 3245                                   State of emergency declared
## 3246                                   State of emergency declared
## 3247                                             Economic measures
## 3248                                             Economic measures
## 3249                                             Economic measures
## 3250                                             Economic measures
## 3251                                             Economic measures
## 3252                                             Economic measures
## 3253                     Closure of businesses and public services
## 3254                     Closure of businesses and public services
## 3255                     Closure of businesses and public services
## 3256                     Closure of businesses and public services
## 3257                     Closure of businesses and public services
## 3258                     Closure of businesses and public services
## 3259                                  Domestic travel restrictions
## 3260                                  Domestic travel restrictions
## 3261                                  Domestic travel restrictions
## 3262                                  Domestic travel restrictions
## 3263                                  Domestic travel restrictions
## 3264                                  Domestic travel restrictions
## 3265                                Checkpoints within the country
## 3266                                Checkpoints within the country
## 3267                                Checkpoints within the country
## 3268                                Checkpoints within the country
## 3269                                Checkpoints within the country
## 3270                                Checkpoints within the country
## 3271                                Checkpoints within the country
## 3272                                Checkpoints within the country
## 3273                                Checkpoints within the country
## 3274                                Checkpoints within the country
## 3275                                Checkpoints within the country
## 3276                                Checkpoints within the country
## 3277                                              Partial lockdown
## 3278                                              Partial lockdown
## 3279                                              Partial lockdown
## 3280                                              Partial lockdown
## 3281                                              Partial lockdown
## 3282                                              Partial lockdown
## 3283                     Closure of businesses and public services
## 3284                     Closure of businesses and public services
## 3285                     Closure of businesses and public services
## 3286                     Closure of businesses and public services
## 3287                     Closure of businesses and public services
## 3288                     Closure of businesses and public services
## 3289                                  Domestic travel restrictions
## 3290                                  Domestic travel restrictions
## 3291                                  Domestic travel restrictions
## 3292                                  Domestic travel restrictions
## 3293                                  Domestic travel restrictions
## 3294                                  Domestic travel restrictions
## 3295                     Closure of businesses and public services
## 3296                     Closure of businesses and public services
## 3297                     Closure of businesses and public services
## 3298                     Closure of businesses and public services
## 3299                     Closure of businesses and public services
## 3300                     Closure of businesses and public services
## 3301                                              Partial lockdown
## 3302                                              Partial lockdown
## 3303                                              Partial lockdown
## 3304                                              Partial lockdown
## 3305                                              Partial lockdown
## 3306                                              Partial lockdown
## 3307                                   State of emergency declared
## 3308                                   State of emergency declared
## 3309                                   State of emergency declared
## 3310                                   State of emergency declared
## 3311                                   State of emergency declared
## 3312                                   State of emergency declared
## 3313                     Closure of businesses and public services
## 3314                     Closure of businesses and public services
## 3315                     Closure of businesses and public services
## 3316                     Closure of businesses and public services
## 3317                     Closure of businesses and public services
## 3318                     Closure of businesses and public services
## 3319                 Requirement to wear protective gear in public
## 3320                 Requirement to wear protective gear in public
## 3321                 Requirement to wear protective gear in public
## 3322                 Requirement to wear protective gear in public
## 3323                 Requirement to wear protective gear in public
## 3324                 Requirement to wear protective gear in public
## 3325                 Requirement to wear protective gear in public
## 3326                 Requirement to wear protective gear in public
## 3327                 Requirement to wear protective gear in public
## 3328                 Requirement to wear protective gear in public
## 3329                 Requirement to wear protective gear in public
## 3330                 Requirement to wear protective gear in public
## 3331                                   State of emergency declared
## 3332                                   State of emergency declared
## 3333                                   State of emergency declared
## 3334                                   State of emergency declared
## 3335                                   State of emergency declared
## 3336                                   State of emergency declared
## 3337                                           Military deployment
## 3338                                           Military deployment
## 3339                                           Military deployment
## 3340                                           Military deployment
## 3341                                           Military deployment
## 3342                                           Military deployment
## 3343                                  Domestic travel restrictions
## 3344                                  Domestic travel restrictions
## 3345                                  Domestic travel restrictions
## 3346                                  Domestic travel restrictions
## 3347                                  Domestic travel restrictions
## 3348                                  Domestic travel restrictions
## 3349                                             Visa restrictions
## 3350                                             Visa restrictions
## 3351                                             Visa restrictions
## 3352                                             Visa restrictions
## 3353                                             Visa restrictions
## 3354                                             Visa restrictions
## 3355                             Isolation and quarantine policies
## 3356                             Isolation and quarantine policies
## 3357                             Isolation and quarantine policies
## 3358                             Isolation and quarantine policies
## 3359                             Isolation and quarantine policies
## 3360                             Isolation and quarantine policies
## 3361                                       Limit public gatherings
## 3362                                       Limit public gatherings
## 3363                                       Limit public gatherings
## 3364                                       Limit public gatherings
## 3365                                       Limit public gatherings
## 3366                                       Limit public gatherings
## 3367                                             Economic measures
## 3368                                             Economic measures
## 3369                                             Economic measures
## 3370                                             Economic measures
## 3371                                             Economic measures
## 3372                                             Economic measures
## 3373                        Strengthening the public health system
## 3374                        Strengthening the public health system
## 3375                        Strengthening the public health system
## 3376                        Strengthening the public health system
## 3377                        Strengthening the public health system
## 3378                        Strengthening the public health system
## 3379  Emergency administrative structures activated or established
## 3380  Emergency administrative structures activated or established
## 3381  Emergency administrative structures activated or established
## 3382  Emergency administrative structures activated or established
## 3383  Emergency administrative structures activated or established
## 3384  Emergency administrative structures activated or established
## 3385                                           Awareness campaigns
## 3386                                           Awareness campaigns
## 3387                                           Awareness campaigns
## 3388                                           Awareness campaigns
## 3389                                           Awareness campaigns
## 3390                                           Awareness campaigns
## 3391                                           Awareness campaigns
## 3392                                           Awareness campaigns
## 3393                                           Awareness campaigns
## 3394                                           Awareness campaigns
## 3395                                           Awareness campaigns
## 3396                                           Awareness campaigns
## 3397                                             Economic measures
## 3398                                             Economic measures
## 3399                                             Economic measures
## 3400                                             Economic measures
## 3401                                             Economic measures
## 3402                                             Economic measures
## 3403                             Isolation and quarantine policies
## 3404                             Isolation and quarantine policies
## 3405                             Isolation and quarantine policies
## 3406                             Isolation and quarantine policies
## 3407                             Isolation and quarantine policies
## 3408                             Isolation and quarantine policies
## 3409                                               Border closure 
## 3410                                               Border closure 
## 3411                                               Border closure 
## 3412                                               Border closure 
## 3413                                               Border closure 
## 3414                                               Border closure 
## 3415                             Isolation and quarantine policies
## 3416                             Isolation and quarantine policies
## 3417                             Isolation and quarantine policies
## 3418                             Isolation and quarantine policies
## 3419                             Isolation and quarantine policies
## 3420                             Isolation and quarantine policies
## 3421                                             Economic measures
## 3422                                             Economic measures
## 3423                                             Economic measures
## 3424                                             Economic measures
## 3425                                             Economic measures
## 3426                                             Economic measures
## 3427                                       Limit public gatherings
## 3428                                       Limit public gatherings
## 3429                                       Limit public gatherings
## 3430                                       Limit public gatherings
## 3431                                       Limit public gatherings
## 3432                                       Limit public gatherings
## 3433  Emergency administrative structures activated or established
## 3434  Emergency administrative structures activated or established
## 3435  Emergency administrative structures activated or established
## 3436  Emergency administrative structures activated or established
## 3437  Emergency administrative structures activated or established
## 3438  Emergency administrative structures activated or established
## 3439                            Changes in prison-related policies
## 3440                            Changes in prison-related policies
## 3441                            Changes in prison-related policies
## 3442                            Changes in prison-related policies
## 3443                            Changes in prison-related policies
## 3444                            Changes in prison-related policies
## 3445                                       Limit public gatherings
## 3446                                       Limit public gatherings
## 3447                                       Limit public gatherings
## 3448                                       Limit public gatherings
## 3449                                       Limit public gatherings
## 3450                                       Limit public gatherings
## 3451                     Closure of businesses and public services
## 3452                     Closure of businesses and public services
## 3453                     Closure of businesses and public services
## 3454                     Closure of businesses and public services
## 3455                     Closure of businesses and public services
## 3456                     Closure of businesses and public services
## 3457                                       Limit public gatherings
## 3458                                       Limit public gatherings
## 3459                                       Limit public gatherings
## 3460                                       Limit public gatherings
## 3461                                       Limit public gatherings
## 3462                                       Limit public gatherings
## 3463                     Closure of businesses and public services
## 3464                     Closure of businesses and public services
## 3465                     Closure of businesses and public services
## 3466                     Closure of businesses and public services
## 3467                     Closure of businesses and public services
## 3468                     Closure of businesses and public services
## 3469                                              Schools closure 
## 3470                                              Schools closure 
## 3471                                              Schools closure 
## 3472                                              Schools closure 
## 3473                                              Schools closure 
## 3474                                              Schools closure 
## 3475                                       General recommendations
## 3476                                       General recommendations
## 3477                                       General recommendations
## 3478                                       General recommendations
## 3479                                       General recommendations
## 3480                                       General recommendations
## 3481                                             Economic measures
## 3482                                             Economic measures
## 3483                                             Economic measures
## 3484                                             Economic measures
## 3485                                             Economic measures
## 3486                                             Economic measures
## 3487                                  Domestic travel restrictions
## 3488                                  Domestic travel restrictions
## 3489                                  Domestic travel restrictions
## 3490                                  Domestic travel restrictions
## 3491                                  Domestic travel restrictions
## 3492                                  Domestic travel restrictions
## 3493                                             Economic measures
## 3494                                             Economic measures
## 3495                                             Economic measures
## 3496                                             Economic measures
## 3497                                             Economic measures
## 3498                                             Economic measures
## 3499                                             Economic measures
## 3500                                             Economic measures
## 3501                                             Economic measures
## 3502                                             Economic measures
## 3503                                             Economic measures
## 3504                                             Economic measures
## 3505                                  Domestic travel restrictions
## 3506                                  Domestic travel restrictions
## 3507                                  Domestic travel restrictions
## 3508                                  Domestic travel restrictions
## 3509                                  Domestic travel restrictions
## 3510                                  Domestic travel restrictions
## 3511                              International flights suspension
## 3512                              International flights suspension
## 3513                              International flights suspension
## 3514                              International flights suspension
## 3515                              International flights suspension
## 3516                              International flights suspension
## 3517                     Closure of businesses and public services
## 3518                     Closure of businesses and public services
## 3519                     Closure of businesses and public services
## 3520                     Closure of businesses and public services
## 3521                     Closure of businesses and public services
## 3522                     Closure of businesses and public services
## 3523                                       Limit public gatherings
## 3524                                       Limit public gatherings
## 3525                                       Limit public gatherings
## 3526                                       Limit public gatherings
## 3527                                       Limit public gatherings
## 3528                                       Limit public gatherings
## 3529                                       General recommendations
## 3530                                       General recommendations
## 3531                                       General recommendations
## 3532                                       General recommendations
## 3533                                       General recommendations
## 3534                                       General recommendations
## 3535                        Strengthening the public health system
## 3536                        Strengthening the public health system
## 3537                        Strengthening the public health system
## 3538                        Strengthening the public health system
## 3539                        Strengthening the public health system
## 3540                        Strengthening the public health system
## 3541                        Strengthening the public health system
## 3542                        Strengthening the public health system
## 3543                        Strengthening the public health system
## 3544                        Strengthening the public health system
## 3545                        Strengthening the public health system
## 3546                        Strengthening the public health system
## 3547                                                Testing policy
## 3548                                                Testing policy
## 3549                                                Testing policy
## 3550                                                Testing policy
## 3551                                                Testing policy
## 3552                                                Testing policy
## 3553                                  Domestic travel restrictions
## 3554                                  Domestic travel restrictions
## 3555                                  Domestic travel restrictions
## 3556                                  Domestic travel restrictions
## 3557                                  Domestic travel restrictions
## 3558                                  Domestic travel restrictions
## 3559                                                Testing policy
## 3560                                                Testing policy
## 3561                                                Testing policy
## 3562                                                Testing policy
## 3563                                                Testing policy
## 3564                                                Testing policy
## 3565                                             Economic measures
## 3566                                             Economic measures
## 3567                                             Economic measures
## 3568                                             Economic measures
## 3569                                             Economic measures
## 3570                                             Economic measures
## 3571                             Isolation and quarantine policies
## 3572                             Isolation and quarantine policies
## 3573                             Isolation and quarantine policies
## 3574                             Isolation and quarantine policies
## 3575                             Isolation and quarantine policies
## 3576                             Isolation and quarantine policies
## 3577                                   Surveillance and monitoring
## 3578                                   Surveillance and monitoring
## 3579                                   Surveillance and monitoring
## 3580                                   Surveillance and monitoring
## 3581                                   Surveillance and monitoring
## 3582                                   Surveillance and monitoring
## 3583                                       Limit public gatherings
## 3584                                       Limit public gatherings
## 3585                                       Limit public gatherings
## 3586                                       Limit public gatherings
## 3587                                       Limit public gatherings
## 3588                                       Limit public gatherings
## 3589                             Isolation and quarantine policies
## 3590                             Isolation and quarantine policies
## 3591                             Isolation and quarantine policies
## 3592                             Isolation and quarantine policies
## 3593                             Isolation and quarantine policies
## 3594                             Isolation and quarantine policies
## 3595                                  Domestic travel restrictions
## 3596                                  Domestic travel restrictions
## 3597                                  Domestic travel restrictions
## 3598                                  Domestic travel restrictions
## 3599                                  Domestic travel restrictions
## 3600                                  Domestic travel restrictions
## 3601  Emergency administrative structures activated or established
## 3602  Emergency administrative structures activated or established
## 3603  Emergency administrative structures activated or established
## 3604  Emergency administrative structures activated or established
## 3605  Emergency administrative structures activated or established
## 3606  Emergency administrative structures activated or established
## 3607                        Strengthening the public health system
## 3608                        Strengthening the public health system
## 3609                        Strengthening the public health system
## 3610                        Strengthening the public health system
## 3611                        Strengthening the public health system
## 3612                        Strengthening the public health system
## 3613              Psychological assistance and medical social work
## 3614              Psychological assistance and medical social work
## 3615              Psychological assistance and medical social work
## 3616              Psychological assistance and medical social work
## 3617              Psychological assistance and medical social work
## 3618              Psychological assistance and medical social work
## 3619              Psychological assistance and medical social work
## 3620              Psychological assistance and medical social work
## 3621              Psychological assistance and medical social work
## 3622              Psychological assistance and medical social work
## 3623              Psychological assistance and medical social work
## 3624              Psychological assistance and medical social work
## 3625                                           Awareness campaigns
## 3626                                           Awareness campaigns
## 3627                                           Awareness campaigns
## 3628                                           Awareness campaigns
## 3629                                           Awareness campaigns
## 3630                                           Awareness campaigns
## 3631                                                Testing policy
## 3632                                                Testing policy
## 3633                                                Testing policy
## 3634                                                Testing policy
## 3635                                                Testing policy
## 3636                                                Testing policy
## 3637                                             Economic measures
## 3638                                             Economic measures
## 3639                                             Economic measures
## 3640                                             Economic measures
## 3641                                             Economic measures
## 3642                                             Economic measures
## 3643                                             Economic measures
## 3644                                             Economic measures
## 3645                                             Economic measures
## 3646                                             Economic measures
## 3647                                             Economic measures
## 3648                                             Economic measures
## 3649                                       Limit public gatherings
## 3650                                       Limit public gatherings
## 3651                                       Limit public gatherings
## 3652                                       Limit public gatherings
## 3653                                       Limit public gatherings
## 3654                                       Limit public gatherings
## 3655                                             Economic measures
## 3656                                             Economic measures
## 3657                                             Economic measures
## 3658                                             Economic measures
## 3659                                             Economic measures
## 3660                                             Economic measures
## 3661                                             Economic measures
## 3662                                             Economic measures
## 3663                                             Economic measures
## 3664                                             Economic measures
## 3665                                             Economic measures
## 3666                                             Economic measures
## 3667                                             Economic measures
## 3668                                             Economic measures
## 3669                                             Economic measures
## 3670                                             Economic measures
## 3671                                             Economic measures
## 3672                                             Economic measures
## 3673                                              Partial lockdown
## 3674                                              Partial lockdown
## 3675                                              Partial lockdown
## 3676                                              Partial lockdown
## 3677                                              Partial lockdown
## 3678                                              Partial lockdown
## 3679                                           Awareness campaigns
## 3680                                           Awareness campaigns
## 3681                                           Awareness campaigns
## 3682                                           Awareness campaigns
## 3683                                           Awareness campaigns
## 3684                                           Awareness campaigns
## 3685                        Strengthening the public health system
## 3686                        Strengthening the public health system
## 3687                        Strengthening the public health system
## 3688                        Strengthening the public health system
## 3689                        Strengthening the public health system
## 3690                        Strengthening the public health system
## 3691                                       Limit public gatherings
## 3692                                       Limit public gatherings
## 3693                                       Limit public gatherings
## 3694                                       Limit public gatherings
## 3695                                       Limit public gatherings
## 3696                                       Limit public gatherings
## 3697                                             Economic measures
## 3698                                             Economic measures
## 3699                                             Economic measures
## 3700                                             Economic measures
## 3701                                             Economic measures
## 3702                                             Economic measures
## 3703                                               Border closure 
## 3704                                               Border closure 
## 3705                                               Border closure 
## 3706                                               Border closure 
## 3707                                               Border closure 
## 3708                                               Border closure 
## 3709                                               Border closure 
## 3710                                               Border closure 
## 3711                                               Border closure 
## 3712                                               Border closure 
## 3713                                               Border closure 
## 3714                                               Border closure 
## 3715                                               Border closure 
## 3716                                               Border closure 
## 3717                                               Border closure 
## 3718                                               Border closure 
## 3719                                               Border closure 
## 3720                                               Border closure 
## 3721                                               Border closure 
## 3722                                               Border closure 
## 3723                                               Border closure 
## 3724                                               Border closure 
## 3725                                               Border closure 
## 3726                                               Border closure 
## 3727                                             Economic measures
## 3728                                             Economic measures
## 3729                                             Economic measures
## 3730                                             Economic measures
## 3731                                             Economic measures
## 3732                                             Economic measures
## 3733                                  Domestic travel restrictions
## 3734                                  Domestic travel restrictions
## 3735                                  Domestic travel restrictions
## 3736                                  Domestic travel restrictions
## 3737                                  Domestic travel restrictions
## 3738                                  Domestic travel restrictions
## 3739                                           Awareness campaigns
## 3740                                           Awareness campaigns
## 3741                                           Awareness campaigns
## 3742                                           Awareness campaigns
## 3743                                           Awareness campaigns
## 3744                                           Awareness campaigns
## 3745                                           Awareness campaigns
## 3746                                           Awareness campaigns
## 3747                                           Awareness campaigns
## 3748                                           Awareness campaigns
## 3749                                           Awareness campaigns
## 3750                                           Awareness campaigns
## 3751                                             Economic measures
## 3752                                             Economic measures
## 3753                                             Economic measures
## 3754                                             Economic measures
## 3755                                             Economic measures
## 3756                                             Economic measures
## 3757                                  Domestic travel restrictions
## 3758                                  Domestic travel restrictions
## 3759                                  Domestic travel restrictions
## 3760                                  Domestic travel restrictions
## 3761                                  Domestic travel restrictions
## 3762                                  Domestic travel restrictions
## 3763                             Isolation and quarantine policies
## 3764                             Isolation and quarantine policies
## 3765                             Isolation and quarantine policies
## 3766                             Isolation and quarantine policies
## 3767                             Isolation and quarantine policies
## 3768                             Isolation and quarantine policies
## 3769                                             Visa restrictions
## 3770                                             Visa restrictions
## 3771                                             Visa restrictions
## 3772                                             Visa restrictions
## 3773                                             Visa restrictions
## 3774                                             Visa restrictions
## 3775                                             Visa restrictions
## 3776                                             Visa restrictions
## 3777                                             Visa restrictions
## 3778                                             Visa restrictions
## 3779                                             Visa restrictions
## 3780                                             Visa restrictions
## 3781                                             Visa restrictions
## 3782                                             Visa restrictions
## 3783                                             Visa restrictions
## 3784                                             Visa restrictions
## 3785                                             Visa restrictions
## 3786                                             Visa restrictions
## 3787                                             Visa restrictions
## 3788                                             Visa restrictions
## 3789                                             Visa restrictions
## 3790                                             Visa restrictions
## 3791                                             Visa restrictions
## 3792                                             Visa restrictions
## 3793                                             Visa restrictions
## 3794                                             Visa restrictions
## 3795                                             Visa restrictions
## 3796                                             Visa restrictions
## 3797                                             Visa restrictions
## 3798                                             Visa restrictions
## 3799                                             Visa restrictions
## 3800                                             Visa restrictions
## 3801                                             Visa restrictions
## 3802                                             Visa restrictions
## 3803                                             Visa restrictions
## 3804                                             Visa restrictions
## 3805                                             Visa restrictions
## 3806                                             Visa restrictions
## 3807                                             Visa restrictions
## 3808                                             Visa restrictions
## 3809                                             Visa restrictions
## 3810                                             Visa restrictions
## 3811                                   Surveillance and monitoring
## 3812                                   Surveillance and monitoring
## 3813                                   Surveillance and monitoring
## 3814                                   Surveillance and monitoring
## 3815                                   Surveillance and monitoring
## 3816                                   Surveillance and monitoring
## 3817                                             Economic measures
## 3818                                             Economic measures
## 3819                                             Economic measures
## 3820                                             Economic measures
## 3821                                             Economic measures
## 3822                                             Economic measures
## 3823                                             Economic measures
## 3824                                             Economic measures
## 3825                                             Economic measures
## 3826                                             Economic measures
## 3827                                             Economic measures
## 3828                                             Economic measures
## 3829                                  Domestic travel restrictions
## 3830                                  Domestic travel restrictions
## 3831                                  Domestic travel restrictions
## 3832                                  Domestic travel restrictions
## 3833                                  Domestic travel restrictions
## 3834                                  Domestic travel restrictions
## 3835                                           Awareness campaigns
## 3836                                           Awareness campaigns
## 3837                                           Awareness campaigns
## 3838                                           Awareness campaigns
## 3839                                           Awareness campaigns
## 3840                                           Awareness campaigns
## 3841                                              Schools closure 
## 3842                                              Schools closure 
## 3843                                              Schools closure 
## 3844                                              Schools closure 
## 3845                                              Schools closure 
## 3846                                              Schools closure 
## 3847                                             Economic measures
## 3848                                             Economic measures
## 3849                                             Economic measures
## 3850                                             Economic measures
## 3851                                             Economic measures
## 3852                                             Economic measures
## 3853                                           Awareness campaigns
## 3854                                           Awareness campaigns
## 3855                                           Awareness campaigns
## 3856                                           Awareness campaigns
## 3857                                           Awareness campaigns
## 3858                                           Awareness campaigns
## 3859                                           Awareness campaigns
## 3860                                           Awareness campaigns
## 3861                                           Awareness campaigns
## 3862                                           Awareness campaigns
## 3863                                           Awareness campaigns
## 3864                                           Awareness campaigns
## 3865                                             Economic measures
## 3866                                             Economic measures
## 3867                                             Economic measures
## 3868                                             Economic measures
## 3869                                             Economic measures
## 3870                                             Economic measures
## 3871                                               Border closure 
## 3872                                               Border closure 
## 3873                                               Border closure 
## 3874                                               Border closure 
## 3875                                               Border closure 
## 3876                                               Border closure 
## 3877                                   State of emergency declared
## 3878                                   State of emergency declared
## 3879                                   State of emergency declared
## 3880                                   State of emergency declared
## 3881                                   State of emergency declared
## 3882                                   State of emergency declared
## 3883              Psychological assistance and medical social work
## 3884              Psychological assistance and medical social work
## 3885              Psychological assistance and medical social work
## 3886              Psychological assistance and medical social work
## 3887              Psychological assistance and medical social work
## 3888              Psychological assistance and medical social work
## 3889                             Isolation and quarantine policies
## 3890                             Isolation and quarantine policies
## 3891                             Isolation and quarantine policies
## 3892                             Isolation and quarantine policies
## 3893                             Isolation and quarantine policies
## 3894                             Isolation and quarantine policies
## 3895                                           Military deployment
## 3896                                           Military deployment
## 3897                                           Military deployment
## 3898                                           Military deployment
## 3899                                           Military deployment
## 3900                                           Military deployment
## 3901                        Strengthening the public health system
## 3902                        Strengthening the public health system
## 3903                        Strengthening the public health system
## 3904                        Strengthening the public health system
## 3905                        Strengthening the public health system
## 3906                        Strengthening the public health system
## 3907                                                Testing policy
## 3908                                                Testing policy
## 3909                                                Testing policy
## 3910                                                Testing policy
## 3911                                                Testing policy
## 3912                                                Testing policy
## 3913                                                Testing policy
## 3914                                                Testing policy
## 3915                                                Testing policy
## 3916                                                Testing policy
## 3917                                                Testing policy
## 3918                                                Testing policy
## 3919                                                Testing policy
## 3920                                                Testing policy
## 3921                                                Testing policy
## 3922                                                Testing policy
## 3923                                                Testing policy
## 3924                                                Testing policy
## 3925                        Strengthening the public health system
## 3926                        Strengthening the public health system
## 3927                        Strengthening the public health system
## 3928                        Strengthening the public health system
## 3929                        Strengthening the public health system
## 3930                        Strengthening the public health system
## 3931                        Strengthening the public health system
## 3932                        Strengthening the public health system
## 3933                        Strengthening the public health system
## 3934                        Strengthening the public health system
## 3935                        Strengthening the public health system
## 3936                        Strengthening the public health system
## 3937                        Strengthening the public health system
## 3938                        Strengthening the public health system
## 3939                        Strengthening the public health system
## 3940                        Strengthening the public health system
## 3941                        Strengthening the public health system
## 3942                        Strengthening the public health system
## 3943                                   Surveillance and monitoring
## 3944                                   Surveillance and monitoring
## 3945                                   Surveillance and monitoring
## 3946                                   Surveillance and monitoring
## 3947                                   Surveillance and monitoring
## 3948                                   Surveillance and monitoring
## 3949                                             Economic measures
## 3950                                             Economic measures
## 3951                                             Economic measures
## 3952                                             Economic measures
## 3953                                             Economic measures
## 3954                                             Economic measures
## 3955                                             Economic measures
## 3956                                             Economic measures
## 3957                                             Economic measures
## 3958                                             Economic measures
## 3959                                             Economic measures
## 3960                                             Economic measures
## 3961                                             Economic measures
## 3962                                             Economic measures
## 3963                                             Economic measures
## 3964                                             Economic measures
## 3965                                             Economic measures
## 3966                                             Economic measures
## 3967                        Strengthening the public health system
## 3968                        Strengthening the public health system
## 3969                        Strengthening the public health system
## 3970                        Strengthening the public health system
## 3971                        Strengthening the public health system
## 3972                        Strengthening the public health system
## 3973                         Other public health measures enforced
## 3974                         Other public health measures enforced
## 3975                         Other public health measures enforced
## 3976                         Other public health measures enforced
## 3977                         Other public health measures enforced
## 3978                         Other public health measures enforced
## 3979                         Other public health measures enforced
## 3980                         Other public health measures enforced
## 3981                         Other public health measures enforced
## 3982                         Other public health measures enforced
## 3983                         Other public health measures enforced
## 3984                         Other public health measures enforced
## 3985                                       General recommendations
## 3986                                       General recommendations
## 3987                                       General recommendations
## 3988                                       General recommendations
## 3989                                       General recommendations
## 3990                                       General recommendations
## 3991                                       Limit public gatherings
## 3992                                       Limit public gatherings
## 3993                                       Limit public gatherings
## 3994                                       Limit public gatherings
## 3995                                       Limit public gatherings
## 3996                                       Limit public gatherings
## 3997                                             Economic measures
## 3998                                             Economic measures
## 3999                                             Economic measures
## 4000                                             Economic measures
## 4001                                             Economic measures
## 4002                                             Economic measures
## 4003                        Strengthening the public health system
## 4004                        Strengthening the public health system
## 4005                        Strengthening the public health system
## 4006                        Strengthening the public health system
## 4007                        Strengthening the public health system
## 4008                        Strengthening the public health system
## 4009                                           Awareness campaigns
## 4010                                           Awareness campaigns
## 4011                                           Awareness campaigns
## 4012                                           Awareness campaigns
## 4013                                           Awareness campaigns
## 4014                                           Awareness campaigns
## 4015                                             Economic measures
## 4016                                             Economic measures
## 4017                                             Economic measures
## 4018                                             Economic measures
## 4019                                             Economic measures
## 4020                                             Economic measures
## 4021                        Strengthening the public health system
## 4022                        Strengthening the public health system
## 4023                        Strengthening the public health system
## 4024                        Strengthening the public health system
## 4025                        Strengthening the public health system
## 4026                        Strengthening the public health system
## 4027                                             Economic measures
## 4028                                             Economic measures
## 4029                                             Economic measures
## 4030                                             Economic measures
## 4031                                             Economic measures
## 4032                                             Economic measures
## 4033  Emergency administrative structures activated or established
## 4034  Emergency administrative structures activated or established
## 4035  Emergency administrative structures activated or established
## 4036  Emergency administrative structures activated or established
## 4037  Emergency administrative structures activated or established
## 4038  Emergency administrative structures activated or established
## 4039                                           Awareness campaigns
## 4040                                           Awareness campaigns
## 4041                                           Awareness campaigns
## 4042                                           Awareness campaigns
## 4043                                           Awareness campaigns
## 4044                                           Awareness campaigns
## 4045                                             Economic measures
## 4046                                             Economic measures
## 4047                                             Economic measures
## 4048                                             Economic measures
## 4049                                             Economic measures
## 4050                                             Economic measures
## 4051                                       General recommendations
## 4052                                       General recommendations
## 4053                                       General recommendations
## 4054                                       General recommendations
## 4055                                       General recommendations
## 4056                                       General recommendations
## 4057                         Other public health measures enforced
## 4058                         Other public health measures enforced
## 4059                         Other public health measures enforced
## 4060                         Other public health measures enforced
## 4061                         Other public health measures enforced
## 4062                         Other public health measures enforced
## 4063                                   Surveillance and monitoring
## 4064                                   Surveillance and monitoring
## 4065                                   Surveillance and monitoring
## 4066                                   Surveillance and monitoring
## 4067                                   Surveillance and monitoring
## 4068                                   Surveillance and monitoring
## 4069                                       Limit public gatherings
## 4070                                       Limit public gatherings
## 4071                                       Limit public gatherings
## 4072                                       Limit public gatherings
## 4073                                       Limit public gatherings
## 4074                                       Limit public gatherings
## 4075                                           Awareness campaigns
## 4076                                           Awareness campaigns
## 4077                                           Awareness campaigns
## 4078                                           Awareness campaigns
## 4079                                           Awareness campaigns
## 4080                                           Awareness campaigns
## 4081                     Closure of businesses and public services
## 4082                     Closure of businesses and public services
## 4083                     Closure of businesses and public services
## 4084                     Closure of businesses and public services
## 4085                     Closure of businesses and public services
## 4086                     Closure of businesses and public services
## 4087              Psychological assistance and medical social work
## 4088              Psychological assistance and medical social work
## 4089              Psychological assistance and medical social work
## 4090              Psychological assistance and medical social work
## 4091              Psychological assistance and medical social work
## 4092              Psychological assistance and medical social work
## 4093                             Isolation and quarantine policies
## 4094                             Isolation and quarantine policies
## 4095                             Isolation and quarantine policies
## 4096                             Isolation and quarantine policies
## 4097                             Isolation and quarantine policies
## 4098                             Isolation and quarantine policies
## 4099                                  Domestic travel restrictions
## 4100                                  Domestic travel restrictions
## 4101                                  Domestic travel restrictions
## 4102                                  Domestic travel restrictions
## 4103                                  Domestic travel restrictions
## 4104                                  Domestic travel restrictions
## 4105                                              Schools closure 
## 4106                                              Schools closure 
## 4107                                              Schools closure 
## 4108                                              Schools closure 
## 4109                                              Schools closure 
## 4110                                              Schools closure 
## 4111                                              Schools closure 
## 4112                                              Schools closure 
## 4113                                              Schools closure 
## 4114                                              Schools closure 
## 4115                                              Schools closure 
## 4116                                              Schools closure 
## 4117                                             Economic measures
## 4118                                             Economic measures
## 4119                                             Economic measures
## 4120                                             Economic measures
## 4121                                             Economic measures
## 4122                                             Economic measures
## 4123                                       Limit public gatherings
## 4124                                       Limit public gatherings
## 4125                                       Limit public gatherings
## 4126                                       Limit public gatherings
## 4127                                       Limit public gatherings
## 4128                                       Limit public gatherings
## 4129                        Strengthening the public health system
## 4130                        Strengthening the public health system
## 4131                        Strengthening the public health system
## 4132                        Strengthening the public health system
## 4133                        Strengthening the public health system
## 4134                        Strengthening the public health system
## 4135                                       Limit public gatherings
## 4136                                       Limit public gatherings
## 4137                                       Limit public gatherings
## 4138                                       Limit public gatherings
## 4139                                       Limit public gatherings
## 4140                                       Limit public gatherings
## 4141                                       Limit public gatherings
## 4142                                       Limit public gatherings
## 4143                                       Limit public gatherings
## 4144                                       Limit public gatherings
## 4145                                       Limit public gatherings
## 4146                                       Limit public gatherings
## 4147                                       Limit public gatherings
## 4148                                       Limit public gatherings
## 4149                                       Limit public gatherings
## 4150                                       Limit public gatherings
## 4151                                       Limit public gatherings
## 4152                                       Limit public gatherings
## 4153                        Strengthening the public health system
## 4154                        Strengthening the public health system
## 4155                        Strengthening the public health system
## 4156                        Strengthening the public health system
## 4157                        Strengthening the public health system
## 4158                        Strengthening the public health system
## 4159                                             Economic measures
## 4160                                             Economic measures
## 4161                                             Economic measures
## 4162                                             Economic measures
## 4163                                             Economic measures
## 4164                                             Economic measures
## 4165                                       Limit public gatherings
## 4166                                       Limit public gatherings
## 4167                                       Limit public gatherings
## 4168                                       Limit public gatherings
## 4169                                       Limit public gatherings
## 4170                                       Limit public gatherings
## 4171                                   State of emergency declared
## 4172                                   State of emergency declared
## 4173                                   State of emergency declared
## 4174                                   State of emergency declared
## 4175                                   State of emergency declared
## 4176                                   State of emergency declared
## 4177                                       Limit public gatherings
## 4178                                       Limit public gatherings
## 4179                                       Limit public gatherings
## 4180                                       Limit public gatherings
## 4181                                       Limit public gatherings
## 4182                                       Limit public gatherings
## 4183                                       Limit public gatherings
## 4184                                       Limit public gatherings
## 4185                                       Limit public gatherings
## 4186                                       Limit public gatherings
## 4187                                       Limit public gatherings
## 4188                                       Limit public gatherings
## 4189                                       Limit public gatherings
## 4190                                       Limit public gatherings
## 4191                                       Limit public gatherings
## 4192                                       Limit public gatherings
## 4193                                       Limit public gatherings
## 4194                                       Limit public gatherings
## 4195                                       Limit public gatherings
## 4196                                       Limit public gatherings
## 4197                                       Limit public gatherings
## 4198                                       Limit public gatherings
## 4199                                       Limit public gatherings
## 4200                                       Limit public gatherings
## 4201                     Closure of businesses and public services
## 4202                     Closure of businesses and public services
## 4203                     Closure of businesses and public services
## 4204                     Closure of businesses and public services
## 4205                     Closure of businesses and public services
## 4206                     Closure of businesses and public services
## 4207                     Closure of businesses and public services
## 4208                     Closure of businesses and public services
## 4209                     Closure of businesses and public services
## 4210                     Closure of businesses and public services
## 4211                     Closure of businesses and public services
## 4212                     Closure of businesses and public services
## 4213                                             Economic measures
## 4214                                             Economic measures
## 4215                                             Economic measures
## 4216                                             Economic measures
## 4217                                             Economic measures
## 4218                                             Economic measures
## 4219                                             Economic measures
## 4220                                             Economic measures
## 4221                                             Economic measures
## 4222                                             Economic measures
## 4223                                             Economic measures
## 4224                                             Economic measures
## 4225                                             Economic measures
## 4226                                             Economic measures
## 4227                                             Economic measures
## 4228                                             Economic measures
## 4229                                             Economic measures
## 4230                                             Economic measures
## 4231  Emergency administrative structures activated or established
## 4232  Emergency administrative structures activated or established
## 4233  Emergency administrative structures activated or established
## 4234  Emergency administrative structures activated or established
## 4235  Emergency administrative structures activated or established
## 4236  Emergency administrative structures activated or established
## 4237                                             Economic measures
## 4238                                             Economic measures
## 4239                                             Economic measures
## 4240                                             Economic measures
## 4241                                             Economic measures
## 4242                                             Economic measures
## 4243                         Other public health measures enforced
## 4244                         Other public health measures enforced
## 4245                         Other public health measures enforced
## 4246                         Other public health measures enforced
## 4247                         Other public health measures enforced
## 4248                         Other public health measures enforced
## 4249                                           Awareness campaigns
## 4250                                           Awareness campaigns
## 4251                                           Awareness campaigns
## 4252                                           Awareness campaigns
## 4253                                           Awareness campaigns
## 4254                                           Awareness campaigns
## 4255  Emergency administrative structures activated or established
## 4256  Emergency administrative structures activated or established
## 4257  Emergency administrative structures activated or established
## 4258  Emergency administrative structures activated or established
## 4259  Emergency administrative structures activated or established
## 4260  Emergency administrative structures activated or established
## 4261                                   Surveillance and monitoring
## 4262                                   Surveillance and monitoring
## 4263                                   Surveillance and monitoring
## 4264                                   Surveillance and monitoring
## 4265                                   Surveillance and monitoring
## 4266                                   Surveillance and monitoring
## 4267                         Other public health measures enforced
## 4268                         Other public health measures enforced
## 4269                         Other public health measures enforced
## 4270                         Other public health measures enforced
## 4271                         Other public health measures enforced
## 4272                         Other public health measures enforced
## 4273                                       Limit public gatherings
## 4274                                       Limit public gatherings
## 4275                                       Limit public gatherings
## 4276                                       Limit public gatherings
## 4277                                       Limit public gatherings
## 4278                                       Limit public gatherings
## 4279                                       Limit public gatherings
## 4280                                       Limit public gatherings
## 4281                                       Limit public gatherings
## 4282                                       Limit public gatherings
## 4283                                       Limit public gatherings
## 4284                                       Limit public gatherings
## 4285                     Closure of businesses and public services
## 4286                     Closure of businesses and public services
## 4287                     Closure of businesses and public services
## 4288                     Closure of businesses and public services
## 4289                     Closure of businesses and public services
## 4290                     Closure of businesses and public services
## 4291                                       Limit public gatherings
## 4292                                       Limit public gatherings
## 4293                                       Limit public gatherings
## 4294                                       Limit public gatherings
## 4295                                       Limit public gatherings
## 4296                                       Limit public gatherings
## 4297                                       Limit public gatherings
## 4298                                       Limit public gatherings
## 4299                                       Limit public gatherings
## 4300                                       Limit public gatherings
## 4301                                       Limit public gatherings
## 4302                                       Limit public gatherings
## 4303                         Other public health measures enforced
## 4304                         Other public health measures enforced
## 4305                         Other public health measures enforced
## 4306                         Other public health measures enforced
## 4307                         Other public health measures enforced
## 4308                         Other public health measures enforced
## 4309                             Isolation and quarantine policies
## 4310                             Isolation and quarantine policies
## 4311                             Isolation and quarantine policies
## 4312                             Isolation and quarantine policies
## 4313                             Isolation and quarantine policies
## 4314                             Isolation and quarantine policies
## 4315                                  Domestic travel restrictions
## 4316                                  Domestic travel restrictions
## 4317                                  Domestic travel restrictions
## 4318                                  Domestic travel restrictions
## 4319                                  Domestic travel restrictions
## 4320                                  Domestic travel restrictions
## 4321                                       Limit public gatherings
## 4322                                       Limit public gatherings
## 4323                                       Limit public gatherings
## 4324                                       Limit public gatherings
## 4325                                       Limit public gatherings
## 4326                                       Limit public gatherings
## 4327                                       Limit public gatherings
## 4328                                       Limit public gatherings
## 4329                                       Limit public gatherings
## 4330                                       Limit public gatherings
## 4331                                       Limit public gatherings
## 4332                                       Limit public gatherings
## 4333                                                Testing policy
## 4334                                                Testing policy
## 4335                                                Testing policy
## 4336                                                Testing policy
## 4337                                                Testing policy
## 4338                                                Testing policy
## 4339                                              Schools closure 
## 4340                                              Schools closure 
## 4341                                              Schools closure 
## 4342                                              Schools closure 
## 4343                                              Schools closure 
## 4344                                              Schools closure 
## 4345                                              Schools closure 
## 4346                                              Schools closure 
## 4347                                              Schools closure 
## 4348                                              Schools closure 
## 4349                                              Schools closure 
## 4350                                              Schools closure 
## 4351                                  Domestic travel restrictions
## 4352                                  Domestic travel restrictions
## 4353                                  Domestic travel restrictions
## 4354                                  Domestic travel restrictions
## 4355                                  Domestic travel restrictions
## 4356                                  Domestic travel restrictions
## 4357                     Closure of businesses and public services
## 4358                     Closure of businesses and public services
## 4359                     Closure of businesses and public services
## 4360                     Closure of businesses and public services
## 4361                     Closure of businesses and public services
## 4362                     Closure of businesses and public services
## 4363                     Closure of businesses and public services
## 4364                     Closure of businesses and public services
## 4365                     Closure of businesses and public services
## 4366                     Closure of businesses and public services
## 4367                     Closure of businesses and public services
## 4368                     Closure of businesses and public services
## 4369                                       Limit public gatherings
## 4370                                       Limit public gatherings
## 4371                                       Limit public gatherings
## 4372                                       Limit public gatherings
## 4373                                       Limit public gatherings
## 4374                                       Limit public gatherings
## 4375                     Closure of businesses and public services
## 4376                     Closure of businesses and public services
## 4377                     Closure of businesses and public services
## 4378                     Closure of businesses and public services
## 4379                     Closure of businesses and public services
## 4380                     Closure of businesses and public services
## 4381                                       Limit public gatherings
## 4382                                       Limit public gatherings
## 4383                                       Limit public gatherings
## 4384                                       Limit public gatherings
## 4385                                       Limit public gatherings
## 4386                                       Limit public gatherings
## 4387                                       Limit public gatherings
## 4388                                       Limit public gatherings
## 4389                                       Limit public gatherings
## 4390                                       Limit public gatherings
## 4391                                       Limit public gatherings
## 4392                                       Limit public gatherings
## 4393                                              Schools closure 
## 4394                                              Schools closure 
## 4395                                              Schools closure 
## 4396                                              Schools closure 
## 4397                                              Schools closure 
## 4398                                              Schools closure 
## 4399                                       Limit public gatherings
## 4400                                       Limit public gatherings
## 4401                                       Limit public gatherings
## 4402                                       Limit public gatherings
## 4403                                       Limit public gatherings
## 4404                                       Limit public gatherings
## 4405                         Other public health measures enforced
## 4406                         Other public health measures enforced
## 4407                         Other public health measures enforced
## 4408                         Other public health measures enforced
## 4409                         Other public health measures enforced
## 4410                         Other public health measures enforced
## 4411                                  Domestic travel restrictions
## 4412                                  Domestic travel restrictions
## 4413                                  Domestic travel restrictions
## 4414                                  Domestic travel restrictions
## 4415                                  Domestic travel restrictions
## 4416                                  Domestic travel restrictions
## 4417                                  Domestic travel restrictions
## 4418                                  Domestic travel restrictions
## 4419                                  Domestic travel restrictions
## 4420                                  Domestic travel restrictions
## 4421                                  Domestic travel restrictions
## 4422                                  Domestic travel restrictions
## 4423                                       Limit public gatherings
## 4424                                       Limit public gatherings
## 4425                                       Limit public gatherings
## 4426                                       Limit public gatherings
## 4427                                       Limit public gatherings
## 4428                                       Limit public gatherings
## 4429                     Closure of businesses and public services
## 4430                     Closure of businesses and public services
## 4431                     Closure of businesses and public services
## 4432                     Closure of businesses and public services
## 4433                     Closure of businesses and public services
## 4434                     Closure of businesses and public services
## 4435                     Closure of businesses and public services
## 4436                     Closure of businesses and public services
## 4437                     Closure of businesses and public services
## 4438                     Closure of businesses and public services
## 4439                     Closure of businesses and public services
## 4440                     Closure of businesses and public services
## 4441                                       Limit public gatherings
## 4442                                       Limit public gatherings
## 4443                                       Limit public gatherings
## 4444                                       Limit public gatherings
## 4445                                       Limit public gatherings
## 4446                                       Limit public gatherings
## 4447                                  Domestic travel restrictions
## 4448                                  Domestic travel restrictions
## 4449                                  Domestic travel restrictions
## 4450                                  Domestic travel restrictions
## 4451                                  Domestic travel restrictions
## 4452                                  Domestic travel restrictions
## 4453                                              Schools closure 
## 4454                                              Schools closure 
## 4455                                              Schools closure 
## 4456                                              Schools closure 
## 4457                                              Schools closure 
## 4458                                              Schools closure 
## 4459                                       Limit public gatherings
## 4460                                       Limit public gatherings
## 4461                                       Limit public gatherings
## 4462                                       Limit public gatherings
## 4463                                       Limit public gatherings
## 4464                                       Limit public gatherings
## 4465                     Closure of businesses and public services
## 4466                     Closure of businesses and public services
## 4467                     Closure of businesses and public services
## 4468                     Closure of businesses and public services
## 4469                     Closure of businesses and public services
## 4470                     Closure of businesses and public services
## 4471                                              Schools closure 
## 4472                                              Schools closure 
## 4473                                              Schools closure 
## 4474                                              Schools closure 
## 4475                                              Schools closure 
## 4476                                              Schools closure 
## 4477                                       Limit public gatherings
## 4478                                       Limit public gatherings
## 4479                                       Limit public gatherings
## 4480                                       Limit public gatherings
## 4481                                       Limit public gatherings
## 4482                                       Limit public gatherings
## 4483                                           Awareness campaigns
## 4484                                           Awareness campaigns
## 4485                                           Awareness campaigns
## 4486                                           Awareness campaigns
## 4487                                           Awareness campaigns
## 4488                                           Awareness campaigns
## 4489                         Other public health measures enforced
## 4490                         Other public health measures enforced
## 4491                         Other public health measures enforced
## 4492                         Other public health measures enforced
## 4493                         Other public health measures enforced
## 4494                         Other public health measures enforced
## 4495                         Other public health measures enforced
## 4496                         Other public health measures enforced
## 4497                         Other public health measures enforced
## 4498                         Other public health measures enforced
## 4499                         Other public health measures enforced
## 4500                         Other public health measures enforced
## 4501                         Other public health measures enforced
## 4502                         Other public health measures enforced
## 4503                         Other public health measures enforced
## 4504                         Other public health measures enforced
## 4505                         Other public health measures enforced
## 4506                         Other public health measures enforced
## 4507                         Other public health measures enforced
## 4508                         Other public health measures enforced
## 4509                         Other public health measures enforced
## 4510                         Other public health measures enforced
## 4511                         Other public health measures enforced
## 4512                         Other public health measures enforced
## 4513                     Closure of businesses and public services
## 4514                     Closure of businesses and public services
## 4515                     Closure of businesses and public services
## 4516                     Closure of businesses and public services
## 4517                     Closure of businesses and public services
## 4518                     Closure of businesses and public services
## 4519                                       Limit public gatherings
## 4520                                       Limit public gatherings
## 4521                                       Limit public gatherings
## 4522                                       Limit public gatherings
## 4523                                       Limit public gatherings
## 4524                                       Limit public gatherings
## 4525                     Closure of businesses and public services
## 4526                     Closure of businesses and public services
## 4527                     Closure of businesses and public services
## 4528                     Closure of businesses and public services
## 4529                     Closure of businesses and public services
## 4530                     Closure of businesses and public services
## 4531                     Closure of businesses and public services
## 4532                     Closure of businesses and public services
## 4533                     Closure of businesses and public services
## 4534                     Closure of businesses and public services
## 4535                     Closure of businesses and public services
## 4536                     Closure of businesses and public services
## 4537                                       Limit public gatherings
## 4538                                       Limit public gatherings
## 4539                                       Limit public gatherings
## 4540                                       Limit public gatherings
## 4541                                       Limit public gatherings
## 4542                                       Limit public gatherings
## 4543  Emergency administrative structures activated or established
## 4544  Emergency administrative structures activated or established
## 4545  Emergency administrative structures activated or established
## 4546  Emergency administrative structures activated or established
## 4547  Emergency administrative structures activated or established
## 4548  Emergency administrative structures activated or established
## 4549                     Closure of businesses and public services
## 4550                     Closure of businesses and public services
## 4551                     Closure of businesses and public services
## 4552                     Closure of businesses and public services
## 4553                     Closure of businesses and public services
## 4554                     Closure of businesses and public services
## 4555              Psychological assistance and medical social work
## 4556              Psychological assistance and medical social work
## 4557              Psychological assistance and medical social work
## 4558              Psychological assistance and medical social work
## 4559              Psychological assistance and medical social work
## 4560              Psychological assistance and medical social work
## 4561              Psychological assistance and medical social work
## 4562              Psychological assistance and medical social work
## 4563              Psychological assistance and medical social work
## 4564              Psychological assistance and medical social work
## 4565              Psychological assistance and medical social work
## 4566              Psychological assistance and medical social work
## 4567                                              Schools closure 
## 4568                                              Schools closure 
## 4569                                              Schools closure 
## 4570                                              Schools closure 
## 4571                                              Schools closure 
## 4572                                              Schools closure 
## 4573                                              Schools closure 
## 4574                                              Schools closure 
## 4575                                              Schools closure 
## 4576                                              Schools closure 
## 4577                                              Schools closure 
## 4578                                              Schools closure 
## 4579                     Closure of businesses and public services
## 4580                     Closure of businesses and public services
## 4581                     Closure of businesses and public services
## 4582                     Closure of businesses and public services
## 4583                     Closure of businesses and public services
## 4584                     Closure of businesses and public services
## 4585                     Closure of businesses and public services
## 4586                     Closure of businesses and public services
## 4587                     Closure of businesses and public services
## 4588                     Closure of businesses and public services
## 4589                     Closure of businesses and public services
## 4590                     Closure of businesses and public services
## 4591                     Closure of businesses and public services
## 4592                     Closure of businesses and public services
## 4593                     Closure of businesses and public services
## 4594                     Closure of businesses and public services
## 4595                     Closure of businesses and public services
## 4596                     Closure of businesses and public services
## 4597                                       Limit public gatherings
## 4598                                       Limit public gatherings
## 4599                                       Limit public gatherings
## 4600                                       Limit public gatherings
## 4601                                       Limit public gatherings
## 4602                                       Limit public gatherings
## 4603                                             Economic measures
## 4604                                             Economic measures
## 4605                                             Economic measures
## 4606                                             Economic measures
## 4607                                             Economic measures
## 4608                                             Economic measures
## 4609                        Strengthening the public health system
## 4610                        Strengthening the public health system
## 4611                        Strengthening the public health system
## 4612                        Strengthening the public health system
## 4613                        Strengthening the public health system
## 4614                        Strengthening the public health system
## 4615                                           Awareness campaigns
## 4616                                           Awareness campaigns
## 4617                                           Awareness campaigns
## 4618                                           Awareness campaigns
## 4619                                           Awareness campaigns
## 4620                                           Awareness campaigns
## 4621                             Isolation and quarantine policies
## 4622                             Isolation and quarantine policies
## 4623                             Isolation and quarantine policies
## 4624                             Isolation and quarantine policies
## 4625                             Isolation and quarantine policies
## 4626                             Isolation and quarantine policies
## 4627                                               Border closure 
## 4628                                               Border closure 
## 4629                                               Border closure 
## 4630                                               Border closure 
## 4631                                               Border closure 
## 4632                                               Border closure 
## 4633                                               Border closure 
## 4634                                               Border closure 
## 4635                                               Border closure 
## 4636                                               Border closure 
## 4637                                               Border closure 
## 4638                                               Border closure 
## 4639                                               Border closure 
## 4640                                               Border closure 
## 4641                                               Border closure 
## 4642                                               Border closure 
## 4643                                               Border closure 
## 4644                                               Border closure 
## 4645                                               Border closure 
## 4646                                               Border closure 
## 4647                                               Border closure 
## 4648                                               Border closure 
## 4649                                               Border closure 
## 4650                                               Border closure 
## 4651                             Isolation and quarantine policies
## 4652                             Isolation and quarantine policies
## 4653                             Isolation and quarantine policies
## 4654                             Isolation and quarantine policies
## 4655                             Isolation and quarantine policies
## 4656                             Isolation and quarantine policies
## 4657                                               Border closure 
## 4658                                               Border closure 
## 4659                                               Border closure 
## 4660                                               Border closure 
## 4661                                               Border closure 
## 4662                                               Border closure 
## 4663                                               Border closure 
## 4664                                               Border closure 
## 4665                                               Border closure 
## 4666                                               Border closure 
## 4667                                               Border closure 
## 4668                                               Border closure 
## 4669                                               Border closure 
## 4670                                               Border closure 
## 4671                                               Border closure 
## 4672                                               Border closure 
## 4673                                               Border closure 
## 4674                                               Border closure 
## 4675                                       Limit public gatherings
## 4676                                       Limit public gatherings
## 4677                                       Limit public gatherings
## 4678                                       Limit public gatherings
## 4679                                       Limit public gatherings
## 4680                                       Limit public gatherings
## 4681                                       Limit public gatherings
## 4682                                       Limit public gatherings
## 4683                                       Limit public gatherings
## 4684                                       Limit public gatherings
## 4685                                       Limit public gatherings
## 4686                                       Limit public gatherings
## 4687                     Closure of businesses and public services
## 4688                     Closure of businesses and public services
## 4689                     Closure of businesses and public services
## 4690                     Closure of businesses and public services
## 4691                     Closure of businesses and public services
## 4692                     Closure of businesses and public services
## 4693                                       Limit public gatherings
## 4694                                       Limit public gatherings
## 4695                                       Limit public gatherings
## 4696                                       Limit public gatherings
## 4697                                       Limit public gatherings
## 4698                                       Limit public gatherings
## 4699                         Other public health measures enforced
## 4700                         Other public health measures enforced
## 4701                         Other public health measures enforced
## 4702                         Other public health measures enforced
## 4703                         Other public health measures enforced
## 4704                         Other public health measures enforced
## 4705                                       General recommendations
## 4706                                       General recommendations
## 4707                                       General recommendations
## 4708                                       General recommendations
## 4709                                       General recommendations
## 4710                                       General recommendations
## 4711                                           Awareness campaigns
## 4712                                           Awareness campaigns
## 4713                                           Awareness campaigns
## 4714                                           Awareness campaigns
## 4715                                           Awareness campaigns
## 4716                                           Awareness campaigns
## 4717                                             Economic measures
## 4718                                             Economic measures
## 4719                                             Economic measures
## 4720                                             Economic measures
## 4721                                             Economic measures
## 4722                                             Economic measures
## 4723                                           Awareness campaigns
## 4724                                           Awareness campaigns
## 4725                                           Awareness campaigns
## 4726                                           Awareness campaigns
## 4727                                           Awareness campaigns
## 4728                                           Awareness campaigns
## 4729                        Strengthening the public health system
## 4730                        Strengthening the public health system
## 4731                        Strengthening the public health system
## 4732                        Strengthening the public health system
## 4733                        Strengthening the public health system
## 4734                        Strengthening the public health system
## 4735                                           Awareness campaigns
## 4736                                           Awareness campaigns
## 4737                                           Awareness campaigns
## 4738                                           Awareness campaigns
## 4739                                           Awareness campaigns
## 4740                                           Awareness campaigns
## 4741  Emergency administrative structures activated or established
## 4742  Emergency administrative structures activated or established
## 4743  Emergency administrative structures activated or established
## 4744  Emergency administrative structures activated or established
## 4745  Emergency administrative structures activated or established
## 4746  Emergency administrative structures activated or established
## 4747                                       Limit public gatherings
## 4748                                       Limit public gatherings
## 4749                                       Limit public gatherings
## 4750                                       Limit public gatherings
## 4751                                       Limit public gatherings
## 4752                                       Limit public gatherings
## 4753                         Other public health measures enforced
## 4754                         Other public health measures enforced
## 4755                         Other public health measures enforced
## 4756                         Other public health measures enforced
## 4757                         Other public health measures enforced
## 4758                         Other public health measures enforced
## 4759                         Other public health measures enforced
## 4760                         Other public health measures enforced
## 4761                         Other public health measures enforced
## 4762                         Other public health measures enforced
## 4763                         Other public health measures enforced
## 4764                         Other public health measures enforced
## 4765                                              Partial lockdown
## 4766                                              Partial lockdown
## 4767                                              Partial lockdown
## 4768                                              Partial lockdown
## 4769                                              Partial lockdown
## 4770                                              Partial lockdown
## 4771                                              Partial lockdown
## 4772                                              Partial lockdown
## 4773                                              Partial lockdown
## 4774                                              Partial lockdown
## 4775                                              Partial lockdown
## 4776                                              Partial lockdown
## 4777                                       Limit public gatherings
## 4778                                       Limit public gatherings
## 4779                                       Limit public gatherings
## 4780                                       Limit public gatherings
## 4781                                       Limit public gatherings
## 4782                                       Limit public gatherings
## 4783                                  Domestic travel restrictions
## 4784                                  Domestic travel restrictions
## 4785                                  Domestic travel restrictions
## 4786                                  Domestic travel restrictions
## 4787                                  Domestic travel restrictions
## 4788                                  Domestic travel restrictions
## 4789                     Closure of businesses and public services
## 4790                     Closure of businesses and public services
## 4791                     Closure of businesses and public services
## 4792                     Closure of businesses and public services
## 4793                     Closure of businesses and public services
## 4794                     Closure of businesses and public services
## 4795                     Closure of businesses and public services
## 4796                     Closure of businesses and public services
## 4797                     Closure of businesses and public services
## 4798                     Closure of businesses and public services
## 4799                     Closure of businesses and public services
## 4800                     Closure of businesses and public services
## 4801                                       Limit public gatherings
## 4802                                       Limit public gatherings
## 4803                                       Limit public gatherings
## 4804                                       Limit public gatherings
## 4805                                       Limit public gatherings
## 4806                                       Limit public gatherings
## 4807                     Closure of businesses and public services
## 4808                     Closure of businesses and public services
## 4809                     Closure of businesses and public services
## 4810                     Closure of businesses and public services
## 4811                     Closure of businesses and public services
## 4812                     Closure of businesses and public services
## 4813                     Closure of businesses and public services
## 4814                     Closure of businesses and public services
## 4815                     Closure of businesses and public services
## 4816                     Closure of businesses and public services
## 4817                     Closure of businesses and public services
## 4818                     Closure of businesses and public services
## 4819                     Closure of businesses and public services
## 4820                     Closure of businesses and public services
## 4821                     Closure of businesses and public services
## 4822                     Closure of businesses and public services
## 4823                     Closure of businesses and public services
## 4824                     Closure of businesses and public services
## 4825                                       Limit public gatherings
## 4826                                       Limit public gatherings
## 4827                                       Limit public gatherings
## 4828                                       Limit public gatherings
## 4829                                       Limit public gatherings
## 4830                                       Limit public gatherings
## 4831                                       Limit public gatherings
## 4832                                       Limit public gatherings
## 4833                                       Limit public gatherings
## 4834                                       Limit public gatherings
## 4835                                       Limit public gatherings
## 4836                                       Limit public gatherings
## 4837                                       Limit public gatherings
## 4838                                       Limit public gatherings
## 4839                                       Limit public gatherings
## 4840                                       Limit public gatherings
## 4841                                       Limit public gatherings
## 4842                                       Limit public gatherings
## 4843                                       Limit public gatherings
## 4844                                       Limit public gatherings
## 4845                                       Limit public gatherings
## 4846                                       Limit public gatherings
## 4847                                       Limit public gatherings
## 4848                                       Limit public gatherings
## 4849                                       General recommendations
## 4850                                       General recommendations
## 4851                                       General recommendations
## 4852                                       General recommendations
## 4853                                       General recommendations
## 4854                                       General recommendations
## 4855                                               Border closure 
## 4856                                               Border closure 
## 4857                                               Border closure 
## 4858                                               Border closure 
## 4859                                               Border closure 
## 4860                                               Border closure 
## 4861                                   Surveillance and monitoring
## 4862                                   Surveillance and monitoring
## 4863                                   Surveillance and monitoring
## 4864                                   Surveillance and monitoring
## 4865                                   Surveillance and monitoring
## 4866                                   Surveillance and monitoring
## 4867                                               Border closure 
## 4868                                               Border closure 
## 4869                                               Border closure 
## 4870                                               Border closure 
## 4871                                               Border closure 
## 4872                                               Border closure 
## 4873                                               Border closure 
## 4874                                               Border closure 
## 4875                                               Border closure 
## 4876                                               Border closure 
## 4877                                               Border closure 
## 4878                                               Border closure 
## 4879                             Isolation and quarantine policies
## 4880                             Isolation and quarantine policies
## 4881                             Isolation and quarantine policies
## 4882                             Isolation and quarantine policies
## 4883                             Isolation and quarantine policies
## 4884                             Isolation and quarantine policies
## 4885                                               Border closure 
## 4886                                               Border closure 
## 4887                                               Border closure 
## 4888                                               Border closure 
## 4889                                               Border closure 
## 4890                                               Border closure 
## 4891                                              Partial lockdown
## 4892                                              Partial lockdown
## 4893                                              Partial lockdown
## 4894                                              Partial lockdown
## 4895                                              Partial lockdown
## 4896                                              Partial lockdown
## 4897                                       Limit public gatherings
## 4898                                       Limit public gatherings
## 4899                                       Limit public gatherings
## 4900                                       Limit public gatherings
## 4901                                       Limit public gatherings
## 4902                                       Limit public gatherings
## 4903                                             Visa restrictions
## 4904                                             Visa restrictions
## 4905                                             Visa restrictions
## 4906                                             Visa restrictions
## 4907                                             Visa restrictions
## 4908                                             Visa restrictions
## 4909                                              Schools closure 
## 4910                                              Schools closure 
## 4911                                              Schools closure 
## 4912                                              Schools closure 
## 4913                                              Schools closure 
## 4914                                              Schools closure 
## 4915                                             Economic measures
## 4916                                             Economic measures
## 4917                                             Economic measures
## 4918                                             Economic measures
## 4919                                             Economic measures
## 4920                                             Economic measures
## 4921                              International flights suspension
## 4922                              International flights suspension
## 4923                              International flights suspension
## 4924                              International flights suspension
## 4925                              International flights suspension
## 4926                              International flights suspension
## 4927                                       Limit public gatherings
## 4928                                       Limit public gatherings
## 4929                                       Limit public gatherings
## 4930                                       Limit public gatherings
## 4931                                       Limit public gatherings
## 4932                                       Limit public gatherings
## 4933                              International flights suspension
## 4934                              International flights suspension
## 4935                              International flights suspension
## 4936                              International flights suspension
## 4937                              International flights suspension
## 4938                              International flights suspension
## 4939                                                Border checks 
## 4940                                                Border checks 
## 4941                                                Border checks 
## 4942                                                Border checks 
## 4943                                                Border checks 
## 4944                                                Border checks 
## 4945                                  Domestic travel restrictions
## 4946                                  Domestic travel restrictions
## 4947                                  Domestic travel restrictions
## 4948                                  Domestic travel restrictions
## 4949                                  Domestic travel restrictions
## 4950                                  Domestic travel restrictions
## 4951                     Closure of businesses and public services
## 4952                     Closure of businesses and public services
## 4953                     Closure of businesses and public services
## 4954                     Closure of businesses and public services
## 4955                     Closure of businesses and public services
## 4956                     Closure of businesses and public services
## 4957                                  Domestic travel restrictions
## 4958                                  Domestic travel restrictions
## 4959                                  Domestic travel restrictions
## 4960                                  Domestic travel restrictions
## 4961                                  Domestic travel restrictions
## 4962                                  Domestic travel restrictions
## 4963                                  Domestic travel restrictions
## 4964                                  Domestic travel restrictions
## 4965                                  Domestic travel restrictions
## 4966                                  Domestic travel restrictions
## 4967                                  Domestic travel restrictions
## 4968                                  Domestic travel restrictions
## 4969                             Isolation and quarantine policies
## 4970                             Isolation and quarantine policies
## 4971                             Isolation and quarantine policies
## 4972                             Isolation and quarantine policies
## 4973                             Isolation and quarantine policies
## 4974                             Isolation and quarantine policies
## 4975                                              Partial lockdown
## 4976                                              Partial lockdown
## 4977                                              Partial lockdown
## 4978                                              Partial lockdown
## 4979                                              Partial lockdown
## 4980                                              Partial lockdown
## 4981                                  Domestic travel restrictions
## 4982                                  Domestic travel restrictions
## 4983                                  Domestic travel restrictions
## 4984                                  Domestic travel restrictions
## 4985                                  Domestic travel restrictions
## 4986                                  Domestic travel restrictions
## 4987                                  Domestic travel restrictions
## 4988                                  Domestic travel restrictions
## 4989                                  Domestic travel restrictions
## 4990                                  Domestic travel restrictions
## 4991                                  Domestic travel restrictions
## 4992                                  Domestic travel restrictions
## 4993                                             Economic measures
## 4994                                             Economic measures
## 4995                                             Economic measures
## 4996                                             Economic measures
## 4997                                             Economic measures
## 4998                                             Economic measures
## 4999              Psychological assistance and medical social work
## 5000              Psychological assistance and medical social work
## 5001              Psychological assistance and medical social work
## 5002              Psychological assistance and medical social work
## 5003              Psychological assistance and medical social work
## 5004              Psychological assistance and medical social work
## 5005                                             Visa restrictions
## 5006                                             Visa restrictions
## 5007                                             Visa restrictions
## 5008                                             Visa restrictions
## 5009                                             Visa restrictions
## 5010                                             Visa restrictions
## 5011                                                Testing policy
## 5012                                                Testing policy
## 5013                                                Testing policy
## 5014                                                Testing policy
## 5015                                                Testing policy
## 5016                                                Testing policy
## 5017                                             Economic measures
## 5018                                             Economic measures
## 5019                                             Economic measures
## 5020                                             Economic measures
## 5021                                             Economic measures
## 5022                                             Economic measures
## 5023                                           Awareness campaigns
## 5024                                           Awareness campaigns
## 5025                                           Awareness campaigns
## 5026                                           Awareness campaigns
## 5027                                           Awareness campaigns
## 5028                                           Awareness campaigns
## 5029                        Strengthening the public health system
## 5030                        Strengthening the public health system
## 5031                        Strengthening the public health system
## 5032                        Strengthening the public health system
## 5033                        Strengthening the public health system
## 5034                        Strengthening the public health system
## 5035                        Strengthening the public health system
## 5036                        Strengthening the public health system
## 5037                        Strengthening the public health system
## 5038                        Strengthening the public health system
## 5039                        Strengthening the public health system
## 5040                        Strengthening the public health system
## 5041                                           Military deployment
## 5042                                           Military deployment
## 5043                                           Military deployment
## 5044                                           Military deployment
## 5045                                           Military deployment
## 5046                                           Military deployment
## 5047                                                Border checks 
## 5048                                                Border checks 
## 5049                                                Border checks 
## 5050                                                Border checks 
## 5051                                                Border checks 
## 5052                                                Border checks 
## 5053                                                Border checks 
## 5054                                                Border checks 
## 5055                                                Border checks 
## 5056                                                Border checks 
## 5057                                                Border checks 
## 5058                                                Border checks 
## 5059                                  Domestic travel restrictions
## 5060                                  Domestic travel restrictions
## 5061                                  Domestic travel restrictions
## 5062                                  Domestic travel restrictions
## 5063                                  Domestic travel restrictions
## 5064                                  Domestic travel restrictions
## 5065                        Strengthening the public health system
## 5066                        Strengthening the public health system
## 5067                        Strengthening the public health system
## 5068                        Strengthening the public health system
## 5069                        Strengthening the public health system
## 5070                        Strengthening the public health system
## 5071         Additional health/documents requirements upon arrival
## 5072         Additional health/documents requirements upon arrival
## 5073         Additional health/documents requirements upon arrival
## 5074         Additional health/documents requirements upon arrival
## 5075         Additional health/documents requirements upon arrival
## 5076         Additional health/documents requirements upon arrival
## 5077                     Closure of businesses and public services
## 5078                     Closure of businesses and public services
## 5079                     Closure of businesses and public services
## 5080                     Closure of businesses and public services
## 5081                     Closure of businesses and public services
## 5082                     Closure of businesses and public services
## 5083                         Other public health measures enforced
## 5084                         Other public health measures enforced
## 5085                         Other public health measures enforced
## 5086                         Other public health measures enforced
## 5087                         Other public health measures enforced
## 5088                         Other public health measures enforced
## 5089                        Strengthening the public health system
## 5090                        Strengthening the public health system
## 5091                        Strengthening the public health system
## 5092                        Strengthening the public health system
## 5093                        Strengthening the public health system
## 5094                        Strengthening the public health system
## 5095                                             Economic measures
## 5096                                             Economic measures
## 5097                                             Economic measures
## 5098                                             Economic measures
## 5099                                             Economic measures
## 5100                                             Economic measures
## 5101                                             Economic measures
## 5102                                             Economic measures
## 5103                                             Economic measures
## 5104                                             Economic measures
## 5105                                             Economic measures
## 5106                                             Economic measures
## 5107              Psychological assistance and medical social work
## 5108              Psychological assistance and medical social work
## 5109              Psychological assistance and medical social work
## 5110              Psychological assistance and medical social work
## 5111              Psychological assistance and medical social work
## 5112              Psychological assistance and medical social work
## 5113                     Closure of businesses and public services
## 5114                     Closure of businesses and public services
## 5115                     Closure of businesses and public services
## 5116                     Closure of businesses and public services
## 5117                     Closure of businesses and public services
## 5118                     Closure of businesses and public services
## 5119                                             Economic measures
## 5120                                             Economic measures
## 5121                                             Economic measures
## 5122                                             Economic measures
## 5123                                             Economic measures
## 5124                                             Economic measures
## 5125                                             Economic measures
## 5126                                             Economic measures
## 5127                                             Economic measures
## 5128                                             Economic measures
## 5129                                             Economic measures
## 5130                                             Economic measures
## 5131                                             Economic measures
## 5132                                             Economic measures
## 5133                                             Economic measures
## 5134                                             Economic measures
## 5135                                             Economic measures
## 5136                                             Economic measures
## 5137                                             Economic measures
## 5138                                             Economic measures
## 5139                                             Economic measures
## 5140                                             Economic measures
## 5141                                             Economic measures
## 5142                                             Economic measures
## 5143                                             Economic measures
## 5144                                             Economic measures
## 5145                                             Economic measures
## 5146                                             Economic measures
## 5147                                             Economic measures
## 5148                                             Economic measures
## 5149                                              Partial lockdown
## 5150                                              Partial lockdown
## 5151                                              Partial lockdown
## 5152                                              Partial lockdown
## 5153                                              Partial lockdown
## 5154                                              Partial lockdown
## 5155                 Requirement to wear protective gear in public
## 5156                 Requirement to wear protective gear in public
## 5157                 Requirement to wear protective gear in public
## 5158                 Requirement to wear protective gear in public
## 5159                 Requirement to wear protective gear in public
## 5160                 Requirement to wear protective gear in public
## 5161                     Closure of businesses and public services
## 5162                     Closure of businesses and public services
## 5163                     Closure of businesses and public services
## 5164                     Closure of businesses and public services
## 5165                     Closure of businesses and public services
## 5166                     Closure of businesses and public services
## 5167                        Strengthening the public health system
## 5168                        Strengthening the public health system
## 5169                        Strengthening the public health system
## 5170                        Strengthening the public health system
## 5171                        Strengthening the public health system
## 5172                        Strengthening the public health system
## 5173                                                Testing policy
## 5174                                                Testing policy
## 5175                                                Testing policy
## 5176                                                Testing policy
## 5177                                                Testing policy
## 5178                                                Testing policy
## 5179                     Closure of businesses and public services
## 5180                     Closure of businesses and public services
## 5181                     Closure of businesses and public services
## 5182                     Closure of businesses and public services
## 5183                     Closure of businesses and public services
## 5184                     Closure of businesses and public services
## 5185                     Closure of businesses and public services
## 5186                     Closure of businesses and public services
## 5187                     Closure of businesses and public services
## 5188                     Closure of businesses and public services
## 5189                     Closure of businesses and public services
## 5190                     Closure of businesses and public services
## 5191                             Isolation and quarantine policies
## 5192                             Isolation and quarantine policies
## 5193                             Isolation and quarantine policies
## 5194                             Isolation and quarantine policies
## 5195                             Isolation and quarantine policies
## 5196                             Isolation and quarantine policies
## 5197                                  Domestic travel restrictions
## 5198                                  Domestic travel restrictions
## 5199                                  Domestic travel restrictions
## 5200                                  Domestic travel restrictions
## 5201                                  Domestic travel restrictions
## 5202                                  Domestic travel restrictions
## 5203                                  Domestic travel restrictions
## 5204                                  Domestic travel restrictions
## 5205                                  Domestic travel restrictions
## 5206                                  Domestic travel restrictions
## 5207                                  Domestic travel restrictions
## 5208                                  Domestic travel restrictions
## 5209                 Requirement to wear protective gear in public
## 5210                 Requirement to wear protective gear in public
## 5211                 Requirement to wear protective gear in public
## 5212                 Requirement to wear protective gear in public
## 5213                 Requirement to wear protective gear in public
## 5214                 Requirement to wear protective gear in public
## 5215                                           Awareness campaigns
## 5216                                           Awareness campaigns
## 5217                                           Awareness campaigns
## 5218                                           Awareness campaigns
## 5219                                           Awareness campaigns
## 5220                                           Awareness campaigns
## 5221                                                Testing policy
## 5222                                                Testing policy
## 5223                                                Testing policy
## 5224                                                Testing policy
## 5225                                                Testing policy
## 5226                                                Testing policy
## 5227                                             Economic measures
## 5228                                             Economic measures
## 5229                                             Economic measures
## 5230                                             Economic measures
## 5231                                             Economic measures
## 5232                                             Economic measures
## 5233                             Isolation and quarantine policies
## 5234                             Isolation and quarantine policies
## 5235                             Isolation and quarantine policies
## 5236                             Isolation and quarantine policies
## 5237                             Isolation and quarantine policies
## 5238                             Isolation and quarantine policies
## 5239                                             Economic measures
## 5240                                             Economic measures
## 5241                                             Economic measures
## 5242                                             Economic measures
## 5243                                             Economic measures
## 5244                                             Economic measures
## 5245                                             Economic measures
## 5246                                             Economic measures
## 5247                                             Economic measures
## 5248                                             Economic measures
## 5249                                             Economic measures
## 5250                                             Economic measures
## 5251                                               Border closure 
## 5252                                               Border closure 
## 5253                                               Border closure 
## 5254                                               Border closure 
## 5255                                               Border closure 
## 5256                                               Border closure 
## 5257                                               Border closure 
## 5258                                               Border closure 
## 5259                                               Border closure 
## 5260                                               Border closure 
## 5261                                               Border closure 
## 5262                                               Border closure 
## 5263                                               Border closure 
## 5264                                               Border closure 
## 5265                                               Border closure 
## 5266                                               Border closure 
## 5267                                               Border closure 
## 5268                                               Border closure 
## 5269                                                Border checks 
## 5270                                                Border checks 
## 5271                                                Border checks 
## 5272                                                Border checks 
## 5273                                                Border checks 
## 5274                                                Border checks 
## 5275                                                       Curfews
## 5276                                                       Curfews
## 5277                                                       Curfews
## 5278                                                       Curfews
## 5279                                                       Curfews
## 5280                                                       Curfews
## 5281                                             Visa restrictions
## 5282                                             Visa restrictions
## 5283                                             Visa restrictions
## 5284                                             Visa restrictions
## 5285                                             Visa restrictions
## 5286                                             Visa restrictions
## 5287                                             Economic measures
## 5288                                             Economic measures
## 5289                                             Economic measures
## 5290                                             Economic measures
## 5291                                             Economic measures
## 5292                                             Economic measures
## 5293                                             Economic measures
## 5294                                             Economic measures
## 5295                                             Economic measures
## 5296                                             Economic measures
## 5297                                             Economic measures
## 5298                                             Economic measures
## 5299  Emergency administrative structures activated or established
## 5300  Emergency administrative structures activated or established
## 5301  Emergency administrative structures activated or established
## 5302  Emergency administrative structures activated or established
## 5303  Emergency administrative structures activated or established
## 5304  Emergency administrative structures activated or established
## 5305                                           Awareness campaigns
## 5306                                           Awareness campaigns
## 5307                                           Awareness campaigns
## 5308                                           Awareness campaigns
## 5309                                           Awareness campaigns
## 5310                                           Awareness campaigns
## 5311              Psychological assistance and medical social work
## 5312              Psychological assistance and medical social work
## 5313              Psychological assistance and medical social work
## 5314              Psychological assistance and medical social work
## 5315              Psychological assistance and medical social work
## 5316              Psychological assistance and medical social work
## 5317                                             Economic measures
## 5318                                             Economic measures
## 5319                                             Economic measures
## 5320                                             Economic measures
## 5321                                             Economic measures
## 5322                                             Economic measures
## 5323                                       General recommendations
## 5324                                       General recommendations
## 5325                                       General recommendations
## 5326                                       General recommendations
## 5327                                       General recommendations
## 5328                                       General recommendations
## 5329              Psychological assistance and medical social work
## 5330              Psychological assistance and medical social work
## 5331              Psychological assistance and medical social work
## 5332              Psychological assistance and medical social work
## 5333              Psychological assistance and medical social work
## 5334              Psychological assistance and medical social work
## 5335                                             Economic measures
## 5336                                             Economic measures
## 5337                                             Economic measures
## 5338                                             Economic measures
## 5339                                             Economic measures
## 5340                                             Economic measures
## 5341                                       Limit public gatherings
## 5342                                       Limit public gatherings
## 5343                                       Limit public gatherings
## 5344                                       Limit public gatherings
## 5345                                       Limit public gatherings
## 5346                                       Limit public gatherings
## 5347                                             Economic measures
## 5348                                             Economic measures
## 5349                                             Economic measures
## 5350                                             Economic measures
## 5351                                             Economic measures
## 5352                                             Economic measures
## 5353                                             Economic measures
## 5354                                             Economic measures
## 5355                                             Economic measures
## 5356                                             Economic measures
## 5357                                             Economic measures
## 5358                                             Economic measures
## 5359                                             Economic measures
## 5360                                             Economic measures
## 5361                                             Economic measures
## 5362                                             Economic measures
## 5363                                             Economic measures
## 5364                                             Economic measures
## 5365                                             Economic measures
## 5366                                             Economic measures
## 5367                                             Economic measures
## 5368                                             Economic measures
## 5369                                             Economic measures
## 5370                                             Economic measures
## 5371                                             Economic measures
## 5372                                             Economic measures
## 5373                                             Economic measures
## 5374                                             Economic measures
## 5375                                             Economic measures
## 5376                                             Economic measures
## 5377                     Closure of businesses and public services
## 5378                     Closure of businesses and public services
## 5379                     Closure of businesses and public services
## 5380                     Closure of businesses and public services
## 5381                     Closure of businesses and public services
## 5382                     Closure of businesses and public services
## 5383                     Closure of businesses and public services
## 5384                     Closure of businesses and public services
## 5385                     Closure of businesses and public services
## 5386                     Closure of businesses and public services
## 5387                     Closure of businesses and public services
## 5388                     Closure of businesses and public services
## 5389                                             Economic measures
## 5390                                             Economic measures
## 5391                                             Economic measures
## 5392                                             Economic measures
## 5393                                             Economic measures
## 5394                                             Economic measures
## 5395                                             Economic measures
## 5396                                             Economic measures
## 5397                                             Economic measures
## 5398                                             Economic measures
## 5399                                             Economic measures
## 5400                                             Economic measures
## 5401  Emergency administrative structures activated or established
## 5402  Emergency administrative structures activated or established
## 5403  Emergency administrative structures activated or established
## 5404  Emergency administrative structures activated or established
## 5405  Emergency administrative structures activated or established
## 5406  Emergency administrative structures activated or established
## 5407                     Closure of businesses and public services
## 5408                     Closure of businesses and public services
## 5409                     Closure of businesses and public services
## 5410                     Closure of businesses and public services
## 5411                     Closure of businesses and public services
## 5412                     Closure of businesses and public services
## 5413                                             Economic measures
## 5414                                             Economic measures
## 5415                                             Economic measures
## 5416                                             Economic measures
## 5417                                             Economic measures
## 5418                                             Economic measures
## 5419                                             Economic measures
## 5420                                             Economic measures
## 5421                                             Economic measures
## 5422                                             Economic measures
## 5423                                             Economic measures
## 5424                                             Economic measures
## 5425                     Closure of businesses and public services
## 5426                     Closure of businesses and public services
## 5427                     Closure of businesses and public services
## 5428                     Closure of businesses and public services
## 5429                     Closure of businesses and public services
## 5430                     Closure of businesses and public services
## 5431                                             Economic measures
## 5432                                             Economic measures
## 5433                                             Economic measures
## 5434                                             Economic measures
## 5435                                             Economic measures
## 5436                                             Economic measures
## 5437                     Closure of businesses and public services
## 5438                     Closure of businesses and public services
## 5439                     Closure of businesses and public services
## 5440                     Closure of businesses and public services
## 5441                     Closure of businesses and public services
## 5442                     Closure of businesses and public services
## 5443              Psychological assistance and medical social work
## 5444              Psychological assistance and medical social work
## 5445              Psychological assistance and medical social work
## 5446              Psychological assistance and medical social work
## 5447              Psychological assistance and medical social work
## 5448              Psychological assistance and medical social work
## 5449                                             Economic measures
## 5450                                             Economic measures
## 5451                                             Economic measures
## 5452                                             Economic measures
## 5453                                             Economic measures
## 5454                                             Economic measures
## 5455                                       Limit public gatherings
## 5456                                       Limit public gatherings
## 5457                                       Limit public gatherings
## 5458                                       Limit public gatherings
## 5459                                       Limit public gatherings
## 5460                                       Limit public gatherings
## 5461                     Closure of businesses and public services
## 5462                     Closure of businesses and public services
## 5463                     Closure of businesses and public services
## 5464                     Closure of businesses and public services
## 5465                     Closure of businesses and public services
## 5466                     Closure of businesses and public services
## 5467                        Strengthening the public health system
## 5468                        Strengthening the public health system
## 5469                        Strengthening the public health system
## 5470                        Strengthening the public health system
## 5471                        Strengthening the public health system
## 5472                        Strengthening the public health system
## 5473                                             Economic measures
## 5474                                             Economic measures
## 5475                                             Economic measures
## 5476                                             Economic measures
## 5477                                             Economic measures
## 5478                                             Economic measures
## 5479                                             Economic measures
## 5480                                             Economic measures
## 5481                                             Economic measures
## 5482                                             Economic measures
## 5483                                             Economic measures
## 5484                                             Economic measures
## 5485                     Closure of businesses and public services
## 5486                     Closure of businesses and public services
## 5487                     Closure of businesses and public services
## 5488                     Closure of businesses and public services
## 5489                     Closure of businesses and public services
## 5490                     Closure of businesses and public services
## 5491                                             Economic measures
## 5492                                             Economic measures
## 5493                                             Economic measures
## 5494                                             Economic measures
## 5495                                             Economic measures
## 5496                                             Economic measures
## 5497                                               Border closure 
## 5498                                               Border closure 
## 5499                                               Border closure 
## 5500                                               Border closure 
## 5501                                               Border closure 
## 5502                                               Border closure 
## 5503                             Isolation and quarantine policies
## 5504                             Isolation and quarantine policies
## 5505                             Isolation and quarantine policies
## 5506                             Isolation and quarantine policies
## 5507                             Isolation and quarantine policies
## 5508                             Isolation and quarantine policies
## 5509                                             Economic measures
## 5510                                             Economic measures
## 5511                                             Economic measures
## 5512                                             Economic measures
## 5513                                             Economic measures
## 5514                                             Economic measures
## 5515                     Closure of businesses and public services
## 5516                     Closure of businesses and public services
## 5517                     Closure of businesses and public services
## 5518                     Closure of businesses and public services
## 5519                     Closure of businesses and public services
## 5520                     Closure of businesses and public services
## 5521              Psychological assistance and medical social work
## 5522              Psychological assistance and medical social work
## 5523              Psychological assistance and medical social work
## 5524              Psychological assistance and medical social work
## 5525              Psychological assistance and medical social work
## 5526              Psychological assistance and medical social work
## 5527                                             Economic measures
## 5528                                             Economic measures
## 5529                                             Economic measures
## 5530                                             Economic measures
## 5531                                             Economic measures
## 5532                                             Economic measures
## 5533                        Strengthening the public health system
## 5534                        Strengthening the public health system
## 5535                        Strengthening the public health system
## 5536                        Strengthening the public health system
## 5537                        Strengthening the public health system
## 5538                        Strengthening the public health system
## 5539                                       Limit public gatherings
## 5540                                       Limit public gatherings
## 5541                                       Limit public gatherings
## 5542                                       Limit public gatherings
## 5543                                       Limit public gatherings
## 5544                                       Limit public gatherings
## 5545                 Requirement to wear protective gear in public
## 5546                 Requirement to wear protective gear in public
## 5547                 Requirement to wear protective gear in public
## 5548                 Requirement to wear protective gear in public
## 5549                 Requirement to wear protective gear in public
## 5550                 Requirement to wear protective gear in public
## 5551                         Other public health measures enforced
## 5552                         Other public health measures enforced
## 5553                         Other public health measures enforced
## 5554                         Other public health measures enforced
## 5555                         Other public health measures enforced
## 5556                         Other public health measures enforced
## 5557                                              Schools closure 
## 5558                                              Schools closure 
## 5559                                              Schools closure 
## 5560                                              Schools closure 
## 5561                                              Schools closure 
## 5562                                              Schools closure 
## 5563                     Closure of businesses and public services
## 5564                     Closure of businesses and public services
## 5565                     Closure of businesses and public services
## 5566                     Closure of businesses and public services
## 5567                     Closure of businesses and public services
## 5568                     Closure of businesses and public services
## 5569                     Closure of businesses and public services
## 5570                     Closure of businesses and public services
## 5571                     Closure of businesses and public services
## 5572                     Closure of businesses and public services
## 5573                     Closure of businesses and public services
## 5574                     Closure of businesses and public services
## 5575                                       Limit public gatherings
## 5576                                       Limit public gatherings
## 5577                                       Limit public gatherings
## 5578                                       Limit public gatherings
## 5579                                       Limit public gatherings
## 5580                                       Limit public gatherings
## 5581                                       Limit public gatherings
## 5582                                       Limit public gatherings
## 5583                                       Limit public gatherings
## 5584                                       Limit public gatherings
## 5585                                       Limit public gatherings
## 5586                                       Limit public gatherings
## 5587                                              Schools closure 
## 5588                                              Schools closure 
## 5589                                              Schools closure 
## 5590                                              Schools closure 
## 5591                                              Schools closure 
## 5592                                              Schools closure 
## 5593                                       General recommendations
## 5594                                       General recommendations
## 5595                                       General recommendations
## 5596                                       General recommendations
## 5597                                       General recommendations
## 5598                                       General recommendations
## 5599  Emergency administrative structures activated or established
## 5600  Emergency administrative structures activated or established
## 5601  Emergency administrative structures activated or established
## 5602  Emergency administrative structures activated or established
## 5603  Emergency administrative structures activated or established
## 5604  Emergency administrative structures activated or established
## 5605                             Isolation and quarantine policies
## 5606                             Isolation and quarantine policies
## 5607                             Isolation and quarantine policies
## 5608                             Isolation and quarantine policies
## 5609                             Isolation and quarantine policies
## 5610                             Isolation and quarantine policies
## 5611                                       Limit public gatherings
## 5612                                       Limit public gatherings
## 5613                                       Limit public gatherings
## 5614                                       Limit public gatherings
## 5615                                       Limit public gatherings
## 5616                                       Limit public gatherings
## 5617                                   Surveillance and monitoring
## 5618                                   Surveillance and monitoring
## 5619                                   Surveillance and monitoring
## 5620                                   Surveillance and monitoring
## 5621                                   Surveillance and monitoring
## 5622                                   Surveillance and monitoring
## 5623                                                Testing policy
## 5624                                                Testing policy
## 5625                                                Testing policy
## 5626                                                Testing policy
## 5627                                                Testing policy
## 5628                                                Testing policy
## 5629                         Other public health measures enforced
## 5630                         Other public health measures enforced
## 5631                         Other public health measures enforced
## 5632                         Other public health measures enforced
## 5633                         Other public health measures enforced
## 5634                         Other public health measures enforced
## 5635                         Other public health measures enforced
## 5636                         Other public health measures enforced
## 5637                         Other public health measures enforced
## 5638                         Other public health measures enforced
## 5639                         Other public health measures enforced
## 5640                         Other public health measures enforced
## 5641             Lockdown of refugee/idp camps or other minorities
## 5642             Lockdown of refugee/idp camps or other minorities
## 5643             Lockdown of refugee/idp camps or other minorities
## 5644             Lockdown of refugee/idp camps or other minorities
## 5645             Lockdown of refugee/idp camps or other minorities
## 5646             Lockdown of refugee/idp camps or other minorities
## 5647             Lockdown of refugee/idp camps or other minorities
## 5648             Lockdown of refugee/idp camps or other minorities
## 5649             Lockdown of refugee/idp camps or other minorities
## 5650             Lockdown of refugee/idp camps or other minorities
## 5651             Lockdown of refugee/idp camps or other minorities
## 5652             Lockdown of refugee/idp camps or other minorities
## 5653                                             Economic measures
## 5654                                             Economic measures
## 5655                                             Economic measures
## 5656                                             Economic measures
## 5657                                             Economic measures
## 5658                                             Economic measures
## 5659                                               Border closure 
## 5660                                               Border closure 
## 5661                                               Border closure 
## 5662                                               Border closure 
## 5663                                               Border closure 
## 5664                                               Border closure 
## 5665                                                Border checks 
## 5666                                                Border checks 
## 5667                                                Border checks 
## 5668                                                Border checks 
## 5669                                                Border checks 
## 5670                                                Border checks 
## 5671                                           Awareness campaigns
## 5672                                           Awareness campaigns
## 5673                                           Awareness campaigns
## 5674                                           Awareness campaigns
## 5675                                           Awareness campaigns
## 5676                                           Awareness campaigns
## 5677                                           Military deployment
## 5678                                           Military deployment
## 5679                                           Military deployment
## 5680                                           Military deployment
## 5681                                           Military deployment
## 5682                                           Military deployment
## 5683                     Closure of businesses and public services
## 5684                     Closure of businesses and public services
## 5685                     Closure of businesses and public services
## 5686                     Closure of businesses and public services
## 5687                     Closure of businesses and public services
## 5688                     Closure of businesses and public services
## 5689                     Closure of businesses and public services
## 5690                     Closure of businesses and public services
## 5691                     Closure of businesses and public services
## 5692                     Closure of businesses and public services
## 5693                     Closure of businesses and public services
## 5694                     Closure of businesses and public services
## 5695                     Closure of businesses and public services
## 5696                     Closure of businesses and public services
## 5697                     Closure of businesses and public services
## 5698                     Closure of businesses and public services
## 5699                     Closure of businesses and public services
## 5700                     Closure of businesses and public services
## 5701                     Closure of businesses and public services
## 5702                     Closure of businesses and public services
## 5703                     Closure of businesses and public services
## 5704                     Closure of businesses and public services
## 5705                     Closure of businesses and public services
## 5706                     Closure of businesses and public services
## 5707                                           Awareness campaigns
## 5708                                           Awareness campaigns
## 5709                                           Awareness campaigns
## 5710                                           Awareness campaigns
## 5711                                           Awareness campaigns
## 5712                                           Awareness campaigns
## 5713                  Amendments to funeral and burial regulations
## 5714                  Amendments to funeral and burial regulations
## 5715                  Amendments to funeral and burial regulations
## 5716                  Amendments to funeral and burial regulations
## 5717                  Amendments to funeral and burial regulations
## 5718                  Amendments to funeral and burial regulations
## 5719                                              Schools closure 
## 5720                                              Schools closure 
## 5721                                              Schools closure 
## 5722                                              Schools closure 
## 5723                                              Schools closure 
## 5724                                              Schools closure 
## 5725                     Closure of businesses and public services
## 5726                     Closure of businesses and public services
## 5727                     Closure of businesses and public services
## 5728                     Closure of businesses and public services
## 5729                     Closure of businesses and public services
## 5730                     Closure of businesses and public services
## 5731                                       Limit public gatherings
## 5732                                       Limit public gatherings
## 5733                                       Limit public gatherings
## 5734                                       Limit public gatherings
## 5735                                       Limit public gatherings
## 5736                                       Limit public gatherings
## 5737                         Other public health measures enforced
## 5738                         Other public health measures enforced
## 5739                         Other public health measures enforced
## 5740                         Other public health measures enforced
## 5741                         Other public health measures enforced
## 5742                         Other public health measures enforced
## 5743                                             Economic measures
## 5744                                             Economic measures
## 5745                                             Economic measures
## 5746                                             Economic measures
## 5747                                             Economic measures
## 5748                                             Economic measures
## 5749                                              Schools closure 
## 5750                                              Schools closure 
## 5751                                              Schools closure 
## 5752                                              Schools closure 
## 5753                                              Schools closure 
## 5754                                              Schools closure 
## 5755                                             Economic measures
## 5756                                             Economic measures
## 5757                                             Economic measures
## 5758                                             Economic measures
## 5759                                             Economic measures
## 5760                                             Economic measures
## 5761                                               Border closure 
## 5762                                               Border closure 
## 5763                                               Border closure 
## 5764                                               Border closure 
## 5765                                               Border closure 
## 5766                                               Border closure 
## 5767                     Closure of businesses and public services
## 5768                     Closure of businesses and public services
## 5769                     Closure of businesses and public services
## 5770                     Closure of businesses and public services
## 5771                     Closure of businesses and public services
## 5772                     Closure of businesses and public services
## 5773                                                Border checks 
## 5774                                                Border checks 
## 5775                                                Border checks 
## 5776                                                Border checks 
## 5777                                                Border checks 
## 5778                                                Border checks 
## 5779                                             Visa restrictions
## 5780                                             Visa restrictions
## 5781                                             Visa restrictions
## 5782                                             Visa restrictions
## 5783                                             Visa restrictions
## 5784                                             Visa restrictions
## 5785                                       Limit public gatherings
## 5786                                       Limit public gatherings
## 5787                                       Limit public gatherings
## 5788                                       Limit public gatherings
## 5789                                       Limit public gatherings
## 5790                                       Limit public gatherings
## 5791                                       Limit public gatherings
## 5792                                       Limit public gatherings
## 5793                                       Limit public gatherings
## 5794                                       Limit public gatherings
## 5795                                       Limit public gatherings
## 5796                                       Limit public gatherings
## 5797                  Amendments to funeral and burial regulations
## 5798                  Amendments to funeral and burial regulations
## 5799                  Amendments to funeral and burial regulations
## 5800                  Amendments to funeral and burial regulations
## 5801                  Amendments to funeral and burial regulations
## 5802                  Amendments to funeral and burial regulations
## 5803                                       Limit public gatherings
## 5804                                       Limit public gatherings
## 5805                                       Limit public gatherings
## 5806                                       Limit public gatherings
## 5807                                       Limit public gatherings
## 5808                                       Limit public gatherings
## 5809                                       Limit public gatherings
## 5810                                       Limit public gatherings
## 5811                                       Limit public gatherings
## 5812                                       Limit public gatherings
## 5813                                       Limit public gatherings
## 5814                                       Limit public gatherings
## 5815                 Requirement to wear protective gear in public
## 5816                 Requirement to wear protective gear in public
## 5817                 Requirement to wear protective gear in public
## 5818                 Requirement to wear protective gear in public
## 5819                 Requirement to wear protective gear in public
## 5820                 Requirement to wear protective gear in public
## 5821                     Closure of businesses and public services
## 5822                     Closure of businesses and public services
## 5823                     Closure of businesses and public services
## 5824                     Closure of businesses and public services
## 5825                     Closure of businesses and public services
## 5826                     Closure of businesses and public services
## 5827                                       Limit public gatherings
## 5828                                       Limit public gatherings
## 5829                                       Limit public gatherings
## 5830                                       Limit public gatherings
## 5831                                       Limit public gatherings
## 5832                                       Limit public gatherings
## 5833                                       Limit public gatherings
## 5834                                       Limit public gatherings
## 5835                                       Limit public gatherings
## 5836                                       Limit public gatherings
## 5837                                       Limit public gatherings
## 5838                                       Limit public gatherings
## 5839                     Closure of businesses and public services
## 5840                     Closure of businesses and public services
## 5841                     Closure of businesses and public services
## 5842                     Closure of businesses and public services
## 5843                     Closure of businesses and public services
## 5844                     Closure of businesses and public services
## 5845                             Isolation and quarantine policies
## 5846                             Isolation and quarantine policies
## 5847                             Isolation and quarantine policies
## 5848                             Isolation and quarantine policies
## 5849                             Isolation and quarantine policies
## 5850                             Isolation and quarantine policies
## 5851                                             Economic measures
## 5852                                             Economic measures
## 5853                                             Economic measures
## 5854                                             Economic measures
## 5855                                             Economic measures
## 5856                                             Economic measures
## 5857                              International flights suspension
## 5858                              International flights suspension
## 5859                              International flights suspension
## 5860                              International flights suspension
## 5861                              International flights suspension
## 5862                              International flights suspension
## 5863                 Requirement to wear protective gear in public
## 5864                 Requirement to wear protective gear in public
## 5865                 Requirement to wear protective gear in public
## 5866                 Requirement to wear protective gear in public
## 5867                 Requirement to wear protective gear in public
## 5868                 Requirement to wear protective gear in public
## 5869                        Strengthening the public health system
## 5870                        Strengthening the public health system
## 5871                        Strengthening the public health system
## 5872                        Strengthening the public health system
## 5873                        Strengthening the public health system
## 5874                        Strengthening the public health system
## 5875                             Isolation and quarantine policies
## 5876                             Isolation and quarantine policies
## 5877                             Isolation and quarantine policies
## 5878                             Isolation and quarantine policies
## 5879                             Isolation and quarantine policies
## 5880                             Isolation and quarantine policies
## 5881                                             Economic measures
## 5882                                             Economic measures
## 5883                                             Economic measures
## 5884                                             Economic measures
## 5885                                             Economic measures
## 5886                                             Economic measures
## 5887                                               Border closure 
## 5888                                               Border closure 
## 5889                                               Border closure 
## 5890                                               Border closure 
## 5891                                               Border closure 
## 5892                                               Border closure 
## 5893                             Isolation and quarantine policies
## 5894                             Isolation and quarantine policies
## 5895                             Isolation and quarantine policies
## 5896                             Isolation and quarantine policies
## 5897                             Isolation and quarantine policies
## 5898                             Isolation and quarantine policies
## 5899                         Other public health measures enforced
## 5900                         Other public health measures enforced
## 5901                         Other public health measures enforced
## 5902                         Other public health measures enforced
## 5903                         Other public health measures enforced
## 5904                         Other public health measures enforced
## 5905                         Other public health measures enforced
## 5906                         Other public health measures enforced
## 5907                         Other public health measures enforced
## 5908                         Other public health measures enforced
## 5909                         Other public health measures enforced
## 5910                         Other public health measures enforced
## 5911                        Strengthening the public health system
## 5912                        Strengthening the public health system
## 5913                        Strengthening the public health system
## 5914                        Strengthening the public health system
## 5915                        Strengthening the public health system
## 5916                        Strengthening the public health system
## 5917                                           Military deployment
## 5918                                           Military deployment
## 5919                                           Military deployment
## 5920                                           Military deployment
## 5921                                           Military deployment
## 5922                                           Military deployment
## 5923                        Strengthening the public health system
## 5924                        Strengthening the public health system
## 5925                        Strengthening the public health system
## 5926                        Strengthening the public health system
## 5927                        Strengthening the public health system
## 5928                        Strengthening the public health system
## 5929                                               Border closure 
## 5930                                               Border closure 
## 5931                                               Border closure 
## 5932                                               Border closure 
## 5933                                               Border closure 
## 5934                                               Border closure 
## 5935                             Isolation and quarantine policies
## 5936                             Isolation and quarantine policies
## 5937                             Isolation and quarantine policies
## 5938                             Isolation and quarantine policies
## 5939                             Isolation and quarantine policies
## 5940                             Isolation and quarantine policies
## 5941                                       General recommendations
## 5942                                       General recommendations
## 5943                                       General recommendations
## 5944                                       General recommendations
## 5945                                       General recommendations
## 5946                                       General recommendations
## 5947                 Requirement to wear protective gear in public
## 5948                 Requirement to wear protective gear in public
## 5949                 Requirement to wear protective gear in public
## 5950                 Requirement to wear protective gear in public
## 5951                 Requirement to wear protective gear in public
## 5952                 Requirement to wear protective gear in public
## 5953                 Requirement to wear protective gear in public
## 5954                 Requirement to wear protective gear in public
## 5955                 Requirement to wear protective gear in public
## 5956                 Requirement to wear protective gear in public
## 5957                 Requirement to wear protective gear in public
## 5958                 Requirement to wear protective gear in public
## 5959                             Isolation and quarantine policies
## 5960                             Isolation and quarantine policies
## 5961                             Isolation and quarantine policies
## 5962                             Isolation and quarantine policies
## 5963                             Isolation and quarantine policies
## 5964                             Isolation and quarantine policies
## 5965                                   State of emergency declared
## 5966                                   State of emergency declared
## 5967                                   State of emergency declared
## 5968                                   State of emergency declared
## 5969                                   State of emergency declared
## 5970                                   State of emergency declared
## 5971                 Requirement to wear protective gear in public
## 5972                 Requirement to wear protective gear in public
## 5973                 Requirement to wear protective gear in public
## 5974                 Requirement to wear protective gear in public
## 5975                 Requirement to wear protective gear in public
## 5976                 Requirement to wear protective gear in public
## 5977                         Other public health measures enforced
## 5978                         Other public health measures enforced
## 5979                         Other public health measures enforced
## 5980                         Other public health measures enforced
## 5981                         Other public health measures enforced
## 5982                         Other public health measures enforced
## 5983                                  Domestic travel restrictions
## 5984                                  Domestic travel restrictions
## 5985                                  Domestic travel restrictions
## 5986                                  Domestic travel restrictions
## 5987                                  Domestic travel restrictions
## 5988                                  Domestic travel restrictions
## 5989                                       General recommendations
## 5990                                       General recommendations
## 5991                                       General recommendations
## 5992                                       General recommendations
## 5993                                       General recommendations
## 5994                                       General recommendations
## 5995                                             Economic measures
## 5996                                             Economic measures
## 5997                                             Economic measures
## 5998                                             Economic measures
## 5999                                             Economic measures
## 6000                                             Economic measures
## 6001                                                Testing policy
## 6002                                                Testing policy
## 6003                                                Testing policy
## 6004                                                Testing policy
## 6005                                                Testing policy
## 6006                                                Testing policy
## 6007                                             Economic measures
## 6008                                             Economic measures
## 6009                                             Economic measures
## 6010                                             Economic measures
## 6011                                             Economic measures
## 6012                                             Economic measures
## 6013                                             Economic measures
## 6014                                             Economic measures
## 6015                                             Economic measures
## 6016                                             Economic measures
## 6017                                             Economic measures
## 6018                                             Economic measures
## 6019                                               Border closure 
## 6020                                               Border closure 
## 6021                                               Border closure 
## 6022                                               Border closure 
## 6023                                               Border closure 
## 6024                                               Border closure 
## 6025                                               Border closure 
## 6026                                               Border closure 
## 6027                                               Border closure 
## 6028                                               Border closure 
## 6029                                               Border closure 
## 6030                                               Border closure 
## 6031                             Isolation and quarantine policies
## 6032                             Isolation and quarantine policies
## 6033                             Isolation and quarantine policies
## 6034                             Isolation and quarantine policies
## 6035                             Isolation and quarantine policies
## 6036                             Isolation and quarantine policies
## 6037                                             Visa restrictions
## 6038                                             Visa restrictions
## 6039                                             Visa restrictions
## 6040                                             Visa restrictions
## 6041                                             Visa restrictions
## 6042                                             Visa restrictions
## 6043            Health screenings in airports and border crossings
## 6044            Health screenings in airports and border crossings
## 6045            Health screenings in airports and border crossings
## 6046            Health screenings in airports and border crossings
## 6047            Health screenings in airports and border crossings
## 6048            Health screenings in airports and border crossings
## 6049                                               Border closure 
## 6050                                               Border closure 
## 6051                                               Border closure 
## 6052                                               Border closure 
## 6053                                               Border closure 
## 6054                                               Border closure 
## 6055                                              Schools closure 
## 6056                                              Schools closure 
## 6057                                              Schools closure 
## 6058                                              Schools closure 
## 6059                                              Schools closure 
## 6060                                              Schools closure 
## 6061                             Isolation and quarantine policies
## 6062                             Isolation and quarantine policies
## 6063                             Isolation and quarantine policies
## 6064                             Isolation and quarantine policies
## 6065                             Isolation and quarantine policies
## 6066                             Isolation and quarantine policies
## 6067                                           Awareness campaigns
## 6068                                           Awareness campaigns
## 6069                                           Awareness campaigns
## 6070                                           Awareness campaigns
## 6071                                           Awareness campaigns
## 6072                                           Awareness campaigns
## 6073                                               Border closure 
## 6074                                               Border closure 
## 6075                                               Border closure 
## 6076                                               Border closure 
## 6077                                               Border closure 
## 6078                                               Border closure 
## 6079                              International flights suspension
## 6080                              International flights suspension
## 6081                              International flights suspension
## 6082                              International flights suspension
## 6083                              International flights suspension
## 6084                              International flights suspension
## 6085                                             Visa restrictions
## 6086                                             Visa restrictions
## 6087                                             Visa restrictions
## 6088                                             Visa restrictions
## 6089                                             Visa restrictions
## 6090                                             Visa restrictions
## 6091                                               Border closure 
## 6092                                               Border closure 
## 6093                                               Border closure 
## 6094                                               Border closure 
## 6095                                               Border closure 
## 6096                                               Border closure 
## 6097                                               Border closure 
## 6098                                               Border closure 
## 6099                                               Border closure 
## 6100                                               Border closure 
## 6101                                               Border closure 
## 6102                                               Border closure 
## 6103                                               Border closure 
## 6104                                               Border closure 
## 6105                                               Border closure 
## 6106                                               Border closure 
## 6107                                               Border closure 
## 6108                                               Border closure 
## 6109                                               Border closure 
## 6110                                               Border closure 
## 6111                                               Border closure 
## 6112                                               Border closure 
## 6113                                               Border closure 
## 6114                                               Border closure 
## 6115            Health screenings in airports and border crossings
## 6116            Health screenings in airports and border crossings
## 6117            Health screenings in airports and border crossings
## 6118            Health screenings in airports and border crossings
## 6119            Health screenings in airports and border crossings
## 6120            Health screenings in airports and border crossings
## 6121                                       Limit public gatherings
## 6122                                       Limit public gatherings
## 6123                                       Limit public gatherings
## 6124                                       Limit public gatherings
## 6125                                       Limit public gatherings
## 6126                                       Limit public gatherings
## 6127                                           Awareness campaigns
## 6128                                           Awareness campaigns
## 6129                                           Awareness campaigns
## 6130                                           Awareness campaigns
## 6131                                           Awareness campaigns
## 6132                                           Awareness campaigns
## 6133                                             Economic measures
## 6134                                             Economic measures
## 6135                                             Economic measures
## 6136                                             Economic measures
## 6137                                             Economic measures
## 6138                                             Economic measures
## 6139                                       Limit public gatherings
## 6140                                       Limit public gatherings
## 6141                                       Limit public gatherings
## 6142                                       Limit public gatherings
## 6143                                       Limit public gatherings
## 6144                                       Limit public gatherings
## 6145                                              Partial lockdown
## 6146                                              Partial lockdown
## 6147                                              Partial lockdown
## 6148                                              Partial lockdown
## 6149                                              Partial lockdown
## 6150                                              Partial lockdown
## 6151                                              Partial lockdown
## 6152                                              Partial lockdown
## 6153                                              Partial lockdown
## 6154                                              Partial lockdown
## 6155                                              Partial lockdown
## 6156                                              Partial lockdown
## 6157                                              Partial lockdown
## 6158                                              Partial lockdown
## 6159                                              Partial lockdown
## 6160                                              Partial lockdown
## 6161                                              Partial lockdown
## 6162                                              Partial lockdown
## 6163                                                 Full lockdown
## 6164                                                 Full lockdown
## 6165                                                 Full lockdown
## 6166                                                 Full lockdown
## 6167                                                 Full lockdown
## 6168                                                 Full lockdown
## 6169                        Strengthening the public health system
## 6170                        Strengthening the public health system
## 6171                        Strengthening the public health system
## 6172                        Strengthening the public health system
## 6173                        Strengthening the public health system
## 6174                        Strengthening the public health system
## 6175                                               Border closure 
## 6176                                               Border closure 
## 6177                                               Border closure 
## 6178                                               Border closure 
## 6179                                               Border closure 
## 6180                                               Border closure 
## 6181                            Changes in prison-related policies
## 6182                            Changes in prison-related policies
## 6183                            Changes in prison-related policies
## 6184                            Changes in prison-related policies
## 6185                            Changes in prison-related policies
## 6186                            Changes in prison-related policies
## 6187                                              Schools closure 
## 6188                                              Schools closure 
## 6189                                              Schools closure 
## 6190                                              Schools closure 
## 6191                                              Schools closure 
## 6192                                              Schools closure 
## 6193                                                 Full lockdown
## 6194                                                 Full lockdown
## 6195                                                 Full lockdown
## 6196                                                 Full lockdown
## 6197                                                 Full lockdown
## 6198                                                 Full lockdown
## 6199                                                 Full lockdown
## 6200                                                 Full lockdown
## 6201                                                 Full lockdown
## 6202                                                 Full lockdown
## 6203                                                 Full lockdown
## 6204                                                 Full lockdown
## 6205                                               Border closure 
## 6206                                               Border closure 
## 6207                                               Border closure 
## 6208                                               Border closure 
## 6209                                               Border closure 
## 6210                                               Border closure 
## 6211                                                 Full lockdown
## 6212                                                 Full lockdown
## 6213                                                 Full lockdown
## 6214                                                 Full lockdown
## 6215                                                 Full lockdown
## 6216                                                 Full lockdown
## 6217                     Closure of businesses and public services
## 6218                     Closure of businesses and public services
## 6219                     Closure of businesses and public services
## 6220                     Closure of businesses and public services
## 6221                     Closure of businesses and public services
## 6222                     Closure of businesses and public services
## 6223                                              Schools closure 
## 6224                                              Schools closure 
## 6225                                              Schools closure 
## 6226                                              Schools closure 
## 6227                                              Schools closure 
## 6228                                              Schools closure 
## 6229                                           Awareness campaigns
## 6230                                           Awareness campaigns
## 6231                                           Awareness campaigns
## 6232                                           Awareness campaigns
## 6233                                           Awareness campaigns
## 6234                                           Awareness campaigns
## 6235                                             Economic measures
## 6236                                             Economic measures
## 6237                                             Economic measures
## 6238                                             Economic measures
## 6239                                             Economic measures
## 6240                                             Economic measures
## 6241  Emergency administrative structures activated or established
## 6242  Emergency administrative structures activated or established
## 6243  Emergency administrative structures activated or established
## 6244  Emergency administrative structures activated or established
## 6245  Emergency administrative structures activated or established
## 6246  Emergency administrative structures activated or established
## 6247                                       Limit public gatherings
## 6248                                       Limit public gatherings
## 6249                                       Limit public gatherings
## 6250                                       Limit public gatherings
## 6251                                       Limit public gatherings
## 6252                                       Limit public gatherings
## 6253                 Requirement to wear protective gear in public
## 6254                 Requirement to wear protective gear in public
## 6255                 Requirement to wear protective gear in public
## 6256                 Requirement to wear protective gear in public
## 6257                 Requirement to wear protective gear in public
## 6258                 Requirement to wear protective gear in public
## 6259                 Requirement to wear protective gear in public
## 6260                 Requirement to wear protective gear in public
## 6261                 Requirement to wear protective gear in public
## 6262                 Requirement to wear protective gear in public
## 6263                 Requirement to wear protective gear in public
## 6264                 Requirement to wear protective gear in public
## 6265                                              Partial lockdown
## 6266                                              Partial lockdown
## 6267                                              Partial lockdown
## 6268                                              Partial lockdown
## 6269                                              Partial lockdown
## 6270                                              Partial lockdown
## 6271                                  Domestic travel restrictions
## 6272                                  Domestic travel restrictions
## 6273                                  Domestic travel restrictions
## 6274                                  Domestic travel restrictions
## 6275                                  Domestic travel restrictions
## 6276                                  Domestic travel restrictions
## 6277                     Closure of businesses and public services
## 6278                     Closure of businesses and public services
## 6279                     Closure of businesses and public services
## 6280                     Closure of businesses and public services
## 6281                     Closure of businesses and public services
## 6282                     Closure of businesses and public services
## 6283                              International flights suspension
## 6284                              International flights suspension
## 6285                              International flights suspension
## 6286                              International flights suspension
## 6287                              International flights suspension
## 6288                              International flights suspension
## 6289                                              Partial lockdown
## 6290                                              Partial lockdown
## 6291                                              Partial lockdown
## 6292                                              Partial lockdown
## 6293                                              Partial lockdown
## 6294                                              Partial lockdown
## 6295                                  Domestic travel restrictions
## 6296                                  Domestic travel restrictions
## 6297                                  Domestic travel restrictions
## 6298                                  Domestic travel restrictions
## 6299                                  Domestic travel restrictions
## 6300                                  Domestic travel restrictions
## 6301                                              Partial lockdown
## 6302                                              Partial lockdown
## 6303                                              Partial lockdown
## 6304                                              Partial lockdown
## 6305                                              Partial lockdown
## 6306                                              Partial lockdown
## 6307                             Isolation and quarantine policies
## 6308                             Isolation and quarantine policies
## 6309                             Isolation and quarantine policies
## 6310                             Isolation and quarantine policies
## 6311                             Isolation and quarantine policies
## 6312                             Isolation and quarantine policies
## 6313                                              Partial lockdown
## 6314                                              Partial lockdown
## 6315                                              Partial lockdown
## 6316                                              Partial lockdown
## 6317                                              Partial lockdown
## 6318                                              Partial lockdown
## 6319                                  Domestic travel restrictions
## 6320                                  Domestic travel restrictions
## 6321                                  Domestic travel restrictions
## 6322                                  Domestic travel restrictions
## 6323                                  Domestic travel restrictions
## 6324                                  Domestic travel restrictions
## 6325                                             Visa restrictions
## 6326                                             Visa restrictions
## 6327                                             Visa restrictions
## 6328                                             Visa restrictions
## 6329                                             Visa restrictions
## 6330                                             Visa restrictions
## 6331                                             Economic measures
## 6332                                             Economic measures
## 6333                                             Economic measures
## 6334                                             Economic measures
## 6335                                             Economic measures
## 6336                                             Economic measures
## 6337                                             Economic measures
## 6338                                             Economic measures
## 6339                                             Economic measures
## 6340                                             Economic measures
## 6341                                             Economic measures
## 6342                                             Economic measures
## 6343                                              Partial lockdown
## 6344                                              Partial lockdown
## 6345                                              Partial lockdown
## 6346                                              Partial lockdown
## 6347                                              Partial lockdown
## 6348                                              Partial lockdown
## 6349                        Strengthening the public health system
## 6350                        Strengthening the public health system
## 6351                        Strengthening the public health system
## 6352                        Strengthening the public health system
## 6353                        Strengthening the public health system
## 6354                        Strengthening the public health system
## 6355                                             Visa restrictions
## 6356                                             Visa restrictions
## 6357                                             Visa restrictions
## 6358                                             Visa restrictions
## 6359                                             Visa restrictions
## 6360                                             Visa restrictions
## 6361                             Isolation and quarantine policies
## 6362                             Isolation and quarantine policies
## 6363                             Isolation and quarantine policies
## 6364                             Isolation and quarantine policies
## 6365                             Isolation and quarantine policies
## 6366                             Isolation and quarantine policies
## 6367            Health screenings in airports and border crossings
## 6368            Health screenings in airports and border crossings
## 6369            Health screenings in airports and border crossings
## 6370            Health screenings in airports and border crossings
## 6371            Health screenings in airports and border crossings
## 6372            Health screenings in airports and border crossings
## 6373                                              Schools closure 
## 6374                                              Schools closure 
## 6375                                              Schools closure 
## 6376                                              Schools closure 
## 6377                                              Schools closure 
## 6378                                              Schools closure 
## 6379                            Changes in prison-related policies
## 6380                            Changes in prison-related policies
## 6381                            Changes in prison-related policies
## 6382                            Changes in prison-related policies
## 6383                            Changes in prison-related policies
## 6384                            Changes in prison-related policies
## 6385                             Isolation and quarantine policies
## 6386                             Isolation and quarantine policies
## 6387                             Isolation and quarantine policies
## 6388                             Isolation and quarantine policies
## 6389                             Isolation and quarantine policies
## 6390                             Isolation and quarantine policies
## 6391                                             Visa restrictions
## 6392                                             Visa restrictions
## 6393                                             Visa restrictions
## 6394                                             Visa restrictions
## 6395                                             Visa restrictions
## 6396                                             Visa restrictions
## 6397                     Closure of businesses and public services
## 6398                     Closure of businesses and public services
## 6399                     Closure of businesses and public services
## 6400                     Closure of businesses and public services
## 6401                     Closure of businesses and public services
## 6402                     Closure of businesses and public services
## 6403                             Isolation and quarantine policies
## 6404                             Isolation and quarantine policies
## 6405                             Isolation and quarantine policies
## 6406                             Isolation and quarantine policies
## 6407                             Isolation and quarantine policies
## 6408                             Isolation and quarantine policies
## 6409                     Closure of businesses and public services
## 6410                     Closure of businesses and public services
## 6411                     Closure of businesses and public services
## 6412                     Closure of businesses and public services
## 6413                     Closure of businesses and public services
## 6414                     Closure of businesses and public services
## 6415                              International flights suspension
## 6416                              International flights suspension
## 6417                              International flights suspension
## 6418                              International flights suspension
## 6419                              International flights suspension
## 6420                              International flights suspension
## 6421                                               Border closure 
## 6422                                               Border closure 
## 6423                                               Border closure 
## 6424                                               Border closure 
## 6425                                               Border closure 
## 6426                                               Border closure 
## 6427                                                       Curfews
## 6428                                                       Curfews
## 6429                                                       Curfews
## 6430                                                       Curfews
## 6431                                                       Curfews
## 6432                                                       Curfews
## 6433                 Requirement to wear protective gear in public
## 6434                 Requirement to wear protective gear in public
## 6435                 Requirement to wear protective gear in public
## 6436                 Requirement to wear protective gear in public
## 6437                 Requirement to wear protective gear in public
## 6438                 Requirement to wear protective gear in public
## 6439                                             Economic measures
## 6440                                             Economic measures
## 6441                                             Economic measures
## 6442                                             Economic measures
## 6443                                             Economic measures
## 6444                                             Economic measures
## 6445                        Strengthening the public health system
## 6446                        Strengthening the public health system
## 6447                        Strengthening the public health system
## 6448                        Strengthening the public health system
## 6449                        Strengthening the public health system
## 6450                        Strengthening the public health system
## 6451                            Changes in prison-related policies
## 6452                            Changes in prison-related policies
## 6453                            Changes in prison-related policies
## 6454                            Changes in prison-related policies
## 6455                            Changes in prison-related policies
## 6456                            Changes in prison-related policies
## 6457                     Closure of businesses and public services
## 6458                     Closure of businesses and public services
## 6459                     Closure of businesses and public services
## 6460                     Closure of businesses and public services
## 6461                     Closure of businesses and public services
## 6462                     Closure of businesses and public services
## 6463                                                Testing policy
## 6464                                                Testing policy
## 6465                                                Testing policy
## 6466                                                Testing policy
## 6467                                                Testing policy
## 6468                                                Testing policy
## 6469                                   Surveillance and monitoring
## 6470                                   Surveillance and monitoring
## 6471                                   Surveillance and monitoring
## 6472                                   Surveillance and monitoring
## 6473                                   Surveillance and monitoring
## 6474                                   Surveillance and monitoring
## 6475                                             Economic measures
## 6476                                             Economic measures
## 6477                                             Economic measures
## 6478                                             Economic measures
## 6479                                             Economic measures
## 6480                                             Economic measures
## 6481                              International flights suspension
## 6482                              International flights suspension
## 6483                              International flights suspension
## 6484                              International flights suspension
## 6485                              International flights suspension
## 6486                              International flights suspension
## 6487                                           Awareness campaigns
## 6488                                           Awareness campaigns
## 6489                                           Awareness campaigns
## 6490                                           Awareness campaigns
## 6491                                           Awareness campaigns
## 6492                                           Awareness campaigns
## 6493                     Closure of businesses and public services
## 6494                     Closure of businesses and public services
## 6495                     Closure of businesses and public services
## 6496                     Closure of businesses and public services
## 6497                     Closure of businesses and public services
## 6498                     Closure of businesses and public services
## 6499                        Strengthening the public health system
## 6500                        Strengthening the public health system
## 6501                        Strengthening the public health system
## 6502                        Strengthening the public health system
## 6503                        Strengthening the public health system
## 6504                        Strengthening the public health system
## 6505                             Isolation and quarantine policies
## 6506                             Isolation and quarantine policies
## 6507                             Isolation and quarantine policies
## 6508                             Isolation and quarantine policies
## 6509                             Isolation and quarantine policies
## 6510                             Isolation and quarantine policies
## 6511                     Closure of businesses and public services
## 6512                     Closure of businesses and public services
## 6513                     Closure of businesses and public services
## 6514                     Closure of businesses and public services
## 6515                     Closure of businesses and public services
## 6516                     Closure of businesses and public services
## 6517                             Isolation and quarantine policies
## 6518                             Isolation and quarantine policies
## 6519                             Isolation and quarantine policies
## 6520                             Isolation and quarantine policies
## 6521                             Isolation and quarantine policies
## 6522                             Isolation and quarantine policies
## 6523                              International flights suspension
## 6524                              International flights suspension
## 6525                              International flights suspension
## 6526                              International flights suspension
## 6527                              International flights suspension
## 6528                              International flights suspension
## 6529                                             Visa restrictions
## 6530                                             Visa restrictions
## 6531                                             Visa restrictions
## 6532                                             Visa restrictions
## 6533                                             Visa restrictions
## 6534                                             Visa restrictions
## 6535                                                       Curfews
## 6536                                                       Curfews
## 6537                                                       Curfews
## 6538                                                       Curfews
## 6539                                                       Curfews
## 6540                                                       Curfews
## 6541                                             Visa restrictions
## 6542                                             Visa restrictions
## 6543                                             Visa restrictions
## 6544                                             Visa restrictions
## 6545                                             Visa restrictions
## 6546                                             Visa restrictions
## 6547         Additional health/documents requirements upon arrival
## 6548         Additional health/documents requirements upon arrival
## 6549         Additional health/documents requirements upon arrival
## 6550         Additional health/documents requirements upon arrival
## 6551         Additional health/documents requirements upon arrival
## 6552         Additional health/documents requirements upon arrival
## 6553            Health screenings in airports and border crossings
## 6554            Health screenings in airports and border crossings
## 6555            Health screenings in airports and border crossings
## 6556            Health screenings in airports and border crossings
## 6557            Health screenings in airports and border crossings
## 6558            Health screenings in airports and border crossings
## 6559                             Isolation and quarantine policies
## 6560                             Isolation and quarantine policies
## 6561                             Isolation and quarantine policies
## 6562                             Isolation and quarantine policies
## 6563                             Isolation and quarantine policies
## 6564                             Isolation and quarantine policies
## 6565         Additional health/documents requirements upon arrival
## 6566         Additional health/documents requirements upon arrival
## 6567         Additional health/documents requirements upon arrival
## 6568         Additional health/documents requirements upon arrival
## 6569         Additional health/documents requirements upon arrival
## 6570         Additional health/documents requirements upon arrival
## 6571                              International flights suspension
## 6572                              International flights suspension
## 6573                              International flights suspension
## 6574                              International flights suspension
## 6575                              International flights suspension
## 6576                              International flights suspension
## 6577                                              Partial lockdown
## 6578                                              Partial lockdown
## 6579                                              Partial lockdown
## 6580                                              Partial lockdown
## 6581                                              Partial lockdown
## 6582                                              Partial lockdown
## 6583                                           Military deployment
## 6584                                           Military deployment
## 6585                                           Military deployment
## 6586                                           Military deployment
## 6587                                           Military deployment
## 6588                                           Military deployment
## 6589                              International flights suspension
## 6590                              International flights suspension
## 6591                              International flights suspension
## 6592                              International flights suspension
## 6593                              International flights suspension
## 6594                              International flights suspension
## 6595  Emergency administrative structures activated or established
## 6596  Emergency administrative structures activated or established
## 6597  Emergency administrative structures activated or established
## 6598  Emergency administrative structures activated or established
## 6599  Emergency administrative structures activated or established
## 6600  Emergency administrative structures activated or established
## 6601                                              Partial lockdown
## 6602                                              Partial lockdown
## 6603                                              Partial lockdown
## 6604                                              Partial lockdown
## 6605                                              Partial lockdown
## 6606                                              Partial lockdown
## 6607  Emergency administrative structures activated or established
## 6608  Emergency administrative structures activated or established
## 6609  Emergency administrative structures activated or established
## 6610  Emergency administrative structures activated or established
## 6611  Emergency administrative structures activated or established
## 6612  Emergency administrative structures activated or established
## 6613                                              Partial lockdown
## 6614                                              Partial lockdown
## 6615                                              Partial lockdown
## 6616                                              Partial lockdown
## 6617                                              Partial lockdown
## 6618                                              Partial lockdown
## 6619                                                       Curfews
## 6620                                                       Curfews
## 6621                                                       Curfews
## 6622                                                       Curfews
## 6623                                                       Curfews
## 6624                                                       Curfews
## 6625                                              Partial lockdown
## 6626                                              Partial lockdown
## 6627                                              Partial lockdown
## 6628                                              Partial lockdown
## 6629                                              Partial lockdown
## 6630                                              Partial lockdown
## 6631                              International flights suspension
## 6632                              International flights suspension
## 6633                              International flights suspension
## 6634                              International flights suspension
## 6635                              International flights suspension
## 6636                              International flights suspension
## 6637                                  Domestic travel restrictions
## 6638                                  Domestic travel restrictions
## 6639                                  Domestic travel restrictions
## 6640                                  Domestic travel restrictions
## 6641                                  Domestic travel restrictions
## 6642                                  Domestic travel restrictions
## 6643         Additional health/documents requirements upon arrival
## 6644         Additional health/documents requirements upon arrival
## 6645         Additional health/documents requirements upon arrival
## 6646         Additional health/documents requirements upon arrival
## 6647         Additional health/documents requirements upon arrival
## 6648         Additional health/documents requirements upon arrival
## 6649                             Isolation and quarantine policies
## 6650                             Isolation and quarantine policies
## 6651                             Isolation and quarantine policies
## 6652                             Isolation and quarantine policies
## 6653                             Isolation and quarantine policies
## 6654                             Isolation and quarantine policies
## 6655  Emergency administrative structures activated or established
## 6656  Emergency administrative structures activated or established
## 6657  Emergency administrative structures activated or established
## 6658  Emergency administrative structures activated or established
## 6659  Emergency administrative structures activated or established
## 6660  Emergency administrative structures activated or established
## 6661  Emergency administrative structures activated or established
## 6662  Emergency administrative structures activated or established
## 6663  Emergency administrative structures activated or established
## 6664  Emergency administrative structures activated or established
## 6665  Emergency administrative structures activated or established
## 6666  Emergency administrative structures activated or established
## 6667                                             Economic measures
## 6668                                             Economic measures
## 6669                                             Economic measures
## 6670                                             Economic measures
## 6671                                             Economic measures
## 6672                                             Economic measures
## 6673                                  Domestic travel restrictions
## 6674                                  Domestic travel restrictions
## 6675                                  Domestic travel restrictions
## 6676                                  Domestic travel restrictions
## 6677                                  Domestic travel restrictions
## 6678                                  Domestic travel restrictions
## 6679                                Checkpoints within the country
## 6680                                Checkpoints within the country
## 6681                                Checkpoints within the country
## 6682                                Checkpoints within the country
## 6683                                Checkpoints within the country
## 6684                                Checkpoints within the country
## 6685                                                       Curfews
## 6686                                                       Curfews
## 6687                                                       Curfews
## 6688                                                       Curfews
## 6689                                                       Curfews
## 6690                                                       Curfews
## 6691                 Requirement to wear protective gear in public
## 6692                 Requirement to wear protective gear in public
## 6693                 Requirement to wear protective gear in public
## 6694                 Requirement to wear protective gear in public
## 6695                 Requirement to wear protective gear in public
## 6696                 Requirement to wear protective gear in public
## 6697                                              Schools closure 
## 6698                                              Schools closure 
## 6699                                              Schools closure 
## 6700                                              Schools closure 
## 6701                                              Schools closure 
## 6702                                              Schools closure 
## 6703                                  Domestic travel restrictions
## 6704                                  Domestic travel restrictions
## 6705                                  Domestic travel restrictions
## 6706                                  Domestic travel restrictions
## 6707                                  Domestic travel restrictions
## 6708                                  Domestic travel restrictions
## 6709                                       Limit public gatherings
## 6710                                       Limit public gatherings
## 6711                                       Limit public gatherings
## 6712                                       Limit public gatherings
## 6713                                       Limit public gatherings
## 6714                                       Limit public gatherings
## 6715                     Closure of businesses and public services
## 6716                     Closure of businesses and public services
## 6717                     Closure of businesses and public services
## 6718                     Closure of businesses and public services
## 6719                     Closure of businesses and public services
## 6720                     Closure of businesses and public services
## 6721                                  Domestic travel restrictions
## 6722                                  Domestic travel restrictions
## 6723                                  Domestic travel restrictions
## 6724                                  Domestic travel restrictions
## 6725                                  Domestic travel restrictions
## 6726                                  Domestic travel restrictions
## 6727                              International flights suspension
## 6728                              International flights suspension
## 6729                              International flights suspension
## 6730                              International flights suspension
## 6731                              International flights suspension
## 6732                              International flights suspension
## 6733                                                       Curfews
## 6734                                                       Curfews
## 6735                                                       Curfews
## 6736                                                       Curfews
## 6737                                                       Curfews
## 6738                                                       Curfews
## 6739                             Isolation and quarantine policies
## 6740                             Isolation and quarantine policies
## 6741                             Isolation and quarantine policies
## 6742                             Isolation and quarantine policies
## 6743                             Isolation and quarantine policies
## 6744                             Isolation and quarantine policies
## 6745                             Isolation and quarantine policies
## 6746                             Isolation and quarantine policies
## 6747                             Isolation and quarantine policies
## 6748                             Isolation and quarantine policies
## 6749                             Isolation and quarantine policies
## 6750                             Isolation and quarantine policies
## 6751            Health screenings in airports and border crossings
## 6752            Health screenings in airports and border crossings
## 6753            Health screenings in airports and border crossings
## 6754            Health screenings in airports and border crossings
## 6755            Health screenings in airports and border crossings
## 6756            Health screenings in airports and border crossings
## 6757                             Isolation and quarantine policies
## 6758                             Isolation and quarantine policies
## 6759                             Isolation and quarantine policies
## 6760                             Isolation and quarantine policies
## 6761                             Isolation and quarantine policies
## 6762                             Isolation and quarantine policies
## 6763                                   Surveillance and monitoring
## 6764                                   Surveillance and monitoring
## 6765                                   Surveillance and monitoring
## 6766                                   Surveillance and monitoring
## 6767                                   Surveillance and monitoring
## 6768                                   Surveillance and monitoring
## 6769                                           Awareness campaigns
## 6770                                           Awareness campaigns
## 6771                                           Awareness campaigns
## 6772                                           Awareness campaigns
## 6773                                           Awareness campaigns
## 6774                                           Awareness campaigns
## 6775                                           Awareness campaigns
## 6776                                           Awareness campaigns
## 6777                                           Awareness campaigns
## 6778                                           Awareness campaigns
## 6779                                           Awareness campaigns
## 6780                                           Awareness campaigns
## 6781            Health screenings in airports and border crossings
## 6782            Health screenings in airports and border crossings
## 6783            Health screenings in airports and border crossings
## 6784            Health screenings in airports and border crossings
## 6785            Health screenings in airports and border crossings
## 6786            Health screenings in airports and border crossings
## 6787                                           Awareness campaigns
## 6788                                           Awareness campaigns
## 6789                                           Awareness campaigns
## 6790                                           Awareness campaigns
## 6791                                           Awareness campaigns
## 6792                                           Awareness campaigns
## 6793            Health screenings in airports and border crossings
## 6794            Health screenings in airports and border crossings
## 6795            Health screenings in airports and border crossings
## 6796            Health screenings in airports and border crossings
## 6797            Health screenings in airports and border crossings
## 6798            Health screenings in airports and border crossings
## 6799                                           Awareness campaigns
## 6800                                           Awareness campaigns
## 6801                                           Awareness campaigns
## 6802                                           Awareness campaigns
## 6803                                           Awareness campaigns
## 6804                                           Awareness campaigns
## 6805                        Strengthening the public health system
## 6806                        Strengthening the public health system
## 6807                        Strengthening the public health system
## 6808                        Strengthening the public health system
## 6809                        Strengthening the public health system
## 6810                        Strengthening the public health system
## 6811                                           Awareness campaigns
## 6812                                           Awareness campaigns
## 6813                                           Awareness campaigns
## 6814                                           Awareness campaigns
## 6815                                           Awareness campaigns
## 6816                                           Awareness campaigns
## 6817                                           Awareness campaigns
## 6818                                           Awareness campaigns
## 6819                                           Awareness campaigns
## 6820                                           Awareness campaigns
## 6821                                           Awareness campaigns
## 6822                                           Awareness campaigns
## 6823                        Strengthening the public health system
## 6824                        Strengthening the public health system
## 6825                        Strengthening the public health system
## 6826                        Strengthening the public health system
## 6827                        Strengthening the public health system
## 6828                        Strengthening the public health system
## 6829                                       General recommendations
## 6830                                       General recommendations
## 6831                                       General recommendations
## 6832                                       General recommendations
## 6833                                       General recommendations
## 6834                                       General recommendations
## 6835                                           Awareness campaigns
## 6836                                           Awareness campaigns
## 6837                                           Awareness campaigns
## 6838                                           Awareness campaigns
## 6839                                           Awareness campaigns
## 6840                                           Awareness campaigns
## 6841                             Isolation and quarantine policies
## 6842                             Isolation and quarantine policies
## 6843                             Isolation and quarantine policies
## 6844                             Isolation and quarantine policies
## 6845                             Isolation and quarantine policies
## 6846                             Isolation and quarantine policies
## 6847                             Isolation and quarantine policies
## 6848                             Isolation and quarantine policies
## 6849                             Isolation and quarantine policies
## 6850                             Isolation and quarantine policies
## 6851                             Isolation and quarantine policies
## 6852                             Isolation and quarantine policies
## 6853                                             Economic measures
## 6854                                             Economic measures
## 6855                                             Economic measures
## 6856                                             Economic measures
## 6857                                             Economic measures
## 6858                                             Economic measures
## 6859                                           Awareness campaigns
## 6860                                           Awareness campaigns
## 6861                                           Awareness campaigns
## 6862                                           Awareness campaigns
## 6863                                           Awareness campaigns
## 6864                                           Awareness campaigns
## 6865                     Closure of businesses and public services
## 6866                     Closure of businesses and public services
## 6867                     Closure of businesses and public services
## 6868                     Closure of businesses and public services
## 6869                     Closure of businesses and public services
## 6870                     Closure of businesses and public services
## 6871                                           Awareness campaigns
## 6872                                           Awareness campaigns
## 6873                                           Awareness campaigns
## 6874                                           Awareness campaigns
## 6875                                           Awareness campaigns
## 6876                                           Awareness campaigns
## 6877                        Strengthening the public health system
## 6878                        Strengthening the public health system
## 6879                        Strengthening the public health system
## 6880                        Strengthening the public health system
## 6881                        Strengthening the public health system
## 6882                        Strengthening the public health system
## 6883                     Closure of businesses and public services
## 6884                     Closure of businesses and public services
## 6885                     Closure of businesses and public services
## 6886                     Closure of businesses and public services
## 6887                     Closure of businesses and public services
## 6888                     Closure of businesses and public services
## 6889                        Strengthening the public health system
## 6890                        Strengthening the public health system
## 6891                        Strengthening the public health system
## 6892                        Strengthening the public health system
## 6893                        Strengthening the public health system
## 6894                        Strengthening the public health system
## 6895                                       Limit public gatherings
## 6896                                       Limit public gatherings
## 6897                                       Limit public gatherings
## 6898                                       Limit public gatherings
## 6899                                       Limit public gatherings
## 6900                                       Limit public gatherings
## 6901                                       General recommendations
## 6902                                       General recommendations
## 6903                                       General recommendations
## 6904                                       General recommendations
## 6905                                       General recommendations
## 6906                                       General recommendations
## 6907                                       Limit public gatherings
## 6908                                       Limit public gatherings
## 6909                                       Limit public gatherings
## 6910                                       Limit public gatherings
## 6911                                       Limit public gatherings
## 6912                                       Limit public gatherings
## 6913                                           Awareness campaigns
## 6914                                           Awareness campaigns
## 6915                                           Awareness campaigns
## 6916                                           Awareness campaigns
## 6917                                           Awareness campaigns
## 6918                                           Awareness campaigns
## 6919                     Closure of businesses and public services
## 6920                     Closure of businesses and public services
## 6921                     Closure of businesses and public services
## 6922                     Closure of businesses and public services
## 6923                     Closure of businesses and public services
## 6924                     Closure of businesses and public services
## 6925                                             Economic measures
## 6926                                             Economic measures
## 6927                                             Economic measures
## 6928                                             Economic measures
## 6929                                             Economic measures
## 6930                                             Economic measures
## 6931                        Strengthening the public health system
## 6932                        Strengthening the public health system
## 6933                        Strengthening the public health system
## 6934                        Strengthening the public health system
## 6935                        Strengthening the public health system
## 6936                        Strengthening the public health system
## 6937                                           Awareness campaigns
## 6938                                           Awareness campaigns
## 6939                                           Awareness campaigns
## 6940                                           Awareness campaigns
## 6941                                           Awareness campaigns
## 6942                                           Awareness campaigns
## 6943                                       General recommendations
## 6944                                       General recommendations
## 6945                                       General recommendations
## 6946                                       General recommendations
## 6947                                       General recommendations
## 6948                                       General recommendations
## 6949                        Strengthening the public health system
## 6950                        Strengthening the public health system
## 6951                        Strengthening the public health system
## 6952                        Strengthening the public health system
## 6953                        Strengthening the public health system
## 6954                        Strengthening the public health system
## 6955                                              Schools closure 
## 6956                                              Schools closure 
## 6957                                              Schools closure 
## 6958                                              Schools closure 
## 6959                                              Schools closure 
## 6960                                              Schools closure 
## 6961                     Closure of businesses and public services
## 6962                     Closure of businesses and public services
## 6963                     Closure of businesses and public services
## 6964                     Closure of businesses and public services
## 6965                     Closure of businesses and public services
## 6966                     Closure of businesses and public services
## 6967                            Changes in prison-related policies
## 6968                            Changes in prison-related policies
## 6969                            Changes in prison-related policies
## 6970                            Changes in prison-related policies
## 6971                            Changes in prison-related policies
## 6972                            Changes in prison-related policies
## 6973                     Closure of businesses and public services
## 6974                     Closure of businesses and public services
## 6975                     Closure of businesses and public services
## 6976                     Closure of businesses and public services
## 6977                     Closure of businesses and public services
## 6978                     Closure of businesses and public services
## 6979                                       General recommendations
## 6980                                       General recommendations
## 6981                                       General recommendations
## 6982                                       General recommendations
## 6983                                       General recommendations
## 6984                                       General recommendations
## 6985                                           Awareness campaigns
## 6986                                           Awareness campaigns
## 6987                                           Awareness campaigns
## 6988                                           Awareness campaigns
## 6989                                           Awareness campaigns
## 6990                                           Awareness campaigns
## 6991                     Closure of businesses and public services
## 6992                     Closure of businesses and public services
## 6993                     Closure of businesses and public services
## 6994                     Closure of businesses and public services
## 6995                     Closure of businesses and public services
## 6996                     Closure of businesses and public services
## 6997                             Isolation and quarantine policies
## 6998                             Isolation and quarantine policies
## 6999                             Isolation and quarantine policies
## 7000                             Isolation and quarantine policies
## 7001                             Isolation and quarantine policies
## 7002                             Isolation and quarantine policies
## 7003                                       General recommendations
## 7004                                       General recommendations
## 7005                                       General recommendations
## 7006                                       General recommendations
## 7007                                       General recommendations
## 7008                                       General recommendations
## 7009                                       General recommendations
## 7010                                       General recommendations
## 7011                                       General recommendations
## 7012                                       General recommendations
## 7013                                       General recommendations
## 7014                                       General recommendations
## 7015                                               Border closure 
## 7016                                               Border closure 
## 7017                                               Border closure 
## 7018                                               Border closure 
## 7019                                               Border closure 
## 7020                                               Border closure 
## 7021                                           Awareness campaigns
## 7022                                           Awareness campaigns
## 7023                                           Awareness campaigns
## 7024                                           Awareness campaigns
## 7025                                           Awareness campaigns
## 7026                                           Awareness campaigns
## 7027                                           Awareness campaigns
## 7028                                           Awareness campaigns
## 7029                                           Awareness campaigns
## 7030                                           Awareness campaigns
## 7031                                           Awareness campaigns
## 7032                                           Awareness campaigns
## 7033                        Strengthening the public health system
## 7034                        Strengthening the public health system
## 7035                        Strengthening the public health system
## 7036                        Strengthening the public health system
## 7037                        Strengthening the public health system
## 7038                        Strengthening the public health system
## 7039                                                Testing policy
## 7040                                                Testing policy
## 7041                                                Testing policy
## 7042                                                Testing policy
## 7043                                                Testing policy
## 7044                                                Testing policy
## 7045                                             Economic measures
## 7046                                             Economic measures
## 7047                                             Economic measures
## 7048                                             Economic measures
## 7049                                             Economic measures
## 7050                                             Economic measures
## 7051                                           Awareness campaigns
## 7052                                           Awareness campaigns
## 7053                                           Awareness campaigns
## 7054                                           Awareness campaigns
## 7055                                           Awareness campaigns
## 7056                                           Awareness campaigns
## 7057  Emergency administrative structures activated or established
## 7058  Emergency administrative structures activated or established
## 7059  Emergency administrative structures activated or established
## 7060  Emergency administrative structures activated or established
## 7061  Emergency administrative structures activated or established
## 7062  Emergency administrative structures activated or established
## 7063                                       Limit public gatherings
## 7064                                       Limit public gatherings
## 7065                                       Limit public gatherings
## 7066                                       Limit public gatherings
## 7067                                       Limit public gatherings
## 7068                                       Limit public gatherings
## 7069                        Strengthening the public health system
## 7070                        Strengthening the public health system
## 7071                        Strengthening the public health system
## 7072                        Strengthening the public health system
## 7073                        Strengthening the public health system
## 7074                        Strengthening the public health system
## 7075                                             Economic measures
## 7076                                             Economic measures
## 7077                                             Economic measures
## 7078                                             Economic measures
## 7079                                             Economic measures
## 7080                                             Economic measures
## 7081                                 Limit product imports/exports
## 7082                                 Limit product imports/exports
## 7083                                 Limit product imports/exports
## 7084                                 Limit product imports/exports
## 7085                                 Limit product imports/exports
## 7086                                 Limit product imports/exports
## 7087                         Other public health measures enforced
## 7088                         Other public health measures enforced
## 7089                         Other public health measures enforced
## 7090                         Other public health measures enforced
## 7091                         Other public health measures enforced
## 7092                         Other public health measures enforced
## 7093                                           Awareness campaigns
## 7094                                           Awareness campaigns
## 7095                                           Awareness campaigns
## 7096                                           Awareness campaigns
## 7097                                           Awareness campaigns
## 7098                                           Awareness campaigns
## 7099                                           Awareness campaigns
## 7100                                           Awareness campaigns
## 7101                                           Awareness campaigns
## 7102                                           Awareness campaigns
## 7103                                           Awareness campaigns
## 7104                                           Awareness campaigns
## 7105                     Closure of businesses and public services
## 7106                     Closure of businesses and public services
## 7107                     Closure of businesses and public services
## 7108                     Closure of businesses and public services
## 7109                     Closure of businesses and public services
## 7110                     Closure of businesses and public services
## 7111                        Strengthening the public health system
## 7112                        Strengthening the public health system
## 7113                        Strengthening the public health system
## 7114                        Strengthening the public health system
## 7115                        Strengthening the public health system
## 7116                        Strengthening the public health system
## 7117                                           Awareness campaigns
## 7118                                           Awareness campaigns
## 7119                                           Awareness campaigns
## 7120                                           Awareness campaigns
## 7121                                           Awareness campaigns
## 7122                                           Awareness campaigns
## 7123                         Other public health measures enforced
## 7124                         Other public health measures enforced
## 7125                         Other public health measures enforced
## 7126                         Other public health measures enforced
## 7127                         Other public health measures enforced
## 7128                         Other public health measures enforced
## 7129                         Other public health measures enforced
## 7130                         Other public health measures enforced
## 7131                         Other public health measures enforced
## 7132                         Other public health measures enforced
## 7133                         Other public health measures enforced
## 7134                         Other public health measures enforced
## 7135                                              Partial lockdown
## 7136                                              Partial lockdown
## 7137                                              Partial lockdown
## 7138                                              Partial lockdown
## 7139                                              Partial lockdown
## 7140                                              Partial lockdown
## 7141                                           Awareness campaigns
## 7142                                           Awareness campaigns
## 7143                                           Awareness campaigns
## 7144                                           Awareness campaigns
## 7145                                           Awareness campaigns
## 7146                                           Awareness campaigns
## 7147                        Strengthening the public health system
## 7148                        Strengthening the public health system
## 7149                        Strengthening the public health system
## 7150                        Strengthening the public health system
## 7151                        Strengthening the public health system
## 7152                        Strengthening the public health system
## 7153                                           Awareness campaigns
## 7154                                           Awareness campaigns
## 7155                                           Awareness campaigns
## 7156                                           Awareness campaigns
## 7157                                           Awareness campaigns
## 7158                                           Awareness campaigns
## 7159                         Other public health measures enforced
## 7160                         Other public health measures enforced
## 7161                         Other public health measures enforced
## 7162                         Other public health measures enforced
## 7163                         Other public health measures enforced
## 7164                         Other public health measures enforced
## 7165                        Strengthening the public health system
## 7166                        Strengthening the public health system
## 7167                        Strengthening the public health system
## 7168                        Strengthening the public health system
## 7169                        Strengthening the public health system
## 7170                        Strengthening the public health system
## 7171                                   State of emergency declared
## 7172                                   State of emergency declared
## 7173                                   State of emergency declared
## 7174                                   State of emergency declared
## 7175                                   State of emergency declared
## 7176                                   State of emergency declared
## 7177                                             Economic measures
## 7178                                             Economic measures
## 7179                                             Economic measures
## 7180                                             Economic measures
## 7181                                             Economic measures
## 7182                                             Economic measures
## 7183                                           Awareness campaigns
## 7184                                           Awareness campaigns
## 7185                                           Awareness campaigns
## 7186                                           Awareness campaigns
## 7187                                           Awareness campaigns
## 7188                                           Awareness campaigns
## 7189                     Closure of businesses and public services
## 7190                     Closure of businesses and public services
## 7191                     Closure of businesses and public services
## 7192                     Closure of businesses and public services
## 7193                     Closure of businesses and public services
## 7194                     Closure of businesses and public services
## 7195                            Changes in prison-related policies
## 7196                            Changes in prison-related policies
## 7197                            Changes in prison-related policies
## 7198                            Changes in prison-related policies
## 7199                            Changes in prison-related policies
## 7200                            Changes in prison-related policies
## 7201                                             Economic measures
## 7202                                             Economic measures
## 7203                                             Economic measures
## 7204                                             Economic measures
## 7205                                             Economic measures
## 7206                                             Economic measures
## 7207                        Strengthening the public health system
## 7208                        Strengthening the public health system
## 7209                        Strengthening the public health system
## 7210                        Strengthening the public health system
## 7211                        Strengthening the public health system
## 7212                        Strengthening the public health system
## 7213                                              Partial lockdown
## 7214                                              Partial lockdown
## 7215                                              Partial lockdown
## 7216                                              Partial lockdown
## 7217                                              Partial lockdown
## 7218                                              Partial lockdown
## 7219                     Closure of businesses and public services
## 7220                     Closure of businesses and public services
## 7221                     Closure of businesses and public services
## 7222                     Closure of businesses and public services
## 7223                     Closure of businesses and public services
## 7224                     Closure of businesses and public services
## 7225                                             Economic measures
## 7226                                             Economic measures
## 7227                                             Economic measures
## 7228                                             Economic measures
## 7229                                             Economic measures
## 7230                                             Economic measures
## 7231                        Strengthening the public health system
## 7232                        Strengthening the public health system
## 7233                        Strengthening the public health system
## 7234                        Strengthening the public health system
## 7235                        Strengthening the public health system
## 7236                        Strengthening the public health system
## 7237                                                       Curfews
## 7238                                                       Curfews
## 7239                                                       Curfews
## 7240                                                       Curfews
## 7241                                                       Curfews
## 7242                                                       Curfews
## 7243                         Other public health measures enforced
## 7244                         Other public health measures enforced
## 7245                         Other public health measures enforced
## 7246                         Other public health measures enforced
## 7247                         Other public health measures enforced
## 7248                         Other public health measures enforced
## 7249                            Changes in prison-related policies
## 7250                            Changes in prison-related policies
## 7251                            Changes in prison-related policies
## 7252                            Changes in prison-related policies
## 7253                            Changes in prison-related policies
## 7254                            Changes in prison-related policies
## 7255                         Other public health measures enforced
## 7256                         Other public health measures enforced
## 7257                         Other public health measures enforced
## 7258                         Other public health measures enforced
## 7259                         Other public health measures enforced
## 7260                         Other public health measures enforced
## 7261                                                 Full lockdown
## 7262                                                 Full lockdown
## 7263                                                 Full lockdown
## 7264                                                 Full lockdown
## 7265                                                 Full lockdown
## 7266                                                 Full lockdown
## 7267                                           Awareness campaigns
## 7268                                           Awareness campaigns
## 7269                                           Awareness campaigns
## 7270                                           Awareness campaigns
## 7271                                           Awareness campaigns
## 7272                                           Awareness campaigns
## 7273                         Other public health measures enforced
## 7274                         Other public health measures enforced
## 7275                         Other public health measures enforced
## 7276                         Other public health measures enforced
## 7277                         Other public health measures enforced
## 7278                         Other public health measures enforced
## 7279                        Strengthening the public health system
## 7280                        Strengthening the public health system
## 7281                        Strengthening the public health system
## 7282                        Strengthening the public health system
## 7283                        Strengthening the public health system
## 7284                        Strengthening the public health system
## 7285                        Strengthening the public health system
## 7286                        Strengthening the public health system
## 7287                        Strengthening the public health system
## 7288                        Strengthening the public health system
## 7289                        Strengthening the public health system
## 7290                        Strengthening the public health system
## 7291                        Strengthening the public health system
## 7292                        Strengthening the public health system
## 7293                        Strengthening the public health system
## 7294                        Strengthening the public health system
## 7295                        Strengthening the public health system
## 7296                        Strengthening the public health system
## 7297                                   Surveillance and monitoring
## 7298                                   Surveillance and monitoring
## 7299                                   Surveillance and monitoring
## 7300                                   Surveillance and monitoring
## 7301                                   Surveillance and monitoring
## 7302                                   Surveillance and monitoring
## 7303                        Strengthening the public health system
## 7304                        Strengthening the public health system
## 7305                        Strengthening the public health system
## 7306                        Strengthening the public health system
## 7307                        Strengthening the public health system
## 7308                        Strengthening the public health system
## 7309                                   Surveillance and monitoring
## 7310                                   Surveillance and monitoring
## 7311                                   Surveillance and monitoring
## 7312                                   Surveillance and monitoring
## 7313                                   Surveillance and monitoring
## 7314                                   Surveillance and monitoring
## 7315                                             Economic measures
## 7316                                             Economic measures
## 7317                                             Economic measures
## 7318                                             Economic measures
## 7319                                             Economic measures
## 7320                                             Economic measures
## 7321                                           Awareness campaigns
## 7322                                           Awareness campaigns
## 7323                                           Awareness campaigns
## 7324                                           Awareness campaigns
## 7325                                           Awareness campaigns
## 7326                                           Awareness campaigns
## 7327                         Other public health measures enforced
## 7328                         Other public health measures enforced
## 7329                         Other public health measures enforced
## 7330                         Other public health measures enforced
## 7331                         Other public health measures enforced
## 7332                         Other public health measures enforced
## 7333                                   Surveillance and monitoring
## 7334                                   Surveillance and monitoring
## 7335                                   Surveillance and monitoring
## 7336                                   Surveillance and monitoring
## 7337                                   Surveillance and monitoring
## 7338                                   Surveillance and monitoring
## 7339                                           Awareness campaigns
## 7340                                           Awareness campaigns
## 7341                                           Awareness campaigns
## 7342                                           Awareness campaigns
## 7343                                           Awareness campaigns
## 7344                                           Awareness campaigns
## 7345                         Other public health measures enforced
## 7346                         Other public health measures enforced
## 7347                         Other public health measures enforced
## 7348                         Other public health measures enforced
## 7349                         Other public health measures enforced
## 7350                         Other public health measures enforced
## 7351  Emergency administrative structures activated or established
## 7352  Emergency administrative structures activated or established
## 7353  Emergency administrative structures activated or established
## 7354  Emergency administrative structures activated or established
## 7355  Emergency administrative structures activated or established
## 7356  Emergency administrative structures activated or established
## 7357                         Other public health measures enforced
## 7358                         Other public health measures enforced
## 7359                         Other public health measures enforced
## 7360                         Other public health measures enforced
## 7361                         Other public health measures enforced
## 7362                         Other public health measures enforced
## 7363                                             Economic measures
## 7364                                             Economic measures
## 7365                                             Economic measures
## 7366                                             Economic measures
## 7367                                             Economic measures
## 7368                                             Economic measures
## 7369  Emergency administrative structures activated or established
## 7370  Emergency administrative structures activated or established
## 7371  Emergency administrative structures activated or established
## 7372  Emergency administrative structures activated or established
## 7373  Emergency administrative structures activated or established
## 7374  Emergency administrative structures activated or established
## 7375                     Closure of businesses and public services
## 7376                     Closure of businesses and public services
## 7377                     Closure of businesses and public services
## 7378                     Closure of businesses and public services
## 7379                     Closure of businesses and public services
## 7380                     Closure of businesses and public services
## 7381                                 Limit product imports/exports
## 7382                                 Limit product imports/exports
## 7383                                 Limit product imports/exports
## 7384                                 Limit product imports/exports
## 7385                                 Limit product imports/exports
## 7386                                 Limit product imports/exports
## 7387                         Other public health measures enforced
## 7388                         Other public health measures enforced
## 7389                         Other public health measures enforced
## 7390                         Other public health measures enforced
## 7391                         Other public health measures enforced
## 7392                         Other public health measures enforced
## 7393                                                       Curfews
## 7394                                                       Curfews
## 7395                                                       Curfews
## 7396                                                       Curfews
## 7397                                                       Curfews
## 7398                                                       Curfews
## 7399                         Other public health measures enforced
## 7400                         Other public health measures enforced
## 7401                         Other public health measures enforced
## 7402                         Other public health measures enforced
## 7403                         Other public health measures enforced
## 7404                         Other public health measures enforced
## 7405                                       Limit public gatherings
## 7406                                       Limit public gatherings
## 7407                                       Limit public gatherings
## 7408                                       Limit public gatherings
## 7409                                       Limit public gatherings
## 7410                                       Limit public gatherings
## 7411                         Other public health measures enforced
## 7412                         Other public health measures enforced
## 7413                         Other public health measures enforced
## 7414                         Other public health measures enforced
## 7415                         Other public health measures enforced
## 7416                         Other public health measures enforced
## 7417                     Closure of businesses and public services
## 7418                     Closure of businesses and public services
## 7419                     Closure of businesses and public services
## 7420                     Closure of businesses and public services
## 7421                     Closure of businesses and public services
## 7422                     Closure of businesses and public services
## 7423                            Changes in prison-related policies
## 7424                            Changes in prison-related policies
## 7425                            Changes in prison-related policies
## 7426                            Changes in prison-related policies
## 7427                            Changes in prison-related policies
## 7428                            Changes in prison-related policies
## 7429                                       Limit public gatherings
## 7430                                       Limit public gatherings
## 7431                                       Limit public gatherings
## 7432                                       Limit public gatherings
## 7433                                       Limit public gatherings
## 7434                                       Limit public gatherings
## 7435                        Strengthening the public health system
## 7436                        Strengthening the public health system
## 7437                        Strengthening the public health system
## 7438                        Strengthening the public health system
## 7439                        Strengthening the public health system
## 7440                        Strengthening the public health system
## 7441                        Strengthening the public health system
## 7442                        Strengthening the public health system
## 7443                        Strengthening the public health system
## 7444                        Strengthening the public health system
## 7445                        Strengthening the public health system
## 7446                        Strengthening the public health system
## 7447                        Strengthening the public health system
## 7448                        Strengthening the public health system
## 7449                        Strengthening the public health system
## 7450                        Strengthening the public health system
## 7451                        Strengthening the public health system
## 7452                        Strengthening the public health system
## 7453                                                Testing policy
## 7454                                                Testing policy
## 7455                                                Testing policy
## 7456                                                Testing policy
## 7457                                                Testing policy
## 7458                                                Testing policy
## 7459                                       Limit public gatherings
## 7460                                       Limit public gatherings
## 7461                                       Limit public gatherings
## 7462                                       Limit public gatherings
## 7463                                       Limit public gatherings
## 7464                                       Limit public gatherings
## 7465                         Other public health measures enforced
## 7466                         Other public health measures enforced
## 7467                         Other public health measures enforced
## 7468                         Other public health measures enforced
## 7469                         Other public health measures enforced
## 7470                         Other public health measures enforced
## 7471                        Strengthening the public health system
## 7472                        Strengthening the public health system
## 7473                        Strengthening the public health system
## 7474                        Strengthening the public health system
## 7475                        Strengthening the public health system
## 7476                        Strengthening the public health system
## 7477                         Other public health measures enforced
## 7478                         Other public health measures enforced
## 7479                         Other public health measures enforced
## 7480                         Other public health measures enforced
## 7481                         Other public health measures enforced
## 7482                         Other public health measures enforced
## 7483                         Other public health measures enforced
## 7484                         Other public health measures enforced
## 7485                         Other public health measures enforced
## 7486                         Other public health measures enforced
## 7487                         Other public health measures enforced
## 7488                         Other public health measures enforced
## 7489                        Strengthening the public health system
## 7490                        Strengthening the public health system
## 7491                        Strengthening the public health system
## 7492                        Strengthening the public health system
## 7493                        Strengthening the public health system
## 7494                        Strengthening the public health system
## 7495                                                Testing policy
## 7496                                                Testing policy
## 7497                                                Testing policy
## 7498                                                Testing policy
## 7499                                                Testing policy
## 7500                                                Testing policy
## 7501                        Strengthening the public health system
## 7502                        Strengthening the public health system
## 7503                        Strengthening the public health system
## 7504                        Strengthening the public health system
## 7505                        Strengthening the public health system
## 7506                        Strengthening the public health system
## 7507                                           Awareness campaigns
## 7508                                           Awareness campaigns
## 7509                                           Awareness campaigns
## 7510                                           Awareness campaigns
## 7511                                           Awareness campaigns
## 7512                                           Awareness campaigns
## 7513                                   State of emergency declared
## 7514                                   State of emergency declared
## 7515                                   State of emergency declared
## 7516                                   State of emergency declared
## 7517                                   State of emergency declared
## 7518                                   State of emergency declared
## 7519                     Closure of businesses and public services
## 7520                     Closure of businesses and public services
## 7521                     Closure of businesses and public services
## 7522                     Closure of businesses and public services
## 7523                     Closure of businesses and public services
## 7524                     Closure of businesses and public services
## 7525                                             Economic measures
## 7526                                             Economic measures
## 7527                                             Economic measures
## 7528                                             Economic measures
## 7529                                             Economic measures
## 7530                                             Economic measures
## 7531                                             Economic measures
## 7532                                             Economic measures
## 7533                                             Economic measures
## 7534                                             Economic measures
## 7535                                             Economic measures
## 7536                                             Economic measures
## 7537                                       Limit public gatherings
## 7538                                       Limit public gatherings
## 7539                                       Limit public gatherings
## 7540                                       Limit public gatherings
## 7541                                       Limit public gatherings
## 7542                                       Limit public gatherings
## 7543                                              Partial lockdown
## 7544                                              Partial lockdown
## 7545                                              Partial lockdown
## 7546                                              Partial lockdown
## 7547                                              Partial lockdown
## 7548                                              Partial lockdown
## 7549                                       Limit public gatherings
## 7550                                       Limit public gatherings
## 7551                                       Limit public gatherings
## 7552                                       Limit public gatherings
## 7553                                       Limit public gatherings
## 7554                                       Limit public gatherings
## 7555                 Requirement to wear protective gear in public
## 7556                 Requirement to wear protective gear in public
## 7557                 Requirement to wear protective gear in public
## 7558                 Requirement to wear protective gear in public
## 7559                 Requirement to wear protective gear in public
## 7560                 Requirement to wear protective gear in public
## 7561                     Closure of businesses and public services
## 7562                     Closure of businesses and public services
## 7563                     Closure of businesses and public services
## 7564                     Closure of businesses and public services
## 7565                     Closure of businesses and public services
## 7566                     Closure of businesses and public services
## 7567                 Requirement to wear protective gear in public
## 7568                 Requirement to wear protective gear in public
## 7569                 Requirement to wear protective gear in public
## 7570                 Requirement to wear protective gear in public
## 7571                 Requirement to wear protective gear in public
## 7572                 Requirement to wear protective gear in public
## 7573                 Requirement to wear protective gear in public
## 7574                 Requirement to wear protective gear in public
## 7575                 Requirement to wear protective gear in public
## 7576                 Requirement to wear protective gear in public
## 7577                 Requirement to wear protective gear in public
## 7578                 Requirement to wear protective gear in public
## 7579                                       Limit public gatherings
## 7580                                       Limit public gatherings
## 7581                                       Limit public gatherings
## 7582                                       Limit public gatherings
## 7583                                       Limit public gatherings
## 7584                                       Limit public gatherings
## 7585                         Other public health measures enforced
## 7586                         Other public health measures enforced
## 7587                         Other public health measures enforced
## 7588                         Other public health measures enforced
## 7589                         Other public health measures enforced
## 7590                         Other public health measures enforced
## 7591  Emergency administrative structures activated or established
## 7592  Emergency administrative structures activated or established
## 7593  Emergency administrative structures activated or established
## 7594  Emergency administrative structures activated or established
## 7595  Emergency administrative structures activated or established
## 7596  Emergency administrative structures activated or established
## 7597                                              Partial lockdown
## 7598                                              Partial lockdown
## 7599                                              Partial lockdown
## 7600                                              Partial lockdown
## 7601                                              Partial lockdown
## 7602                                              Partial lockdown
## 7603                                       Limit public gatherings
## 7604                                       Limit public gatherings
## 7605                                       Limit public gatherings
## 7606                                       Limit public gatherings
## 7607                                       Limit public gatherings
## 7608                                       Limit public gatherings
## 7609  Emergency administrative structures activated or established
## 7610  Emergency administrative structures activated or established
## 7611  Emergency administrative structures activated or established
## 7612  Emergency administrative structures activated or established
## 7613  Emergency administrative structures activated or established
## 7614  Emergency administrative structures activated or established
## 7615                         Other public health measures enforced
## 7616                         Other public health measures enforced
## 7617                         Other public health measures enforced
## 7618                         Other public health measures enforced
## 7619                         Other public health measures enforced
## 7620                         Other public health measures enforced
## 7621                                                       Curfews
## 7622                                                       Curfews
## 7623                                                       Curfews
## 7624                                                       Curfews
## 7625                                                       Curfews
## 7626                                                       Curfews
## 7627                                  Domestic travel restrictions
## 7628                                  Domestic travel restrictions
## 7629                                  Domestic travel restrictions
## 7630                                  Domestic travel restrictions
## 7631                                  Domestic travel restrictions
## 7632                                  Domestic travel restrictions
## 7633                              International flights suspension
## 7634                              International flights suspension
## 7635                              International flights suspension
## 7636                              International flights suspension
## 7637                              International flights suspension
## 7638                              International flights suspension
## 7639                     Closure of businesses and public services
## 7640                     Closure of businesses and public services
## 7641                     Closure of businesses and public services
## 7642                     Closure of businesses and public services
## 7643                     Closure of businesses and public services
## 7644                     Closure of businesses and public services
## 7645                        Strengthening the public health system
## 7646                        Strengthening the public health system
## 7647                        Strengthening the public health system
## 7648                        Strengthening the public health system
## 7649                        Strengthening the public health system
## 7650                        Strengthening the public health system
## 7651                                                       Curfews
## 7652                                                       Curfews
## 7653                                                       Curfews
## 7654                                                       Curfews
## 7655                                                       Curfews
## 7656                                                       Curfews
## 7657                     Closure of businesses and public services
## 7658                     Closure of businesses and public services
## 7659                     Closure of businesses and public services
## 7660                     Closure of businesses and public services
## 7661                     Closure of businesses and public services
## 7662                     Closure of businesses and public services
## 7663                                       Limit public gatherings
## 7664                                       Limit public gatherings
## 7665                                       Limit public gatherings
## 7666                                       Limit public gatherings
## 7667                                       Limit public gatherings
## 7668                                       Limit public gatherings
## 7669                                               Border closure 
## 7670                                               Border closure 
## 7671                                               Border closure 
## 7672                                               Border closure 
## 7673                                               Border closure 
## 7674                                               Border closure 
## 7675                              International flights suspension
## 7676                              International flights suspension
## 7677                              International flights suspension
## 7678                              International flights suspension
## 7679                              International flights suspension
## 7680                              International flights suspension
## 7681                             Isolation and quarantine policies
## 7682                             Isolation and quarantine policies
## 7683                             Isolation and quarantine policies
## 7684                             Isolation and quarantine policies
## 7685                             Isolation and quarantine policies
## 7686                             Isolation and quarantine policies
## 7687            Health screenings in airports and border crossings
## 7688            Health screenings in airports and border crossings
## 7689            Health screenings in airports and border crossings
## 7690            Health screenings in airports and border crossings
## 7691            Health screenings in airports and border crossings
## 7692            Health screenings in airports and border crossings
## 7693         Additional health/documents requirements upon arrival
## 7694         Additional health/documents requirements upon arrival
## 7695         Additional health/documents requirements upon arrival
## 7696         Additional health/documents requirements upon arrival
## 7697         Additional health/documents requirements upon arrival
## 7698         Additional health/documents requirements upon arrival
## 7699                                       Limit public gatherings
## 7700                                       Limit public gatherings
## 7701                                       Limit public gatherings
## 7702                                       Limit public gatherings
## 7703                                       Limit public gatherings
## 7704                                       Limit public gatherings
## 7705            Health screenings in airports and border crossings
## 7706            Health screenings in airports and border crossings
## 7707            Health screenings in airports and border crossings
## 7708            Health screenings in airports and border crossings
## 7709            Health screenings in airports and border crossings
## 7710            Health screenings in airports and border crossings
## 7711                              International flights suspension
## 7712                              International flights suspension
## 7713                              International flights suspension
## 7714                              International flights suspension
## 7715                              International flights suspension
## 7716                              International flights suspension
## 7717  Emergency administrative structures activated or established
## 7718  Emergency administrative structures activated or established
## 7719  Emergency administrative structures activated or established
## 7720  Emergency administrative structures activated or established
## 7721  Emergency administrative structures activated or established
## 7722  Emergency administrative structures activated or established
## 7723                                 Limit product imports/exports
## 7724                                 Limit product imports/exports
## 7725                                 Limit product imports/exports
## 7726                                 Limit product imports/exports
## 7727                                 Limit product imports/exports
## 7728                                 Limit product imports/exports
## 7729                                       General recommendations
## 7730                                       General recommendations
## 7731                                       General recommendations
## 7732                                       General recommendations
## 7733                                       General recommendations
## 7734                                       General recommendations
## 7735                                       Mass population testing
## 7736                                       Mass population testing
## 7737                                       Mass population testing
## 7738                                       Mass population testing
## 7739                                       Mass population testing
## 7740                                       Mass population testing
## 7741                                             Visa restrictions
## 7742                                             Visa restrictions
## 7743                                             Visa restrictions
## 7744                                             Visa restrictions
## 7745                                             Visa restrictions
## 7746                                             Visa restrictions
## 7747            Health screenings in airports and border crossings
## 7748            Health screenings in airports and border crossings
## 7749            Health screenings in airports and border crossings
## 7750            Health screenings in airports and border crossings
## 7751            Health screenings in airports and border crossings
## 7752            Health screenings in airports and border crossings
## 7753                                              Schools closure 
## 7754                                              Schools closure 
## 7755                                              Schools closure 
## 7756                                              Schools closure 
## 7757                                              Schools closure 
## 7758                                              Schools closure 
## 7759                             Isolation and quarantine policies
## 7760                             Isolation and quarantine policies
## 7761                             Isolation and quarantine policies
## 7762                             Isolation and quarantine policies
## 7763                             Isolation and quarantine policies
## 7764                             Isolation and quarantine policies
## 7765                                   Surveillance and monitoring
## 7766                                   Surveillance and monitoring
## 7767                                   Surveillance and monitoring
## 7768                                   Surveillance and monitoring
## 7769                                   Surveillance and monitoring
## 7770                                   Surveillance and monitoring
## 7771                                   Surveillance and monitoring
## 7772                                   Surveillance and monitoring
## 7773                                   Surveillance and monitoring
## 7774                                   Surveillance and monitoring
## 7775                                   Surveillance and monitoring
## 7776                                   Surveillance and monitoring
## 7777                                             Economic measures
## 7778                                             Economic measures
## 7779                                             Economic measures
## 7780                                             Economic measures
## 7781                                             Economic measures
## 7782                                             Economic measures
## 7783                                                Testing policy
## 7784                                                Testing policy
## 7785                                                Testing policy
## 7786                                                Testing policy
## 7787                                                Testing policy
## 7788                                                Testing policy
## 7789                                           Awareness campaigns
## 7790                                           Awareness campaigns
## 7791                                           Awareness campaigns
## 7792                                           Awareness campaigns
## 7793                                           Awareness campaigns
## 7794                                           Awareness campaigns
## 7795                                   Surveillance and monitoring
## 7796                                   Surveillance and monitoring
## 7797                                   Surveillance and monitoring
## 7798                                   Surveillance and monitoring
## 7799                                   Surveillance and monitoring
## 7800                                   Surveillance and monitoring
## 7801                                             Economic measures
## 7802                                             Economic measures
## 7803                                             Economic measures
## 7804                                             Economic measures
## 7805                                             Economic measures
## 7806                                             Economic measures
## 7807                        Strengthening the public health system
## 7808                        Strengthening the public health system
## 7809                        Strengthening the public health system
## 7810                        Strengthening the public health system
## 7811                        Strengthening the public health system
## 7812                        Strengthening the public health system
## 7813                        Strengthening the public health system
## 7814                        Strengthening the public health system
## 7815                        Strengthening the public health system
## 7816                        Strengthening the public health system
## 7817                        Strengthening the public health system
## 7818                        Strengthening the public health system
## 7819                                             Economic measures
## 7820                                             Economic measures
## 7821                                             Economic measures
## 7822                                             Economic measures
## 7823                                             Economic measures
## 7824                                             Economic measures
## 7825                                           Awareness campaigns
## 7826                                           Awareness campaigns
## 7827                                           Awareness campaigns
## 7828                                           Awareness campaigns
## 7829                                           Awareness campaigns
## 7830                                           Awareness campaigns
## 7831                        Strengthening the public health system
## 7832                        Strengthening the public health system
## 7833                        Strengthening the public health system
## 7834                        Strengthening the public health system
## 7835                        Strengthening the public health system
## 7836                        Strengthening the public health system
## 7837                                   Surveillance and monitoring
## 7838                                   Surveillance and monitoring
## 7839                                   Surveillance and monitoring
## 7840                                   Surveillance and monitoring
## 7841                                   Surveillance and monitoring
## 7842                                   Surveillance and monitoring
## 7843                        Strengthening the public health system
## 7844                        Strengthening the public health system
## 7845                        Strengthening the public health system
## 7846                        Strengthening the public health system
## 7847                        Strengthening the public health system
## 7848                        Strengthening the public health system
## 7849                        Strengthening the public health system
## 7850                        Strengthening the public health system
## 7851                        Strengthening the public health system
## 7852                        Strengthening the public health system
## 7853                        Strengthening the public health system
## 7854                        Strengthening the public health system
## 7855                             Isolation and quarantine policies
## 7856                             Isolation and quarantine policies
## 7857                             Isolation and quarantine policies
## 7858                             Isolation and quarantine policies
## 7859                             Isolation and quarantine policies
## 7860                             Isolation and quarantine policies
## 7861                                                Testing policy
## 7862                                                Testing policy
## 7863                                                Testing policy
## 7864                                                Testing policy
## 7865                                                Testing policy
## 7866                                                Testing policy
## 7867                                              Schools closure 
## 7868                                              Schools closure 
## 7869                                              Schools closure 
## 7870                                              Schools closure 
## 7871                                              Schools closure 
## 7872                                              Schools closure 
## 7873                                   Surveillance and monitoring
## 7874                                   Surveillance and monitoring
## 7875                                   Surveillance and monitoring
## 7876                                   Surveillance and monitoring
## 7877                                   Surveillance and monitoring
## 7878                                   Surveillance and monitoring
## 7879                             Isolation and quarantine policies
## 7880                             Isolation and quarantine policies
## 7881                             Isolation and quarantine policies
## 7882                             Isolation and quarantine policies
## 7883                             Isolation and quarantine policies
## 7884                             Isolation and quarantine policies
## 7885                                       General recommendations
## 7886                                       General recommendations
## 7887                                       General recommendations
## 7888                                       General recommendations
## 7889                                       General recommendations
## 7890                                       General recommendations
## 7891                                             Economic measures
## 7892                                             Economic measures
## 7893                                             Economic measures
## 7894                                             Economic measures
## 7895                                             Economic measures
## 7896                                             Economic measures
## 7897                             Isolation and quarantine policies
## 7898                             Isolation and quarantine policies
## 7899                             Isolation and quarantine policies
## 7900                             Isolation and quarantine policies
## 7901                             Isolation and quarantine policies
## 7902                             Isolation and quarantine policies
## 7903                              International flights suspension
## 7904                              International flights suspension
## 7905                              International flights suspension
## 7906                              International flights suspension
## 7907                              International flights suspension
## 7908                              International flights suspension
## 7909                                             Economic measures
## 7910                                             Economic measures
## 7911                                             Economic measures
## 7912                                             Economic measures
## 7913                                             Economic measures
## 7914                                             Economic measures
## 7915                              International flights suspension
## 7916                              International flights suspension
## 7917                              International flights suspension
## 7918                              International flights suspension
## 7919                              International flights suspension
## 7920                              International flights suspension
## 7921                                  Domestic travel restrictions
## 7922                                  Domestic travel restrictions
## 7923                                  Domestic travel restrictions
## 7924                                  Domestic travel restrictions
## 7925                                  Domestic travel restrictions
## 7926                                  Domestic travel restrictions
## 7927                                           Awareness campaigns
## 7928                                           Awareness campaigns
## 7929                                           Awareness campaigns
## 7930                                           Awareness campaigns
## 7931                                           Awareness campaigns
## 7932                                           Awareness campaigns
## 7933  Emergency administrative structures activated or established
## 7934  Emergency administrative structures activated or established
## 7935  Emergency administrative structures activated or established
## 7936  Emergency administrative structures activated or established
## 7937  Emergency administrative structures activated or established
## 7938  Emergency administrative structures activated or established
## 7939                                              Schools closure 
## 7940                                              Schools closure 
## 7941                                              Schools closure 
## 7942                                              Schools closure 
## 7943                                              Schools closure 
## 7944                                              Schools closure 
## 7945                     Closure of businesses and public services
## 7946                     Closure of businesses and public services
## 7947                     Closure of businesses and public services
## 7948                     Closure of businesses and public services
## 7949                     Closure of businesses and public services
## 7950                     Closure of businesses and public services
## 7951                                             Economic measures
## 7952                                             Economic measures
## 7953                                             Economic measures
## 7954                                             Economic measures
## 7955                                             Economic measures
## 7956                                             Economic measures
## 7957                                              Partial lockdown
## 7958                                              Partial lockdown
## 7959                                              Partial lockdown
## 7960                                              Partial lockdown
## 7961                                              Partial lockdown
## 7962                                              Partial lockdown
## 7963                                       General recommendations
## 7964                                       General recommendations
## 7965                                       General recommendations
## 7966                                       General recommendations
## 7967                                       General recommendations
## 7968                                       General recommendations
## 7969                                  Domestic travel restrictions
## 7970                                  Domestic travel restrictions
## 7971                                  Domestic travel restrictions
## 7972                                  Domestic travel restrictions
## 7973                                  Domestic travel restrictions
## 7974                                  Domestic travel restrictions
## 7975                        Strengthening the public health system
## 7976                        Strengthening the public health system
## 7977                        Strengthening the public health system
## 7978                        Strengthening the public health system
## 7979                        Strengthening the public health system
## 7980                        Strengthening the public health system
## 7981                                             Economic measures
## 7982                                             Economic measures
## 7983                                             Economic measures
## 7984                                             Economic measures
## 7985                                             Economic measures
## 7986                                             Economic measures
## 7987                                             Economic measures
## 7988                                             Economic measures
## 7989                                             Economic measures
## 7990                                             Economic measures
## 7991                                             Economic measures
## 7992                                             Economic measures
## 7993                        Strengthening the public health system
## 7994                        Strengthening the public health system
## 7995                        Strengthening the public health system
## 7996                        Strengthening the public health system
## 7997                        Strengthening the public health system
## 7998                        Strengthening the public health system
## 7999                     Closure of businesses and public services
## 8000                     Closure of businesses and public services
## 8001                     Closure of businesses and public services
## 8002                     Closure of businesses and public services
## 8003                     Closure of businesses and public services
## 8004                     Closure of businesses and public services
## 8005                                       General recommendations
## 8006                                       General recommendations
## 8007                                       General recommendations
## 8008                                       General recommendations
## 8009                                       General recommendations
## 8010                                       General recommendations
## 8011  Emergency administrative structures activated or established
## 8012  Emergency administrative structures activated or established
## 8013  Emergency administrative structures activated or established
## 8014  Emergency administrative structures activated or established
## 8015  Emergency administrative structures activated or established
## 8016  Emergency administrative structures activated or established
## 8017                                                Testing policy
## 8018                                                Testing policy
## 8019                                                Testing policy
## 8020                                                Testing policy
## 8021                                                Testing policy
## 8022                                                Testing policy
## 8023                                             Economic measures
## 8024                                             Economic measures
## 8025                                             Economic measures
## 8026                                             Economic measures
## 8027                                             Economic measures
## 8028                                             Economic measures
## 8029                                             Economic measures
## 8030                                             Economic measures
## 8031                                             Economic measures
## 8032                                             Economic measures
## 8033                                             Economic measures
## 8034                                             Economic measures
## 8035                                             Economic measures
## 8036                                             Economic measures
## 8037                                             Economic measures
## 8038                                             Economic measures
## 8039                                             Economic measures
## 8040                                             Economic measures
## 8041                                             Economic measures
## 8042                                             Economic measures
## 8043                                             Economic measures
## 8044                                             Economic measures
## 8045                                             Economic measures
## 8046                                             Economic measures
## 8047                             Isolation and quarantine policies
## 8048                             Isolation and quarantine policies
## 8049                             Isolation and quarantine policies
## 8050                             Isolation and quarantine policies
## 8051                             Isolation and quarantine policies
## 8052                             Isolation and quarantine policies
## 8053                                             Economic measures
## 8054                                             Economic measures
## 8055                                             Economic measures
## 8056                                             Economic measures
## 8057                                             Economic measures
## 8058                                             Economic measures
## 8059                        Strengthening the public health system
## 8060                        Strengthening the public health system
## 8061                        Strengthening the public health system
## 8062                        Strengthening the public health system
## 8063                        Strengthening the public health system
## 8064                        Strengthening the public health system
## 8065                        Strengthening the public health system
## 8066                        Strengthening the public health system
## 8067                        Strengthening the public health system
## 8068                        Strengthening the public health system
## 8069                        Strengthening the public health system
## 8070                        Strengthening the public health system
## 8071                                             Economic measures
## 8072                                             Economic measures
## 8073                                             Economic measures
## 8074                                             Economic measures
## 8075                                             Economic measures
## 8076                                             Economic measures
## 8077                                             Economic measures
## 8078                                             Economic measures
## 8079                                             Economic measures
## 8080                                             Economic measures
## 8081                                             Economic measures
## 8082                                             Economic measures
## 8083                            Changes in prison-related policies
## 8084                            Changes in prison-related policies
## 8085                            Changes in prison-related policies
## 8086                            Changes in prison-related policies
## 8087                            Changes in prison-related policies
## 8088                            Changes in prison-related policies
## 8089                              International flights suspension
## 8090                              International flights suspension
## 8091                              International flights suspension
## 8092                              International flights suspension
## 8093                              International flights suspension
## 8094                              International flights suspension
## 8095                                                Border checks 
## 8096                                                Border checks 
## 8097                                                Border checks 
## 8098                                                Border checks 
## 8099                                                Border checks 
## 8100                                                Border checks 
## 8101                                             Economic measures
## 8102                                             Economic measures
## 8103                                             Economic measures
## 8104                                             Economic measures
## 8105                                             Economic measures
## 8106                                             Economic measures
## 8107                                             Economic measures
## 8108                                             Economic measures
## 8109                                             Economic measures
## 8110                                             Economic measures
## 8111                                             Economic measures
## 8112                                             Economic measures
## 8113                                              Partial lockdown
## 8114                                              Partial lockdown
## 8115                                              Partial lockdown
## 8116                                              Partial lockdown
## 8117                                              Partial lockdown
## 8118                                              Partial lockdown
## 8119                                       Limit public gatherings
## 8120                                       Limit public gatherings
## 8121                                       Limit public gatherings
## 8122                                       Limit public gatherings
## 8123                                       Limit public gatherings
## 8124                                       Limit public gatherings
## 8125                     Closure of businesses and public services
## 8126                     Closure of businesses and public services
## 8127                     Closure of businesses and public services
## 8128                     Closure of businesses and public services
## 8129                     Closure of businesses and public services
## 8130                     Closure of businesses and public services
## 8131                             Isolation and quarantine policies
## 8132                             Isolation and quarantine policies
## 8133                             Isolation and quarantine policies
## 8134                             Isolation and quarantine policies
## 8135                             Isolation and quarantine policies
## 8136                             Isolation and quarantine policies
## 8137                                                Border checks 
## 8138                                                Border checks 
## 8139                                                Border checks 
## 8140                                                Border checks 
## 8141                                                Border checks 
## 8142                                                Border checks 
## 8143                                       Limit public gatherings
## 8144                                       Limit public gatherings
## 8145                                       Limit public gatherings
## 8146                                       Limit public gatherings
## 8147                                       Limit public gatherings
## 8148                                       Limit public gatherings
## 8149                     Closure of businesses and public services
## 8150                     Closure of businesses and public services
## 8151                     Closure of businesses and public services
## 8152                     Closure of businesses and public services
## 8153                     Closure of businesses and public services
## 8154                     Closure of businesses and public services
## 8155                                       Limit public gatherings
## 8156                                       Limit public gatherings
## 8157                                       Limit public gatherings
## 8158                                       Limit public gatherings
## 8159                                       Limit public gatherings
## 8160                                       Limit public gatherings
## 8161                                             Economic measures
## 8162                                             Economic measures
## 8163                                             Economic measures
## 8164                                             Economic measures
## 8165                                             Economic measures
## 8166                                             Economic measures
## 8167                                             Economic measures
## 8168                                             Economic measures
## 8169                                             Economic measures
## 8170                                             Economic measures
## 8171                                             Economic measures
## 8172                                             Economic measures
## 8173                                             Economic measures
## 8174                                             Economic measures
## 8175                                             Economic measures
## 8176                                             Economic measures
## 8177                                             Economic measures
## 8178                                             Economic measures
## 8179                                             Economic measures
## 8180                                             Economic measures
## 8181                                             Economic measures
## 8182                                             Economic measures
## 8183                                             Economic measures
## 8184                                             Economic measures
## 8185                        Strengthening the public health system
## 8186                        Strengthening the public health system
## 8187                        Strengthening the public health system
## 8188                        Strengthening the public health system
## 8189                        Strengthening the public health system
## 8190                        Strengthening the public health system
## 8191                        Strengthening the public health system
## 8192                        Strengthening the public health system
## 8193                        Strengthening the public health system
## 8194                        Strengthening the public health system
## 8195                        Strengthening the public health system
## 8196                        Strengthening the public health system
## 8197                        Strengthening the public health system
## 8198                        Strengthening the public health system
## 8199                        Strengthening the public health system
## 8200                        Strengthening the public health system
## 8201                        Strengthening the public health system
## 8202                        Strengthening the public health system
## 8203  Emergency administrative structures activated or established
## 8204  Emergency administrative structures activated or established
## 8205  Emergency administrative structures activated or established
## 8206  Emergency administrative structures activated or established
## 8207  Emergency administrative structures activated or established
## 8208  Emergency administrative structures activated or established
## 8209                     Closure of businesses and public services
## 8210                     Closure of businesses and public services
## 8211                     Closure of businesses and public services
## 8212                     Closure of businesses and public services
## 8213                     Closure of businesses and public services
## 8214                     Closure of businesses and public services
## 8215                         Other public health measures enforced
## 8216                         Other public health measures enforced
## 8217                         Other public health measures enforced
## 8218                         Other public health measures enforced
## 8219                         Other public health measures enforced
## 8220                         Other public health measures enforced
## 8221                                              Schools closure 
## 8222                                              Schools closure 
## 8223                                              Schools closure 
## 8224                                              Schools closure 
## 8225                                              Schools closure 
## 8226                                              Schools closure 
## 8227                                              Schools closure 
## 8228                                              Schools closure 
## 8229                                              Schools closure 
## 8230                                              Schools closure 
## 8231                                              Schools closure 
## 8232                                              Schools closure 
## 8233                                             Economic measures
## 8234                                             Economic measures
## 8235                                             Economic measures
## 8236                                             Economic measures
## 8237                                             Economic measures
## 8238                                             Economic measures
## 8239                  Amendments to funeral and burial regulations
## 8240                  Amendments to funeral and burial regulations
## 8241                  Amendments to funeral and burial regulations
## 8242                  Amendments to funeral and burial regulations
## 8243                  Amendments to funeral and burial regulations
## 8244                  Amendments to funeral and burial regulations
## 8245                     Closure of businesses and public services
## 8246                     Closure of businesses and public services
## 8247                     Closure of businesses and public services
## 8248                     Closure of businesses and public services
## 8249                     Closure of businesses and public services
## 8250                     Closure of businesses and public services
## 8251                     Closure of businesses and public services
## 8252                     Closure of businesses and public services
## 8253                     Closure of businesses and public services
## 8254                     Closure of businesses and public services
## 8255                     Closure of businesses and public services
## 8256                     Closure of businesses and public services
## 8257                     Closure of businesses and public services
## 8258                     Closure of businesses and public services
## 8259                     Closure of businesses and public services
## 8260                     Closure of businesses and public services
## 8261                     Closure of businesses and public services
## 8262                     Closure of businesses and public services
## 8263                              International flights suspension
## 8264                              International flights suspension
## 8265                              International flights suspension
## 8266                              International flights suspension
## 8267                              International flights suspension
## 8268                              International flights suspension
## 8269                                             Economic measures
## 8270                                             Economic measures
## 8271                                             Economic measures
## 8272                                             Economic measures
## 8273                                             Economic measures
## 8274                                             Economic measures
## 8275                                             Economic measures
## 8276                                             Economic measures
## 8277                                             Economic measures
## 8278                                             Economic measures
## 8279                                             Economic measures
## 8280                                             Economic measures
## 8281  Emergency administrative structures activated or established
## 8282  Emergency administrative structures activated or established
## 8283  Emergency administrative structures activated or established
## 8284  Emergency administrative structures activated or established
## 8285  Emergency administrative structures activated or established
## 8286  Emergency administrative structures activated or established
## 8287                         Other public health measures enforced
## 8288                         Other public health measures enforced
## 8289                         Other public health measures enforced
## 8290                         Other public health measures enforced
## 8291                         Other public health measures enforced
## 8292                         Other public health measures enforced
## 8293                         Other public health measures enforced
## 8294                         Other public health measures enforced
## 8295                         Other public health measures enforced
## 8296                         Other public health measures enforced
## 8297                         Other public health measures enforced
## 8298                         Other public health measures enforced
## 8299                                           Awareness campaigns
## 8300                                           Awareness campaigns
## 8301                                           Awareness campaigns
## 8302                                           Awareness campaigns
## 8303                                           Awareness campaigns
## 8304                                           Awareness campaigns
## 8305              Psychological assistance and medical social work
## 8306              Psychological assistance and medical social work
## 8307              Psychological assistance and medical social work
## 8308              Psychological assistance and medical social work
## 8309              Psychological assistance and medical social work
## 8310              Psychological assistance and medical social work
## 8311                                             Economic measures
## 8312                                             Economic measures
## 8313                                             Economic measures
## 8314                                             Economic measures
## 8315                                             Economic measures
## 8316                                             Economic measures
## 8317                                             Economic measures
## 8318                                             Economic measures
## 8319                                             Economic measures
## 8320                                             Economic measures
## 8321                                             Economic measures
## 8322                                             Economic measures
## 8323                                             Economic measures
## 8324                                             Economic measures
## 8325                                             Economic measures
## 8326                                             Economic measures
## 8327                                             Economic measures
## 8328                                             Economic measures
## 8329              Psychological assistance and medical social work
## 8330              Psychological assistance and medical social work
## 8331              Psychological assistance and medical social work
## 8332              Psychological assistance and medical social work
## 8333              Psychological assistance and medical social work
## 8334              Psychological assistance and medical social work
## 8335                                             Economic measures
## 8336                                             Economic measures
## 8337                                             Economic measures
## 8338                                             Economic measures
## 8339                                             Economic measures
## 8340                                             Economic measures
## 8341                        Strengthening the public health system
## 8342                        Strengthening the public health system
## 8343                        Strengthening the public health system
## 8344                        Strengthening the public health system
## 8345                        Strengthening the public health system
## 8346                        Strengthening the public health system
## 8347                                             Economic measures
## 8348                                             Economic measures
## 8349                                             Economic measures
## 8350                                             Economic measures
## 8351                                             Economic measures
## 8352                                             Economic measures
## 8353                                           Awareness campaigns
## 8354                                           Awareness campaigns
## 8355                                           Awareness campaigns
## 8356                                           Awareness campaigns
## 8357                                           Awareness campaigns
## 8358                                           Awareness campaigns
## 8359                 Requirement to wear protective gear in public
## 8360                 Requirement to wear protective gear in public
## 8361                 Requirement to wear protective gear in public
## 8362                 Requirement to wear protective gear in public
## 8363                 Requirement to wear protective gear in public
## 8364                 Requirement to wear protective gear in public
## 8365                                       General recommendations
## 8366                                       General recommendations
## 8367                                       General recommendations
## 8368                                       General recommendations
## 8369                                       General recommendations
## 8370                                       General recommendations
## 8371                         Other public health measures enforced
## 8372                         Other public health measures enforced
## 8373                         Other public health measures enforced
## 8374                         Other public health measures enforced
## 8375                         Other public health measures enforced
## 8376                         Other public health measures enforced
## 8377                                       General recommendations
## 8378                                       General recommendations
## 8379                                       General recommendations
## 8380                                       General recommendations
## 8381                                       General recommendations
## 8382                                       General recommendations
## 8383                     Closure of businesses and public services
## 8384                     Closure of businesses and public services
## 8385                     Closure of businesses and public services
## 8386                     Closure of businesses and public services
## 8387                     Closure of businesses and public services
## 8388                     Closure of businesses and public services
## 8389                                       Limit public gatherings
## 8390                                       Limit public gatherings
## 8391                                       Limit public gatherings
## 8392                                       Limit public gatherings
## 8393                                       Limit public gatherings
## 8394                                       Limit public gatherings
## 8395                        Strengthening the public health system
## 8396                        Strengthening the public health system
## 8397                        Strengthening the public health system
## 8398                        Strengthening the public health system
## 8399                        Strengthening the public health system
## 8400                        Strengthening the public health system
## 8401                     Closure of businesses and public services
## 8402                     Closure of businesses and public services
## 8403                     Closure of businesses and public services
## 8404                     Closure of businesses and public services
## 8405                     Closure of businesses and public services
## 8406                     Closure of businesses and public services
## 8407                                       General recommendations
## 8408                                       General recommendations
## 8409                                       General recommendations
## 8410                                       General recommendations
## 8411                                       General recommendations
## 8412                                       General recommendations
## 8413                                       Limit public gatherings
## 8414                                       Limit public gatherings
## 8415                                       Limit public gatherings
## 8416                                       Limit public gatherings
## 8417                                       Limit public gatherings
## 8418                                       Limit public gatherings
## 8419                                       General recommendations
## 8420                                       General recommendations
## 8421                                       General recommendations
## 8422                                       General recommendations
## 8423                                       General recommendations
## 8424                                       General recommendations
## 8425                     Closure of businesses and public services
## 8426                     Closure of businesses and public services
## 8427                     Closure of businesses and public services
## 8428                     Closure of businesses and public services
## 8429                     Closure of businesses and public services
## 8430                     Closure of businesses and public services
## 8431                     Closure of businesses and public services
## 8432                     Closure of businesses and public services
## 8433                     Closure of businesses and public services
## 8434                     Closure of businesses and public services
## 8435                     Closure of businesses and public services
## 8436                     Closure of businesses and public services
## 8437                     Closure of businesses and public services
## 8438                     Closure of businesses and public services
## 8439                     Closure of businesses and public services
## 8440                     Closure of businesses and public services
## 8441                     Closure of businesses and public services
## 8442                     Closure of businesses and public services
## 8443                        Strengthening the public health system
## 8444                        Strengthening the public health system
## 8445                        Strengthening the public health system
## 8446                        Strengthening the public health system
## 8447                        Strengthening the public health system
## 8448                        Strengthening the public health system
## 8449  Emergency administrative structures activated or established
## 8450  Emergency administrative structures activated or established
## 8451  Emergency administrative structures activated or established
## 8452  Emergency administrative structures activated or established
## 8453  Emergency administrative structures activated or established
## 8454  Emergency administrative structures activated or established
## 8455                         Other public health measures enforced
## 8456                         Other public health measures enforced
## 8457                         Other public health measures enforced
## 8458                         Other public health measures enforced
## 8459                         Other public health measures enforced
## 8460                         Other public health measures enforced
## 8461                                           Awareness campaigns
## 8462                                           Awareness campaigns
## 8463                                           Awareness campaigns
## 8464                                           Awareness campaigns
## 8465                                           Awareness campaigns
## 8466                                           Awareness campaigns
## 8467                                              Schools closure 
## 8468                                              Schools closure 
## 8469                                              Schools closure 
## 8470                                              Schools closure 
## 8471                                              Schools closure 
## 8472                                              Schools closure 
## 8473                                              Schools closure 
## 8474                                              Schools closure 
## 8475                                              Schools closure 
## 8476                                              Schools closure 
## 8477                                              Schools closure 
## 8478                                              Schools closure 
## 8479                                       Limit public gatherings
## 8480                                       Limit public gatherings
## 8481                                       Limit public gatherings
## 8482                                       Limit public gatherings
## 8483                                       Limit public gatherings
## 8484                                       Limit public gatherings
## 8485                                       General recommendations
## 8486                                       General recommendations
## 8487                                       General recommendations
## 8488                                       General recommendations
## 8489                                       General recommendations
## 8490                                       General recommendations
## 8491                                       Limit public gatherings
## 8492                                       Limit public gatherings
## 8493                                       Limit public gatherings
## 8494                                       Limit public gatherings
## 8495                                       Limit public gatherings
## 8496                                       Limit public gatherings
## 8497                     Closure of businesses and public services
## 8498                     Closure of businesses and public services
## 8499                     Closure of businesses and public services
## 8500                     Closure of businesses and public services
## 8501                     Closure of businesses and public services
## 8502                     Closure of businesses and public services
## 8503                     Closure of businesses and public services
## 8504                     Closure of businesses and public services
## 8505                     Closure of businesses and public services
## 8506                     Closure of businesses and public services
## 8507                     Closure of businesses and public services
## 8508                     Closure of businesses and public services
## 8509                     Closure of businesses and public services
## 8510                     Closure of businesses and public services
## 8511                     Closure of businesses and public services
## 8512                     Closure of businesses and public services
## 8513                     Closure of businesses and public services
## 8514                     Closure of businesses and public services
## 8515                                                Testing policy
## 8516                                                Testing policy
## 8517                                                Testing policy
## 8518                                                Testing policy
## 8519                                                Testing policy
## 8520                                                Testing policy
## 8521                         Other public health measures enforced
## 8522                         Other public health measures enforced
## 8523                         Other public health measures enforced
## 8524                         Other public health measures enforced
## 8525                         Other public health measures enforced
## 8526                         Other public health measures enforced
## 8527                                             Economic measures
## 8528                                             Economic measures
## 8529                                             Economic measures
## 8530                                             Economic measures
## 8531                                             Economic measures
## 8532                                             Economic measures
## 8533                             Isolation and quarantine policies
## 8534                             Isolation and quarantine policies
## 8535                             Isolation and quarantine policies
## 8536                             Isolation and quarantine policies
## 8537                             Isolation and quarantine policies
## 8538                             Isolation and quarantine policies
## 8539                        Strengthening the public health system
## 8540                        Strengthening the public health system
## 8541                        Strengthening the public health system
## 8542                        Strengthening the public health system
## 8543                        Strengthening the public health system
## 8544                        Strengthening the public health system
## 8545                 Requirement to wear protective gear in public
## 8546                 Requirement to wear protective gear in public
## 8547                 Requirement to wear protective gear in public
## 8548                 Requirement to wear protective gear in public
## 8549                 Requirement to wear protective gear in public
## 8550                 Requirement to wear protective gear in public
## 8551                                       General recommendations
## 8552                                       General recommendations
## 8553                                       General recommendations
## 8554                                       General recommendations
## 8555                                       General recommendations
## 8556                                       General recommendations
## 8557                                       General recommendations
## 8558                                       General recommendations
## 8559                                       General recommendations
## 8560                                       General recommendations
## 8561                                       General recommendations
## 8562                                       General recommendations
## 8563                        Strengthening the public health system
## 8564                        Strengthening the public health system
## 8565                        Strengthening the public health system
## 8566                        Strengthening the public health system
## 8567                        Strengthening the public health system
## 8568                        Strengthening the public health system
## 8569                     Closure of businesses and public services
## 8570                     Closure of businesses and public services
## 8571                     Closure of businesses and public services
## 8572                     Closure of businesses and public services
## 8573                     Closure of businesses and public services
## 8574                     Closure of businesses and public services
## 8575                                                Testing policy
## 8576                                                Testing policy
## 8577                                                Testing policy
## 8578                                                Testing policy
## 8579                                                Testing policy
## 8580                                                Testing policy
## 8581                                   Surveillance and monitoring
## 8582                                   Surveillance and monitoring
## 8583                                   Surveillance and monitoring
## 8584                                   Surveillance and monitoring
## 8585                                   Surveillance and monitoring
## 8586                                   Surveillance and monitoring
## 8587                     Closure of businesses and public services
## 8588                     Closure of businesses and public services
## 8589                     Closure of businesses and public services
## 8590                     Closure of businesses and public services
## 8591                     Closure of businesses and public services
## 8592                     Closure of businesses and public services
## 8593                 Requirement to wear protective gear in public
## 8594                 Requirement to wear protective gear in public
## 8595                 Requirement to wear protective gear in public
## 8596                 Requirement to wear protective gear in public
## 8597                 Requirement to wear protective gear in public
## 8598                 Requirement to wear protective gear in public
## 8599                     Closure of businesses and public services
## 8600                     Closure of businesses and public services
## 8601                     Closure of businesses and public services
## 8602                     Closure of businesses and public services
## 8603                     Closure of businesses and public services
## 8604                     Closure of businesses and public services
## 8605                                Checkpoints within the country
## 8606                                Checkpoints within the country
## 8607                                Checkpoints within the country
## 8608                                Checkpoints within the country
## 8609                                Checkpoints within the country
## 8610                                Checkpoints within the country
## 8611                         Other public health measures enforced
## 8612                         Other public health measures enforced
## 8613                         Other public health measures enforced
## 8614                         Other public health measures enforced
## 8615                         Other public health measures enforced
## 8616                         Other public health measures enforced
## 8617                        Strengthening the public health system
## 8618                        Strengthening the public health system
## 8619                        Strengthening the public health system
## 8620                        Strengthening the public health system
## 8621                        Strengthening the public health system
## 8622                        Strengthening the public health system
## 8623  Emergency administrative structures activated or established
## 8624  Emergency administrative structures activated or established
## 8625  Emergency administrative structures activated or established
## 8626  Emergency administrative structures activated or established
## 8627  Emergency administrative structures activated or established
## 8628  Emergency administrative structures activated or established
## 8629                                       Limit public gatherings
## 8630                                       Limit public gatherings
## 8631                                       Limit public gatherings
## 8632                                       Limit public gatherings
## 8633                                       Limit public gatherings
## 8634                                       Limit public gatherings
## 8635                     Closure of businesses and public services
## 8636                     Closure of businesses and public services
## 8637                     Closure of businesses and public services
## 8638                     Closure of businesses and public services
## 8639                     Closure of businesses and public services
## 8640                     Closure of businesses and public services
## 8641                         Other public health measures enforced
## 8642                         Other public health measures enforced
## 8643                         Other public health measures enforced
## 8644                         Other public health measures enforced
## 8645                         Other public health measures enforced
## 8646                         Other public health measures enforced
## 8647                     Closure of businesses and public services
## 8648                     Closure of businesses and public services
## 8649                     Closure of businesses and public services
## 8650                     Closure of businesses and public services
## 8651                     Closure of businesses and public services
## 8652                     Closure of businesses and public services
## 8653                     Closure of businesses and public services
## 8654                     Closure of businesses and public services
## 8655                     Closure of businesses and public services
## 8656                     Closure of businesses and public services
## 8657                     Closure of businesses and public services
## 8658                     Closure of businesses and public services
## 8659                 Requirement to wear protective gear in public
## 8660                 Requirement to wear protective gear in public
## 8661                 Requirement to wear protective gear in public
## 8662                 Requirement to wear protective gear in public
## 8663                 Requirement to wear protective gear in public
## 8664                 Requirement to wear protective gear in public
## 8665                     Closure of businesses and public services
## 8666                     Closure of businesses and public services
## 8667                     Closure of businesses and public services
## 8668                     Closure of businesses and public services
## 8669                     Closure of businesses and public services
## 8670                     Closure of businesses and public services
## 8671                     Closure of businesses and public services
## 8672                     Closure of businesses and public services
## 8673                     Closure of businesses and public services
## 8674                     Closure of businesses and public services
## 8675                     Closure of businesses and public services
## 8676                     Closure of businesses and public services
## 8677                                       Limit public gatherings
## 8678                                       Limit public gatherings
## 8679                                       Limit public gatherings
## 8680                                       Limit public gatherings
## 8681                                       Limit public gatherings
## 8682                                       Limit public gatherings
## 8683                  Amendments to funeral and burial regulations
## 8684                  Amendments to funeral and burial regulations
## 8685                  Amendments to funeral and burial regulations
## 8686                  Amendments to funeral and burial regulations
## 8687                  Amendments to funeral and burial regulations
## 8688                  Amendments to funeral and burial regulations
## 8689                                       Limit public gatherings
## 8690                                       Limit public gatherings
## 8691                                       Limit public gatherings
## 8692                                       Limit public gatherings
## 8693                                       Limit public gatherings
## 8694                                       Limit public gatherings
## 8695                                       Limit public gatherings
## 8696                                       Limit public gatherings
## 8697                                       Limit public gatherings
## 8698                                       Limit public gatherings
## 8699                                       Limit public gatherings
## 8700                                       Limit public gatherings
## 8701                     Closure of businesses and public services
## 8702                     Closure of businesses and public services
## 8703                     Closure of businesses and public services
## 8704                     Closure of businesses and public services
## 8705                     Closure of businesses and public services
## 8706                     Closure of businesses and public services
## 8707                              International flights suspension
## 8708                              International flights suspension
## 8709                              International flights suspension
## 8710                              International flights suspension
## 8711                              International flights suspension
## 8712                              International flights suspension
## 8713                     Closure of businesses and public services
## 8714                     Closure of businesses and public services
## 8715                     Closure of businesses and public services
## 8716                     Closure of businesses and public services
## 8717                     Closure of businesses and public services
## 8718                     Closure of businesses and public services
## 8719                                           Awareness campaigns
## 8720                                           Awareness campaigns
## 8721                                           Awareness campaigns
## 8722                                           Awareness campaigns
## 8723                                           Awareness campaigns
## 8724                                           Awareness campaigns
## 8725                                             Economic measures
## 8726                                             Economic measures
## 8727                                             Economic measures
## 8728                                             Economic measures
## 8729                                             Economic measures
## 8730                                             Economic measures
## 8731                                             Economic measures
## 8732                                             Economic measures
## 8733                                             Economic measures
## 8734                                             Economic measures
## 8735                                             Economic measures
## 8736                                             Economic measures
## 8737                     Closure of businesses and public services
## 8738                     Closure of businesses and public services
## 8739                     Closure of businesses and public services
## 8740                     Closure of businesses and public services
## 8741                     Closure of businesses and public services
## 8742                     Closure of businesses and public services
## 8743                         Other public health measures enforced
## 8744                         Other public health measures enforced
## 8745                         Other public health measures enforced
## 8746                         Other public health measures enforced
## 8747                         Other public health measures enforced
## 8748                         Other public health measures enforced
## 8749  Emergency administrative structures activated or established
## 8750  Emergency administrative structures activated or established
## 8751  Emergency administrative structures activated or established
## 8752  Emergency administrative structures activated or established
## 8753  Emergency administrative structures activated or established
## 8754  Emergency administrative structures activated or established
## 8755                                              Schools closure 
## 8756                                              Schools closure 
## 8757                                              Schools closure 
## 8758                                              Schools closure 
## 8759                                              Schools closure 
## 8760                                              Schools closure 
## 8761                                              Schools closure 
## 8762                                              Schools closure 
## 8763                                              Schools closure 
## 8764                                              Schools closure 
## 8765                                              Schools closure 
## 8766                                              Schools closure 
## 8767                                              Schools closure 
## 8768                                              Schools closure 
## 8769                                              Schools closure 
## 8770                                              Schools closure 
## 8771                                              Schools closure 
## 8772                                              Schools closure 
## 8773                             Isolation and quarantine policies
## 8774                             Isolation and quarantine policies
## 8775                             Isolation and quarantine policies
## 8776                             Isolation and quarantine policies
## 8777                             Isolation and quarantine policies
## 8778                             Isolation and quarantine policies
## 8779                                       Limit public gatherings
## 8780                                       Limit public gatherings
## 8781                                       Limit public gatherings
## 8782                                       Limit public gatherings
## 8783                                       Limit public gatherings
## 8784                                       Limit public gatherings
## 8785                                  Domestic travel restrictions
## 8786                                  Domestic travel restrictions
## 8787                                  Domestic travel restrictions
## 8788                                  Domestic travel restrictions
## 8789                                  Domestic travel restrictions
## 8790                                  Domestic travel restrictions
## 8791                              International flights suspension
## 8792                              International flights suspension
## 8793                              International flights suspension
## 8794                              International flights suspension
## 8795                              International flights suspension
## 8796                              International flights suspension
## 8797                                       General recommendations
## 8798                                       General recommendations
## 8799                                       General recommendations
## 8800                                       General recommendations
## 8801                                       General recommendations
## 8802                                       General recommendations
## 8803                     Closure of businesses and public services
## 8804                     Closure of businesses and public services
## 8805                     Closure of businesses and public services
## 8806                     Closure of businesses and public services
## 8807                     Closure of businesses and public services
## 8808                     Closure of businesses and public services
## 8809                     Closure of businesses and public services
## 8810                     Closure of businesses and public services
## 8811                     Closure of businesses and public services
## 8812                     Closure of businesses and public services
## 8813                     Closure of businesses and public services
## 8814                     Closure of businesses and public services
## 8815                 Requirement to wear protective gear in public
## 8816                 Requirement to wear protective gear in public
## 8817                 Requirement to wear protective gear in public
## 8818                 Requirement to wear protective gear in public
## 8819                 Requirement to wear protective gear in public
## 8820                 Requirement to wear protective gear in public
## 8821                     Closure of businesses and public services
## 8822                     Closure of businesses and public services
## 8823                     Closure of businesses and public services
## 8824                     Closure of businesses and public services
## 8825                     Closure of businesses and public services
## 8826                     Closure of businesses and public services
## 8827                                       Limit public gatherings
## 8828                                       Limit public gatherings
## 8829                                       Limit public gatherings
## 8830                                       Limit public gatherings
## 8831                                       Limit public gatherings
## 8832                                       Limit public gatherings
## 8833                     Closure of businesses and public services
## 8834                     Closure of businesses and public services
## 8835                     Closure of businesses and public services
## 8836                     Closure of businesses and public services
## 8837                     Closure of businesses and public services
## 8838                     Closure of businesses and public services
## 8839                                       Limit public gatherings
## 8840                                       Limit public gatherings
## 8841                                       Limit public gatherings
## 8842                                       Limit public gatherings
## 8843                                       Limit public gatherings
## 8844                                       Limit public gatherings
## 8845                                       Limit public gatherings
## 8846                                       Limit public gatherings
## 8847                                       Limit public gatherings
## 8848                                       Limit public gatherings
## 8849                                       Limit public gatherings
## 8850                                       Limit public gatherings
## 8851                                               Border closure 
## 8852                                               Border closure 
## 8853                                               Border closure 
## 8854                                               Border closure 
## 8855                                               Border closure 
## 8856                                               Border closure 
## 8857                                               Border closure 
## 8858                                               Border closure 
## 8859                                               Border closure 
## 8860                                               Border closure 
## 8861                                               Border closure 
## 8862                                               Border closure 
## 8863                                               Border closure 
## 8864                                               Border closure 
## 8865                                               Border closure 
## 8866                                               Border closure 
## 8867                                               Border closure 
## 8868                                               Border closure 
## 8869                        Strengthening the public health system
## 8870                        Strengthening the public health system
## 8871                        Strengthening the public health system
## 8872                        Strengthening the public health system
## 8873                        Strengthening the public health system
## 8874                        Strengthening the public health system
## 8875                         Other public health measures enforced
## 8876                         Other public health measures enforced
## 8877                         Other public health measures enforced
## 8878                         Other public health measures enforced
## 8879                         Other public health measures enforced
## 8880                         Other public health measures enforced
## 8881                         Other public health measures enforced
## 8882                         Other public health measures enforced
## 8883                         Other public health measures enforced
## 8884                         Other public health measures enforced
## 8885                         Other public health measures enforced
## 8886                         Other public health measures enforced
## 8887                                             Economic measures
## 8888                                             Economic measures
## 8889                                             Economic measures
## 8890                                             Economic measures
## 8891                                             Economic measures
## 8892                                             Economic measures
## 8893                                       Limit public gatherings
## 8894                                       Limit public gatherings
## 8895                                       Limit public gatherings
## 8896                                       Limit public gatherings
## 8897                                       Limit public gatherings
## 8898                                       Limit public gatherings
## 8899                              International flights suspension
## 8900                              International flights suspension
## 8901                              International flights suspension
## 8902                              International flights suspension
## 8903                              International flights suspension
## 8904                              International flights suspension
## 8905            Health screenings in airports and border crossings
## 8906            Health screenings in airports and border crossings
## 8907            Health screenings in airports and border crossings
## 8908            Health screenings in airports and border crossings
## 8909            Health screenings in airports and border crossings
## 8910            Health screenings in airports and border crossings
## 8911                                               Border closure 
## 8912                                               Border closure 
## 8913                                               Border closure 
## 8914                                               Border closure 
## 8915                                               Border closure 
## 8916                                               Border closure 
## 8917                                               Border closure 
## 8918                                               Border closure 
## 8919                                               Border closure 
## 8920                                               Border closure 
## 8921                                               Border closure 
## 8922                                               Border closure 
## 8923                                             Economic measures
## 8924                                             Economic measures
## 8925                                             Economic measures
## 8926                                             Economic measures
## 8927                                             Economic measures
## 8928                                             Economic measures
## 8929                         Other public health measures enforced
## 8930                         Other public health measures enforced
## 8931                         Other public health measures enforced
## 8932                         Other public health measures enforced
## 8933                         Other public health measures enforced
## 8934                         Other public health measures enforced
## 8935                                       General recommendations
## 8936                                       General recommendations
## 8937                                       General recommendations
## 8938                                       General recommendations
## 8939                                       General recommendations
## 8940                                       General recommendations
## 8941                     Closure of businesses and public services
## 8942                     Closure of businesses and public services
## 8943                     Closure of businesses and public services
## 8944                     Closure of businesses and public services
## 8945                     Closure of businesses and public services
## 8946                     Closure of businesses and public services
## 8947                     Closure of businesses and public services
## 8948                     Closure of businesses and public services
## 8949                     Closure of businesses and public services
## 8950                     Closure of businesses and public services
## 8951                     Closure of businesses and public services
## 8952                     Closure of businesses and public services
## 8953                                   Surveillance and monitoring
## 8954                                   Surveillance and monitoring
## 8955                                   Surveillance and monitoring
## 8956                                   Surveillance and monitoring
## 8957                                   Surveillance and monitoring
## 8958                                   Surveillance and monitoring
## 8959                        Strengthening the public health system
## 8960                        Strengthening the public health system
## 8961                        Strengthening the public health system
## 8962                        Strengthening the public health system
## 8963                        Strengthening the public health system
## 8964                        Strengthening the public health system
## 8965                                             Economic measures
## 8966                                             Economic measures
## 8967                                             Economic measures
## 8968                                             Economic measures
## 8969                                             Economic measures
## 8970                                             Economic measures
## 8971                                             Economic measures
## 8972                                             Economic measures
## 8973                                             Economic measures
## 8974                                             Economic measures
## 8975                                             Economic measures
## 8976                                             Economic measures
## 8977                                             Economic measures
## 8978                                             Economic measures
## 8979                                             Economic measures
## 8980                                             Economic measures
## 8981                                             Economic measures
## 8982                                             Economic measures
## 8983                                               Border closure 
## 8984                                               Border closure 
## 8985                                               Border closure 
## 8986                                               Border closure 
## 8987                                               Border closure 
## 8988                                               Border closure 
## 8989                                                Testing policy
## 8990                                                Testing policy
## 8991                                                Testing policy
## 8992                                                Testing policy
## 8993                                                Testing policy
## 8994                                                Testing policy
## 8995                         Other public health measures enforced
## 8996                         Other public health measures enforced
## 8997                         Other public health measures enforced
## 8998                         Other public health measures enforced
## 8999                         Other public health measures enforced
## 9000                         Other public health measures enforced
## 9001            Health screenings in airports and border crossings
## 9002            Health screenings in airports and border crossings
## 9003            Health screenings in airports and border crossings
## 9004            Health screenings in airports and border crossings
## 9005            Health screenings in airports and border crossings
## 9006            Health screenings in airports and border crossings
## 9007                                               Border closure 
## 9008                                               Border closure 
## 9009                                               Border closure 
## 9010                                               Border closure 
## 9011                                               Border closure 
## 9012                                               Border closure 
## 9013                              International flights suspension
## 9014                              International flights suspension
## 9015                              International flights suspension
## 9016                              International flights suspension
## 9017                              International flights suspension
## 9018                              International flights suspension
## 9019                                       Limit public gatherings
## 9020                                       Limit public gatherings
## 9021                                       Limit public gatherings
## 9022                                       Limit public gatherings
## 9023                                       Limit public gatherings
## 9024                                       Limit public gatherings
## 9025                                             Visa restrictions
## 9026                                             Visa restrictions
## 9027                                             Visa restrictions
## 9028                                             Visa restrictions
## 9029                                             Visa restrictions
## 9030                                             Visa restrictions
## 9031                                       General recommendations
## 9032                                       General recommendations
## 9033                                       General recommendations
## 9034                                       General recommendations
## 9035                                       General recommendations
## 9036                                       General recommendations
## 9037                                       General recommendations
## 9038                                       General recommendations
## 9039                                       General recommendations
## 9040                                       General recommendations
## 9041                                       General recommendations
## 9042                                       General recommendations
## 9043                             Isolation and quarantine policies
## 9044                             Isolation and quarantine policies
## 9045                             Isolation and quarantine policies
## 9046                             Isolation and quarantine policies
## 9047                             Isolation and quarantine policies
## 9048                             Isolation and quarantine policies
## 9049                                              Schools closure 
## 9050                                              Schools closure 
## 9051                                              Schools closure 
## 9052                                              Schools closure 
## 9053                                              Schools closure 
## 9054                                              Schools closure 
## 9055                                       Limit public gatherings
## 9056                                       Limit public gatherings
## 9057                                       Limit public gatherings
## 9058                                       Limit public gatherings
## 9059                                       Limit public gatherings
## 9060                                       Limit public gatherings
## 9061                                             Visa restrictions
## 9062                                             Visa restrictions
## 9063                                             Visa restrictions
## 9064                                             Visa restrictions
## 9065                                             Visa restrictions
## 9066                                             Visa restrictions
## 9067                                               Border closure 
## 9068                                               Border closure 
## 9069                                               Border closure 
## 9070                                               Border closure 
## 9071                                               Border closure 
## 9072                                               Border closure 
## 9073                                             Economic measures
## 9074                                             Economic measures
## 9075                                             Economic measures
## 9076                                             Economic measures
## 9077                                             Economic measures
## 9078                                             Economic measures
## 9079                             Isolation and quarantine policies
## 9080                             Isolation and quarantine policies
## 9081                             Isolation and quarantine policies
## 9082                             Isolation and quarantine policies
## 9083                             Isolation and quarantine policies
## 9084                             Isolation and quarantine policies
## 9085                                       General recommendations
## 9086                                       General recommendations
## 9087                                       General recommendations
## 9088                                       General recommendations
## 9089                                       General recommendations
## 9090                                       General recommendations
## 9091                             Isolation and quarantine policies
## 9092                             Isolation and quarantine policies
## 9093                             Isolation and quarantine policies
## 9094                             Isolation and quarantine policies
## 9095                             Isolation and quarantine policies
## 9096                             Isolation and quarantine policies
## 9097                             Isolation and quarantine policies
## 9098                             Isolation and quarantine policies
## 9099                             Isolation and quarantine policies
## 9100                             Isolation and quarantine policies
## 9101                             Isolation and quarantine policies
## 9102                             Isolation and quarantine policies
## 9103                                       General recommendations
## 9104                                       General recommendations
## 9105                                       General recommendations
## 9106                                       General recommendations
## 9107                                       General recommendations
## 9108                                       General recommendations
## 9109                        Strengthening the public health system
## 9110                        Strengthening the public health system
## 9111                        Strengthening the public health system
## 9112                        Strengthening the public health system
## 9113                        Strengthening the public health system
## 9114                        Strengthening the public health system
## 9115                                           Awareness campaigns
## 9116                                           Awareness campaigns
## 9117                                           Awareness campaigns
## 9118                                           Awareness campaigns
## 9119                                           Awareness campaigns
## 9120                                           Awareness campaigns
## 9121  Emergency administrative structures activated or established
## 9122  Emergency administrative structures activated or established
## 9123  Emergency administrative structures activated or established
## 9124  Emergency administrative structures activated or established
## 9125  Emergency administrative structures activated or established
## 9126  Emergency administrative structures activated or established
## 9127                                           Awareness campaigns
## 9128                                           Awareness campaigns
## 9129                                           Awareness campaigns
## 9130                                           Awareness campaigns
## 9131                                           Awareness campaigns
## 9132                                           Awareness campaigns
## 9133                                             Visa restrictions
## 9134                                             Visa restrictions
## 9135                                             Visa restrictions
## 9136                                             Visa restrictions
## 9137                                             Visa restrictions
## 9138                                             Visa restrictions
## 9139                                               Border closure 
## 9140                                               Border closure 
## 9141                                               Border closure 
## 9142                                               Border closure 
## 9143                                               Border closure 
## 9144                                               Border closure 
## 9145                                           Awareness campaigns
## 9146                                           Awareness campaigns
## 9147                                           Awareness campaigns
## 9148                                           Awareness campaigns
## 9149                                           Awareness campaigns
## 9150                                           Awareness campaigns
## 9151                                              Partial lockdown
## 9152                                              Partial lockdown
## 9153                                              Partial lockdown
## 9154                                              Partial lockdown
## 9155                                              Partial lockdown
## 9156                                              Partial lockdown
## 9157                        Strengthening the public health system
## 9158                        Strengthening the public health system
## 9159                        Strengthening the public health system
## 9160                        Strengthening the public health system
## 9161                        Strengthening the public health system
## 9162                        Strengthening the public health system
## 9163                     Closure of businesses and public services
## 9164                     Closure of businesses and public services
## 9165                     Closure of businesses and public services
## 9166                     Closure of businesses and public services
## 9167                     Closure of businesses and public services
## 9168                     Closure of businesses and public services
## 9169                                               Border closure 
## 9170                                               Border closure 
## 9171                                               Border closure 
## 9172                                               Border closure 
## 9173                                               Border closure 
## 9174                                               Border closure 
## 9175                     Closure of businesses and public services
## 9176                     Closure of businesses and public services
## 9177                     Closure of businesses and public services
## 9178                     Closure of businesses and public services
## 9179                     Closure of businesses and public services
## 9180                     Closure of businesses and public services
## 9181                                           Awareness campaigns
## 9182                                           Awareness campaigns
## 9183                                           Awareness campaigns
## 9184                                           Awareness campaigns
## 9185                                           Awareness campaigns
## 9186                                           Awareness campaigns
## 9187                         Other public health measures enforced
## 9188                         Other public health measures enforced
## 9189                         Other public health measures enforced
## 9190                         Other public health measures enforced
## 9191                         Other public health measures enforced
## 9192                         Other public health measures enforced
## 9193                                       Limit public gatherings
## 9194                                       Limit public gatherings
## 9195                                       Limit public gatherings
## 9196                                       Limit public gatherings
## 9197                                       Limit public gatherings
## 9198                                       Limit public gatherings
## 9199                                              Partial lockdown
## 9200                                              Partial lockdown
## 9201                                              Partial lockdown
## 9202                                              Partial lockdown
## 9203                                              Partial lockdown
## 9204                                              Partial lockdown
## 9205                                           Awareness campaigns
## 9206                                           Awareness campaigns
## 9207                                           Awareness campaigns
## 9208                                           Awareness campaigns
## 9209                                           Awareness campaigns
## 9210                                           Awareness campaigns
## 9211                     Closure of businesses and public services
## 9212                     Closure of businesses and public services
## 9213                     Closure of businesses and public services
## 9214                     Closure of businesses and public services
## 9215                     Closure of businesses and public services
## 9216                     Closure of businesses and public services
## 9217                             Isolation and quarantine policies
## 9218                             Isolation and quarantine policies
## 9219                             Isolation and quarantine policies
## 9220                             Isolation and quarantine policies
## 9221                             Isolation and quarantine policies
## 9222                             Isolation and quarantine policies
## 9223                                           Awareness campaigns
## 9224                                           Awareness campaigns
## 9225                                           Awareness campaigns
## 9226                                           Awareness campaigns
## 9227                                           Awareness campaigns
## 9228                                           Awareness campaigns
## 9229  Emergency administrative structures activated or established
## 9230  Emergency administrative structures activated or established
## 9231  Emergency administrative structures activated or established
## 9232  Emergency administrative structures activated or established
## 9233  Emergency administrative structures activated or established
## 9234  Emergency administrative structures activated or established
## 9235                                             Economic measures
## 9236                                             Economic measures
## 9237                                             Economic measures
## 9238                                             Economic measures
## 9239                                             Economic measures
## 9240                                             Economic measures
## 9241                                             Visa restrictions
## 9242                                             Visa restrictions
## 9243                                             Visa restrictions
## 9244                                             Visa restrictions
## 9245                                             Visa restrictions
## 9246                                             Visa restrictions
## 9247                                   State of emergency declared
## 9248                                   State of emergency declared
## 9249                                   State of emergency declared
## 9250                                   State of emergency declared
## 9251                                   State of emergency declared
## 9252                                   State of emergency declared
## 9253                                              Partial lockdown
## 9254                                              Partial lockdown
## 9255                                              Partial lockdown
## 9256                                              Partial lockdown
## 9257                                              Partial lockdown
## 9258                                              Partial lockdown
## 9259                                             Economic measures
## 9260                                             Economic measures
## 9261                                             Economic measures
## 9262                                             Economic measures
## 9263                                             Economic measures
## 9264                                             Economic measures
## 9265                     Closure of businesses and public services
## 9266                     Closure of businesses and public services
## 9267                     Closure of businesses and public services
## 9268                     Closure of businesses and public services
## 9269                     Closure of businesses and public services
## 9270                     Closure of businesses and public services
## 9271                                             Economic measures
## 9272                                             Economic measures
## 9273                                             Economic measures
## 9274                                             Economic measures
## 9275                                             Economic measures
## 9276                                             Economic measures
## 9277                         Other public health measures enforced
## 9278                         Other public health measures enforced
## 9279                         Other public health measures enforced
## 9280                         Other public health measures enforced
## 9281                         Other public health measures enforced
## 9282                         Other public health measures enforced
## 9283                                               Border closure 
## 9284                                               Border closure 
## 9285                                               Border closure 
## 9286                                               Border closure 
## 9287                                               Border closure 
## 9288                                               Border closure 
## 9289                                              Partial lockdown
## 9290                                              Partial lockdown
## 9291                                              Partial lockdown
## 9292                                              Partial lockdown
## 9293                                              Partial lockdown
## 9294                                              Partial lockdown
## 9295                                  Domestic travel restrictions
## 9296                                  Domestic travel restrictions
## 9297                                  Domestic travel restrictions
## 9298                                  Domestic travel restrictions
## 9299                                  Domestic travel restrictions
## 9300                                  Domestic travel restrictions
## 9301                                                       Curfews
## 9302                                                       Curfews
## 9303                                                       Curfews
## 9304                                                       Curfews
## 9305                                                       Curfews
## 9306                                                       Curfews
## 9307                                              Partial lockdown
## 9308                                              Partial lockdown
## 9309                                              Partial lockdown
## 9310                                              Partial lockdown
## 9311                                              Partial lockdown
## 9312                                              Partial lockdown
## 9313                                  Domestic travel restrictions
## 9314                                  Domestic travel restrictions
## 9315                                  Domestic travel restrictions
## 9316                                  Domestic travel restrictions
## 9317                                  Domestic travel restrictions
## 9318                                  Domestic travel restrictions
## 9319                                   Surveillance and monitoring
## 9320                                   Surveillance and monitoring
## 9321                                   Surveillance and monitoring
## 9322                                   Surveillance and monitoring
## 9323                                   Surveillance and monitoring
## 9324                                   Surveillance and monitoring
## 9325                             Isolation and quarantine policies
## 9326                             Isolation and quarantine policies
## 9327                             Isolation and quarantine policies
## 9328                             Isolation and quarantine policies
## 9329                             Isolation and quarantine policies
## 9330                             Isolation and quarantine policies
## 9331                         Other public health measures enforced
## 9332                         Other public health measures enforced
## 9333                         Other public health measures enforced
## 9334                         Other public health measures enforced
## 9335                         Other public health measures enforced
## 9336                         Other public health measures enforced
## 9337                                             Economic measures
## 9338                                             Economic measures
## 9339                                             Economic measures
## 9340                                             Economic measures
## 9341                                             Economic measures
## 9342                                             Economic measures
## 9343                 Requirement to wear protective gear in public
## 9344                 Requirement to wear protective gear in public
## 9345                 Requirement to wear protective gear in public
## 9346                 Requirement to wear protective gear in public
## 9347                 Requirement to wear protective gear in public
## 9348                 Requirement to wear protective gear in public
## 9349                                   Surveillance and monitoring
## 9350                                   Surveillance and monitoring
## 9351                                   Surveillance and monitoring
## 9352                                   Surveillance and monitoring
## 9353                                   Surveillance and monitoring
## 9354                                   Surveillance and monitoring
## 9355                     Closure of businesses and public services
## 9356                     Closure of businesses and public services
## 9357                     Closure of businesses and public services
## 9358                     Closure of businesses and public services
## 9359                     Closure of businesses and public services
## 9360                     Closure of businesses and public services
## 9361                     Closure of businesses and public services
## 9362                     Closure of businesses and public services
## 9363                     Closure of businesses and public services
## 9364                     Closure of businesses and public services
## 9365                     Closure of businesses and public services
## 9366                     Closure of businesses and public services
## 9367                 Requirement to wear protective gear in public
## 9368                 Requirement to wear protective gear in public
## 9369                 Requirement to wear protective gear in public
## 9370                 Requirement to wear protective gear in public
## 9371                 Requirement to wear protective gear in public
## 9372                 Requirement to wear protective gear in public
## 9373                     Closure of businesses and public services
## 9374                     Closure of businesses and public services
## 9375                     Closure of businesses and public services
## 9376                     Closure of businesses and public services
## 9377                     Closure of businesses and public services
## 9378                     Closure of businesses and public services
## 9379                                                       Curfews
## 9380                                                       Curfews
## 9381                                                       Curfews
## 9382                                                       Curfews
## 9383                                                       Curfews
## 9384                                                       Curfews
## 9385                                   State of emergency declared
## 9386                                   State of emergency declared
## 9387                                   State of emergency declared
## 9388                                   State of emergency declared
## 9389                                   State of emergency declared
## 9390                                   State of emergency declared
## 9391                                                       Curfews
## 9392                                                       Curfews
## 9393                                                       Curfews
## 9394                                                       Curfews
## 9395                                                       Curfews
## 9396                                                       Curfews
## 9397                              International flights suspension
## 9398                              International flights suspension
## 9399                              International flights suspension
## 9400                              International flights suspension
## 9401                              International flights suspension
## 9402                              International flights suspension
## 9403                                   Surveillance and monitoring
## 9404                                   Surveillance and monitoring
## 9405                                   Surveillance and monitoring
## 9406                                   Surveillance and monitoring
## 9407                                   Surveillance and monitoring
## 9408                                   Surveillance and monitoring
## 9409                                              Partial lockdown
## 9410                                              Partial lockdown
## 9411                                              Partial lockdown
## 9412                                              Partial lockdown
## 9413                                              Partial lockdown
## 9414                                              Partial lockdown
## 9415                                   State of emergency declared
## 9416                                   State of emergency declared
## 9417                                   State of emergency declared
## 9418                                   State of emergency declared
## 9419                                   State of emergency declared
## 9420                                   State of emergency declared
## 9421                                  Domestic travel restrictions
## 9422                                  Domestic travel restrictions
## 9423                                  Domestic travel restrictions
## 9424                                  Domestic travel restrictions
## 9425                                  Domestic travel restrictions
## 9426                                  Domestic travel restrictions
## 9427                 Requirement to wear protective gear in public
## 9428                 Requirement to wear protective gear in public
## 9429                 Requirement to wear protective gear in public
## 9430                 Requirement to wear protective gear in public
## 9431                 Requirement to wear protective gear in public
## 9432                 Requirement to wear protective gear in public
## 9433                     Closure of businesses and public services
## 9434                     Closure of businesses and public services
## 9435                     Closure of businesses and public services
## 9436                     Closure of businesses and public services
## 9437                     Closure of businesses and public services
## 9438                     Closure of businesses and public services
## 9439                                                       Curfews
## 9440                                                       Curfews
## 9441                                                       Curfews
## 9442                                                       Curfews
## 9443                                                       Curfews
## 9444                                                       Curfews
## 9445                                   State of emergency declared
## 9446                                   State of emergency declared
## 9447                                   State of emergency declared
## 9448                                   State of emergency declared
## 9449                                   State of emergency declared
## 9450                                   State of emergency declared
## 9451                                       Limit public gatherings
## 9452                                       Limit public gatherings
## 9453                                       Limit public gatherings
## 9454                                       Limit public gatherings
## 9455                                       Limit public gatherings
## 9456                                       Limit public gatherings
## 9457                     Closure of businesses and public services
## 9458                     Closure of businesses and public services
## 9459                     Closure of businesses and public services
## 9460                     Closure of businesses and public services
## 9461                     Closure of businesses and public services
## 9462                     Closure of businesses and public services
## 9463                                                       Curfews
## 9464                                                       Curfews
## 9465                                                       Curfews
## 9466                                                       Curfews
## 9467                                                       Curfews
## 9468                                                       Curfews
## 9469                              International flights suspension
## 9470                              International flights suspension
## 9471                              International flights suspension
## 9472                              International flights suspension
## 9473                              International flights suspension
## 9474                              International flights suspension
## 9475                 Requirement to wear protective gear in public
## 9476                 Requirement to wear protective gear in public
## 9477                 Requirement to wear protective gear in public
## 9478                 Requirement to wear protective gear in public
## 9479                 Requirement to wear protective gear in public
## 9480                 Requirement to wear protective gear in public
## 9481         Additional health/documents requirements upon arrival
## 9482         Additional health/documents requirements upon arrival
## 9483         Additional health/documents requirements upon arrival
## 9484         Additional health/documents requirements upon arrival
## 9485         Additional health/documents requirements upon arrival
## 9486         Additional health/documents requirements upon arrival
## 9487                                   Surveillance and monitoring
## 9488                                   Surveillance and monitoring
## 9489                                   Surveillance and monitoring
## 9490                                   Surveillance and monitoring
## 9491                                   Surveillance and monitoring
## 9492                                   Surveillance and monitoring
## 9493                                                Testing policy
## 9494                                                Testing policy
## 9495                                                Testing policy
## 9496                                                Testing policy
## 9497                                                Testing policy
## 9498                                                Testing policy
## 9499                                                Testing policy
## 9500                                                Testing policy
## 9501                                                Testing policy
## 9502                                                Testing policy
## 9503                                                Testing policy
## 9504                                                Testing policy
## 9505                             Isolation and quarantine policies
## 9506                             Isolation and quarantine policies
## 9507                             Isolation and quarantine policies
## 9508                             Isolation and quarantine policies
## 9509                             Isolation and quarantine policies
## 9510                             Isolation and quarantine policies
## 9511                             Isolation and quarantine policies
## 9512                             Isolation and quarantine policies
## 9513                             Isolation and quarantine policies
## 9514                             Isolation and quarantine policies
## 9515                             Isolation and quarantine policies
## 9516                             Isolation and quarantine policies
## 9517            Health screenings in airports and border crossings
## 9518            Health screenings in airports and border crossings
## 9519            Health screenings in airports and border crossings
## 9520            Health screenings in airports and border crossings
## 9521            Health screenings in airports and border crossings
## 9522            Health screenings in airports and border crossings
## 9523                                               Border closure 
## 9524                                               Border closure 
## 9525                                               Border closure 
## 9526                                               Border closure 
## 9527                                               Border closure 
## 9528                                               Border closure 
## 9529                                             Visa restrictions
## 9530                                             Visa restrictions
## 9531                                             Visa restrictions
## 9532                                             Visa restrictions
## 9533                                             Visa restrictions
## 9534                                             Visa restrictions
## 9535                             Isolation and quarantine policies
## 9536                             Isolation and quarantine policies
## 9537                             Isolation and quarantine policies
## 9538                             Isolation and quarantine policies
## 9539                             Isolation and quarantine policies
## 9540                             Isolation and quarantine policies
## 9541                                       Limit public gatherings
## 9542                                       Limit public gatherings
## 9543                                       Limit public gatherings
## 9544                                       Limit public gatherings
## 9545                                       Limit public gatherings
## 9546                                       Limit public gatherings
## 9547                                       Limit public gatherings
## 9548                                       Limit public gatherings
## 9549                                       Limit public gatherings
## 9550                                       Limit public gatherings
## 9551                                       Limit public gatherings
## 9552                                       Limit public gatherings
## 9553                                             Economic measures
## 9554                                             Economic measures
## 9555                                             Economic measures
## 9556                                             Economic measures
## 9557                                             Economic measures
## 9558                                             Economic measures
## 9559                                  Domestic travel restrictions
## 9560                                  Domestic travel restrictions
## 9561                                  Domestic travel restrictions
## 9562                                  Domestic travel restrictions
## 9563                                  Domestic travel restrictions
## 9564                                  Domestic travel restrictions
## 9565                                              Schools closure 
## 9566                                              Schools closure 
## 9567                                              Schools closure 
## 9568                                              Schools closure 
## 9569                                              Schools closure 
## 9570                                              Schools closure 
## 9571                                             Visa restrictions
## 9572                                             Visa restrictions
## 9573                                             Visa restrictions
## 9574                                             Visa restrictions
## 9575                                             Visa restrictions
## 9576                                             Visa restrictions
## 9577            Health screenings in airports and border crossings
## 9578            Health screenings in airports and border crossings
## 9579            Health screenings in airports and border crossings
## 9580            Health screenings in airports and border crossings
## 9581            Health screenings in airports and border crossings
## 9582            Health screenings in airports and border crossings
## 9583                                           Military deployment
## 9584                                           Military deployment
## 9585                                           Military deployment
## 9586                                           Military deployment
## 9587                                           Military deployment
## 9588                                           Military deployment
## 9589                                  Domestic travel restrictions
## 9590                                  Domestic travel restrictions
## 9591                                  Domestic travel restrictions
## 9592                                  Domestic travel restrictions
## 9593                                  Domestic travel restrictions
## 9594                                  Domestic travel restrictions
## 9595                                       Limit public gatherings
## 9596                                       Limit public gatherings
## 9597                                       Limit public gatherings
## 9598                                       Limit public gatherings
## 9599                                       Limit public gatherings
## 9600                                       Limit public gatherings
## 9601                 Requirement to wear protective gear in public
## 9602                 Requirement to wear protective gear in public
## 9603                 Requirement to wear protective gear in public
## 9604                 Requirement to wear protective gear in public
## 9605                 Requirement to wear protective gear in public
## 9606                 Requirement to wear protective gear in public
## 9607                                       General recommendations
## 9608                                       General recommendations
## 9609                                       General recommendations
## 9610                                       General recommendations
## 9611                                       General recommendations
## 9612                                       General recommendations
## 9613                                       Limit public gatherings
## 9614                                       Limit public gatherings
## 9615                                       Limit public gatherings
## 9616                                       Limit public gatherings
## 9617                                       Limit public gatherings
## 9618                                       Limit public gatherings
## 9619                                             Economic measures
## 9620                                             Economic measures
## 9621                                             Economic measures
## 9622                                             Economic measures
## 9623                                             Economic measures
## 9624                                             Economic measures
## 9625                                  Domestic travel restrictions
## 9626                                  Domestic travel restrictions
## 9627                                  Domestic travel restrictions
## 9628                                  Domestic travel restrictions
## 9629                                  Domestic travel restrictions
## 9630                                  Domestic travel restrictions
## 9631                                               Border closure 
## 9632                                               Border closure 
## 9633                                               Border closure 
## 9634                                               Border closure 
## 9635                                               Border closure 
## 9636                                               Border closure 
## 9637                                             Visa restrictions
## 9638                                             Visa restrictions
## 9639                                             Visa restrictions
## 9640                                             Visa restrictions
## 9641                                             Visa restrictions
## 9642                                             Visa restrictions
## 9643                                       Limit public gatherings
## 9644                                       Limit public gatherings
## 9645                                       Limit public gatherings
## 9646                                       Limit public gatherings
## 9647                                       Limit public gatherings
## 9648                                       Limit public gatherings
## 9649                                                Testing policy
## 9650                                                Testing policy
## 9651                                                Testing policy
## 9652                                                Testing policy
## 9653                                                Testing policy
## 9654                                                Testing policy
## 9655                         Other public health measures enforced
## 9656                         Other public health measures enforced
## 9657                         Other public health measures enforced
## 9658                         Other public health measures enforced
## 9659                         Other public health measures enforced
## 9660                         Other public health measures enforced
## 9661                 Requirement to wear protective gear in public
## 9662                 Requirement to wear protective gear in public
## 9663                 Requirement to wear protective gear in public
## 9664                 Requirement to wear protective gear in public
## 9665                 Requirement to wear protective gear in public
## 9666                 Requirement to wear protective gear in public
## 9667                                  Domestic travel restrictions
## 9668                                  Domestic travel restrictions
## 9669                                  Domestic travel restrictions
## 9670                                  Domestic travel restrictions
## 9671                                  Domestic travel restrictions
## 9672                                  Domestic travel restrictions
## 9673                                                Testing policy
## 9674                                                Testing policy
## 9675                                                Testing policy
## 9676                                                Testing policy
## 9677                                                Testing policy
## 9678                                                Testing policy
## 9679                        Strengthening the public health system
## 9680                        Strengthening the public health system
## 9681                        Strengthening the public health system
## 9682                        Strengthening the public health system
## 9683                        Strengthening the public health system
## 9684                        Strengthening the public health system
## 9685                                              Schools closure 
## 9686                                              Schools closure 
## 9687                                              Schools closure 
## 9688                                              Schools closure 
## 9689                                              Schools closure 
## 9690                                              Schools closure 
## 9691            Health screenings in airports and border crossings
## 9692            Health screenings in airports and border crossings
## 9693            Health screenings in airports and border crossings
## 9694            Health screenings in airports and border crossings
## 9695            Health screenings in airports and border crossings
## 9696            Health screenings in airports and border crossings
## 9697                                  Domestic travel restrictions
## 9698                                  Domestic travel restrictions
## 9699                                  Domestic travel restrictions
## 9700                                  Domestic travel restrictions
## 9701                                  Domestic travel restrictions
## 9702                                  Domestic travel restrictions
## 9703                                              Schools closure 
## 9704                                              Schools closure 
## 9705                                              Schools closure 
## 9706                                              Schools closure 
## 9707                                              Schools closure 
## 9708                                              Schools closure 
## 9709                                              Schools closure 
## 9710                                              Schools closure 
## 9711                                              Schools closure 
## 9712                                              Schools closure 
## 9713                                              Schools closure 
## 9714                                              Schools closure 
## 9715                                              Schools closure 
## 9716                                              Schools closure 
## 9717                                              Schools closure 
## 9718                                              Schools closure 
## 9719                                              Schools closure 
## 9720                                              Schools closure 
## 9721                                                Testing policy
## 9722                                                Testing policy
## 9723                                                Testing policy
## 9724                                                Testing policy
## 9725                                                Testing policy
## 9726                                                Testing policy
## 9727                                             Economic measures
## 9728                                             Economic measures
## 9729                                             Economic measures
## 9730                                             Economic measures
## 9731                                             Economic measures
## 9732                                             Economic measures
## 9733                 Requirement to wear protective gear in public
## 9734                 Requirement to wear protective gear in public
## 9735                 Requirement to wear protective gear in public
## 9736                 Requirement to wear protective gear in public
## 9737                 Requirement to wear protective gear in public
## 9738                 Requirement to wear protective gear in public
## 9739                         Other public health measures enforced
## 9740                         Other public health measures enforced
## 9741                         Other public health measures enforced
## 9742                         Other public health measures enforced
## 9743                         Other public health measures enforced
## 9744                         Other public health measures enforced
## 9745                     Closure of businesses and public services
## 9746                     Closure of businesses and public services
## 9747                     Closure of businesses and public services
## 9748                     Closure of businesses and public services
## 9749                     Closure of businesses and public services
## 9750                     Closure of businesses and public services
## 9751                                  Domestic travel restrictions
## 9752                                  Domestic travel restrictions
## 9753                                  Domestic travel restrictions
## 9754                                  Domestic travel restrictions
## 9755                                  Domestic travel restrictions
## 9756                                  Domestic travel restrictions
## 9757                  Amendments to funeral and burial regulations
## 9758                  Amendments to funeral and burial regulations
## 9759                  Amendments to funeral and burial regulations
## 9760                  Amendments to funeral and burial regulations
## 9761                  Amendments to funeral and burial regulations
## 9762                  Amendments to funeral and burial regulations
## 9763                                       Limit public gatherings
## 9764                                       Limit public gatherings
## 9765                                       Limit public gatherings
## 9766                                       Limit public gatherings
## 9767                                       Limit public gatherings
## 9768                                       Limit public gatherings
## 9769            Health screenings in airports and border crossings
## 9770            Health screenings in airports and border crossings
## 9771            Health screenings in airports and border crossings
## 9772            Health screenings in airports and border crossings
## 9773            Health screenings in airports and border crossings
## 9774            Health screenings in airports and border crossings
## 9775                             Isolation and quarantine policies
## 9776                             Isolation and quarantine policies
## 9777                             Isolation and quarantine policies
## 9778                             Isolation and quarantine policies
## 9779                             Isolation and quarantine policies
## 9780                             Isolation and quarantine policies
## 9781                                             Economic measures
## 9782                                             Economic measures
## 9783                                             Economic measures
## 9784                                             Economic measures
## 9785                                             Economic measures
## 9786                                             Economic measures
## 9787                                   Surveillance and monitoring
## 9788                                   Surveillance and monitoring
## 9789                                   Surveillance and monitoring
## 9790                                   Surveillance and monitoring
## 9791                                   Surveillance and monitoring
## 9792                                   Surveillance and monitoring
## 9793                                                Testing policy
## 9794                                                Testing policy
## 9795                                                Testing policy
## 9796                                                Testing policy
## 9797                                                Testing policy
## 9798                                                Testing policy
## 9799                        Strengthening the public health system
## 9800                        Strengthening the public health system
## 9801                        Strengthening the public health system
## 9802                        Strengthening the public health system
## 9803                        Strengthening the public health system
## 9804                        Strengthening the public health system
## 9805                                             Economic measures
## 9806                                             Economic measures
## 9807                                             Economic measures
## 9808                                             Economic measures
## 9809                                             Economic measures
## 9810                                             Economic measures
## 9811                 Requirement to wear protective gear in public
## 9812                 Requirement to wear protective gear in public
## 9813                 Requirement to wear protective gear in public
## 9814                 Requirement to wear protective gear in public
## 9815                 Requirement to wear protective gear in public
## 9816                 Requirement to wear protective gear in public
## 9817                                  Domestic travel restrictions
## 9818                                  Domestic travel restrictions
## 9819                                  Domestic travel restrictions
## 9820                                  Domestic travel restrictions
## 9821                                  Domestic travel restrictions
## 9822                                  Domestic travel restrictions
## 9823                     Closure of businesses and public services
## 9824                     Closure of businesses and public services
## 9825                     Closure of businesses and public services
## 9826                     Closure of businesses and public services
## 9827                     Closure of businesses and public services
## 9828                     Closure of businesses and public services
## 9829            Health screenings in airports and border crossings
## 9830            Health screenings in airports and border crossings
## 9831            Health screenings in airports and border crossings
## 9832            Health screenings in airports and border crossings
## 9833            Health screenings in airports and border crossings
## 9834            Health screenings in airports and border crossings
## 9835                             Isolation and quarantine policies
## 9836                             Isolation and quarantine policies
## 9837                             Isolation and quarantine policies
## 9838                             Isolation and quarantine policies
## 9839                             Isolation and quarantine policies
## 9840                             Isolation and quarantine policies
## 9841                                             Economic measures
## 9842                                             Economic measures
## 9843                                             Economic measures
## 9844                                             Economic measures
## 9845                                             Economic measures
## 9846                                             Economic measures
## 9847                 Requirement to wear protective gear in public
## 9848                 Requirement to wear protective gear in public
## 9849                 Requirement to wear protective gear in public
## 9850                 Requirement to wear protective gear in public
## 9851                 Requirement to wear protective gear in public
## 9852                 Requirement to wear protective gear in public
## 9853                                       General recommendations
## 9854                                       General recommendations
## 9855                                       General recommendations
## 9856                                       General recommendations
## 9857                                       General recommendations
## 9858                                       General recommendations
## 9859                                  Domestic travel restrictions
## 9860                                  Domestic travel restrictions
## 9861                                  Domestic travel restrictions
## 9862                                  Domestic travel restrictions
## 9863                                  Domestic travel restrictions
## 9864                                  Domestic travel restrictions
## 9865                                   Surveillance and monitoring
## 9866                                   Surveillance and monitoring
## 9867                                   Surveillance and monitoring
## 9868                                   Surveillance and monitoring
## 9869                                   Surveillance and monitoring
## 9870                                   Surveillance and monitoring
## 9871                                       General recommendations
## 9872                                       General recommendations
## 9873                                       General recommendations
## 9874                                       General recommendations
## 9875                                       General recommendations
## 9876                                       General recommendations
## 9877         Additional health/documents requirements upon arrival
## 9878         Additional health/documents requirements upon arrival
## 9879         Additional health/documents requirements upon arrival
## 9880         Additional health/documents requirements upon arrival
## 9881         Additional health/documents requirements upon arrival
## 9882         Additional health/documents requirements upon arrival
## 9883                                              Schools closure 
## 9884                                              Schools closure 
## 9885                                              Schools closure 
## 9886                                              Schools closure 
## 9887                                              Schools closure 
## 9888                                              Schools closure 
## 9889                              International flights suspension
## 9890                              International flights suspension
## 9891                              International flights suspension
## 9892                              International flights suspension
## 9893                              International flights suspension
## 9894                              International flights suspension
## 9895                        Strengthening the public health system
## 9896                        Strengthening the public health system
## 9897                        Strengthening the public health system
## 9898                        Strengthening the public health system
## 9899                        Strengthening the public health system
## 9900                        Strengthening the public health system
## 9901                         Other public health measures enforced
## 9902                         Other public health measures enforced
## 9903                         Other public health measures enforced
## 9904                         Other public health measures enforced
## 9905                         Other public health measures enforced
## 9906                         Other public health measures enforced
## 9907                                              Schools closure 
## 9908                                              Schools closure 
## 9909                                              Schools closure 
## 9910                                              Schools closure 
## 9911                                              Schools closure 
## 9912                                              Schools closure 
## 9913         Additional health/documents requirements upon arrival
## 9914         Additional health/documents requirements upon arrival
## 9915         Additional health/documents requirements upon arrival
## 9916         Additional health/documents requirements upon arrival
## 9917         Additional health/documents requirements upon arrival
## 9918         Additional health/documents requirements upon arrival
## 9919                             Isolation and quarantine policies
## 9920                             Isolation and quarantine policies
## 9921                             Isolation and quarantine policies
## 9922                             Isolation and quarantine policies
## 9923                             Isolation and quarantine policies
## 9924                             Isolation and quarantine policies
## 9925                                       Limit public gatherings
## 9926                                       Limit public gatherings
## 9927                                       Limit public gatherings
## 9928                                       Limit public gatherings
## 9929                                       Limit public gatherings
## 9930                                       Limit public gatherings
## 9931                        Strengthening the public health system
## 9932                        Strengthening the public health system
## 9933                        Strengthening the public health system
## 9934                        Strengthening the public health system
## 9935                        Strengthening the public health system
## 9936                        Strengthening the public health system
## 9937                                               Border closure 
## 9938                                               Border closure 
## 9939                                               Border closure 
## 9940                                               Border closure 
## 9941                                               Border closure 
## 9942                                               Border closure 
## 9943                             Isolation and quarantine policies
## 9944                             Isolation and quarantine policies
## 9945                             Isolation and quarantine policies
## 9946                             Isolation and quarantine policies
## 9947                             Isolation and quarantine policies
## 9948                             Isolation and quarantine policies
## 9949                             Isolation and quarantine policies
## 9950                             Isolation and quarantine policies
## 9951                             Isolation and quarantine policies
## 9952                             Isolation and quarantine policies
## 9953                             Isolation and quarantine policies
## 9954                             Isolation and quarantine policies
## 9955                             Isolation and quarantine policies
## 9956                             Isolation and quarantine policies
## 9957                             Isolation and quarantine policies
## 9958                             Isolation and quarantine policies
## 9959                             Isolation and quarantine policies
## 9960                             Isolation and quarantine policies
## 9961            Health screenings in airports and border crossings
## 9962            Health screenings in airports and border crossings
## 9963            Health screenings in airports and border crossings
## 9964            Health screenings in airports and border crossings
## 9965            Health screenings in airports and border crossings
## 9966            Health screenings in airports and border crossings
## 9967                        Strengthening the public health system
## 9968                        Strengthening the public health system
## 9969                        Strengthening the public health system
## 9970                        Strengthening the public health system
## 9971                        Strengthening the public health system
## 9972                        Strengthening the public health system
## 9973  Emergency administrative structures activated or established
## 9974  Emergency administrative structures activated or established
## 9975  Emergency administrative structures activated or established
## 9976  Emergency administrative structures activated or established
## 9977  Emergency administrative structures activated or established
## 9978  Emergency administrative structures activated or established
## 9979                             Isolation and quarantine policies
## 9980                             Isolation and quarantine policies
## 9981                             Isolation and quarantine policies
## 9982                             Isolation and quarantine policies
## 9983                             Isolation and quarantine policies
## 9984                             Isolation and quarantine policies
## 9985                                   Surveillance and monitoring
## 9986                                   Surveillance and monitoring
## 9987                                   Surveillance and monitoring
## 9988                                   Surveillance and monitoring
## 9989                                   Surveillance and monitoring
## 9990                                   Surveillance and monitoring
## 9991                                   Surveillance and monitoring
## 9992                                   Surveillance and monitoring
## 9993                                   Surveillance and monitoring
## 9994                                   Surveillance and monitoring
## 9995                                   Surveillance and monitoring
## 9996                                   Surveillance and monitoring
## 9997                                       General recommendations
## 9998                                       General recommendations
## 9999                                       General recommendations
## 10000                                      General recommendations
## 10001                                      General recommendations
## 10002                                      General recommendations
## 10003                                  Surveillance and monitoring
## 10004                                  Surveillance and monitoring
## 10005                                  Surveillance and monitoring
## 10006                                  Surveillance and monitoring
## 10007                                  Surveillance and monitoring
## 10008                                  Surveillance and monitoring
## 10009                                  Surveillance and monitoring
## 10010                                  Surveillance and monitoring
## 10011                                  Surveillance and monitoring
## 10012                                  Surveillance and monitoring
## 10013                                  Surveillance and monitoring
## 10014                                  Surveillance and monitoring
## 10015                            Isolation and quarantine policies
## 10016                            Isolation and quarantine policies
## 10017                            Isolation and quarantine policies
## 10018                            Isolation and quarantine policies
## 10019                            Isolation and quarantine policies
## 10020                            Isolation and quarantine policies
## 10021                       Strengthening the public health system
## 10022                       Strengthening the public health system
## 10023                       Strengthening the public health system
## 10024                       Strengthening the public health system
## 10025                       Strengthening the public health system
## 10026                       Strengthening the public health system
## 10027                                                      Curfews
## 10028                                                      Curfews
## 10029                                                      Curfews
## 10030                                                      Curfews
## 10031                                                      Curfews
## 10032                                                      Curfews
## 10033 Emergency administrative structures activated or established
## 10034 Emergency administrative structures activated or established
## 10035 Emergency administrative structures activated or established
## 10036 Emergency administrative structures activated or established
## 10037 Emergency administrative structures activated or established
## 10038 Emergency administrative structures activated or established
## 10039                                               Testing policy
## 10040                                               Testing policy
## 10041                                               Testing policy
## 10042                                               Testing policy
## 10043                                               Testing policy
## 10044                                               Testing policy
## 10045                       Strengthening the public health system
## 10046                       Strengthening the public health system
## 10047                       Strengthening the public health system
## 10048                       Strengthening the public health system
## 10049                       Strengthening the public health system
## 10050                       Strengthening the public health system
## 10051                                             Partial lockdown
## 10052                                             Partial lockdown
## 10053                                             Partial lockdown
## 10054                                             Partial lockdown
## 10055                                             Partial lockdown
## 10056                                             Partial lockdown
## 10057           Health screenings in airports and border crossings
## 10058           Health screenings in airports and border crossings
## 10059           Health screenings in airports and border crossings
## 10060           Health screenings in airports and border crossings
## 10061           Health screenings in airports and border crossings
## 10062           Health screenings in airports and border crossings
## 10063                            Isolation and quarantine policies
## 10064                            Isolation and quarantine policies
## 10065                            Isolation and quarantine policies
## 10066                            Isolation and quarantine policies
## 10067                            Isolation and quarantine policies
## 10068                            Isolation and quarantine policies
## 10069                Requirement to wear protective gear in public
## 10070                Requirement to wear protective gear in public
## 10071                Requirement to wear protective gear in public
## 10072                Requirement to wear protective gear in public
## 10073                Requirement to wear protective gear in public
## 10074                Requirement to wear protective gear in public
## 10075                                               Testing policy
## 10076                                               Testing policy
## 10077                                               Testing policy
## 10078                                               Testing policy
## 10079                                               Testing policy
## 10080                                               Testing policy
## 10081                               Checkpoints within the country
## 10082                               Checkpoints within the country
## 10083                               Checkpoints within the country
## 10084                               Checkpoints within the country
## 10085                               Checkpoints within the country
## 10086                               Checkpoints within the country
## 10087        Additional health/documents requirements upon arrival
## 10088        Additional health/documents requirements upon arrival
## 10089        Additional health/documents requirements upon arrival
## 10090        Additional health/documents requirements upon arrival
## 10091        Additional health/documents requirements upon arrival
## 10092        Additional health/documents requirements upon arrival
## 10093                       Strengthening the public health system
## 10094                       Strengthening the public health system
## 10095                       Strengthening the public health system
## 10096                       Strengthening the public health system
## 10097                       Strengthening the public health system
## 10098                       Strengthening the public health system
## 10099                             International flights suspension
## 10100                             International flights suspension
## 10101                             International flights suspension
## 10102                             International flights suspension
## 10103                             International flights suspension
## 10104                             International flights suspension
## 10105           Health screenings in airports and border crossings
## 10106           Health screenings in airports and border crossings
## 10107           Health screenings in airports and border crossings
## 10108           Health screenings in airports and border crossings
## 10109           Health screenings in airports and border crossings
## 10110           Health screenings in airports and border crossings
## 10111                                      Limit public gatherings
## 10112                                      Limit public gatherings
## 10113                                      Limit public gatherings
## 10114                                      Limit public gatherings
## 10115                                      Limit public gatherings
## 10116                                      Limit public gatherings
## 10117                                              Border closure 
## 10118                                              Border closure 
## 10119                                              Border closure 
## 10120                                              Border closure 
## 10121                                              Border closure 
## 10122                                              Border closure 
## 10123                             International flights suspension
## 10124                             International flights suspension
## 10125                             International flights suspension
## 10126                             International flights suspension
## 10127                             International flights suspension
## 10128                             International flights suspension
## 10129                                 Domestic travel restrictions
## 10130                                 Domestic travel restrictions
## 10131                                 Domestic travel restrictions
## 10132                                 Domestic travel restrictions
## 10133                                 Domestic travel restrictions
## 10134                                 Domestic travel restrictions
## 10135                                                      Curfews
## 10136                                                      Curfews
## 10137                                                      Curfews
## 10138                                                      Curfews
## 10139                                                      Curfews
## 10140                                                      Curfews
## 10141                                             Partial lockdown
## 10142                                             Partial lockdown
## 10143                                             Partial lockdown
## 10144                                             Partial lockdown
## 10145                                             Partial lockdown
## 10146                                             Partial lockdown
## 10147                    Closure of businesses and public services
## 10148                    Closure of businesses and public services
## 10149                    Closure of businesses and public services
## 10150                    Closure of businesses and public services
## 10151                    Closure of businesses and public services
## 10152                    Closure of businesses and public services
## 10153                                      Limit public gatherings
## 10154                                      Limit public gatherings
## 10155                                      Limit public gatherings
## 10156                                      Limit public gatherings
## 10157                                      Limit public gatherings
## 10158                                      Limit public gatherings
## 10159                                          Military deployment
## 10160                                          Military deployment
## 10161                                          Military deployment
## 10162                                          Military deployment
## 10163                                          Military deployment
## 10164                                          Military deployment
## 10165                                      Limit public gatherings
## 10166                                      Limit public gatherings
## 10167                                      Limit public gatherings
## 10168                                      Limit public gatherings
## 10169                                      Limit public gatherings
## 10170                                      Limit public gatherings
## 10171                                                      Curfews
## 10172                                                      Curfews
## 10173                                                      Curfews
## 10174                                                      Curfews
## 10175                                                      Curfews
## 10176                                                      Curfews
## 10177                                  State of emergency declared
## 10178                                  State of emergency declared
## 10179                                  State of emergency declared
## 10180                                  State of emergency declared
## 10181                                  State of emergency declared
## 10182                                  State of emergency declared
## 10183 Emergency administrative structures activated or established
## 10184 Emergency administrative structures activated or established
## 10185 Emergency administrative structures activated or established
## 10186 Emergency administrative structures activated or established
## 10187 Emergency administrative structures activated or established
## 10188 Emergency administrative structures activated or established
## 10189                                            Economic measures
## 10190                                            Economic measures
## 10191                                            Economic measures
## 10192                                            Economic measures
## 10193                                            Economic measures
## 10194                                            Economic measures
## 10195                                            Economic measures
## 10196                                            Economic measures
## 10197                                            Economic measures
## 10198                                            Economic measures
## 10199                                            Economic measures
## 10200                                            Economic measures
## 10201                                            Economic measures
## 10202                                            Economic measures
## 10203                                            Economic measures
## 10204                                            Economic measures
## 10205                                            Economic measures
## 10206                                            Economic measures
## 10207                                             Partial lockdown
## 10208                                             Partial lockdown
## 10209                                             Partial lockdown
## 10210                                             Partial lockdown
## 10211                                             Partial lockdown
## 10212                                             Partial lockdown
## 10213                                 Domestic travel restrictions
## 10214                                 Domestic travel restrictions
## 10215                                 Domestic travel restrictions
## 10216                                 Domestic travel restrictions
## 10217                                 Domestic travel restrictions
## 10218                                 Domestic travel restrictions
## 10219                                  Surveillance and monitoring
## 10220                                  Surveillance and monitoring
## 10221                                  Surveillance and monitoring
## 10222                                  Surveillance and monitoring
## 10223                                  Surveillance and monitoring
## 10224                                  Surveillance and monitoring
## 10225                                            Economic measures
## 10226                                            Economic measures
## 10227                                            Economic measures
## 10228                                            Economic measures
## 10229                                            Economic measures
## 10230                                            Economic measures
## 10231                                             Partial lockdown
## 10232                                             Partial lockdown
## 10233                                             Partial lockdown
## 10234                                             Partial lockdown
## 10235                                             Partial lockdown
## 10236                                             Partial lockdown
## 10237                                          Military deployment
## 10238                                          Military deployment
## 10239                                          Military deployment
## 10240                                          Military deployment
## 10241                                          Military deployment
## 10242                                          Military deployment
## 10243                                             Partial lockdown
## 10244                                             Partial lockdown
## 10245                                             Partial lockdown
## 10246                                             Partial lockdown
## 10247                                             Partial lockdown
## 10248                                             Partial lockdown
## 10249                                            Economic measures
## 10250                                            Economic measures
## 10251                                            Economic measures
## 10252                                            Economic measures
## 10253                                            Economic measures
## 10254                                            Economic measures
## 10255                       Strengthening the public health system
## 10256                       Strengthening the public health system
## 10257                       Strengthening the public health system
## 10258                       Strengthening the public health system
## 10259                       Strengthening the public health system
## 10260                       Strengthening the public health system
## 10261                                 Domestic travel restrictions
## 10262                                 Domestic travel restrictions
## 10263                                 Domestic travel restrictions
## 10264                                 Domestic travel restrictions
## 10265                                 Domestic travel restrictions
## 10266                                 Domestic travel restrictions
## 10267                                            Economic measures
## 10268                                            Economic measures
## 10269                                            Economic measures
## 10270                                            Economic measures
## 10271                                            Economic measures
## 10272                                            Economic measures
## 10273                       Strengthening the public health system
## 10274                       Strengthening the public health system
## 10275                       Strengthening the public health system
## 10276                       Strengthening the public health system
## 10277                       Strengthening the public health system
## 10278                       Strengthening the public health system
## 10279                                             Partial lockdown
## 10280                                             Partial lockdown
## 10281                                             Partial lockdown
## 10282                                             Partial lockdown
## 10283                                             Partial lockdown
## 10284                                             Partial lockdown
## 10285                                              Border closure 
## 10286                                              Border closure 
## 10287                                              Border closure 
## 10288                                              Border closure 
## 10289                                              Border closure 
## 10290                                              Border closure 
## 10291                             International flights suspension
## 10292                             International flights suspension
## 10293                             International flights suspension
## 10294                             International flights suspension
## 10295                             International flights suspension
## 10296                             International flights suspension
## 10297                                 Domestic travel restrictions
## 10298                                 Domestic travel restrictions
## 10299                                 Domestic travel restrictions
## 10300                                 Domestic travel restrictions
## 10301                                 Domestic travel restrictions
## 10302                                 Domestic travel restrictions
## 10303                                            Economic measures
## 10304                                            Economic measures
## 10305                                            Economic measures
## 10306                                            Economic measures
## 10307                                            Economic measures
## 10308                                            Economic measures
## 10309                           Changes in prison-related policies
## 10310                           Changes in prison-related policies
## 10311                           Changes in prison-related policies
## 10312                           Changes in prison-related policies
## 10313                           Changes in prison-related policies
## 10314                           Changes in prison-related policies
## 10315                                             Partial lockdown
## 10316                                             Partial lockdown
## 10317                                             Partial lockdown
## 10318                                             Partial lockdown
## 10319                                             Partial lockdown
## 10320                                             Partial lockdown
## 10321                                             Partial lockdown
## 10322                                             Partial lockdown
## 10323                                             Partial lockdown
## 10324                                             Partial lockdown
## 10325                                             Partial lockdown
## 10326                                             Partial lockdown
## 10327                                 Domestic travel restrictions
## 10328                                 Domestic travel restrictions
## 10329                                 Domestic travel restrictions
## 10330                                 Domestic travel restrictions
## 10331                                 Domestic travel restrictions
## 10332                                 Domestic travel restrictions
## 10333                                             Partial lockdown
## 10334                                             Partial lockdown
## 10335                                             Partial lockdown
## 10336                                             Partial lockdown
## 10337                                             Partial lockdown
## 10338                                             Partial lockdown
## 10339                                 Domestic travel restrictions
## 10340                                 Domestic travel restrictions
## 10341                                 Domestic travel restrictions
## 10342                                 Domestic travel restrictions
## 10343                                 Domestic travel restrictions
## 10344                                 Domestic travel restrictions
## 10345                                                      Curfews
## 10346                                                      Curfews
## 10347                                                      Curfews
## 10348                                                      Curfews
## 10349                                                      Curfews
## 10350                                                      Curfews
## 10351                                             Partial lockdown
## 10352                                             Partial lockdown
## 10353                                             Partial lockdown
## 10354                                             Partial lockdown
## 10355                                             Partial lockdown
## 10356                                             Partial lockdown
## 10357                                 Domestic travel restrictions
## 10358                                 Domestic travel restrictions
## 10359                                 Domestic travel restrictions
## 10360                                 Domestic travel restrictions
## 10361                                 Domestic travel restrictions
## 10362                                 Domestic travel restrictions
## 10363                                                      Curfews
## 10364                                                      Curfews
## 10365                                                      Curfews
## 10366                                                      Curfews
## 10367                                                      Curfews
## 10368                                                      Curfews
## 10369                Requirement to wear protective gear in public
## 10370                Requirement to wear protective gear in public
## 10371                Requirement to wear protective gear in public
## 10372                Requirement to wear protective gear in public
## 10373                Requirement to wear protective gear in public
## 10374                Requirement to wear protective gear in public
## 10375                                      Limit public gatherings
## 10376                                      Limit public gatherings
## 10377                                      Limit public gatherings
## 10378                                      Limit public gatherings
## 10379                                      Limit public gatherings
## 10380                                      Limit public gatherings
## 10381                    Closure of businesses and public services
## 10382                    Closure of businesses and public services
## 10383                    Closure of businesses and public services
## 10384                    Closure of businesses and public services
## 10385                    Closure of businesses and public services
## 10386                    Closure of businesses and public services
## 10387                                             Partial lockdown
## 10388                                             Partial lockdown
## 10389                                             Partial lockdown
## 10390                                             Partial lockdown
## 10391                                             Partial lockdown
## 10392                                             Partial lockdown
## 10393                                      Limit public gatherings
## 10394                                      Limit public gatherings
## 10395                                      Limit public gatherings
## 10396                                      Limit public gatherings
## 10397                                      Limit public gatherings
## 10398                                      Limit public gatherings
## 10399                                                      Curfews
## 10400                                                      Curfews
## 10401                                                      Curfews
## 10402                                                      Curfews
## 10403                                                      Curfews
## 10404                                                      Curfews
## 10405                            Isolation and quarantine policies
## 10406                            Isolation and quarantine policies
## 10407                            Isolation and quarantine policies
## 10408                            Isolation and quarantine policies
## 10409                            Isolation and quarantine policies
## 10410                            Isolation and quarantine policies
## 10411                                 Domestic travel restrictions
## 10412                                 Domestic travel restrictions
## 10413                                 Domestic travel restrictions
## 10414                                 Domestic travel restrictions
## 10415                                 Domestic travel restrictions
## 10416                                 Domestic travel restrictions
## 10417                                 Domestic travel restrictions
## 10418                                 Domestic travel restrictions
## 10419                                 Domestic travel restrictions
## 10420                                 Domestic travel restrictions
## 10421                                 Domestic travel restrictions
## 10422                                 Domestic travel restrictions
## 10423                                             Partial lockdown
## 10424                                             Partial lockdown
## 10425                                             Partial lockdown
## 10426                                             Partial lockdown
## 10427                                             Partial lockdown
## 10428                                             Partial lockdown
## 10429                                              Border closure 
## 10430                                              Border closure 
## 10431                                              Border closure 
## 10432                                              Border closure 
## 10433                                              Border closure 
## 10434                                              Border closure 
## 10435                             International flights suspension
## 10436                             International flights suspension
## 10437                             International flights suspension
## 10438                             International flights suspension
## 10439                             International flights suspension
## 10440                             International flights suspension
## 10441                                             Partial lockdown
## 10442                                             Partial lockdown
## 10443                                             Partial lockdown
## 10444                                             Partial lockdown
## 10445                                             Partial lockdown
## 10446                                             Partial lockdown
## 10447                                             Partial lockdown
## 10448                                             Partial lockdown
## 10449                                             Partial lockdown
## 10450                                             Partial lockdown
## 10451                                             Partial lockdown
## 10452                                             Partial lockdown
## 10453                                             Partial lockdown
## 10454                                             Partial lockdown
## 10455                                             Partial lockdown
## 10456                                             Partial lockdown
## 10457                                             Partial lockdown
## 10458                                             Partial lockdown
## 10459                                                Full lockdown
## 10460                                                Full lockdown
## 10461                                                Full lockdown
## 10462                                                Full lockdown
## 10463                                                Full lockdown
## 10464                                                Full lockdown
## 10465                                 Domestic travel restrictions
## 10466                                 Domestic travel restrictions
## 10467                                 Domestic travel restrictions
## 10468                                 Domestic travel restrictions
## 10469                                 Domestic travel restrictions
## 10470                                 Domestic travel restrictions
## 10471                                      Limit public gatherings
## 10472                                      Limit public gatherings
## 10473                                      Limit public gatherings
## 10474                                      Limit public gatherings
## 10475                                      Limit public gatherings
## 10476                                      Limit public gatherings
## 10477                                                      Curfews
## 10478                                                      Curfews
## 10479                                                      Curfews
## 10480                                                      Curfews
## 10481                                                      Curfews
## 10482                                                      Curfews
## 10483                                 Domestic travel restrictions
## 10484                                 Domestic travel restrictions
## 10485                                 Domestic travel restrictions
## 10486                                 Domestic travel restrictions
## 10487                                 Domestic travel restrictions
## 10488                                 Domestic travel restrictions
## 10489                                             Schools closure 
## 10490                                             Schools closure 
## 10491                                             Schools closure 
## 10492                                             Schools closure 
## 10493                                             Schools closure 
## 10494                                             Schools closure 
## 10495                Requirement to wear protective gear in public
## 10496                Requirement to wear protective gear in public
## 10497                Requirement to wear protective gear in public
## 10498                Requirement to wear protective gear in public
## 10499                Requirement to wear protective gear in public
## 10500                Requirement to wear protective gear in public
## 10501                                 Domestic travel restrictions
## 10502                                 Domestic travel restrictions
## 10503                                 Domestic travel restrictions
## 10504                                 Domestic travel restrictions
## 10505                                 Domestic travel restrictions
## 10506                                 Domestic travel restrictions
## 10507                            Isolation and quarantine policies
## 10508                            Isolation and quarantine policies
## 10509                            Isolation and quarantine policies
## 10510                            Isolation and quarantine policies
## 10511                            Isolation and quarantine policies
## 10512                            Isolation and quarantine policies
## 10513                                            Visa restrictions
## 10514                                            Visa restrictions
## 10515                                            Visa restrictions
## 10516                                            Visa restrictions
## 10517                                            Visa restrictions
## 10518                                            Visa restrictions
## 10519                                      Limit public gatherings
## 10520                                      Limit public gatherings
## 10521                                      Limit public gatherings
## 10522                                      Limit public gatherings
## 10523                                      Limit public gatherings
## 10524                                      Limit public gatherings
## 10525                            Isolation and quarantine policies
## 10526                            Isolation and quarantine policies
## 10527                            Isolation and quarantine policies
## 10528                            Isolation and quarantine policies
## 10529                            Isolation and quarantine policies
## 10530                            Isolation and quarantine policies
## 10531                                             Schools closure 
## 10532                                             Schools closure 
## 10533                                             Schools closure 
## 10534                                             Schools closure 
## 10535                                             Schools closure 
## 10536                                             Schools closure 
## 10537                       Strengthening the public health system
## 10538                       Strengthening the public health system
## 10539                       Strengthening the public health system
## 10540                       Strengthening the public health system
## 10541                       Strengthening the public health system
## 10542                       Strengthening the public health system
## 10543                                      General recommendations
## 10544                                      General recommendations
## 10545                                      General recommendations
## 10546                                      General recommendations
## 10547                                      General recommendations
## 10548                                      General recommendations
## 10549                                            Visa restrictions
## 10550                                            Visa restrictions
## 10551                                            Visa restrictions
## 10552                                            Visa restrictions
## 10553                                            Visa restrictions
## 10554                                            Visa restrictions
## 10555                                            Economic measures
## 10556                                            Economic measures
## 10557                                            Economic measures
## 10558                                            Economic measures
## 10559                                            Economic measures
## 10560                                            Economic measures
## 10561           Health screenings in airports and border crossings
## 10562           Health screenings in airports and border crossings
## 10563           Health screenings in airports and border crossings
## 10564           Health screenings in airports and border crossings
## 10565           Health screenings in airports and border crossings
## 10566           Health screenings in airports and border crossings
## 10567                       Strengthening the public health system
## 10568                       Strengthening the public health system
## 10569                       Strengthening the public health system
## 10570                       Strengthening the public health system
## 10571                       Strengthening the public health system
## 10572                       Strengthening the public health system
## 10573                                  State of emergency declared
## 10574                                  State of emergency declared
## 10575                                  State of emergency declared
## 10576                                  State of emergency declared
## 10577                                  State of emergency declared
## 10578                                  State of emergency declared
## 10579                                            Economic measures
## 10580                                            Economic measures
## 10581                                            Economic measures
## 10582                                            Economic measures
## 10583                                            Economic measures
## 10584                                            Economic measures
## 10585                                      General recommendations
## 10586                                      General recommendations
## 10587                                      General recommendations
## 10588                                      General recommendations
## 10589                                      General recommendations
## 10590                                      General recommendations
## 10591                                            Economic measures
## 10592                                            Economic measures
## 10593                                            Economic measures
## 10594                                            Economic measures
## 10595                                            Economic measures
## 10596                                            Economic measures
## 10597                                              Border closure 
## 10598                                              Border closure 
## 10599                                              Border closure 
## 10600                                              Border closure 
## 10601                                              Border closure 
## 10602                                              Border closure 
## 10603                                          Awareness campaigns
## 10604                                          Awareness campaigns
## 10605                                          Awareness campaigns
## 10606                                          Awareness campaigns
## 10607                                          Awareness campaigns
## 10608                                          Awareness campaigns
## 10609                                          Awareness campaigns
## 10610                                          Awareness campaigns
## 10611                                          Awareness campaigns
## 10612                                          Awareness campaigns
## 10613                                          Awareness campaigns
## 10614                                          Awareness campaigns
## 10615                                            Economic measures
## 10616                                            Economic measures
## 10617                                            Economic measures
## 10618                                            Economic measures
## 10619                                            Economic measures
## 10620                                            Economic measures
## 10621                             International flights suspension
## 10622                             International flights suspension
## 10623                             International flights suspension
## 10624                             International flights suspension
## 10625                             International flights suspension
## 10626                             International flights suspension
## 10627                                            Economic measures
## 10628                                            Economic measures
## 10629                                            Economic measures
## 10630                                            Economic measures
## 10631                                            Economic measures
## 10632                                            Economic measures
## 10633                       Strengthening the public health system
## 10634                       Strengthening the public health system
## 10635                       Strengthening the public health system
## 10636                       Strengthening the public health system
## 10637                       Strengthening the public health system
## 10638                       Strengthening the public health system
## 10639                                                      Curfews
## 10640                                                      Curfews
## 10641                                                      Curfews
## 10642                                                      Curfews
## 10643                                                      Curfews
## 10644                                                      Curfews
## 10645                            Isolation and quarantine policies
## 10646                            Isolation and quarantine policies
## 10647                            Isolation and quarantine policies
## 10648                            Isolation and quarantine policies
## 10649                            Isolation and quarantine policies
## 10650                            Isolation and quarantine policies
## 10651                            Isolation and quarantine policies
## 10652                            Isolation and quarantine policies
## 10653                            Isolation and quarantine policies
## 10654                            Isolation and quarantine policies
## 10655                            Isolation and quarantine policies
## 10656                            Isolation and quarantine policies
## 10657                            Isolation and quarantine policies
## 10658                            Isolation and quarantine policies
## 10659                            Isolation and quarantine policies
## 10660                            Isolation and quarantine policies
## 10661                            Isolation and quarantine policies
## 10662                            Isolation and quarantine policies
## 10663                                  State of emergency declared
## 10664                                  State of emergency declared
## 10665                                  State of emergency declared
## 10666                                  State of emergency declared
## 10667                                  State of emergency declared
## 10668                                  State of emergency declared
## 10669                                  State of emergency declared
## 10670                                  State of emergency declared
## 10671                                  State of emergency declared
## 10672                                  State of emergency declared
## 10673                                  State of emergency declared
## 10674                                  State of emergency declared
## 10675                        Other public health measures enforced
## 10676                        Other public health measures enforced
## 10677                        Other public health measures enforced
## 10678                        Other public health measures enforced
## 10679                        Other public health measures enforced
## 10680                        Other public health measures enforced
## 10681                       Strengthening the public health system
## 10682                       Strengthening the public health system
## 10683                       Strengthening the public health system
## 10684                       Strengthening the public health system
## 10685                       Strengthening the public health system
## 10686                       Strengthening the public health system
## 10687                                 Domestic travel restrictions
## 10688                                 Domestic travel restrictions
## 10689                                 Domestic travel restrictions
## 10690                                 Domestic travel restrictions
## 10691                                 Domestic travel restrictions
## 10692                                 Domestic travel restrictions
## 10693                            Isolation and quarantine policies
## 10694                            Isolation and quarantine policies
## 10695                            Isolation and quarantine policies
## 10696                            Isolation and quarantine policies
## 10697                            Isolation and quarantine policies
## 10698                            Isolation and quarantine policies
## 10699                                            Economic measures
## 10700                                            Economic measures
## 10701                                            Economic measures
## 10702                                            Economic measures
## 10703                                            Economic measures
## 10704                                            Economic measures
## 10705                                               Testing policy
## 10706                                               Testing policy
## 10707                                               Testing policy
## 10708                                               Testing policy
## 10709                                               Testing policy
## 10710                                               Testing policy
## 10711             Psychological assistance and medical social work
## 10712             Psychological assistance and medical social work
## 10713             Psychological assistance and medical social work
## 10714             Psychological assistance and medical social work
## 10715             Psychological assistance and medical social work
## 10716             Psychological assistance and medical social work
## 10717                                      General recommendations
## 10718                                      General recommendations
## 10719                                      General recommendations
## 10720                                      General recommendations
## 10721                                      General recommendations
## 10722                                      General recommendations
## 10723                                               Border checks 
## 10724                                               Border checks 
## 10725                                               Border checks 
## 10726                                               Border checks 
## 10727                                               Border checks 
## 10728                                               Border checks 
## 10729                    Closure of businesses and public services
## 10730                    Closure of businesses and public services
## 10731                    Closure of businesses and public services
## 10732                    Closure of businesses and public services
## 10733                    Closure of businesses and public services
## 10734                    Closure of businesses and public services
## 10735                       Strengthening the public health system
## 10736                       Strengthening the public health system
## 10737                       Strengthening the public health system
## 10738                       Strengthening the public health system
## 10739                       Strengthening the public health system
## 10740                       Strengthening the public health system
## 10741                                      General recommendations
## 10742                                      General recommendations
## 10743                                      General recommendations
## 10744                                      General recommendations
## 10745                                      General recommendations
## 10746                                      General recommendations
## 10747                                               Testing policy
## 10748                                               Testing policy
## 10749                                               Testing policy
## 10750                                               Testing policy
## 10751                                               Testing policy
## 10752                                               Testing policy
## 10753                       Strengthening the public health system
## 10754                       Strengthening the public health system
## 10755                       Strengthening the public health system
## 10756                       Strengthening the public health system
## 10757                       Strengthening the public health system
## 10758                       Strengthening the public health system
## 10759                            Isolation and quarantine policies
## 10760                            Isolation and quarantine policies
## 10761                            Isolation and quarantine policies
## 10762                            Isolation and quarantine policies
## 10763                            Isolation and quarantine policies
## 10764                            Isolation and quarantine policies
## 10765                                      Limit public gatherings
## 10766                                      Limit public gatherings
## 10767                                      Limit public gatherings
## 10768                                      Limit public gatherings
## 10769                                      Limit public gatherings
## 10770                                      Limit public gatherings
## 10771            Lockdown of refugee/idp camps or other minorities
## 10772            Lockdown of refugee/idp camps or other minorities
## 10773            Lockdown of refugee/idp camps or other minorities
## 10774            Lockdown of refugee/idp camps or other minorities
## 10775            Lockdown of refugee/idp camps or other minorities
## 10776            Lockdown of refugee/idp camps or other minorities
## 10777                                            Economic measures
## 10778                                            Economic measures
## 10779                                            Economic measures
## 10780                                            Economic measures
## 10781                                            Economic measures
## 10782                                            Economic measures
## 10783                       Strengthening the public health system
## 10784                       Strengthening the public health system
## 10785                       Strengthening the public health system
## 10786                       Strengthening the public health system
## 10787                       Strengthening the public health system
## 10788                       Strengthening the public health system
## 10789                                            Economic measures
## 10790                                            Economic measures
## 10791                                            Economic measures
## 10792                                            Economic measures
## 10793                                            Economic measures
## 10794                                            Economic measures
## 10795                                            Economic measures
## 10796                                            Economic measures
## 10797                                            Economic measures
## 10798                                            Economic measures
## 10799                                            Economic measures
## 10800                                            Economic measures
## 10801                                      General recommendations
## 10802                                      General recommendations
## 10803                                      General recommendations
## 10804                                      General recommendations
## 10805                                      General recommendations
## 10806                                      General recommendations
## 10807                                               Testing policy
## 10808                                               Testing policy
## 10809                                               Testing policy
## 10810                                               Testing policy
## 10811                                               Testing policy
## 10812                                               Testing policy
## 10813                                            Economic measures
## 10814                                            Economic measures
## 10815                                            Economic measures
## 10816                                            Economic measures
## 10817                                            Economic measures
## 10818                                            Economic measures
## 10819                                            Economic measures
## 10820                                            Economic measures
## 10821                                            Economic measures
## 10822                                            Economic measures
## 10823                                            Economic measures
## 10824                                            Economic measures
## 10825                                            Economic measures
## 10826                                            Economic measures
## 10827                                            Economic measures
## 10828                                            Economic measures
## 10829                                            Economic measures
## 10830                                            Economic measures
## 10831                            Isolation and quarantine policies
## 10832                            Isolation and quarantine policies
## 10833                            Isolation and quarantine policies
## 10834                            Isolation and quarantine policies
## 10835                            Isolation and quarantine policies
## 10836                            Isolation and quarantine policies
## 10837                        Other public health measures enforced
## 10838                        Other public health measures enforced
## 10839                        Other public health measures enforced
## 10840                        Other public health measures enforced
## 10841                        Other public health measures enforced
## 10842                        Other public health measures enforced
## 10843                        Other public health measures enforced
## 10844                        Other public health measures enforced
## 10845                        Other public health measures enforced
## 10846                        Other public health measures enforced
## 10847                        Other public health measures enforced
## 10848                        Other public health measures enforced
## 10849                                          Awareness campaigns
## 10850                                          Awareness campaigns
## 10851                                          Awareness campaigns
## 10852                                          Awareness campaigns
## 10853                                          Awareness campaigns
## 10854                                          Awareness campaigns
## 10855                                                      Curfews
## 10856                                                      Curfews
## 10857                                                      Curfews
## 10858                                                      Curfews
## 10859                                                      Curfews
## 10860                                                      Curfews
## 10861                                      Limit public gatherings
## 10862                                      Limit public gatherings
## 10863                                      Limit public gatherings
## 10864                                      Limit public gatherings
## 10865                                      Limit public gatherings
## 10866                                      Limit public gatherings
## 10867                                                      Curfews
## 10868                                                      Curfews
## 10869                                                      Curfews
## 10870                                                      Curfews
## 10871                                                      Curfews
## 10872                                                      Curfews
## 10873                                      Limit public gatherings
## 10874                                      Limit public gatherings
## 10875                                      Limit public gatherings
## 10876                                      Limit public gatherings
## 10877                                      Limit public gatherings
## 10878                                      Limit public gatherings
## 10879                    Closure of businesses and public services
## 10880                    Closure of businesses and public services
## 10881                    Closure of businesses and public services
## 10882                    Closure of businesses and public services
## 10883                    Closure of businesses and public services
## 10884                    Closure of businesses and public services
## 10885                                      Limit public gatherings
## 10886                                      Limit public gatherings
## 10887                                      Limit public gatherings
## 10888                                      Limit public gatherings
## 10889                                      Limit public gatherings
## 10890                                      Limit public gatherings
## 10891                    Closure of businesses and public services
## 10892                    Closure of businesses and public services
## 10893                    Closure of businesses and public services
## 10894                    Closure of businesses and public services
## 10895                    Closure of businesses and public services
## 10896                    Closure of businesses and public services
## 10897                                                      curfews
## 10898                                                      curfews
## 10899                                                      curfews
## 10900                                                      curfews
## 10901                                                      curfews
## 10902                                                      curfews
## 10903                                                      curfews
## 10904                                                      curfews
## 10905                                                      curfews
## 10906                                                      curfews
## 10907                                                      curfews
## 10908                                                      curfews
## 10909                Requirement to wear protective gear in public
## 10910                Requirement to wear protective gear in public
## 10911                Requirement to wear protective gear in public
## 10912                Requirement to wear protective gear in public
## 10913                Requirement to wear protective gear in public
## 10914                Requirement to wear protective gear in public
## 10915                                                      Curfews
## 10916                                                      Curfews
## 10917                                                      Curfews
## 10918                                                      Curfews
## 10919                                                      Curfews
## 10920                                                      Curfews
## 10921                                                      Curfews
## 10922                                                      Curfews
## 10923                                                      Curfews
## 10924                                                      Curfews
## 10925                                                      Curfews
## 10926                                                      Curfews
## 10927                                                      Curfews
## 10928                                                      Curfews
## 10929                                                      Curfews
## 10930                                                      Curfews
## 10931                                                      Curfews
## 10932                                                      Curfews
## 10933                                          Awareness campaigns
## 10934                                          Awareness campaigns
## 10935                                          Awareness campaigns
## 10936                                          Awareness campaigns
## 10937                                          Awareness campaigns
## 10938                                          Awareness campaigns
## 10939                                          Awareness campaigns
## 10940                                          Awareness campaigns
## 10941                                          Awareness campaigns
## 10942                                          Awareness campaigns
## 10943                                          Awareness campaigns
## 10944                                          Awareness campaigns
## 10945                       Strengthening the public health system
## 10946                       Strengthening the public health system
## 10947                       Strengthening the public health system
## 10948                       Strengthening the public health system
## 10949                       Strengthening the public health system
## 10950                       Strengthening the public health system
## 10951                    Closure of businesses and public services
## 10952                    Closure of businesses and public services
## 10953                    Closure of businesses and public services
## 10954                    Closure of businesses and public services
## 10955                    Closure of businesses and public services
## 10956                    Closure of businesses and public services
## 10957                                      Limit public gatherings
## 10958                                      Limit public gatherings
## 10959                                      Limit public gatherings
## 10960                                      Limit public gatherings
## 10961                                      Limit public gatherings
## 10962                                      Limit public gatherings
## 10963                                      Limit public gatherings
## 10964                                      Limit public gatherings
## 10965                                      Limit public gatherings
## 10966                                      Limit public gatherings
## 10967                                      Limit public gatherings
## 10968                                      Limit public gatherings
## 10969                 Amendments to funeral and burial regulations
## 10970                 Amendments to funeral and burial regulations
## 10971                 Amendments to funeral and burial regulations
## 10972                 Amendments to funeral and burial regulations
## 10973                 Amendments to funeral and burial regulations
## 10974                 Amendments to funeral and burial regulations
## 10975                Requirement to wear protective gear in public
## 10976                Requirement to wear protective gear in public
## 10977                Requirement to wear protective gear in public
## 10978                Requirement to wear protective gear in public
## 10979                Requirement to wear protective gear in public
## 10980                Requirement to wear protective gear in public
## 10981                                      Limit public gatherings
## 10982                                      Limit public gatherings
## 10983                                      Limit public gatherings
## 10984                                      Limit public gatherings
## 10985                                      Limit public gatherings
## 10986                                      Limit public gatherings
## 10987                            Isolation and quarantine policies
## 10988                            Isolation and quarantine policies
## 10989                            Isolation and quarantine policies
## 10990                            Isolation and quarantine policies
## 10991                            Isolation and quarantine policies
## 10992                            Isolation and quarantine policies
## 10993                    Closure of businesses and public services
## 10994                    Closure of businesses and public services
## 10995                    Closure of businesses and public services
## 10996                    Closure of businesses and public services
## 10997                    Closure of businesses and public services
## 10998                    Closure of businesses and public services
## 10999                    Closure of businesses and public services
## 11000                    Closure of businesses and public services
## 11001                    Closure of businesses and public services
## 11002                    Closure of businesses and public services
## 11003                    Closure of businesses and public services
## 11004                    Closure of businesses and public services
## 11005                                          Awareness campaigns
## 11006                                          Awareness campaigns
## 11007                                          Awareness campaigns
## 11008                                          Awareness campaigns
## 11009                                          Awareness campaigns
## 11010                                          Awareness campaigns
## 11011                                             Schools closure 
## 11012                                             Schools closure 
## 11013                                             Schools closure 
## 11014                                             Schools closure 
## 11015                                             Schools closure 
## 11016                                             Schools closure 
## 11017                                                      Curfews
## 11018                                                      Curfews
## 11019                                                      Curfews
## 11020                                                      Curfews
## 11021                                                      Curfews
## 11022                                                      Curfews
## 11023                        Other public health measures enforced
## 11024                        Other public health measures enforced
## 11025                        Other public health measures enforced
## 11026                        Other public health measures enforced
## 11027                        Other public health measures enforced
## 11028                        Other public health measures enforced
## 11029                    Closure of businesses and public services
## 11030                    Closure of businesses and public services
## 11031                    Closure of businesses and public services
## 11032                    Closure of businesses and public services
## 11033                    Closure of businesses and public services
## 11034                    Closure of businesses and public services
## 11035                    Closure of businesses and public services
## 11036                    Closure of businesses and public services
## 11037                    Closure of businesses and public services
## 11038                    Closure of businesses and public services
## 11039                    Closure of businesses and public services
## 11040                    Closure of businesses and public services
## 11041                            Isolation and quarantine policies
## 11042                            Isolation and quarantine policies
## 11043                            Isolation and quarantine policies
## 11044                            Isolation and quarantine policies
## 11045                            Isolation and quarantine policies
## 11046                            Isolation and quarantine policies
## 11047                                                      Curfews
## 11048                                                      Curfews
## 11049                                                      Curfews
## 11050                                                      Curfews
## 11051                                                      Curfews
## 11052                                                      Curfews
## 11053                                            Economic measures
## 11054                                            Economic measures
## 11055                                            Economic measures
## 11056                                            Economic measures
## 11057                                            Economic measures
## 11058                                            Economic measures
## 11059                    Closure of businesses and public services
## 11060                    Closure of businesses and public services
## 11061                    Closure of businesses and public services
## 11062                    Closure of businesses and public services
## 11063                    Closure of businesses and public services
## 11064                    Closure of businesses and public services
## 11065                                      Limit public gatherings
## 11066                                      Limit public gatherings
## 11067                                      Limit public gatherings
## 11068                                      Limit public gatherings
## 11069                                      Limit public gatherings
## 11070                                      Limit public gatherings
## 11071                            Isolation and quarantine policies
## 11072                            Isolation and quarantine policies
## 11073                            Isolation and quarantine policies
## 11074                            Isolation and quarantine policies
## 11075                            Isolation and quarantine policies
## 11076                            Isolation and quarantine policies
## 11077                       Strengthening the public health system
## 11078                       Strengthening the public health system
## 11079                       Strengthening the public health system
## 11080                       Strengthening the public health system
## 11081                       Strengthening the public health system
## 11082                       Strengthening the public health system
## 11083                                               Testing policy
## 11084                                               Testing policy
## 11085                                               Testing policy
## 11086                                               Testing policy
## 11087                                               Testing policy
## 11088                                               Testing policy
## 11089                    Closure of businesses and public services
## 11090                    Closure of businesses and public services
## 11091                    Closure of businesses and public services
## 11092                    Closure of businesses and public services
## 11093                    Closure of businesses and public services
## 11094                    Closure of businesses and public services
## 11095                    Closure of businesses and public services
## 11096                    Closure of businesses and public services
## 11097                    Closure of businesses and public services
## 11098                    Closure of businesses and public services
## 11099                    Closure of businesses and public services
## 11100                    Closure of businesses and public services
## 11101                    Closure of businesses and public services
## 11102                    Closure of businesses and public services
## 11103                    Closure of businesses and public services
## 11104                    Closure of businesses and public services
## 11105                    Closure of businesses and public services
## 11106                    Closure of businesses and public services
## 11107                    Closure of businesses and public services
## 11108                    Closure of businesses and public services
## 11109                    Closure of businesses and public services
## 11110                    Closure of businesses and public services
## 11111                    Closure of businesses and public services
## 11112                    Closure of businesses and public services
## 11113                    Closure of businesses and public services
## 11114                    Closure of businesses and public services
## 11115                    Closure of businesses and public services
## 11116                    Closure of businesses and public services
## 11117                    Closure of businesses and public services
## 11118                    Closure of businesses and public services
## 11119                    Closure of businesses and public services
## 11120                    Closure of businesses and public services
## 11121                    Closure of businesses and public services
## 11122                    Closure of businesses and public services
## 11123                    Closure of businesses and public services
## 11124                    Closure of businesses and public services
## 11125                    Closure of businesses and public services
## 11126                    Closure of businesses and public services
## 11127                    Closure of businesses and public services
## 11128                    Closure of businesses and public services
## 11129                    Closure of businesses and public services
## 11130                    Closure of businesses and public services
## 11131                                      Limit public gatherings
## 11132                                      Limit public gatherings
## 11133                                      Limit public gatherings
## 11134                                      Limit public gatherings
## 11135                                      Limit public gatherings
## 11136                                      Limit public gatherings
## 11137                                               Testing policy
## 11138                                               Testing policy
## 11139                                               Testing policy
## 11140                                               Testing policy
## 11141                                               Testing policy
## 11142                                               Testing policy
## 11143                    Closure of businesses and public services
## 11144                    Closure of businesses and public services
## 11145                    Closure of businesses and public services
## 11146                    Closure of businesses and public services
## 11147                    Closure of businesses and public services
## 11148                    Closure of businesses and public services
## 11149                    Closure of businesses and public services
## 11150                    Closure of businesses and public services
## 11151                    Closure of businesses and public services
## 11152                    Closure of businesses and public services
## 11153                    Closure of businesses and public services
## 11154                    Closure of businesses and public services
## 11155                                      Limit public gatherings
## 11156                                      Limit public gatherings
## 11157                                      Limit public gatherings
## 11158                                      Limit public gatherings
## 11159                                      Limit public gatherings
## 11160                                      Limit public gatherings
## 11161                            Isolation and quarantine policies
## 11162                            Isolation and quarantine policies
## 11163                            Isolation and quarantine policies
## 11164                            Isolation and quarantine policies
## 11165                            Isolation and quarantine policies
## 11166                            Isolation and quarantine policies
## 11167                    Closure of businesses and public services
## 11168                    Closure of businesses and public services
## 11169                    Closure of businesses and public services
## 11170                    Closure of businesses and public services
## 11171                    Closure of businesses and public services
## 11172                    Closure of businesses and public services
## 11173                    Closure of businesses and public services
## 11174                    Closure of businesses and public services
## 11175                    Closure of businesses and public services
## 11176                    Closure of businesses and public services
## 11177                    Closure of businesses and public services
## 11178                    Closure of businesses and public services
## 11179                             International flights suspension
## 11180                             International flights suspension
## 11181                             International flights suspension
## 11182                             International flights suspension
## 11183                             International flights suspension
## 11184                             International flights suspension
## 11185                                            Economic measures
## 11186                                            Economic measures
## 11187                                            Economic measures
## 11188                                            Economic measures
## 11189                                            Economic measures
## 11190                                            Economic measures
## 11191                                      General recommendations
## 11192                                      General recommendations
## 11193                                      General recommendations
## 11194                                      General recommendations
## 11195                                      General recommendations
## 11196                                      General recommendations
## 11197                                                      Curfews
## 11198                                                      Curfews
## 11199                                                      Curfews
## 11200                                                      Curfews
## 11201                                                      Curfews
## 11202                                                      Curfews
## 11203                                                      Curfews
## 11204                                                      Curfews
## 11205                                                      Curfews
## 11206                                                      Curfews
## 11207                                                      Curfews
## 11208                                                      Curfews
## 11209                                                      Curfews
## 11210                                                      Curfews
## 11211                                                      Curfews
## 11212                                                      Curfews
## 11213                                                      Curfews
## 11214                                                      Curfews
## 11215                    Closure of businesses and public services
## 11216                    Closure of businesses and public services
## 11217                    Closure of businesses and public services
## 11218                    Closure of businesses and public services
## 11219                    Closure of businesses and public services
## 11220                    Closure of businesses and public services
## 11221                Requirement to wear protective gear in public
## 11222                Requirement to wear protective gear in public
## 11223                Requirement to wear protective gear in public
## 11224                Requirement to wear protective gear in public
## 11225                Requirement to wear protective gear in public
## 11226                Requirement to wear protective gear in public
## 11227                Requirement to wear protective gear in public
## 11228                Requirement to wear protective gear in public
## 11229                Requirement to wear protective gear in public
## 11230                Requirement to wear protective gear in public
## 11231                Requirement to wear protective gear in public
## 11232                Requirement to wear protective gear in public
## 11233                        Other public health measures enforced
## 11234                        Other public health measures enforced
## 11235                        Other public health measures enforced
## 11236                        Other public health measures enforced
## 11237                        Other public health measures enforced
## 11238                        Other public health measures enforced
## 11239                                            Economic measures
## 11240                                            Economic measures
## 11241                                            Economic measures
## 11242                                            Economic measures
## 11243                                            Economic measures
## 11244                                            Economic measures
## 11245                                          Awareness campaigns
## 11246                                          Awareness campaigns
## 11247                                          Awareness campaigns
## 11248                                          Awareness campaigns
## 11249                                          Awareness campaigns
## 11250                                          Awareness campaigns
## 11251                                                      Curfews
## 11252                                                      Curfews
## 11253                                                      Curfews
## 11254                                                      Curfews
## 11255                                                      Curfews
## 11256                                                      Curfews
## 11257                                      Limit public gatherings
## 11258                                      Limit public gatherings
## 11259                                      Limit public gatherings
## 11260                                      Limit public gatherings
## 11261                                      Limit public gatherings
## 11262                                      Limit public gatherings
## 11263 Emergency administrative structures activated or established
## 11264 Emergency administrative structures activated or established
## 11265 Emergency administrative structures activated or established
## 11266 Emergency administrative structures activated or established
## 11267 Emergency administrative structures activated or established
## 11268 Emergency administrative structures activated or established
## 11269                    Closure of businesses and public services
## 11270                    Closure of businesses and public services
## 11271                    Closure of businesses and public services
## 11272                    Closure of businesses and public services
## 11273                    Closure of businesses and public services
## 11274                    Closure of businesses and public services
## 11275                        Other public health measures enforced
## 11276                        Other public health measures enforced
## 11277                        Other public health measures enforced
## 11278                        Other public health measures enforced
## 11279                        Other public health measures enforced
## 11280                        Other public health measures enforced
## 11281                            Isolation and quarantine policies
## 11282                            Isolation and quarantine policies
## 11283                            Isolation and quarantine policies
## 11284                            Isolation and quarantine policies
## 11285                            Isolation and quarantine policies
## 11286                            Isolation and quarantine policies
## 11287             Psychological assistance and medical social work
## 11288             Psychological assistance and medical social work
## 11289             Psychological assistance and medical social work
## 11290             Psychological assistance and medical social work
## 11291             Psychological assistance and medical social work
## 11292             Psychological assistance and medical social work
## 11293            Lockdown of refugee/idp camps or other minorities
## 11294            Lockdown of refugee/idp camps or other minorities
## 11295            Lockdown of refugee/idp camps or other minorities
## 11296            Lockdown of refugee/idp camps or other minorities
## 11297            Lockdown of refugee/idp camps or other minorities
## 11298            Lockdown of refugee/idp camps or other minorities
## 11299           Health screenings in airports and border crossings
## 11300           Health screenings in airports and border crossings
## 11301           Health screenings in airports and border crossings
## 11302           Health screenings in airports and border crossings
## 11303           Health screenings in airports and border crossings
## 11304           Health screenings in airports and border crossings
## 11305                Requirement to wear protective gear in public
## 11306                Requirement to wear protective gear in public
## 11307                Requirement to wear protective gear in public
## 11308                Requirement to wear protective gear in public
## 11309                Requirement to wear protective gear in public
## 11310                Requirement to wear protective gear in public
## 11311                    Closure of businesses and public services
## 11312                    Closure of businesses and public services
## 11313                    Closure of businesses and public services
## 11314                    Closure of businesses and public services
## 11315                    Closure of businesses and public services
## 11316                    Closure of businesses and public services
## 11317                            Isolation and quarantine policies
## 11318                            Isolation and quarantine policies
## 11319                            Isolation and quarantine policies
## 11320                            Isolation and quarantine policies
## 11321                            Isolation and quarantine policies
## 11322                            Isolation and quarantine policies
## 11323                                  State of emergency declared
## 11324                                  State of emergency declared
## 11325                                  State of emergency declared
## 11326                                  State of emergency declared
## 11327                                  State of emergency declared
## 11328                                  State of emergency declared
## 11329                                      Limit public gatherings
## 11330                                      Limit public gatherings
## 11331                                      Limit public gatherings
## 11332                                      Limit public gatherings
## 11333                                      Limit public gatherings
## 11334                                      Limit public gatherings
## 11335                                             Schools closure 
## 11336                                             Schools closure 
## 11337                                             Schools closure 
## 11338                                             Schools closure 
## 11339                                             Schools closure 
## 11340                                             Schools closure 
## 11341                                                      curfews
## 11342                                                      curfews
## 11343                                                      curfews
## 11344                                                      curfews
## 11345                                                      curfews
## 11346                                                      curfews
## 11347                                      General recommendations
## 11348                                      General recommendations
## 11349                                      General recommendations
## 11350                                      General recommendations
## 11351                                      General recommendations
## 11352                                      General recommendations
## 11353                                             Schools closure 
## 11354                                             Schools closure 
## 11355                                             Schools closure 
## 11356                                             Schools closure 
## 11357                                             Schools closure 
## 11358                                             Schools closure 
## 11359                Requirement to wear protective gear in public
## 11360                Requirement to wear protective gear in public
## 11361                Requirement to wear protective gear in public
## 11362                Requirement to wear protective gear in public
## 11363                Requirement to wear protective gear in public
## 11364                Requirement to wear protective gear in public
## 11365                Requirement to wear protective gear in public
## 11366                Requirement to wear protective gear in public
## 11367                Requirement to wear protective gear in public
## 11368                Requirement to wear protective gear in public
## 11369                Requirement to wear protective gear in public
## 11370                Requirement to wear protective gear in public
## 11371                                                      Curfews
## 11372                                                      Curfews
## 11373                                                      Curfews
## 11374                                                      Curfews
## 11375                                                      Curfews
## 11376                                                      Curfews
## 11377                    Closure of businesses and public services
## 11378                    Closure of businesses and public services
## 11379                    Closure of businesses and public services
## 11380                    Closure of businesses and public services
## 11381                    Closure of businesses and public services
## 11382                    Closure of businesses and public services
## 11383                                              Border closure 
## 11384                                              Border closure 
## 11385                                              Border closure 
## 11386                                              Border closure 
## 11387                                              Border closure 
## 11388                                              Border closure 
## 11389                                          Awareness campaigns
## 11390                                          Awareness campaigns
## 11391                                          Awareness campaigns
## 11392                                          Awareness campaigns
## 11393                                          Awareness campaigns
## 11394                                          Awareness campaigns
## 11395                            Isolation and quarantine policies
## 11396                            Isolation and quarantine policies
## 11397                            Isolation and quarantine policies
## 11398                            Isolation and quarantine policies
## 11399                            Isolation and quarantine policies
## 11400                            Isolation and quarantine policies
## 11401                                                      curfews
## 11402                                                      curfews
## 11403                                                      curfews
## 11404                                                      curfews
## 11405                                                      curfews
## 11406                                                      curfews
## 11407                                      Limit public gatherings
## 11408                                      Limit public gatherings
## 11409                                      Limit public gatherings
## 11410                                      Limit public gatherings
## 11411                                      Limit public gatherings
## 11412                                      Limit public gatherings
## 11413                                      Limit public gatherings
## 11414                                      Limit public gatherings
## 11415                                      Limit public gatherings
## 11416                                      Limit public gatherings
## 11417                                      Limit public gatherings
## 11418                                      Limit public gatherings
## 11419                    Closure of businesses and public services
## 11420                    Closure of businesses and public services
## 11421                    Closure of businesses and public services
## 11422                    Closure of businesses and public services
## 11423                    Closure of businesses and public services
## 11424                    Closure of businesses and public services
## 11425                    Closure of businesses and public services
## 11426                    Closure of businesses and public services
## 11427                    Closure of businesses and public services
## 11428                    Closure of businesses and public services
## 11429                    Closure of businesses and public services
## 11430                    Closure of businesses and public services
## 11431                                              Border closure 
## 11432                                              Border closure 
## 11433                                              Border closure 
## 11434                                              Border closure 
## 11435                                              Border closure 
## 11436                                              Border closure 
## 11437                                      Limit public gatherings
## 11438                                      Limit public gatherings
## 11439                                      Limit public gatherings
## 11440                                      Limit public gatherings
## 11441                                      Limit public gatherings
## 11442                                      Limit public gatherings
## 11443                                            Economic measures
## 11444                                            Economic measures
## 11445                                            Economic measures
## 11446                                            Economic measures
## 11447                                            Economic measures
## 11448                                            Economic measures
## 11449                       Strengthening the public health system
## 11450                       Strengthening the public health system
## 11451                       Strengthening the public health system
## 11452                       Strengthening the public health system
## 11453                       Strengthening the public health system
## 11454                       Strengthening the public health system
## 11455                             International flights suspension
## 11456                             International flights suspension
## 11457                             International flights suspension
## 11458                             International flights suspension
## 11459                             International flights suspension
## 11460                             International flights suspension
## 11461                                            Visa restrictions
## 11462                                            Visa restrictions
## 11463                                            Visa restrictions
## 11464                                            Visa restrictions
## 11465                                            Visa restrictions
## 11466                                            Visa restrictions
## 11467                                               Testing policy
## 11468                                               Testing policy
## 11469                                               Testing policy
## 11470                                               Testing policy
## 11471                                               Testing policy
## 11472                                               Testing policy
## 11473                                      Limit public gatherings
## 11474                                      Limit public gatherings
## 11475                                      Limit public gatherings
## 11476                                      Limit public gatherings
## 11477                                      Limit public gatherings
## 11478                                      Limit public gatherings
## 11479                                      General recommendations
## 11480                                      General recommendations
## 11481                                      General recommendations
## 11482                                      General recommendations
## 11483                                      General recommendations
## 11484                                      General recommendations
## 11485                                              Border closure 
## 11486                                              Border closure 
## 11487                                              Border closure 
## 11488                                              Border closure 
## 11489                                              Border closure 
## 11490                                              Border closure 
## 11491                            Isolation and quarantine policies
## 11492                            Isolation and quarantine policies
## 11493                            Isolation and quarantine policies
## 11494                            Isolation and quarantine policies
## 11495                            Isolation and quarantine policies
## 11496                            Isolation and quarantine policies
## 11497                                            Visa restrictions
## 11498                                            Visa restrictions
## 11499                                            Visa restrictions
## 11500                                            Visa restrictions
## 11501                                            Visa restrictions
## 11502                                            Visa restrictions
## 11503                                            Visa restrictions
## 11504                                            Visa restrictions
## 11505                                            Visa restrictions
## 11506                                            Visa restrictions
## 11507                                            Visa restrictions
## 11508                                            Visa restrictions
## 11509                                            Visa restrictions
## 11510                                            Visa restrictions
## 11511                                            Visa restrictions
## 11512                                            Visa restrictions
## 11513                                            Visa restrictions
## 11514                                            Visa restrictions
## 11515                                      Limit public gatherings
## 11516                                      Limit public gatherings
## 11517                                      Limit public gatherings
## 11518                                      Limit public gatherings
## 11519                                      Limit public gatherings
## 11520                                      Limit public gatherings
## 11521                             International flights suspension
## 11522                             International flights suspension
## 11523                             International flights suspension
## 11524                             International flights suspension
## 11525                             International flights suspension
## 11526                             International flights suspension
## 11527                                      Limit public gatherings
## 11528                                      Limit public gatherings
## 11529                                      Limit public gatherings
## 11530                                      Limit public gatherings
## 11531                                      Limit public gatherings
## 11532                                      Limit public gatherings
## 11533                                      Limit public gatherings
## 11534                                      Limit public gatherings
## 11535                                      Limit public gatherings
## 11536                                      Limit public gatherings
## 11537                                      Limit public gatherings
## 11538                                      Limit public gatherings
## 11539                                      Limit public gatherings
## 11540                                      Limit public gatherings
## 11541                                      Limit public gatherings
## 11542                                      Limit public gatherings
## 11543                                      Limit public gatherings
## 11544                                      Limit public gatherings
## 11545                                      Limit public gatherings
## 11546                                      Limit public gatherings
## 11547                                      Limit public gatherings
## 11548                                      Limit public gatherings
## 11549                                      Limit public gatherings
## 11550                                      Limit public gatherings
## 11551                                      General recommendations
## 11552                                      General recommendations
## 11553                                      General recommendations
## 11554                                      General recommendations
## 11555                                      General recommendations
## 11556                                      General recommendations
## 11557                                  State of emergency declared
## 11558                                  State of emergency declared
## 11559                                  State of emergency declared
## 11560                                  State of emergency declared
## 11561                                  State of emergency declared
## 11562                                  State of emergency declared
## 11563                                            Economic measures
## 11564                                            Economic measures
## 11565                                            Economic measures
## 11566                                            Economic measures
## 11567                                            Economic measures
## 11568                                            Economic measures
## 11569                                            Economic measures
## 11570                                            Economic measures
## 11571                                            Economic measures
## 11572                                            Economic measures
## 11573                                            Economic measures
## 11574                                            Economic measures
## 11575                                             Partial lockdown
## 11576                                             Partial lockdown
## 11577                                             Partial lockdown
## 11578                                             Partial lockdown
## 11579                                             Partial lockdown
## 11580                                             Partial lockdown
## 11581                                  State of emergency declared
## 11582                                  State of emergency declared
## 11583                                  State of emergency declared
## 11584                                  State of emergency declared
## 11585                                  State of emergency declared
## 11586                                  State of emergency declared
## 11587                                             Partial lockdown
## 11588                                             Partial lockdown
## 11589                                             Partial lockdown
## 11590                                             Partial lockdown
## 11591                                             Partial lockdown
## 11592                                             Partial lockdown
## 11593                                            Economic measures
## 11594                                            Economic measures
## 11595                                            Economic measures
## 11596                                            Economic measures
## 11597                                            Economic measures
## 11598                                            Economic measures
## 11599                                             Partial lockdown
## 11600                                             Partial lockdown
## 11601                                             Partial lockdown
## 11602                                             Partial lockdown
## 11603                                             Partial lockdown
## 11604                                             Partial lockdown
## 11605                                  State of emergency declared
## 11606                                  State of emergency declared
## 11607                                  State of emergency declared
## 11608                                  State of emergency declared
## 11609                                  State of emergency declared
## 11610                                  State of emergency declared
## 11611                           Changes in prison-related policies
## 11612                           Changes in prison-related policies
## 11613                           Changes in prison-related policies
## 11614                           Changes in prison-related policies
## 11615                           Changes in prison-related policies
## 11616                           Changes in prison-related policies
## 11617                                             Partial lockdown
## 11618                                             Partial lockdown
## 11619                                             Partial lockdown
## 11620                                             Partial lockdown
## 11621                                             Partial lockdown
## 11622                                             Partial lockdown
## 11623                                            Economic measures
## 11624                                            Economic measures
## 11625                                            Economic measures
## 11626                                            Economic measures
## 11627                                            Economic measures
## 11628                                            Economic measures
## 11629                        Other public health measures enforced
## 11630                        Other public health measures enforced
## 11631                        Other public health measures enforced
## 11632                        Other public health measures enforced
## 11633                        Other public health measures enforced
## 11634                        Other public health measures enforced
## 11635                        Other public health measures enforced
## 11636                        Other public health measures enforced
## 11637                        Other public health measures enforced
## 11638                        Other public health measures enforced
## 11639                        Other public health measures enforced
## 11640                        Other public health measures enforced
## 11641                                            Economic measures
## 11642                                            Economic measures
## 11643                                            Economic measures
## 11644                                            Economic measures
## 11645                                            Economic measures
## 11646                                            Economic measures
## 11647 Emergency administrative structures activated or established
## 11648 Emergency administrative structures activated or established
## 11649 Emergency administrative structures activated or established
## 11650 Emergency administrative structures activated or established
## 11651 Emergency administrative structures activated or established
## 11652 Emergency administrative structures activated or established
## 11653 Emergency administrative structures activated or established
## 11654 Emergency administrative structures activated or established
## 11655 Emergency administrative structures activated or established
## 11656 Emergency administrative structures activated or established
## 11657 Emergency administrative structures activated or established
## 11658 Emergency administrative structures activated or established
## 11659                        Other public health measures enforced
## 11660                        Other public health measures enforced
## 11661                        Other public health measures enforced
## 11662                        Other public health measures enforced
## 11663                        Other public health measures enforced
## 11664                        Other public health measures enforced
## 11665                                            Economic measures
## 11666                                            Economic measures
## 11667                                            Economic measures
## 11668                                            Economic measures
## 11669                                            Economic measures
## 11670                                            Economic measures
## 11671                                            Economic measures
## 11672                                            Economic measures
## 11673                                            Economic measures
## 11674                                            Economic measures
## 11675                                            Economic measures
## 11676                                            Economic measures
## 11677 Emergency administrative structures activated or established
## 11678 Emergency administrative structures activated or established
## 11679 Emergency administrative structures activated or established
## 11680 Emergency administrative structures activated or established
## 11681 Emergency administrative structures activated or established
## 11682 Emergency administrative structures activated or established
## 11683                                             Partial lockdown
## 11684                                             Partial lockdown
## 11685                                             Partial lockdown
## 11686                                             Partial lockdown
## 11687                                             Partial lockdown
## 11688                                             Partial lockdown
## 11689                        Other public health measures enforced
## 11690                        Other public health measures enforced
## 11691                        Other public health measures enforced
## 11692                        Other public health measures enforced
## 11693                        Other public health measures enforced
## 11694                        Other public health measures enforced
## 11695                                             Partial lockdown
## 11696                                             Partial lockdown
## 11697                                             Partial lockdown
## 11698                                             Partial lockdown
## 11699                                             Partial lockdown
## 11700                                             Partial lockdown
## 11701                                 Domestic travel restrictions
## 11702                                 Domestic travel restrictions
## 11703                                 Domestic travel restrictions
## 11704                                 Domestic travel restrictions
## 11705                                 Domestic travel restrictions
## 11706                                 Domestic travel restrictions
## 11707                                      Limit public gatherings
## 11708                                      Limit public gatherings
## 11709                                      Limit public gatherings
## 11710                                      Limit public gatherings
## 11711                                      Limit public gatherings
## 11712                                      Limit public gatherings
## 11713                                      Limit public gatherings
## 11714                                      Limit public gatherings
## 11715                                      Limit public gatherings
## 11716                                      Limit public gatherings
## 11717                                      Limit public gatherings
## 11718                                      Limit public gatherings
## 11719                                      Limit public gatherings
## 11720                                      Limit public gatherings
## 11721                                      Limit public gatherings
## 11722                                      Limit public gatherings
## 11723                                      Limit public gatherings
## 11724                                      Limit public gatherings
## 11725                                      Limit public gatherings
## 11726                                      Limit public gatherings
## 11727                                      Limit public gatherings
## 11728                                      Limit public gatherings
## 11729                                      Limit public gatherings
## 11730                                      Limit public gatherings
## 11731                    Closure of businesses and public services
## 11732                    Closure of businesses and public services
## 11733                    Closure of businesses and public services
## 11734                    Closure of businesses and public services
## 11735                    Closure of businesses and public services
## 11736                    Closure of businesses and public services
## 11737                                            Economic measures
## 11738                                            Economic measures
## 11739                                            Economic measures
## 11740                                            Economic measures
## 11741                                            Economic measures
## 11742                                            Economic measures
## 11743                                      Limit public gatherings
## 11744                                      Limit public gatherings
## 11745                                      Limit public gatherings
## 11746                                      Limit public gatherings
## 11747                                      Limit public gatherings
## 11748                                      Limit public gatherings
## 11749                                             Schools closure 
## 11750                                             Schools closure 
## 11751                                             Schools closure 
## 11752                                             Schools closure 
## 11753                                             Schools closure 
## 11754                                             Schools closure 
## 11755                    Closure of businesses and public services
## 11756                    Closure of businesses and public services
## 11757                    Closure of businesses and public services
## 11758                    Closure of businesses and public services
## 11759                    Closure of businesses and public services
## 11760                    Closure of businesses and public services
## 11761                    Closure of businesses and public services
## 11762                    Closure of businesses and public services
## 11763                    Closure of businesses and public services
## 11764                    Closure of businesses and public services
## 11765                    Closure of businesses and public services
## 11766                    Closure of businesses and public services
## 11767                                      Limit public gatherings
## 11768                                      Limit public gatherings
## 11769                                      Limit public gatherings
## 11770                                      Limit public gatherings
## 11771                                      Limit public gatherings
## 11772                                      Limit public gatherings
## 11773                                  Surveillance and monitoring
## 11774                                  Surveillance and monitoring
## 11775                                  Surveillance and monitoring
## 11776                                  Surveillance and monitoring
## 11777                                  Surveillance and monitoring
## 11778                                  Surveillance and monitoring
## 11779                    Closure of businesses and public services
## 11780                    Closure of businesses and public services
## 11781                    Closure of businesses and public services
## 11782                    Closure of businesses and public services
## 11783                    Closure of businesses and public services
## 11784                    Closure of businesses and public services
## 11785                    Closure of businesses and public services
## 11786                    Closure of businesses and public services
## 11787                    Closure of businesses and public services
## 11788                    Closure of businesses and public services
## 11789                    Closure of businesses and public services
## 11790                    Closure of businesses and public services
## 11791                                      Limit public gatherings
## 11792                                      Limit public gatherings
## 11793                                      Limit public gatherings
## 11794                                      Limit public gatherings
## 11795                                      Limit public gatherings
## 11796                                      Limit public gatherings
## 11797                    Closure of businesses and public services
## 11798                    Closure of businesses and public services
## 11799                    Closure of businesses and public services
## 11800                    Closure of businesses and public services
## 11801                    Closure of businesses and public services
## 11802                    Closure of businesses and public services
## 11803                    Closure of businesses and public services
## 11804                    Closure of businesses and public services
## 11805                    Closure of businesses and public services
## 11806                    Closure of businesses and public services
## 11807                    Closure of businesses and public services
## 11808                    Closure of businesses and public services
## 11809                    Closure of businesses and public services
## 11810                    Closure of businesses and public services
## 11811                    Closure of businesses and public services
## 11812                    Closure of businesses and public services
## 11813                    Closure of businesses and public services
## 11814                    Closure of businesses and public services
## 11815                    Closure of businesses and public services
## 11816                    Closure of businesses and public services
## 11817                    Closure of businesses and public services
## 11818                    Closure of businesses and public services
## 11819                    Closure of businesses and public services
## 11820                    Closure of businesses and public services
## 11821                    Closure of businesses and public services
## 11822                    Closure of businesses and public services
## 11823                    Closure of businesses and public services
## 11824                    Closure of businesses and public services
## 11825                    Closure of businesses and public services
## 11826                    Closure of businesses and public services
## 11827                    Closure of businesses and public services
## 11828                    Closure of businesses and public services
## 11829                    Closure of businesses and public services
## 11830                    Closure of businesses and public services
## 11831                    Closure of businesses and public services
## 11832                    Closure of businesses and public services
## 11833                    Closure of businesses and public services
## 11834                    Closure of businesses and public services
## 11835                    Closure of businesses and public services
## 11836                    Closure of businesses and public services
## 11837                    Closure of businesses and public services
## 11838                    Closure of businesses and public services
## 11839                                      Limit public gatherings
## 11840                                      Limit public gatherings
## 11841                                      Limit public gatherings
## 11842                                      Limit public gatherings
## 11843                                      Limit public gatherings
## 11844                                      Limit public gatherings
## 11845                                            Economic measures
## 11846                                            Economic measures
## 11847                                            Economic measures
## 11848                                            Economic measures
## 11849                                            Economic measures
## 11850                                            Economic measures
## 11851                    Closure of businesses and public services
## 11852                    Closure of businesses and public services
## 11853                    Closure of businesses and public services
## 11854                    Closure of businesses and public services
## 11855                    Closure of businesses and public services
## 11856                    Closure of businesses and public services
## 11857                                            Economic measures
## 11858                                            Economic measures
## 11859                                            Economic measures
## 11860                                            Economic measures
## 11861                                            Economic measures
## 11862                                            Economic measures
## 11863 Emergency administrative structures activated or established
## 11864 Emergency administrative structures activated or established
## 11865 Emergency administrative structures activated or established
## 11866 Emergency administrative structures activated or established
## 11867 Emergency administrative structures activated or established
## 11868 Emergency administrative structures activated or established
## 11869                                             Partial lockdown
## 11870                                             Partial lockdown
## 11871                                             Partial lockdown
## 11872                                             Partial lockdown
## 11873                                             Partial lockdown
## 11874                                             Partial lockdown
## 11875                        Other public health measures enforced
## 11876                        Other public health measures enforced
## 11877                        Other public health measures enforced
## 11878                        Other public health measures enforced
## 11879                        Other public health measures enforced
## 11880                        Other public health measures enforced
## 11881                        Other public health measures enforced
## 11882                        Other public health measures enforced
## 11883                        Other public health measures enforced
## 11884                        Other public health measures enforced
## 11885                        Other public health measures enforced
## 11886                        Other public health measures enforced
## 11887                                             Schools closure 
## 11888                                             Schools closure 
## 11889                                             Schools closure 
## 11890                                             Schools closure 
## 11891                                             Schools closure 
## 11892                                             Schools closure 
## 11893                    Closure of businesses and public services
## 11894                    Closure of businesses and public services
## 11895                    Closure of businesses and public services
## 11896                    Closure of businesses and public services
## 11897                    Closure of businesses and public services
## 11898                    Closure of businesses and public services
## 11899                    Closure of businesses and public services
## 11900                    Closure of businesses and public services
## 11901                    Closure of businesses and public services
## 11902                    Closure of businesses and public services
## 11903                    Closure of businesses and public services
## 11904                    Closure of businesses and public services
## 11905                            Isolation and quarantine policies
## 11906                            Isolation and quarantine policies
## 11907                            Isolation and quarantine policies
## 11908                            Isolation and quarantine policies
## 11909                            Isolation and quarantine policies
## 11910                            Isolation and quarantine policies
## 11911                                            Economic measures
## 11912                                            Economic measures
## 11913                                            Economic measures
## 11914                                            Economic measures
## 11915                                            Economic measures
## 11916                                            Economic measures
## 11917                    Closure of businesses and public services
## 11918                    Closure of businesses and public services
## 11919                    Closure of businesses and public services
## 11920                    Closure of businesses and public services
## 11921                    Closure of businesses and public services
## 11922                    Closure of businesses and public services
## 11923                                             Partial lockdown
## 11924                                             Partial lockdown
## 11925                                             Partial lockdown
## 11926                                             Partial lockdown
## 11927                                             Partial lockdown
## 11928                                             Partial lockdown
## 11929                                                      Curfews
## 11930                                                      Curfews
## 11931                                                      Curfews
## 11932                                                      Curfews
## 11933                                                      Curfews
## 11934                                                      Curfews
## 11935                                 Domestic travel restrictions
## 11936                                 Domestic travel restrictions
## 11937                                 Domestic travel restrictions
## 11938                                 Domestic travel restrictions
## 11939                                 Domestic travel restrictions
## 11940                                 Domestic travel restrictions
## 11941                        Other public health measures enforced
## 11942                        Other public health measures enforced
## 11943                        Other public health measures enforced
## 11944                        Other public health measures enforced
## 11945                        Other public health measures enforced
## 11946                        Other public health measures enforced
## 11947                                      Limit public gatherings
## 11948                                      Limit public gatherings
## 11949                                      Limit public gatherings
## 11950                                      Limit public gatherings
## 11951                                      Limit public gatherings
## 11952                                      Limit public gatherings
## 11953                                             Schools closure 
## 11954                                             Schools closure 
## 11955                                             Schools closure 
## 11956                                             Schools closure 
## 11957                                             Schools closure 
## 11958                                             Schools closure 
## 11959                        Other public health measures enforced
## 11960                        Other public health measures enforced
## 11961                        Other public health measures enforced
## 11962                        Other public health measures enforced
## 11963                        Other public health measures enforced
## 11964                        Other public health measures enforced
## 11965                                 Domestic travel restrictions
## 11966                                 Domestic travel restrictions
## 11967                                 Domestic travel restrictions
## 11968                                 Domestic travel restrictions
## 11969                                 Domestic travel restrictions
## 11970                                 Domestic travel restrictions
## 11971                                  Surveillance and monitoring
## 11972                                  Surveillance and monitoring
## 11973                                  Surveillance and monitoring
## 11974                                  Surveillance and monitoring
## 11975                                  Surveillance and monitoring
## 11976                                  Surveillance and monitoring
## 11977                                             Partial lockdown
## 11978                                             Partial lockdown
## 11979                                             Partial lockdown
## 11980                                             Partial lockdown
## 11981                                             Partial lockdown
## 11982                                             Partial lockdown
## 11983                                             Schools closure 
## 11984                                             Schools closure 
## 11985                                             Schools closure 
## 11986                                             Schools closure 
## 11987                                             Schools closure 
## 11988                                             Schools closure 
## 11989                                             Schools closure 
## 11990                                             Schools closure 
## 11991                                             Schools closure 
## 11992                                             Schools closure 
## 11993                                             Schools closure 
## 11994                                             Schools closure 
## 11995                                             Schools closure 
## 11996                                             Schools closure 
## 11997                                             Schools closure 
## 11998                                             Schools closure 
## 11999                                             Schools closure 
## 12000                                             Schools closure 
## 12001                            Isolation and quarantine policies
## 12002                            Isolation and quarantine policies
## 12003                            Isolation and quarantine policies
## 12004                            Isolation and quarantine policies
## 12005                            Isolation and quarantine policies
## 12006                            Isolation and quarantine policies
## 12007                    Closure of businesses and public services
## 12008                    Closure of businesses and public services
## 12009                    Closure of businesses and public services
## 12010                    Closure of businesses and public services
## 12011                    Closure of businesses and public services
## 12012                    Closure of businesses and public services
## 12013                                  Surveillance and monitoring
## 12014                                  Surveillance and monitoring
## 12015                                  Surveillance and monitoring
## 12016                                  Surveillance and monitoring
## 12017                                  Surveillance and monitoring
## 12018                                  Surveillance and monitoring
## 12019           Health screenings in airports and border crossings
## 12020           Health screenings in airports and border crossings
## 12021           Health screenings in airports and border crossings
## 12022           Health screenings in airports and border crossings
## 12023           Health screenings in airports and border crossings
## 12024           Health screenings in airports and border crossings
## 12025                            Isolation and quarantine policies
## 12026                            Isolation and quarantine policies
## 12027                            Isolation and quarantine policies
## 12028                            Isolation and quarantine policies
## 12029                            Isolation and quarantine policies
## 12030                            Isolation and quarantine policies
## 12031                           Changes in prison-related policies
## 12032                           Changes in prison-related policies
## 12033                           Changes in prison-related policies
## 12034                           Changes in prison-related policies
## 12035                           Changes in prison-related policies
## 12036                           Changes in prison-related policies
## 12037 Emergency administrative structures activated or established
## 12038 Emergency administrative structures activated or established
## 12039 Emergency administrative structures activated or established
## 12040 Emergency administrative structures activated or established
## 12041 Emergency administrative structures activated or established
## 12042 Emergency administrative structures activated or established
## 12043                            Isolation and quarantine policies
## 12044                            Isolation and quarantine policies
## 12045                            Isolation and quarantine policies
## 12046                            Isolation and quarantine policies
## 12047                            Isolation and quarantine policies
## 12048                            Isolation and quarantine policies
## 12049                                          Awareness campaigns
## 12050                                          Awareness campaigns
## 12051                                          Awareness campaigns
## 12052                                          Awareness campaigns
## 12053                                          Awareness campaigns
## 12054                                          Awareness campaigns
## 12055                                              Border closure 
## 12056                                              Border closure 
## 12057                                              Border closure 
## 12058                                              Border closure 
## 12059                                              Border closure 
## 12060                                              Border closure 
## 12061                                            Visa restrictions
## 12062                                            Visa restrictions
## 12063                                            Visa restrictions
## 12064                                            Visa restrictions
## 12065                                            Visa restrictions
## 12066                                            Visa restrictions
## 12067                                              Border closure 
## 12068                                              Border closure 
## 12069                                              Border closure 
## 12070                                              Border closure 
## 12071                                              Border closure 
## 12072                                              Border closure 
## 12073                                              Border closure 
## 12074                                              Border closure 
## 12075                                              Border closure 
## 12076                                              Border closure 
## 12077                                              Border closure 
## 12078                                              Border closure 
## 12079                                          Awareness campaigns
## 12080                                          Awareness campaigns
## 12081                                          Awareness campaigns
## 12082                                          Awareness campaigns
## 12083                                          Awareness campaigns
## 12084                                          Awareness campaigns
## 12085                                              Border closure 
## 12086                                              Border closure 
## 12087                                              Border closure 
## 12088                                              Border closure 
## 12089                                              Border closure 
## 12090                                              Border closure 
## 12091                                            Visa restrictions
## 12092                                            Visa restrictions
## 12093                                            Visa restrictions
## 12094                                            Visa restrictions
## 12095                                            Visa restrictions
## 12096                                            Visa restrictions
## 12097                                              Border closure 
## 12098                                              Border closure 
## 12099                                              Border closure 
## 12100                                              Border closure 
## 12101                                              Border closure 
## 12102                                              Border closure 
## 12103 Emergency administrative structures activated or established
## 12104 Emergency administrative structures activated or established
## 12105 Emergency administrative structures activated or established
## 12106 Emergency administrative structures activated or established
## 12107 Emergency administrative structures activated or established
## 12108 Emergency administrative structures activated or established
## 12109 Emergency administrative structures activated or established
## 12110 Emergency administrative structures activated or established
## 12111 Emergency administrative structures activated or established
## 12112 Emergency administrative structures activated or established
## 12113 Emergency administrative structures activated or established
## 12114 Emergency administrative structures activated or established
## 12115                                 Domestic travel restrictions
## 12116                                 Domestic travel restrictions
## 12117                                 Domestic travel restrictions
## 12118                                 Domestic travel restrictions
## 12119                                 Domestic travel restrictions
## 12120                                 Domestic travel restrictions
## 12121                                      Limit public gatherings
## 12122                                      Limit public gatherings
## 12123                                      Limit public gatherings
## 12124                                      Limit public gatherings
## 12125                                      Limit public gatherings
## 12126                                      Limit public gatherings
## 12127                             International flights suspension
## 12128                             International flights suspension
## 12129                             International flights suspension
## 12130                             International flights suspension
## 12131                             International flights suspension
## 12132                             International flights suspension
## 12133                                              Border closure 
## 12134                                              Border closure 
## 12135                                              Border closure 
## 12136                                              Border closure 
## 12137                                              Border closure 
## 12138                                              Border closure 
## 12139                                             Partial lockdown
## 12140                                             Partial lockdown
## 12141                                             Partial lockdown
## 12142                                             Partial lockdown
## 12143                                             Partial lockdown
## 12144                                             Partial lockdown
## 12145                    Closure of businesses and public services
## 12146                    Closure of businesses and public services
## 12147                    Closure of businesses and public services
## 12148                    Closure of businesses and public services
## 12149                    Closure of businesses and public services
## 12150                    Closure of businesses and public services
## 12151                                      Limit public gatherings
## 12152                                      Limit public gatherings
## 12153                                      Limit public gatherings
## 12154                                      Limit public gatherings
## 12155                                      Limit public gatherings
## 12156                                      Limit public gatherings
## 12157                                 Domestic travel restrictions
## 12158                                 Domestic travel restrictions
## 12159                                 Domestic travel restrictions
## 12160                                 Domestic travel restrictions
## 12161                                 Domestic travel restrictions
## 12162                                 Domestic travel restrictions
## 12163                                             Schools closure 
## 12164                                             Schools closure 
## 12165                                             Schools closure 
## 12166                                             Schools closure 
## 12167                                             Schools closure 
## 12168                                             Schools closure 
## 12169           Health screenings in airports and border crossings
## 12170           Health screenings in airports and border crossings
## 12171           Health screenings in airports and border crossings
## 12172           Health screenings in airports and border crossings
## 12173           Health screenings in airports and border crossings
## 12174           Health screenings in airports and border crossings
## 12175                                 Domestic travel restrictions
## 12176                                 Domestic travel restrictions
## 12177                                 Domestic travel restrictions
## 12178                                 Domestic travel restrictions
## 12179                                 Domestic travel restrictions
## 12180                                 Domestic travel restrictions
## 12181                                            Economic measures
## 12182                                            Economic measures
## 12183                                            Economic measures
## 12184                                            Economic measures
## 12185                                            Economic measures
## 12186                                            Economic measures
## 12187                                            Economic measures
## 12188                                            Economic measures
## 12189                                            Economic measures
## 12190                                            Economic measures
## 12191                                            Economic measures
## 12192                                            Economic measures
## 12193                       Strengthening the public health system
## 12194                       Strengthening the public health system
## 12195                       Strengthening the public health system
## 12196                       Strengthening the public health system
## 12197                       Strengthening the public health system
## 12198                       Strengthening the public health system
## 12199                       Strengthening the public health system
## 12200                       Strengthening the public health system
## 12201                       Strengthening the public health system
## 12202                       Strengthening the public health system
## 12203                       Strengthening the public health system
## 12204                       Strengthening the public health system
## 12205             Psychological assistance and medical social work
## 12206             Psychological assistance and medical social work
## 12207             Psychological assistance and medical social work
## 12208             Psychological assistance and medical social work
## 12209             Psychological assistance and medical social work
## 12210             Psychological assistance and medical social work
## 12211                       Strengthening the public health system
## 12212                       Strengthening the public health system
## 12213                       Strengthening the public health system
## 12214                       Strengthening the public health system
## 12215                       Strengthening the public health system
## 12216                       Strengthening the public health system
## 12217             Psychological assistance and medical social work
## 12218             Psychological assistance and medical social work
## 12219             Psychological assistance and medical social work
## 12220             Psychological assistance and medical social work
## 12221             Psychological assistance and medical social work
## 12222             Psychological assistance and medical social work
## 12223                        Other public health measures enforced
## 12224                        Other public health measures enforced
## 12225                        Other public health measures enforced
## 12226                        Other public health measures enforced
## 12227                        Other public health measures enforced
## 12228                        Other public health measures enforced
## 12229 Emergency administrative structures activated or established
## 12230 Emergency administrative structures activated or established
## 12231 Emergency administrative structures activated or established
## 12232 Emergency administrative structures activated or established
## 12233 Emergency administrative structures activated or established
## 12234 Emergency administrative structures activated or established
## 12235                             International flights suspension
## 12236                             International flights suspension
## 12237                             International flights suspension
## 12238                             International flights suspension
## 12239                             International flights suspension
## 12240                             International flights suspension
## 12241                             International flights suspension
## 12242                             International flights suspension
## 12243                             International flights suspension
## 12244                             International flights suspension
## 12245                             International flights suspension
## 12246                             International flights suspension
## 12247                       Strengthening the public health system
## 12248                       Strengthening the public health system
## 12249                       Strengthening the public health system
## 12250                       Strengthening the public health system
## 12251                       Strengthening the public health system
## 12252                       Strengthening the public health system
## 12253 Emergency administrative structures activated or established
## 12254 Emergency administrative structures activated or established
## 12255 Emergency administrative structures activated or established
## 12256 Emergency administrative structures activated or established
## 12257 Emergency administrative structures activated or established
## 12258 Emergency administrative structures activated or established
## 12259                                             Partial lockdown
## 12260                                             Partial lockdown
## 12261                                             Partial lockdown
## 12262                                             Partial lockdown
## 12263                                             Partial lockdown
## 12264                                             Partial lockdown
## 12265                    Closure of businesses and public services
## 12266                    Closure of businesses and public services
## 12267                    Closure of businesses and public services
## 12268                    Closure of businesses and public services
## 12269                    Closure of businesses and public services
## 12270                    Closure of businesses and public services
## 12271                                            Visa restrictions
## 12272                                            Visa restrictions
## 12273                                            Visa restrictions
## 12274                                            Visa restrictions
## 12275                                            Visa restrictions
## 12276                                            Visa restrictions
## 12277                                              Border closure 
## 12278                                              Border closure 
## 12279                                              Border closure 
## 12280                                              Border closure 
## 12281                                              Border closure 
## 12282                                              Border closure 
## 12283                    Closure of businesses and public services
## 12284                    Closure of businesses and public services
## 12285                    Closure of businesses and public services
## 12286                    Closure of businesses and public services
## 12287                    Closure of businesses and public services
## 12288                    Closure of businesses and public services
## 12289                                            Visa restrictions
## 12290                                            Visa restrictions
## 12291                                            Visa restrictions
## 12292                                            Visa restrictions
## 12293                                            Visa restrictions
## 12294                                            Visa restrictions
## 12295                                              Border closure 
## 12296                                              Border closure 
## 12297                                              Border closure 
## 12298                                              Border closure 
## 12299                                              Border closure 
## 12300                                              Border closure 
## 12301                       Strengthening the public health system
## 12302                       Strengthening the public health system
## 12303                       Strengthening the public health system
## 12304                       Strengthening the public health system
## 12305                       Strengthening the public health system
## 12306                       Strengthening the public health system
## 12307                                            Economic measures
## 12308                                            Economic measures
## 12309                                            Economic measures
## 12310                                            Economic measures
## 12311                                            Economic measures
## 12312                                            Economic measures
## 12313                                            Visa restrictions
## 12314                                            Visa restrictions
## 12315                                            Visa restrictions
## 12316                                            Visa restrictions
## 12317                                            Visa restrictions
## 12318                                            Visa restrictions
## 12319                    Closure of businesses and public services
## 12320                    Closure of businesses and public services
## 12321                    Closure of businesses and public services
## 12322                    Closure of businesses and public services
## 12323                    Closure of businesses and public services
## 12324                    Closure of businesses and public services
## 12325                Requirement to wear protective gear in public
## 12326                Requirement to wear protective gear in public
## 12327                Requirement to wear protective gear in public
## 12328                Requirement to wear protective gear in public
## 12329                Requirement to wear protective gear in public
## 12330                Requirement to wear protective gear in public
## 12331                       Strengthening the public health system
## 12332                       Strengthening the public health system
## 12333                       Strengthening the public health system
## 12334                       Strengthening the public health system
## 12335                       Strengthening the public health system
## 12336                       Strengthening the public health system
## 12337 Emergency administrative structures activated or established
## 12338 Emergency administrative structures activated or established
## 12339 Emergency administrative structures activated or established
## 12340 Emergency administrative structures activated or established
## 12341 Emergency administrative structures activated or established
## 12342 Emergency administrative structures activated or established
## 12343                                             Schools closure 
## 12344                                             Schools closure 
## 12345                                             Schools closure 
## 12346                                             Schools closure 
## 12347                                             Schools closure 
## 12348                                             Schools closure 
## 12349                                      Limit public gatherings
## 12350                                      Limit public gatherings
## 12351                                      Limit public gatherings
## 12352                                      Limit public gatherings
## 12353                                      Limit public gatherings
## 12354                                      Limit public gatherings
## 12355                                            Visa restrictions
## 12356                                            Visa restrictions
## 12357                                            Visa restrictions
## 12358                                            Visa restrictions
## 12359                                            Visa restrictions
## 12360                                            Visa restrictions
## 12361                                          Awareness campaigns
## 12362                                          Awareness campaigns
## 12363                                          Awareness campaigns
## 12364                                          Awareness campaigns
## 12365                                          Awareness campaigns
## 12366                                          Awareness campaigns
## 12367                                      General recommendations
## 12368                                      General recommendations
## 12369                                      General recommendations
## 12370                                      General recommendations
## 12371                                      General recommendations
## 12372                                      General recommendations
## 12373                            Isolation and quarantine policies
## 12374                            Isolation and quarantine policies
## 12375                            Isolation and quarantine policies
## 12376                            Isolation and quarantine policies
## 12377                            Isolation and quarantine policies
## 12378                            Isolation and quarantine policies
## 12379                            Isolation and quarantine policies
## 12380                            Isolation and quarantine policies
## 12381                            Isolation and quarantine policies
## 12382                            Isolation and quarantine policies
## 12383                            Isolation and quarantine policies
## 12384                            Isolation and quarantine policies
## 12385                                      Limit public gatherings
## 12386                                      Limit public gatherings
## 12387                                      Limit public gatherings
## 12388                                      Limit public gatherings
## 12389                                      Limit public gatherings
## 12390                                      Limit public gatherings
## 12391                                 Domestic travel restrictions
## 12392                                 Domestic travel restrictions
## 12393                                 Domestic travel restrictions
## 12394                                 Domestic travel restrictions
## 12395                                 Domestic travel restrictions
## 12396                                 Domestic travel restrictions
## 12397                                             Partial lockdown
## 12398                                             Partial lockdown
## 12399                                             Partial lockdown
## 12400                                             Partial lockdown
## 12401                                             Partial lockdown
## 12402                                             Partial lockdown
## 12403                                            Visa restrictions
## 12404                                            Visa restrictions
## 12405                                            Visa restrictions
## 12406                                            Visa restrictions
## 12407                                            Visa restrictions
## 12408                                            Visa restrictions
## 12409                            Isolation and quarantine policies
## 12410                            Isolation and quarantine policies
## 12411                            Isolation and quarantine policies
## 12412                            Isolation and quarantine policies
## 12413                            Isolation and quarantine policies
## 12414                            Isolation and quarantine policies
## 12415                                          Awareness campaigns
## 12416                                          Awareness campaigns
## 12417                                          Awareness campaigns
## 12418                                          Awareness campaigns
## 12419                                          Awareness campaigns
## 12420                                          Awareness campaigns
## 12421           Health screenings in airports and border crossings
## 12422           Health screenings in airports and border crossings
## 12423           Health screenings in airports and border crossings
## 12424           Health screenings in airports and border crossings
## 12425           Health screenings in airports and border crossings
## 12426           Health screenings in airports and border crossings
## 12427                    Closure of businesses and public services
## 12428                    Closure of businesses and public services
## 12429                    Closure of businesses and public services
## 12430                    Closure of businesses and public services
## 12431                    Closure of businesses and public services
## 12432                    Closure of businesses and public services
## 12433                                      General recommendations
## 12434                                      General recommendations
## 12435                                      General recommendations
## 12436                                      General recommendations
## 12437                                      General recommendations
## 12438                                      General recommendations
## 12439                       Strengthening the public health system
## 12440                       Strengthening the public health system
## 12441                       Strengthening the public health system
## 12442                       Strengthening the public health system
## 12443                       Strengthening the public health system
## 12444                       Strengthening the public health system
## 12445                            Isolation and quarantine policies
## 12446                            Isolation and quarantine policies
## 12447                            Isolation and quarantine policies
## 12448                            Isolation and quarantine policies
## 12449                            Isolation and quarantine policies
## 12450                            Isolation and quarantine policies
## 12451                                      Limit public gatherings
## 12452                                      Limit public gatherings
## 12453                                      Limit public gatherings
## 12454                                      Limit public gatherings
## 12455                                      Limit public gatherings
## 12456                                      Limit public gatherings
## 12457                            Isolation and quarantine policies
## 12458                            Isolation and quarantine policies
## 12459                            Isolation and quarantine policies
## 12460                            Isolation and quarantine policies
## 12461                            Isolation and quarantine policies
## 12462                            Isolation and quarantine policies
## 12463                                            Visa restrictions
## 12464                                            Visa restrictions
## 12465                                            Visa restrictions
## 12466                                            Visa restrictions
## 12467                                            Visa restrictions
## 12468                                            Visa restrictions
## 12469                                      Limit public gatherings
## 12470                                      Limit public gatherings
## 12471                                      Limit public gatherings
## 12472                                      Limit public gatherings
## 12473                                      Limit public gatherings
## 12474                                      Limit public gatherings
## 12475                               Checkpoints within the country
## 12476                               Checkpoints within the country
## 12477                               Checkpoints within the country
## 12478                               Checkpoints within the country
## 12479                               Checkpoints within the country
## 12480                               Checkpoints within the country
## 12481                                  Surveillance and monitoring
## 12482                                  Surveillance and monitoring
## 12483                                  Surveillance and monitoring
## 12484                                  Surveillance and monitoring
## 12485                                  Surveillance and monitoring
## 12486                                  Surveillance and monitoring
## 12487                       Strengthening the public health system
## 12488                       Strengthening the public health system
## 12489                       Strengthening the public health system
## 12490                       Strengthening the public health system
## 12491                       Strengthening the public health system
## 12492                       Strengthening the public health system
## 12493                            Isolation and quarantine policies
## 12494                            Isolation and quarantine policies
## 12495                            Isolation and quarantine policies
## 12496                            Isolation and quarantine policies
## 12497                            Isolation and quarantine policies
## 12498                            Isolation and quarantine policies
## 12499                                      General recommendations
## 12500                                      General recommendations
## 12501                                      General recommendations
## 12502                                      General recommendations
## 12503                                      General recommendations
## 12504                                      General recommendations
## 12505                                  Surveillance and monitoring
## 12506                                  Surveillance and monitoring
## 12507                                  Surveillance and monitoring
## 12508                                  Surveillance and monitoring
## 12509                                  Surveillance and monitoring
## 12510                                  Surveillance and monitoring
## 12511                                          Awareness campaigns
## 12512                                          Awareness campaigns
## 12513                                          Awareness campaigns
## 12514                                          Awareness campaigns
## 12515                                          Awareness campaigns
## 12516                                          Awareness campaigns
## 12517                                               Testing policy
## 12518                                               Testing policy
## 12519                                               Testing policy
## 12520                                               Testing policy
## 12521                                               Testing policy
## 12522                                               Testing policy
## 12523                                      General recommendations
## 12524                                      General recommendations
## 12525                                      General recommendations
## 12526                                      General recommendations
## 12527                                      General recommendations
## 12528                                      General recommendations
## 12529                                          Awareness campaigns
## 12530                                          Awareness campaigns
## 12531                                          Awareness campaigns
## 12532                                          Awareness campaigns
## 12533                                          Awareness campaigns
## 12534                                          Awareness campaigns
## 12535                                  Surveillance and monitoring
## 12536                                  Surveillance and monitoring
## 12537                                  Surveillance and monitoring
## 12538                                  Surveillance and monitoring
## 12539                                  Surveillance and monitoring
## 12540                                  Surveillance and monitoring
## 12541                                      Limit public gatherings
## 12542                                      Limit public gatherings
## 12543                                      Limit public gatherings
## 12544                                      Limit public gatherings
## 12545                                      Limit public gatherings
## 12546                                      Limit public gatherings
## 12547                                      Limit public gatherings
## 12548                                      Limit public gatherings
## 12549                                      Limit public gatherings
## 12550                                      Limit public gatherings
## 12551                                      Limit public gatherings
## 12552                                      Limit public gatherings
## 12553                                      Limit public gatherings
## 12554                                      Limit public gatherings
## 12555                                      Limit public gatherings
## 12556                                      Limit public gatherings
## 12557                                      Limit public gatherings
## 12558                                      Limit public gatherings
## 12559                                  Surveillance and monitoring
## 12560                                  Surveillance and monitoring
## 12561                                  Surveillance and monitoring
## 12562                                  Surveillance and monitoring
## 12563                                  Surveillance and monitoring
## 12564                                  Surveillance and monitoring
## 12565                       Strengthening the public health system
## 12566                       Strengthening the public health system
## 12567                       Strengthening the public health system
## 12568                       Strengthening the public health system
## 12569                       Strengthening the public health system
## 12570                       Strengthening the public health system
## 12571                                  Surveillance and monitoring
## 12572                                  Surveillance and monitoring
## 12573                                  Surveillance and monitoring
## 12574                                  Surveillance and monitoring
## 12575                                  Surveillance and monitoring
## 12576                                  Surveillance and monitoring
## 12577                                  Surveillance and monitoring
## 12578                                  Surveillance and monitoring
## 12579                                  Surveillance and monitoring
## 12580                                  Surveillance and monitoring
## 12581                                  Surveillance and monitoring
## 12582                                  Surveillance and monitoring
## 12583                                            Economic measures
## 12584                                            Economic measures
## 12585                                            Economic measures
## 12586                                            Economic measures
## 12587                                            Economic measures
## 12588                                            Economic measures
## 12589                                            Economic measures
## 12590                                            Economic measures
## 12591                                            Economic measures
## 12592                                            Economic measures
## 12593                                            Economic measures
## 12594                                            Economic measures
## 12595                                             Partial lockdown
## 12596                                             Partial lockdown
## 12597                                             Partial lockdown
## 12598                                             Partial lockdown
## 12599                                             Partial lockdown
## 12600                                             Partial lockdown
## 12601                                  Surveillance and monitoring
## 12602                                  Surveillance and monitoring
## 12603                                  Surveillance and monitoring
## 12604                                  Surveillance and monitoring
## 12605                                  Surveillance and monitoring
## 12606                                  Surveillance and monitoring
## 12607                                  Surveillance and monitoring
## 12608                                  Surveillance and monitoring
## 12609                                  Surveillance and monitoring
## 12610                                  Surveillance and monitoring
## 12611                                  Surveillance and monitoring
## 12612                                  Surveillance and monitoring
## 12613                    Closure of businesses and public services
## 12614                    Closure of businesses and public services
## 12615                    Closure of businesses and public services
## 12616                    Closure of businesses and public services
## 12617                    Closure of businesses and public services
## 12618                    Closure of businesses and public services
## 12619                    Closure of businesses and public services
## 12620                    Closure of businesses and public services
## 12621                    Closure of businesses and public services
## 12622                    Closure of businesses and public services
## 12623                    Closure of businesses and public services
## 12624                    Closure of businesses and public services
## 12625                                      Limit public gatherings
## 12626                                      Limit public gatherings
## 12627                                      Limit public gatherings
## 12628                                      Limit public gatherings
## 12629                                      Limit public gatherings
## 12630                                      Limit public gatherings
## 12631                                  Surveillance and monitoring
## 12632                                  Surveillance and monitoring
## 12633                                  Surveillance and monitoring
## 12634                                  Surveillance and monitoring
## 12635                                  Surveillance and monitoring
## 12636                                  Surveillance and monitoring
## 12637                                  Surveillance and monitoring
## 12638                                  Surveillance and monitoring
## 12639                                  Surveillance and monitoring
## 12640                                  Surveillance and monitoring
## 12641                                  Surveillance and monitoring
## 12642                                  Surveillance and monitoring
## 12643                                          Awareness campaigns
## 12644                                          Awareness campaigns
## 12645                                          Awareness campaigns
## 12646                                          Awareness campaigns
## 12647                                          Awareness campaigns
## 12648                                          Awareness campaigns
## 12649                               Checkpoints within the country
## 12650                               Checkpoints within the country
## 12651                               Checkpoints within the country
## 12652                               Checkpoints within the country
## 12653                               Checkpoints within the country
## 12654                               Checkpoints within the country
## 12655                        Other public health measures enforced
## 12656                        Other public health measures enforced
## 12657                        Other public health measures enforced
## 12658                        Other public health measures enforced
## 12659                        Other public health measures enforced
## 12660                        Other public health measures enforced
## 12661                                             Partial lockdown
## 12662                                             Partial lockdown
## 12663                                             Partial lockdown
## 12664                                             Partial lockdown
## 12665                                             Partial lockdown
## 12666                                             Partial lockdown
## 12667                        Other public health measures enforced
## 12668                        Other public health measures enforced
## 12669                        Other public health measures enforced
## 12670                        Other public health measures enforced
## 12671                        Other public health measures enforced
## 12672                        Other public health measures enforced
## 12673                                            Economic measures
## 12674                                            Economic measures
## 12675                                            Economic measures
## 12676                                            Economic measures
## 12677                                            Economic measures
## 12678                                            Economic measures
## 12679                                          Awareness campaigns
## 12680                                          Awareness campaigns
## 12681                                          Awareness campaigns
## 12682                                          Awareness campaigns
## 12683                                          Awareness campaigns
## 12684                                          Awareness campaigns
## 12685                                          Awareness campaigns
## 12686                                          Awareness campaigns
## 12687                                          Awareness campaigns
## 12688                                          Awareness campaigns
## 12689                                          Awareness campaigns
## 12690                                          Awareness campaigns
## 12691                                Limit product imports/exports
## 12692                                Limit product imports/exports
## 12693                                Limit product imports/exports
## 12694                                Limit product imports/exports
## 12695                                Limit product imports/exports
## 12696                                Limit product imports/exports
## 12697                    Closure of businesses and public services
## 12698                    Closure of businesses and public services
## 12699                    Closure of businesses and public services
## 12700                    Closure of businesses and public services
## 12701                    Closure of businesses and public services
## 12702                    Closure of businesses and public services
## 12703                    Closure of businesses and public services
## 12704                    Closure of businesses and public services
## 12705                    Closure of businesses and public services
## 12706                    Closure of businesses and public services
## 12707                    Closure of businesses and public services
## 12708                    Closure of businesses and public services
## 12709                                      Limit public gatherings
## 12710                                      Limit public gatherings
## 12711                                      Limit public gatherings
## 12712                                      Limit public gatherings
## 12713                                      Limit public gatherings
## 12714                                      Limit public gatherings
## 12715                        Other public health measures enforced
## 12716                        Other public health measures enforced
## 12717                        Other public health measures enforced
## 12718                        Other public health measures enforced
## 12719                        Other public health measures enforced
## 12720                        Other public health measures enforced
## 12721                                      General recommendations
## 12722                                      General recommendations
## 12723                                      General recommendations
## 12724                                      General recommendations
## 12725                                      General recommendations
## 12726                                      General recommendations
## 12727                Requirement to wear protective gear in public
## 12728                Requirement to wear protective gear in public
## 12729                Requirement to wear protective gear in public
## 12730                Requirement to wear protective gear in public
## 12731                Requirement to wear protective gear in public
## 12732                Requirement to wear protective gear in public
## 12733                    Closure of businesses and public services
## 12734                    Closure of businesses and public services
## 12735                    Closure of businesses and public services
## 12736                    Closure of businesses and public services
## 12737                    Closure of businesses and public services
## 12738                    Closure of businesses and public services
## 12739                Requirement to wear protective gear in public
## 12740                Requirement to wear protective gear in public
## 12741                Requirement to wear protective gear in public
## 12742                Requirement to wear protective gear in public
## 12743                Requirement to wear protective gear in public
## 12744                Requirement to wear protective gear in public
## 12745                                  Surveillance and monitoring
## 12746                                  Surveillance and monitoring
## 12747                                  Surveillance and monitoring
## 12748                                  Surveillance and monitoring
## 12749                                  Surveillance and monitoring
## 12750                                  Surveillance and monitoring
## 12751                    Closure of businesses and public services
## 12752                    Closure of businesses and public services
## 12753                    Closure of businesses and public services
## 12754                    Closure of businesses and public services
## 12755                    Closure of businesses and public services
## 12756                    Closure of businesses and public services
## 12757                                          Awareness campaigns
## 12758                                          Awareness campaigns
## 12759                                          Awareness campaigns
## 12760                                          Awareness campaigns
## 12761                                          Awareness campaigns
## 12762                                          Awareness campaigns
## 12763                                      General recommendations
## 12764                                      General recommendations
## 12765                                      General recommendations
## 12766                                      General recommendations
## 12767                                      General recommendations
## 12768                                      General recommendations
## 12769 Emergency administrative structures activated or established
## 12770 Emergency administrative structures activated or established
## 12771 Emergency administrative structures activated or established
## 12772 Emergency administrative structures activated or established
## 12773 Emergency administrative structures activated or established
## 12774 Emergency administrative structures activated or established
## 12775                                             Schools closure 
## 12776                                             Schools closure 
## 12777                                             Schools closure 
## 12778                                             Schools closure 
## 12779                                             Schools closure 
## 12780                                             Schools closure 
## 12781                                             Schools closure 
## 12782                                             Schools closure 
## 12783                                             Schools closure 
## 12784                                             Schools closure 
## 12785                                             Schools closure 
## 12786                                             Schools closure 
## 12787                        Other public health measures enforced
## 12788                        Other public health measures enforced
## 12789                        Other public health measures enforced
## 12790                        Other public health measures enforced
## 12791                        Other public health measures enforced
## 12792                        Other public health measures enforced
## 12793                        Other public health measures enforced
## 12794                        Other public health measures enforced
## 12795                        Other public health measures enforced
## 12796                        Other public health measures enforced
## 12797                        Other public health measures enforced
## 12798                        Other public health measures enforced
## 12799                               Checkpoints within the country
## 12800                               Checkpoints within the country
## 12801                               Checkpoints within the country
## 12802                               Checkpoints within the country
## 12803                               Checkpoints within the country
## 12804                               Checkpoints within the country
## 12805                    Closure of businesses and public services
## 12806                    Closure of businesses and public services
## 12807                    Closure of businesses and public services
## 12808                    Closure of businesses and public services
## 12809                    Closure of businesses and public services
## 12810                    Closure of businesses and public services
## 12811                                             Schools closure 
## 12812                                             Schools closure 
## 12813                                             Schools closure 
## 12814                                             Schools closure 
## 12815                                             Schools closure 
## 12816                                             Schools closure 
## 12817                                               Testing policy
## 12818                                               Testing policy
## 12819                                               Testing policy
## 12820                                               Testing policy
## 12821                                               Testing policy
## 12822                                               Testing policy
## 12823                    Closure of businesses and public services
## 12824                    Closure of businesses and public services
## 12825                    Closure of businesses and public services
## 12826                    Closure of businesses and public services
## 12827                    Closure of businesses and public services
## 12828                    Closure of businesses and public services
## 12829                                  Surveillance and monitoring
## 12830                                  Surveillance and monitoring
## 12831                                  Surveillance and monitoring
## 12832                                  Surveillance and monitoring
## 12833                                  Surveillance and monitoring
## 12834                                  Surveillance and monitoring
## 12835                    Closure of businesses and public services
## 12836                    Closure of businesses and public services
## 12837                    Closure of businesses and public services
## 12838                    Closure of businesses and public services
## 12839                    Closure of businesses and public services
## 12840                    Closure of businesses and public services
## 12841                                             Schools closure 
## 12842                                             Schools closure 
## 12843                                             Schools closure 
## 12844                                             Schools closure 
## 12845                                             Schools closure 
## 12846                                             Schools closure 
## 12847                    Closure of businesses and public services
## 12848                    Closure of businesses and public services
## 12849                    Closure of businesses and public services
## 12850                    Closure of businesses and public services
## 12851                    Closure of businesses and public services
## 12852                    Closure of businesses and public services
## 12853                                      Limit public gatherings
## 12854                                      Limit public gatherings
## 12855                                      Limit public gatherings
## 12856                                      Limit public gatherings
## 12857                                      Limit public gatherings
## 12858                                      Limit public gatherings
## 12859           Health screenings in airports and border crossings
## 12860           Health screenings in airports and border crossings
## 12861           Health screenings in airports and border crossings
## 12862           Health screenings in airports and border crossings
## 12863           Health screenings in airports and border crossings
## 12864           Health screenings in airports and border crossings
## 12865                            Isolation and quarantine policies
## 12866                            Isolation and quarantine policies
## 12867                            Isolation and quarantine policies
## 12868                            Isolation and quarantine policies
## 12869                            Isolation and quarantine policies
## 12870                            Isolation and quarantine policies
## 12871                             International flights suspension
## 12872                             International flights suspension
## 12873                             International flights suspension
## 12874                             International flights suspension
## 12875                             International flights suspension
## 12876                             International flights suspension
## 12877                                             Schools closure 
## 12878                                             Schools closure 
## 12879                                             Schools closure 
## 12880                                             Schools closure 
## 12881                                             Schools closure 
## 12882                                             Schools closure 
## 12883                                      Limit public gatherings
## 12884                                      Limit public gatherings
## 12885                                      Limit public gatherings
## 12886                                      Limit public gatherings
## 12887                                      Limit public gatherings
## 12888                                      Limit public gatherings
## 12889                                  State of emergency declared
## 12890                                  State of emergency declared
## 12891                                  State of emergency declared
## 12892                                  State of emergency declared
## 12893                                  State of emergency declared
## 12894                                  State of emergency declared
## 12895                                             Partial lockdown
## 12896                                             Partial lockdown
## 12897                                             Partial lockdown
## 12898                                             Partial lockdown
## 12899                                             Partial lockdown
## 12900                                             Partial lockdown
## 12901                    Closure of businesses and public services
## 12902                    Closure of businesses and public services
## 12903                    Closure of businesses and public services
## 12904                    Closure of businesses and public services
## 12905                    Closure of businesses and public services
## 12906                    Closure of businesses and public services
## 12907 Emergency administrative structures activated or established
## 12908 Emergency administrative structures activated or established
## 12909 Emergency administrative structures activated or established
## 12910 Emergency administrative structures activated or established
## 12911 Emergency administrative structures activated or established
## 12912 Emergency administrative structures activated or established
## 12913                            Isolation and quarantine policies
## 12914                            Isolation and quarantine policies
## 12915                            Isolation and quarantine policies
## 12916                            Isolation and quarantine policies
## 12917                            Isolation and quarantine policies
## 12918                            Isolation and quarantine policies
## 12919                                              Border closure 
## 12920                                              Border closure 
## 12921                                              Border closure 
## 12922                                              Border closure 
## 12923                                              Border closure 
## 12924                                              Border closure 
## 12925                       Strengthening the public health system
## 12926                       Strengthening the public health system
## 12927                       Strengthening the public health system
## 12928                       Strengthening the public health system
## 12929                       Strengthening the public health system
## 12930                       Strengthening the public health system
## 12931 Emergency administrative structures activated or established
## 12932 Emergency administrative structures activated or established
## 12933 Emergency administrative structures activated or established
## 12934 Emergency administrative structures activated or established
## 12935 Emergency administrative structures activated or established
## 12936 Emergency administrative structures activated or established
## 12937                                             Schools closure 
## 12938                                             Schools closure 
## 12939                                             Schools closure 
## 12940                                             Schools closure 
## 12941                                             Schools closure 
## 12942                                             Schools closure 
## 12943                             International flights suspension
## 12944                             International flights suspension
## 12945                             International flights suspension
## 12946                             International flights suspension
## 12947                             International flights suspension
## 12948                             International flights suspension
## 12949                                              Border closure 
## 12950                                              Border closure 
## 12951                                              Border closure 
## 12952                                              Border closure 
## 12953                                              Border closure 
## 12954                                              Border closure 
## 12955           Health screenings in airports and border crossings
## 12956           Health screenings in airports and border crossings
## 12957           Health screenings in airports and border crossings
## 12958           Health screenings in airports and border crossings
## 12959           Health screenings in airports and border crossings
## 12960           Health screenings in airports and border crossings
## 12961                             International flights suspension
## 12962                             International flights suspension
## 12963                             International flights suspension
## 12964                             International flights suspension
## 12965                             International flights suspension
## 12966                             International flights suspension
## 12967                                              Border closure 
## 12968                                              Border closure 
## 12969                                              Border closure 
## 12970                                              Border closure 
## 12971                                              Border closure 
## 12972                                              Border closure 
## 12973 Emergency administrative structures activated or established
## 12974 Emergency administrative structures activated or established
## 12975 Emergency administrative structures activated or established
## 12976 Emergency administrative structures activated or established
## 12977 Emergency administrative structures activated or established
## 12978 Emergency administrative structures activated or established
## 12979                                            Economic measures
## 12980                                            Economic measures
## 12981                                            Economic measures
## 12982                                            Economic measures
## 12983                                            Economic measures
## 12984                                            Economic measures
## 12985                                              Border closure 
## 12986                                              Border closure 
## 12987                                              Border closure 
## 12988                                              Border closure 
## 12989                                              Border closure 
## 12990                                              Border closure 
## 12991                        Other public health measures enforced
## 12992                        Other public health measures enforced
## 12993                        Other public health measures enforced
## 12994                        Other public health measures enforced
## 12995                        Other public health measures enforced
## 12996                        Other public health measures enforced
## 12997                                            Economic measures
## 12998                                            Economic measures
## 12999                                            Economic measures
## 13000                                            Economic measures
## 13001                                            Economic measures
## 13002                                            Economic measures
## 13003                                               Testing policy
## 13004                                               Testing policy
## 13005                                               Testing policy
## 13006                                               Testing policy
## 13007                                               Testing policy
## 13008                                               Testing policy
## 13009                                          Awareness campaigns
## 13010                                          Awareness campaigns
## 13011                                          Awareness campaigns
## 13012                                          Awareness campaigns
## 13013                                          Awareness campaigns
## 13014                                          Awareness campaigns
## 13015                                            Economic measures
## 13016                                            Economic measures
## 13017                                            Economic measures
## 13018                                            Economic measures
## 13019                                            Economic measures
## 13020                                            Economic measures
## 13021                Requirement to wear protective gear in public
## 13022                Requirement to wear protective gear in public
## 13023                Requirement to wear protective gear in public
## 13024                Requirement to wear protective gear in public
## 13025                Requirement to wear protective gear in public
## 13026                Requirement to wear protective gear in public
## 13027                                             Partial lockdown
## 13028                                             Partial lockdown
## 13029                                             Partial lockdown
## 13030                                             Partial lockdown
## 13031                                             Partial lockdown
## 13032                                             Partial lockdown
## 13033                                            Economic measures
## 13034                                            Economic measures
## 13035                                            Economic measures
## 13036                                            Economic measures
## 13037                                            Economic measures
## 13038                                            Economic measures
## 13039                       Strengthening the public health system
## 13040                       Strengthening the public health system
## 13041                       Strengthening the public health system
## 13042                       Strengthening the public health system
## 13043                       Strengthening the public health system
## 13044                       Strengthening the public health system
## 13045                                          Awareness campaigns
## 13046                                          Awareness campaigns
## 13047                                          Awareness campaigns
## 13048                                          Awareness campaigns
## 13049                                          Awareness campaigns
## 13050                                          Awareness campaigns
## 13051                                 Domestic travel restrictions
## 13052                                 Domestic travel restrictions
## 13053                                 Domestic travel restrictions
## 13054                                 Domestic travel restrictions
## 13055                                 Domestic travel restrictions
## 13056                                 Domestic travel restrictions
## 13057                                            Economic measures
## 13058                                            Economic measures
## 13059                                            Economic measures
## 13060                                            Economic measures
## 13061                                            Economic measures
## 13062                                            Economic measures
## 13063                    Closure of businesses and public services
## 13064                    Closure of businesses and public services
## 13065                    Closure of businesses and public services
## 13066                    Closure of businesses and public services
## 13067                    Closure of businesses and public services
## 13068                    Closure of businesses and public services
## 13069                Requirement to wear protective gear in public
## 13070                Requirement to wear protective gear in public
## 13071                Requirement to wear protective gear in public
## 13072                Requirement to wear protective gear in public
## 13073                Requirement to wear protective gear in public
## 13074                Requirement to wear protective gear in public
## 13075                                                Full lockdown
## 13076                                                Full lockdown
## 13077                                                Full lockdown
## 13078                                                Full lockdown
## 13079                                                Full lockdown
## 13080                                                Full lockdown
## 13081                                            Economic measures
## 13082                                            Economic measures
## 13083                                            Economic measures
## 13084                                            Economic measures
## 13085                                            Economic measures
## 13086                                            Economic measures
## 13087                                             Partial lockdown
## 13088                                             Partial lockdown
## 13089                                             Partial lockdown
## 13090                                             Partial lockdown
## 13091                                             Partial lockdown
## 13092                                             Partial lockdown
## 13093                                               Border checks 
## 13094                                               Border checks 
## 13095                                               Border checks 
## 13096                                               Border checks 
## 13097                                               Border checks 
## 13098                                               Border checks 
## 13099                                                Full lockdown
## 13100                                                Full lockdown
## 13101                                                Full lockdown
## 13102                                                Full lockdown
## 13103                                                Full lockdown
## 13104                                                Full lockdown
## 13105                                            Economic measures
## 13106                                            Economic measures
## 13107                                            Economic measures
## 13108                                            Economic measures
## 13109                                            Economic measures
## 13110                                            Economic measures
## 13111                Requirement to wear protective gear in public
## 13112                Requirement to wear protective gear in public
## 13113                Requirement to wear protective gear in public
## 13114                Requirement to wear protective gear in public
## 13115                Requirement to wear protective gear in public
## 13116                Requirement to wear protective gear in public
## 13117                                  State of emergency declared
## 13118                                  State of emergency declared
## 13119                                  State of emergency declared
## 13120                                  State of emergency declared
## 13121                                  State of emergency declared
## 13122                                  State of emergency declared
## 13123                                                      Curfews
## 13124                                                      Curfews
## 13125                                                      Curfews
## 13126                                                      Curfews
## 13127                                                      Curfews
## 13128                                                      Curfews
## 13129                                  Surveillance and monitoring
## 13130                                  Surveillance and monitoring
## 13131                                  Surveillance and monitoring
## 13132                                  Surveillance and monitoring
## 13133                                  Surveillance and monitoring
## 13134                                  Surveillance and monitoring
## 13135                                            Economic measures
## 13136                                            Economic measures
## 13137                                            Economic measures
## 13138                                            Economic measures
## 13139                                            Economic measures
## 13140                                            Economic measures
## 13141                                      Mass population testing
## 13142                                      Mass population testing
## 13143                                      Mass population testing
## 13144                                      Mass population testing
## 13145                                      Mass population testing
## 13146                                      Mass population testing
## 13147                                            Economic measures
## 13148                                            Economic measures
## 13149                                            Economic measures
## 13150                                            Economic measures
## 13151                                            Economic measures
## 13152                                            Economic measures
## 13153                        Other public health measures enforced
## 13154                        Other public health measures enforced
## 13155                        Other public health measures enforced
## 13156                        Other public health measures enforced
## 13157                        Other public health measures enforced
## 13158                        Other public health measures enforced
## 13159 Emergency administrative structures activated or established
## 13160 Emergency administrative structures activated or established
## 13161 Emergency administrative structures activated or established
## 13162 Emergency administrative structures activated or established
## 13163 Emergency administrative structures activated or established
## 13164 Emergency administrative structures activated or established
## 13165                       Strengthening the public health system
## 13166                       Strengthening the public health system
## 13167                       Strengthening the public health system
## 13168                       Strengthening the public health system
## 13169                       Strengthening the public health system
## 13170                       Strengthening the public health system
## 13171                Requirement to wear protective gear in public
## 13172                Requirement to wear protective gear in public
## 13173                Requirement to wear protective gear in public
## 13174                Requirement to wear protective gear in public
## 13175                Requirement to wear protective gear in public
## 13176                Requirement to wear protective gear in public
## 13177                                              Border closure 
## 13178                                              Border closure 
## 13179                                              Border closure 
## 13180                                              Border closure 
## 13181                                              Border closure 
## 13182                                              Border closure 
## 13183                                 Domestic travel restrictions
## 13184                                 Domestic travel restrictions
## 13185                                 Domestic travel restrictions
## 13186                                 Domestic travel restrictions
## 13187                                 Domestic travel restrictions
## 13188                                 Domestic travel restrictions
## 13189                                  State of emergency declared
## 13190                                  State of emergency declared
## 13191                                  State of emergency declared
## 13192                                  State of emergency declared
## 13193                                  State of emergency declared
## 13194                                  State of emergency declared
## 13195                    Closure of businesses and public services
## 13196                    Closure of businesses and public services
## 13197                    Closure of businesses and public services
## 13198                    Closure of businesses and public services
## 13199                    Closure of businesses and public services
## 13200                    Closure of businesses and public services
## 13201                Requirement to wear protective gear in public
## 13202                Requirement to wear protective gear in public
## 13203                Requirement to wear protective gear in public
## 13204                Requirement to wear protective gear in public
## 13205                Requirement to wear protective gear in public
## 13206                Requirement to wear protective gear in public
## 13207                                      Limit public gatherings
## 13208                                      Limit public gatherings
## 13209                                      Limit public gatherings
## 13210                                      Limit public gatherings
## 13211                                      Limit public gatherings
## 13212                                      Limit public gatherings
## 13213                                 Domestic travel restrictions
## 13214                                 Domestic travel restrictions
## 13215                                 Domestic travel restrictions
## 13216                                 Domestic travel restrictions
## 13217                                 Domestic travel restrictions
## 13218                                 Domestic travel restrictions
## 13219                                          Awareness campaigns
## 13220                                          Awareness campaigns
## 13221                                          Awareness campaigns
## 13222                                          Awareness campaigns
## 13223                                          Awareness campaigns
## 13224                                          Awareness campaigns
## 13225                Requirement to wear protective gear in public
## 13226                Requirement to wear protective gear in public
## 13227                Requirement to wear protective gear in public
## 13228                Requirement to wear protective gear in public
## 13229                Requirement to wear protective gear in public
## 13230                Requirement to wear protective gear in public
## 13231                                Limit product imports/exports
## 13232                                Limit product imports/exports
## 13233                                Limit product imports/exports
## 13234                                Limit product imports/exports
## 13235                                Limit product imports/exports
## 13236                                Limit product imports/exports
## 13237                                      Limit public gatherings
## 13238                                      Limit public gatherings
## 13239                                      Limit public gatherings
## 13240                                      Limit public gatherings
## 13241                                      Limit public gatherings
## 13242                                      Limit public gatherings
## 13243                             International flights suspension
## 13244                             International flights suspension
## 13245                             International flights suspension
## 13246                             International flights suspension
## 13247                             International flights suspension
## 13248                             International flights suspension
## 13249                            Isolation and quarantine policies
## 13250                            Isolation and quarantine policies
## 13251                            Isolation and quarantine policies
## 13252                            Isolation and quarantine policies
## 13253                            Isolation and quarantine policies
## 13254                            Isolation and quarantine policies
## 13255 Emergency administrative structures activated or established
## 13256 Emergency administrative structures activated or established
## 13257 Emergency administrative structures activated or established
## 13258 Emergency administrative structures activated or established
## 13259 Emergency administrative structures activated or established
## 13260 Emergency administrative structures activated or established
## 13261                            Isolation and quarantine policies
## 13262                            Isolation and quarantine policies
## 13263                            Isolation and quarantine policies
## 13264                            Isolation and quarantine policies
## 13265                            Isolation and quarantine policies
## 13266                            Isolation and quarantine policies
## 13267                                            Visa restrictions
## 13268                                            Visa restrictions
## 13269                                            Visa restrictions
## 13270                                            Visa restrictions
## 13271                                            Visa restrictions
## 13272                                            Visa restrictions
## 13273                                              Border closure 
## 13274                                              Border closure 
## 13275                                              Border closure 
## 13276                                              Border closure 
## 13277                                              Border closure 
## 13278                                              Border closure 
## 13279                        Other public health measures enforced
## 13280                        Other public health measures enforced
## 13281                        Other public health measures enforced
## 13282                        Other public health measures enforced
## 13283                        Other public health measures enforced
## 13284                        Other public health measures enforced
## 13285                    Closure of businesses and public services
## 13286                    Closure of businesses and public services
## 13287                    Closure of businesses and public services
## 13288                    Closure of businesses and public services
## 13289                    Closure of businesses and public services
## 13290                    Closure of businesses and public services
## 13291                                             Schools closure 
## 13292                                             Schools closure 
## 13293                                             Schools closure 
## 13294                                             Schools closure 
## 13295                                             Schools closure 
## 13296                                             Schools closure 
## 13297                                      Mass population testing
## 13298                                      Mass population testing
## 13299                                      Mass population testing
## 13300                                      Mass population testing
## 13301                                      Mass population testing
## 13302                                      Mass population testing
## 13303                                      Limit public gatherings
## 13304                                      Limit public gatherings
## 13305                                      Limit public gatherings
## 13306                                      Limit public gatherings
## 13307                                      Limit public gatherings
## 13308                                      Limit public gatherings
## 13309                                             Schools closure 
## 13310                                             Schools closure 
## 13311                                             Schools closure 
## 13312                                             Schools closure 
## 13313                                             Schools closure 
## 13314                                             Schools closure 
## 13315                            Isolation and quarantine policies
## 13316                            Isolation and quarantine policies
## 13317                            Isolation and quarantine policies
## 13318                            Isolation and quarantine policies
## 13319                            Isolation and quarantine policies
## 13320                            Isolation and quarantine policies
## 13321                                            Economic measures
## 13322                                            Economic measures
## 13323                                            Economic measures
## 13324                                            Economic measures
## 13325                                            Economic measures
## 13326                                            Economic measures
## 13327                                      Mass population testing
## 13328                                      Mass population testing
## 13329                                      Mass population testing
## 13330                                      Mass population testing
## 13331                                      Mass population testing
## 13332                                      Mass population testing
## 13333                                            Visa restrictions
## 13334                                            Visa restrictions
## 13335                                            Visa restrictions
## 13336                                            Visa restrictions
## 13337                                            Visa restrictions
## 13338                                            Visa restrictions
## 13339                       Strengthening the public health system
## 13340                       Strengthening the public health system
## 13341                       Strengthening the public health system
## 13342                       Strengthening the public health system
## 13343                       Strengthening the public health system
## 13344                       Strengthening the public health system
## 13345                                 Domestic travel restrictions
## 13346                                 Domestic travel restrictions
## 13347                                 Domestic travel restrictions
## 13348                                 Domestic travel restrictions
## 13349                                 Domestic travel restrictions
## 13350                                 Domestic travel restrictions
## 13351                    Closure of businesses and public services
## 13352                    Closure of businesses and public services
## 13353                    Closure of businesses and public services
## 13354                    Closure of businesses and public services
## 13355                    Closure of businesses and public services
## 13356                    Closure of businesses and public services
## 13357                                  State of emergency declared
## 13358                                  State of emergency declared
## 13359                                  State of emergency declared
## 13360                                  State of emergency declared
## 13361                                  State of emergency declared
## 13362                                  State of emergency declared
## 13363                                            Visa restrictions
## 13364                                            Visa restrictions
## 13365                                            Visa restrictions
## 13366                                            Visa restrictions
## 13367                                            Visa restrictions
## 13368                                            Visa restrictions
## 13369                Requirement to wear protective gear in public
## 13370                Requirement to wear protective gear in public
## 13371                Requirement to wear protective gear in public
## 13372                Requirement to wear protective gear in public
## 13373                Requirement to wear protective gear in public
## 13374                Requirement to wear protective gear in public
## 13375                                                Full lockdown
## 13376                                                Full lockdown
## 13377                                                Full lockdown
## 13378                                                Full lockdown
## 13379                                                Full lockdown
## 13380                                                Full lockdown
## 13381                Requirement to wear protective gear in public
## 13382                Requirement to wear protective gear in public
## 13383                Requirement to wear protective gear in public
## 13384                Requirement to wear protective gear in public
## 13385                Requirement to wear protective gear in public
## 13386                Requirement to wear protective gear in public
## 13387                    Closure of businesses and public services
## 13388                    Closure of businesses and public services
## 13389                    Closure of businesses and public services
## 13390                    Closure of businesses and public services
## 13391                    Closure of businesses and public services
## 13392                    Closure of businesses and public services
## 13393                Requirement to wear protective gear in public
## 13394                Requirement to wear protective gear in public
## 13395                Requirement to wear protective gear in public
## 13396                Requirement to wear protective gear in public
## 13397                Requirement to wear protective gear in public
## 13398                Requirement to wear protective gear in public
## 13399                            Isolation and quarantine policies
## 13400                            Isolation and quarantine policies
## 13401                            Isolation and quarantine policies
## 13402                            Isolation and quarantine policies
## 13403                            Isolation and quarantine policies
## 13404                            Isolation and quarantine policies
## 13405                                              Border closure 
## 13406                                              Border closure 
## 13407                                              Border closure 
## 13408                                              Border closure 
## 13409                                              Border closure 
## 13410                                              Border closure 
## 13411                Requirement to wear protective gear in public
## 13412                Requirement to wear protective gear in public
## 13413                Requirement to wear protective gear in public
## 13414                Requirement to wear protective gear in public
## 13415                Requirement to wear protective gear in public
## 13416                Requirement to wear protective gear in public
## 13417                            Isolation and quarantine policies
## 13418                            Isolation and quarantine policies
## 13419                            Isolation and quarantine policies
## 13420                            Isolation and quarantine policies
## 13421                            Isolation and quarantine policies
## 13422                            Isolation and quarantine policies
## 13423                                  State of emergency declared
## 13424                                  State of emergency declared
## 13425                                  State of emergency declared
## 13426                                  State of emergency declared
## 13427                                  State of emergency declared
## 13428                                  State of emergency declared
## 13429                    Closure of businesses and public services
## 13430                    Closure of businesses and public services
## 13431                    Closure of businesses and public services
## 13432                    Closure of businesses and public services
## 13433                    Closure of businesses and public services
## 13434                    Closure of businesses and public services
## 13435                                            Economic measures
## 13436                                            Economic measures
## 13437                                            Economic measures
## 13438                                            Economic measures
## 13439                                            Economic measures
## 13440                                            Economic measures
## 13441                                              Border closure 
## 13442                                              Border closure 
## 13443                                              Border closure 
## 13444                                              Border closure 
## 13445                                              Border closure 
## 13446                                              Border closure 
## 13447                            Isolation and quarantine policies
## 13448                            Isolation and quarantine policies
## 13449                            Isolation and quarantine policies
## 13450                            Isolation and quarantine policies
## 13451                            Isolation and quarantine policies
## 13452                            Isolation and quarantine policies
## 13453                Requirement to wear protective gear in public
## 13454                Requirement to wear protective gear in public
## 13455                Requirement to wear protective gear in public
## 13456                Requirement to wear protective gear in public
## 13457                Requirement to wear protective gear in public
## 13458                Requirement to wear protective gear in public
## 13459                                      Limit public gatherings
## 13460                                      Limit public gatherings
## 13461                                      Limit public gatherings
## 13462                                      Limit public gatherings
## 13463                                      Limit public gatherings
## 13464                                      Limit public gatherings
## 13465                                  State of emergency declared
## 13466                                  State of emergency declared
## 13467                                  State of emergency declared
## 13468                                  State of emergency declared
## 13469                                  State of emergency declared
## 13470                                  State of emergency declared
## 13471                            Isolation and quarantine policies
## 13472                            Isolation and quarantine policies
## 13473                            Isolation and quarantine policies
## 13474                            Isolation and quarantine policies
## 13475                            Isolation and quarantine policies
## 13476                            Isolation and quarantine policies
## 13477                    Closure of businesses and public services
## 13478                    Closure of businesses and public services
## 13479                    Closure of businesses and public services
## 13480                    Closure of businesses and public services
## 13481                    Closure of businesses and public services
## 13482                    Closure of businesses and public services
## 13483                                            Economic measures
## 13484                                            Economic measures
## 13485                                            Economic measures
## 13486                                            Economic measures
## 13487                                            Economic measures
## 13488                                            Economic measures
## 13489                                      Limit public gatherings
## 13490                                      Limit public gatherings
## 13491                                      Limit public gatherings
## 13492                                      Limit public gatherings
## 13493                                      Limit public gatherings
## 13494                                      Limit public gatherings
## 13495                                            Visa restrictions
## 13496                                            Visa restrictions
## 13497                                            Visa restrictions
## 13498                                            Visa restrictions
## 13499                                            Visa restrictions
## 13500                                            Visa restrictions
## 13501                                  State of emergency declared
## 13502                                  State of emergency declared
## 13503                                  State of emergency declared
## 13504                                  State of emergency declared
## 13505                                  State of emergency declared
## 13506                                  State of emergency declared
## 13507                                             Schools closure 
## 13508                                             Schools closure 
## 13509                                             Schools closure 
## 13510                                             Schools closure 
## 13511                                             Schools closure 
## 13512                                             Schools closure 
## 13513                                      Limit public gatherings
## 13514                                      Limit public gatherings
## 13515                                      Limit public gatherings
## 13516                                      Limit public gatherings
## 13517                                      Limit public gatherings
## 13518                                      Limit public gatherings
## 13519           Health screenings in airports and border crossings
## 13520           Health screenings in airports and border crossings
## 13521           Health screenings in airports and border crossings
## 13522           Health screenings in airports and border crossings
## 13523           Health screenings in airports and border crossings
## 13524           Health screenings in airports and border crossings
## 13525                                               Border checks 
## 13526                                               Border checks 
## 13527                                               Border checks 
## 13528                                               Border checks 
## 13529                                               Border checks 
## 13530                                               Border checks 
## 13531                                          Awareness campaigns
## 13532                                          Awareness campaigns
## 13533                                          Awareness campaigns
## 13534                                          Awareness campaigns
## 13535                                          Awareness campaigns
## 13536                                          Awareness campaigns
## 13537                                      Limit public gatherings
## 13538                                      Limit public gatherings
## 13539                                      Limit public gatherings
## 13540                                      Limit public gatherings
## 13541                                      Limit public gatherings
## 13542                                      Limit public gatherings
## 13543                             International flights suspension
## 13544                             International flights suspension
## 13545                             International flights suspension
## 13546                             International flights suspension
## 13547                             International flights suspension
## 13548                             International flights suspension
## 13549                                              Border closure 
## 13550                                              Border closure 
## 13551                                              Border closure 
## 13552                                              Border closure 
## 13553                                              Border closure 
## 13554                                              Border closure 
## 13555                                                      Curfews
## 13556                                                      Curfews
## 13557                                                      Curfews
## 13558                                                      Curfews
## 13559                                                      Curfews
## 13560                                                      Curfews
## 13561                 Amendments to funeral and burial regulations
## 13562                 Amendments to funeral and burial regulations
## 13563                 Amendments to funeral and burial regulations
## 13564                 Amendments to funeral and burial regulations
## 13565                 Amendments to funeral and burial regulations
## 13566                 Amendments to funeral and burial regulations
## 13567                                      Limit public gatherings
## 13568                                      Limit public gatherings
## 13569                                      Limit public gatherings
## 13570                                      Limit public gatherings
## 13571                                      Limit public gatherings
## 13572                                      Limit public gatherings
## 13573                            Isolation and quarantine policies
## 13574                            Isolation and quarantine policies
## 13575                            Isolation and quarantine policies
## 13576                            Isolation and quarantine policies
## 13577                            Isolation and quarantine policies
## 13578                            Isolation and quarantine policies
## 13579                                             Schools closure 
## 13580                                             Schools closure 
## 13581                                             Schools closure 
## 13582                                             Schools closure 
## 13583                                             Schools closure 
## 13584                                             Schools closure 
## 13585                                  State of emergency declared
## 13586                                  State of emergency declared
## 13587                                  State of emergency declared
## 13588                                  State of emergency declared
## 13589                                  State of emergency declared
## 13590                                  State of emergency declared
## 13591                                            Economic measures
## 13592                                            Economic measures
## 13593                                            Economic measures
## 13594                                            Economic measures
## 13595                                            Economic measures
## 13596                                            Economic measures
## 13597                    Closure of businesses and public services
## 13598                    Closure of businesses and public services
## 13599                    Closure of businesses and public services
## 13600                    Closure of businesses and public services
## 13601                    Closure of businesses and public services
## 13602                    Closure of businesses and public services
## 13603                                      Limit public gatherings
## 13604                                      Limit public gatherings
## 13605                                      Limit public gatherings
## 13606                                      Limit public gatherings
## 13607                                      Limit public gatherings
## 13608                                      Limit public gatherings
## 13609                        Other public health measures enforced
## 13610                        Other public health measures enforced
## 13611                        Other public health measures enforced
## 13612                        Other public health measures enforced
## 13613                        Other public health measures enforced
## 13614                        Other public health measures enforced
## 13615                Requirement to wear protective gear in public
## 13616                Requirement to wear protective gear in public
## 13617                Requirement to wear protective gear in public
## 13618                Requirement to wear protective gear in public
## 13619                Requirement to wear protective gear in public
## 13620                Requirement to wear protective gear in public
## 13621                                             Schools closure 
## 13622                                             Schools closure 
## 13623                                             Schools closure 
## 13624                                             Schools closure 
## 13625                                             Schools closure 
## 13626                                             Schools closure 
## 13627                                                      Curfews
## 13628                                                      Curfews
## 13629                                                      Curfews
## 13630                                                      Curfews
## 13631                                                      Curfews
## 13632                                                      Curfews
## 13633                                      Limit public gatherings
## 13634                                      Limit public gatherings
## 13635                                      Limit public gatherings
## 13636                                      Limit public gatherings
## 13637                                      Limit public gatherings
## 13638                                      Limit public gatherings
## 13639                                             Schools closure 
## 13640                                             Schools closure 
## 13641                                             Schools closure 
## 13642                                             Schools closure 
## 13643                                             Schools closure 
## 13644                                             Schools closure 
## 13645                Requirement to wear protective gear in public
## 13646                Requirement to wear protective gear in public
## 13647                Requirement to wear protective gear in public
## 13648                Requirement to wear protective gear in public
## 13649                Requirement to wear protective gear in public
## 13650                Requirement to wear protective gear in public
## 13651                                 Domestic travel restrictions
## 13652                                 Domestic travel restrictions
## 13653                                 Domestic travel restrictions
## 13654                                 Domestic travel restrictions
## 13655                                 Domestic travel restrictions
## 13656                                 Domestic travel restrictions
## 13657                                 Domestic travel restrictions
## 13658                                 Domestic travel restrictions
## 13659                                 Domestic travel restrictions
## 13660                                 Domestic travel restrictions
## 13661                                 Domestic travel restrictions
## 13662                                 Domestic travel restrictions
## 13663                                      Limit public gatherings
## 13664                                      Limit public gatherings
## 13665                                      Limit public gatherings
## 13666                                      Limit public gatherings
## 13667                                      Limit public gatherings
## 13668                                      Limit public gatherings
## 13669                                                      Curfews
## 13670                                                      Curfews
## 13671                                                      Curfews
## 13672                                                      Curfews
## 13673                                                      Curfews
## 13674                                                      Curfews
## 13675           Health screenings in airports and border crossings
## 13676           Health screenings in airports and border crossings
## 13677           Health screenings in airports and border crossings
## 13678           Health screenings in airports and border crossings
## 13679           Health screenings in airports and border crossings
## 13680           Health screenings in airports and border crossings
## 13681                            Isolation and quarantine policies
## 13682                            Isolation and quarantine policies
## 13683                            Isolation and quarantine policies
## 13684                            Isolation and quarantine policies
## 13685                            Isolation and quarantine policies
## 13686                            Isolation and quarantine policies
## 13687                            Isolation and quarantine policies
## 13688                            Isolation and quarantine policies
## 13689                            Isolation and quarantine policies
## 13690                            Isolation and quarantine policies
## 13691                            Isolation and quarantine policies
## 13692                            Isolation and quarantine policies
## 13693                            Isolation and quarantine policies
## 13694                            Isolation and quarantine policies
## 13695                            Isolation and quarantine policies
## 13696                            Isolation and quarantine policies
## 13697                            Isolation and quarantine policies
## 13698                            Isolation and quarantine policies
## 13699                                      General recommendations
## 13700                                      General recommendations
## 13701                                      General recommendations
## 13702                                      General recommendations
## 13703                                      General recommendations
## 13704                                      General recommendations
## 13705                             International flights suspension
## 13706                             International flights suspension
## 13707                             International flights suspension
## 13708                             International flights suspension
## 13709                             International flights suspension
## 13710                             International flights suspension
## 13711                                            Visa restrictions
## 13712                                            Visa restrictions
## 13713                                            Visa restrictions
## 13714                                            Visa restrictions
## 13715                                            Visa restrictions
## 13716                                            Visa restrictions
## 13717                             International flights suspension
## 13718                             International flights suspension
## 13719                             International flights suspension
## 13720                             International flights suspension
## 13721                             International flights suspension
## 13722                             International flights suspension
## 13723                                               Border checks 
## 13724                                               Border checks 
## 13725                                               Border checks 
## 13726                                               Border checks 
## 13727                                               Border checks 
## 13728                                               Border checks 
## 13729                             International flights suspension
## 13730                             International flights suspension
## 13731                             International flights suspension
## 13732                             International flights suspension
## 13733                             International flights suspension
## 13734                             International flights suspension
## 13735                                      General recommendations
## 13736                                      General recommendations
## 13737                                      General recommendations
## 13738                                      General recommendations
## 13739                                      General recommendations
## 13740                                      General recommendations
## 13741                             International flights suspension
## 13742                             International flights suspension
## 13743                             International flights suspension
## 13744                             International flights suspension
## 13745                             International flights suspension
## 13746                             International flights suspension
## 13747                             International flights suspension
## 13748                             International flights suspension
## 13749                             International flights suspension
## 13750                             International flights suspension
## 13751                             International flights suspension
## 13752                             International flights suspension
## 13753                                      Humanitarian exemptions
## 13754                                      Humanitarian exemptions
## 13755                                      Humanitarian exemptions
## 13756                                      Humanitarian exemptions
## 13757                                      Humanitarian exemptions
## 13758                                      Humanitarian exemptions
## 13759                             International flights suspension
## 13760                             International flights suspension
## 13761                             International flights suspension
## 13762                             International flights suspension
## 13763                             International flights suspension
## 13764                             International flights suspension
## 13765                             International flights suspension
## 13766                             International flights suspension
## 13767                             International flights suspension
## 13768                             International flights suspension
## 13769                             International flights suspension
## 13770                             International flights suspension
## 13771                                              Border closure 
## 13772                                              Border closure 
## 13773                                              Border closure 
## 13774                                              Border closure 
## 13775                                              Border closure 
## 13776                                              Border closure 
## 13777                                              Border closure 
## 13778                                              Border closure 
## 13779                                              Border closure 
## 13780                                              Border closure 
## 13781                                              Border closure 
## 13782                                              Border closure 
## 13783                             International flights suspension
## 13784                             International flights suspension
## 13785                             International flights suspension
## 13786                             International flights suspension
## 13787                             International flights suspension
## 13788                             International flights suspension
## 13789                             International flights suspension
## 13790                             International flights suspension
## 13791                             International flights suspension
## 13792                             International flights suspension
## 13793                             International flights suspension
## 13794                             International flights suspension
## 13795                                  State of emergency declared
## 13796                                  State of emergency declared
## 13797                                  State of emergency declared
## 13798                                  State of emergency declared
## 13799                                  State of emergency declared
## 13800                                  State of emergency declared
## 13801                                  Surveillance and monitoring
## 13802                                  Surveillance and monitoring
## 13803                                  Surveillance and monitoring
## 13804                                  Surveillance and monitoring
## 13805                                  Surveillance and monitoring
## 13806                                  Surveillance and monitoring
## 13807                                             Schools closure 
## 13808                                             Schools closure 
## 13809                                             Schools closure 
## 13810                                             Schools closure 
## 13811                                             Schools closure 
## 13812                                             Schools closure 
## 13813                    Closure of businesses and public services
## 13814                    Closure of businesses and public services
## 13815                    Closure of businesses and public services
## 13816                    Closure of businesses and public services
## 13817                    Closure of businesses and public services
## 13818                    Closure of businesses and public services
## 13819                                          Awareness campaigns
## 13820                                          Awareness campaigns
## 13821                                          Awareness campaigns
## 13822                                          Awareness campaigns
## 13823                                          Awareness campaigns
## 13824                                          Awareness campaigns
## 13825                                              Border closure 
## 13826                                              Border closure 
## 13827                                              Border closure 
## 13828                                              Border closure 
## 13829                                              Border closure 
## 13830                                              Border closure 
## 13831                    Closure of businesses and public services
## 13832                    Closure of businesses and public services
## 13833                    Closure of businesses and public services
## 13834                    Closure of businesses and public services
## 13835                    Closure of businesses and public services
## 13836                    Closure of businesses and public services
## 13837                                            Economic measures
## 13838                                            Economic measures
## 13839                                            Economic measures
## 13840                                            Economic measures
## 13841                                            Economic measures
## 13842                                            Economic measures
## 13843                                                      Curfews
## 13844                                                      Curfews
## 13845                                                      Curfews
## 13846                                                      Curfews
## 13847                                                      Curfews
## 13848                                                      Curfews
## 13849                                            Economic measures
## 13850                                            Economic measures
## 13851                                            Economic measures
## 13852                                            Economic measures
## 13853                                            Economic measures
## 13854                                            Economic measures
## 13855                    Closure of businesses and public services
## 13856                    Closure of businesses and public services
## 13857                    Closure of businesses and public services
## 13858                    Closure of businesses and public services
## 13859                    Closure of businesses and public services
## 13860                    Closure of businesses and public services
## 13861                                                      Curfews
## 13862                                                      Curfews
## 13863                                                      Curfews
## 13864                                                      Curfews
## 13865                                                      Curfews
## 13866                                                      Curfews
## 13867                       Strengthening the public health system
## 13868                       Strengthening the public health system
## 13869                       Strengthening the public health system
## 13870                       Strengthening the public health system
## 13871                       Strengthening the public health system
## 13872                       Strengthening the public health system
## 13873                       Strengthening the public health system
## 13874                       Strengthening the public health system
## 13875                       Strengthening the public health system
## 13876                       Strengthening the public health system
## 13877                       Strengthening the public health system
## 13878                       Strengthening the public health system
## 13879                       Strengthening the public health system
## 13880                       Strengthening the public health system
## 13881                       Strengthening the public health system
## 13882                       Strengthening the public health system
## 13883                       Strengthening the public health system
## 13884                       Strengthening the public health system
## 13885                                            Economic measures
## 13886                                            Economic measures
## 13887                                            Economic measures
## 13888                                            Economic measures
## 13889                                            Economic measures
## 13890                                            Economic measures
## 13891 Emergency administrative structures activated or established
## 13892 Emergency administrative structures activated or established
## 13893 Emergency administrative structures activated or established
## 13894 Emergency administrative structures activated or established
## 13895 Emergency administrative structures activated or established
## 13896 Emergency administrative structures activated or established
## 13897                                             Schools closure 
## 13898                                             Schools closure 
## 13899                                             Schools closure 
## 13900                                             Schools closure 
## 13901                                             Schools closure 
## 13902                                             Schools closure 
## 13903                                            Economic measures
## 13904                                            Economic measures
## 13905                                            Economic measures
## 13906                                            Economic measures
## 13907                                            Economic measures
## 13908                                            Economic measures
## 13909                                            Economic measures
## 13910                                            Economic measures
## 13911                                            Economic measures
## 13912                                            Economic measures
## 13913                                            Economic measures
## 13914                                            Economic measures
## 13915 Emergency administrative structures activated or established
## 13916 Emergency administrative structures activated or established
## 13917 Emergency administrative structures activated or established
## 13918 Emergency administrative structures activated or established
## 13919 Emergency administrative structures activated or established
## 13920 Emergency administrative structures activated or established
## 13921 Emergency administrative structures activated or established
## 13922 Emergency administrative structures activated or established
## 13923 Emergency administrative structures activated or established
## 13924 Emergency administrative structures activated or established
## 13925 Emergency administrative structures activated or established
## 13926 Emergency administrative structures activated or established
## 13927                                  State of emergency declared
## 13928                                  State of emergency declared
## 13929                                  State of emergency declared
## 13930                                  State of emergency declared
## 13931                                  State of emergency declared
## 13932                                  State of emergency declared
## 13933                                  State of emergency declared
## 13934                                  State of emergency declared
## 13935                                  State of emergency declared
## 13936                                  State of emergency declared
## 13937                                  State of emergency declared
## 13938                                  State of emergency declared
## 13939                                 Domestic travel restrictions
## 13940                                 Domestic travel restrictions
## 13941                                 Domestic travel restrictions
## 13942                                 Domestic travel restrictions
## 13943                                 Domestic travel restrictions
## 13944                                 Domestic travel restrictions
## 13945                Requirement to wear protective gear in public
## 13946                Requirement to wear protective gear in public
## 13947                Requirement to wear protective gear in public
## 13948                Requirement to wear protective gear in public
## 13949                Requirement to wear protective gear in public
## 13950                Requirement to wear protective gear in public
## 13951                                          Awareness campaigns
## 13952                                          Awareness campaigns
## 13953                                          Awareness campaigns
## 13954                                          Awareness campaigns
## 13955                                          Awareness campaigns
## 13956                                          Awareness campaigns
## 13957                                      General recommendations
## 13958                                      General recommendations
## 13959                                      General recommendations
## 13960                                      General recommendations
## 13961                                      General recommendations
## 13962                                      General recommendations
## 13963                       Strengthening the public health system
## 13964                       Strengthening the public health system
## 13965                       Strengthening the public health system
## 13966                       Strengthening the public health system
## 13967                       Strengthening the public health system
## 13968                       Strengthening the public health system
## 13969                                            Economic measures
## 13970                                            Economic measures
## 13971                                            Economic measures
## 13972                                            Economic measures
## 13973                                            Economic measures
## 13974                                            Economic measures
## 13975                        Other public health measures enforced
## 13976                        Other public health measures enforced
## 13977                        Other public health measures enforced
## 13978                        Other public health measures enforced
## 13979                        Other public health measures enforced
## 13980                        Other public health measures enforced
## 13981                       Strengthening the public health system
## 13982                       Strengthening the public health system
## 13983                       Strengthening the public health system
## 13984                       Strengthening the public health system
## 13985                       Strengthening the public health system
## 13986                       Strengthening the public health system
## 13987                                            Economic measures
## 13988                                            Economic measures
## 13989                                            Economic measures
## 13990                                            Economic measures
## 13991                                            Economic measures
## 13992                                            Economic measures
## 13993                                            Economic measures
## 13994                                            Economic measures
## 13995                                            Economic measures
## 13996                                            Economic measures
## 13997                                            Economic measures
## 13998                                            Economic measures
## 13999                                 Domestic travel restrictions
## 14000                                 Domestic travel restrictions
## 14001                                 Domestic travel restrictions
## 14002                                 Domestic travel restrictions
## 14003                                 Domestic travel restrictions
## 14004                                 Domestic travel restrictions
## 14005                                            Economic measures
## 14006                                            Economic measures
## 14007                                            Economic measures
## 14008                                            Economic measures
## 14009                                            Economic measures
## 14010                                            Economic measures
## 14011                                             Partial lockdown
## 14012                                             Partial lockdown
## 14013                                             Partial lockdown
## 14014                                             Partial lockdown
## 14015                                             Partial lockdown
## 14016                                             Partial lockdown
## 14017                                 Domestic travel restrictions
## 14018                                 Domestic travel restrictions
## 14019                                 Domestic travel restrictions
## 14020                                 Domestic travel restrictions
## 14021                                 Domestic travel restrictions
## 14022                                 Domestic travel restrictions
## 14023                                             Partial lockdown
## 14024                                             Partial lockdown
## 14025                                             Partial lockdown
## 14026                                             Partial lockdown
## 14027                                             Partial lockdown
## 14028                                             Partial lockdown
## 14029                                             Partial lockdown
## 14030                                             Partial lockdown
## 14031                                             Partial lockdown
## 14032                                             Partial lockdown
## 14033                                             Partial lockdown
## 14034                                             Partial lockdown
## 14035                        Other public health measures enforced
## 14036                        Other public health measures enforced
## 14037                        Other public health measures enforced
## 14038                        Other public health measures enforced
## 14039                        Other public health measures enforced
## 14040                        Other public health measures enforced
## 14041                                            Economic measures
## 14042                                            Economic measures
## 14043                                            Economic measures
## 14044                                            Economic measures
## 14045                                            Economic measures
## 14046                                            Economic measures
## 14047                                            Economic measures
## 14048                                            Economic measures
## 14049                                            Economic measures
## 14050                                            Economic measures
## 14051                                            Economic measures
## 14052                                            Economic measures
## 14053                        Other public health measures enforced
## 14054                        Other public health measures enforced
## 14055                        Other public health measures enforced
## 14056                        Other public health measures enforced
## 14057                        Other public health measures enforced
## 14058                        Other public health measures enforced
## 14059                                             Schools closure 
## 14060                                             Schools closure 
## 14061                                             Schools closure 
## 14062                                             Schools closure 
## 14063                                             Schools closure 
## 14064                                             Schools closure 
## 14065                                            Economic measures
## 14066                                            Economic measures
## 14067                                            Economic measures
## 14068                                            Economic measures
## 14069                                            Economic measures
## 14070                                            Economic measures
## 14071                                             Partial lockdown
## 14072                                             Partial lockdown
## 14073                                             Partial lockdown
## 14074                                             Partial lockdown
## 14075                                             Partial lockdown
## 14076                                             Partial lockdown
## 14077                                            Economic measures
## 14078                                            Economic measures
## 14079                                            Economic measures
## 14080                                            Economic measures
## 14081                                            Economic measures
## 14082                                            Economic measures
## 14083                                            Economic measures
## 14084                                            Economic measures
## 14085                                            Economic measures
## 14086                                            Economic measures
## 14087                                            Economic measures
## 14088                                            Economic measures
## 14089                                             Partial lockdown
## 14090                                             Partial lockdown
## 14091                                             Partial lockdown
## 14092                                             Partial lockdown
## 14093                                             Partial lockdown
## 14094                                             Partial lockdown
## 14095                                            Economic measures
## 14096                                            Economic measures
## 14097                                            Economic measures
## 14098                                            Economic measures
## 14099                                            Economic measures
## 14100                                            Economic measures
## 14101                        Other public health measures enforced
## 14102                        Other public health measures enforced
## 14103                        Other public health measures enforced
## 14104                        Other public health measures enforced
## 14105                        Other public health measures enforced
## 14106                        Other public health measures enforced
## 14107                                 Domestic travel restrictions
## 14108                                 Domestic travel restrictions
## 14109                                 Domestic travel restrictions
## 14110                                 Domestic travel restrictions
## 14111                                 Domestic travel restrictions
## 14112                                 Domestic travel restrictions
## 14113                       Strengthening the public health system
## 14114                       Strengthening the public health system
## 14115                       Strengthening the public health system
## 14116                       Strengthening the public health system
## 14117                       Strengthening the public health system
## 14118                       Strengthening the public health system
## 14119                        Other public health measures enforced
## 14120                        Other public health measures enforced
## 14121                        Other public health measures enforced
## 14122                        Other public health measures enforced
## 14123                        Other public health measures enforced
## 14124                        Other public health measures enforced
## 14125                        Other public health measures enforced
## 14126                        Other public health measures enforced
## 14127                        Other public health measures enforced
## 14128                        Other public health measures enforced
## 14129                        Other public health measures enforced
## 14130                        Other public health measures enforced
## 14131                        Other public health measures enforced
## 14132                        Other public health measures enforced
## 14133                        Other public health measures enforced
## 14134                        Other public health measures enforced
## 14135                        Other public health measures enforced
## 14136                        Other public health measures enforced
## 14137                                            Economic measures
## 14138                                            Economic measures
## 14139                                            Economic measures
## 14140                                            Economic measures
## 14141                                            Economic measures
## 14142                                            Economic measures
## 14143                                            Economic measures
## 14144                                            Economic measures
## 14145                                            Economic measures
## 14146                                            Economic measures
## 14147                                            Economic measures
## 14148                                            Economic measures
## 14149                                             Partial lockdown
## 14150                                             Partial lockdown
## 14151                                             Partial lockdown
## 14152                                             Partial lockdown
## 14153                                             Partial lockdown
## 14154                                             Partial lockdown
## 14155                    Closure of businesses and public services
## 14156                    Closure of businesses and public services
## 14157                    Closure of businesses and public services
## 14158                    Closure of businesses and public services
## 14159                    Closure of businesses and public services
## 14160                    Closure of businesses and public services
## 14161                                      Limit public gatherings
## 14162                                      Limit public gatherings
## 14163                                      Limit public gatherings
## 14164                                      Limit public gatherings
## 14165                                      Limit public gatherings
## 14166                                      Limit public gatherings
## 14167                                      Limit public gatherings
## 14168                                      Limit public gatherings
## 14169                                      Limit public gatherings
## 14170                                      Limit public gatherings
## 14171                                      Limit public gatherings
## 14172                                      Limit public gatherings
## 14173                                                      Curfews
## 14174                                                      Curfews
## 14175                                                      Curfews
## 14176                                                      Curfews
## 14177                                                      Curfews
## 14178                                                      Curfews
## 14179                                      Limit public gatherings
## 14180                                      Limit public gatherings
## 14181                                      Limit public gatherings
## 14182                                      Limit public gatherings
## 14183                                      Limit public gatherings
## 14184                                      Limit public gatherings
## 14185                                            Economic measures
## 14186                                            Economic measures
## 14187                                            Economic measures
## 14188                                            Economic measures
## 14189                                            Economic measures
## 14190                                            Economic measures
## 14191                                            Economic measures
## 14192                                            Economic measures
## 14193                                            Economic measures
## 14194                                            Economic measures
## 14195                                            Economic measures
## 14196                                            Economic measures
## 14197                       Strengthening the public health system
## 14198                       Strengthening the public health system
## 14199                       Strengthening the public health system
## 14200                       Strengthening the public health system
## 14201                       Strengthening the public health system
## 14202                       Strengthening the public health system
## 14203                                            Economic measures
## 14204                                            Economic measures
## 14205                                            Economic measures
## 14206                                            Economic measures
## 14207                                            Economic measures
## 14208                                            Economic measures
## 14209                                            Economic measures
## 14210                                            Economic measures
## 14211                                            Economic measures
## 14212                                            Economic measures
## 14213                                            Economic measures
## 14214                                            Economic measures
## 14215                       Strengthening the public health system
## 14216                       Strengthening the public health system
## 14217                       Strengthening the public health system
## 14218                       Strengthening the public health system
## 14219                       Strengthening the public health system
## 14220                       Strengthening the public health system
## 14221 Emergency administrative structures activated or established
## 14222 Emergency administrative structures activated or established
## 14223 Emergency administrative structures activated or established
## 14224 Emergency administrative structures activated or established
## 14225 Emergency administrative structures activated or established
## 14226 Emergency administrative structures activated or established
## 14227                    Closure of businesses and public services
## 14228                    Closure of businesses and public services
## 14229                    Closure of businesses and public services
## 14230                    Closure of businesses and public services
## 14231                    Closure of businesses and public services
## 14232                    Closure of businesses and public services
## 14233                                 Domestic travel restrictions
## 14234                                 Domestic travel restrictions
## 14235                                 Domestic travel restrictions
## 14236                                 Domestic travel restrictions
## 14237                                 Domestic travel restrictions
## 14238                                 Domestic travel restrictions
## 14239                                 Domestic travel restrictions
## 14240                                 Domestic travel restrictions
## 14241                                 Domestic travel restrictions
## 14242                                 Domestic travel restrictions
## 14243                                 Domestic travel restrictions
## 14244                                 Domestic travel restrictions
## 14245                                 Domestic travel restrictions
## 14246                                 Domestic travel restrictions
## 14247                                 Domestic travel restrictions
## 14248                                 Domestic travel restrictions
## 14249                                 Domestic travel restrictions
## 14250                                 Domestic travel restrictions
## 14251                                      Limit public gatherings
## 14252                                      Limit public gatherings
## 14253                                      Limit public gatherings
## 14254                                      Limit public gatherings
## 14255                                      Limit public gatherings
## 14256                                      Limit public gatherings
## 14257                                      Mass population testing
## 14258                                      Mass population testing
## 14259                                      Mass population testing
## 14260                                      Mass population testing
## 14261                                      Mass population testing
## 14262                                      Mass population testing
## 14263                        Other public health measures enforced
## 14264                        Other public health measures enforced
## 14265                        Other public health measures enforced
## 14266                        Other public health measures enforced
## 14267                        Other public health measures enforced
## 14268                        Other public health measures enforced
## 14269 Emergency administrative structures activated or established
## 14270 Emergency administrative structures activated or established
## 14271 Emergency administrative structures activated or established
## 14272 Emergency administrative structures activated or established
## 14273 Emergency administrative structures activated or established
## 14274 Emergency administrative structures activated or established
## 14275                                          Awareness campaigns
## 14276                                          Awareness campaigns
## 14277                                          Awareness campaigns
## 14278                                          Awareness campaigns
## 14279                                          Awareness campaigns
## 14280                                          Awareness campaigns
## 14281                                          Awareness campaigns
## 14282                                          Awareness campaigns
## 14283                                          Awareness campaigns
## 14284                                          Awareness campaigns
## 14285                                          Awareness campaigns
## 14286                                          Awareness campaigns
## 14287 Emergency administrative structures activated or established
## 14288 Emergency administrative structures activated or established
## 14289 Emergency administrative structures activated or established
## 14290 Emergency administrative structures activated or established
## 14291 Emergency administrative structures activated or established
## 14292 Emergency administrative structures activated or established
## 14293                    Closure of businesses and public services
## 14294                    Closure of businesses and public services
## 14295                    Closure of businesses and public services
## 14296                    Closure of businesses and public services
## 14297                    Closure of businesses and public services
## 14298                    Closure of businesses and public services
## 14299                                  Surveillance and monitoring
## 14300                                  Surveillance and monitoring
## 14301                                  Surveillance and monitoring
## 14302                                  Surveillance and monitoring
## 14303                                  Surveillance and monitoring
## 14304                                  Surveillance and monitoring
## 14305                    Closure of businesses and public services
## 14306                    Closure of businesses and public services
## 14307                    Closure of businesses and public services
## 14308                    Closure of businesses and public services
## 14309                    Closure of businesses and public services
## 14310                    Closure of businesses and public services
## 14311                       Strengthening the public health system
## 14312                       Strengthening the public health system
## 14313                       Strengthening the public health system
## 14314                       Strengthening the public health system
## 14315                       Strengthening the public health system
## 14316                       Strengthening the public health system
## 14317                                            Economic measures
## 14318                                            Economic measures
## 14319                                            Economic measures
## 14320                                            Economic measures
## 14321                                            Economic measures
## 14322                                            Economic measures
## 14323                                            Visa restrictions
## 14324                                            Visa restrictions
## 14325                                            Visa restrictions
## 14326                                            Visa restrictions
## 14327                                            Visa restrictions
## 14328                                            Visa restrictions
## 14329                                             Schools closure 
## 14330                                             Schools closure 
## 14331                                             Schools closure 
## 14332                                             Schools closure 
## 14333                                             Schools closure 
## 14334                                             Schools closure 
## 14335           Health screenings in airports and border crossings
## 14336           Health screenings in airports and border crossings
## 14337           Health screenings in airports and border crossings
## 14338           Health screenings in airports and border crossings
## 14339           Health screenings in airports and border crossings
## 14340           Health screenings in airports and border crossings
## 14341                                             Partial lockdown
## 14342                                             Partial lockdown
## 14343                                             Partial lockdown
## 14344                                             Partial lockdown
## 14345                                             Partial lockdown
## 14346                                             Partial lockdown
## 14347                                      Limit public gatherings
## 14348                                      Limit public gatherings
## 14349                                      Limit public gatherings
## 14350                                      Limit public gatherings
## 14351                                      Limit public gatherings
## 14352                                      Limit public gatherings
## 14353        Additional health/documents requirements upon arrival
## 14354        Additional health/documents requirements upon arrival
## 14355        Additional health/documents requirements upon arrival
## 14356        Additional health/documents requirements upon arrival
## 14357        Additional health/documents requirements upon arrival
## 14358        Additional health/documents requirements upon arrival
## 14359                                            Visa restrictions
## 14360                                            Visa restrictions
## 14361                                            Visa restrictions
## 14362                                            Visa restrictions
## 14363                                            Visa restrictions
## 14364                                            Visa restrictions
## 14365                                 Domestic travel restrictions
## 14366                                 Domestic travel restrictions
## 14367                                 Domestic travel restrictions
## 14368                                 Domestic travel restrictions
## 14369                                 Domestic travel restrictions
## 14370                                 Domestic travel restrictions
## 14371                            Isolation and quarantine policies
## 14372                            Isolation and quarantine policies
## 14373                            Isolation and quarantine policies
## 14374                            Isolation and quarantine policies
## 14375                            Isolation and quarantine policies
## 14376                            Isolation and quarantine policies
## 14377 Emergency administrative structures activated or established
## 14378 Emergency administrative structures activated or established
## 14379 Emergency administrative structures activated or established
## 14380 Emergency administrative structures activated or established
## 14381 Emergency administrative structures activated or established
## 14382 Emergency administrative structures activated or established
## 14383                                            Economic measures
## 14384                                            Economic measures
## 14385                                            Economic measures
## 14386                                            Economic measures
## 14387                                            Economic measures
## 14388                                            Economic measures
## 14389                                            Visa restrictions
## 14390                                            Visa restrictions
## 14391                                            Visa restrictions
## 14392                                            Visa restrictions
## 14393                                            Visa restrictions
## 14394                                            Visa restrictions
## 14395                                            Visa restrictions
## 14396                                            Visa restrictions
## 14397                                            Visa restrictions
## 14398                                            Visa restrictions
## 14399                                            Visa restrictions
## 14400                                            Visa restrictions
## 14401        Additional health/documents requirements upon arrival
## 14402        Additional health/documents requirements upon arrival
## 14403        Additional health/documents requirements upon arrival
## 14404        Additional health/documents requirements upon arrival
## 14405        Additional health/documents requirements upon arrival
## 14406        Additional health/documents requirements upon arrival
## 14407                            Isolation and quarantine policies
## 14408                            Isolation and quarantine policies
## 14409                            Isolation and quarantine policies
## 14410                            Isolation and quarantine policies
## 14411                            Isolation and quarantine policies
## 14412                            Isolation and quarantine policies
## 14413                                            Visa restrictions
## 14414                                            Visa restrictions
## 14415                                            Visa restrictions
## 14416                                            Visa restrictions
## 14417                                            Visa restrictions
## 14418                                            Visa restrictions
## 14419        Additional health/documents requirements upon arrival
## 14420        Additional health/documents requirements upon arrival
## 14421        Additional health/documents requirements upon arrival
## 14422        Additional health/documents requirements upon arrival
## 14423        Additional health/documents requirements upon arrival
## 14424        Additional health/documents requirements upon arrival
## 14425           Health screenings in airports and border crossings
## 14426           Health screenings in airports and border crossings
## 14427           Health screenings in airports and border crossings
## 14428           Health screenings in airports and border crossings
## 14429           Health screenings in airports and border crossings
## 14430           Health screenings in airports and border crossings
## 14431                            Isolation and quarantine policies
## 14432                            Isolation and quarantine policies
## 14433                            Isolation and quarantine policies
## 14434                            Isolation and quarantine policies
## 14435                            Isolation and quarantine policies
## 14436                            Isolation and quarantine policies
## 14437                                            Visa restrictions
## 14438                                            Visa restrictions
## 14439                                            Visa restrictions
## 14440                                            Visa restrictions
## 14441                                            Visa restrictions
## 14442                                            Visa restrictions
## 14443        Additional health/documents requirements upon arrival
## 14444        Additional health/documents requirements upon arrival
## 14445        Additional health/documents requirements upon arrival
## 14446        Additional health/documents requirements upon arrival
## 14447        Additional health/documents requirements upon arrival
## 14448        Additional health/documents requirements upon arrival
## 14449           Health screenings in airports and border crossings
## 14450           Health screenings in airports and border crossings
## 14451           Health screenings in airports and border crossings
## 14452           Health screenings in airports and border crossings
## 14453           Health screenings in airports and border crossings
## 14454           Health screenings in airports and border crossings
## 14455                                          Awareness campaigns
## 14456                                          Awareness campaigns
## 14457                                          Awareness campaigns
## 14458                                          Awareness campaigns
## 14459                                          Awareness campaigns
## 14460                                          Awareness campaigns
## 14461           Health screenings in airports and border crossings
## 14462           Health screenings in airports and border crossings
## 14463           Health screenings in airports and border crossings
## 14464           Health screenings in airports and border crossings
## 14465           Health screenings in airports and border crossings
## 14466           Health screenings in airports and border crossings
## 14467 Emergency administrative structures activated or established
## 14468 Emergency administrative structures activated or established
## 14469 Emergency administrative structures activated or established
## 14470 Emergency administrative structures activated or established
## 14471 Emergency administrative structures activated or established
## 14472 Emergency administrative structures activated or established
## 14473        Additional health/documents requirements upon arrival
## 14474        Additional health/documents requirements upon arrival
## 14475        Additional health/documents requirements upon arrival
## 14476        Additional health/documents requirements upon arrival
## 14477        Additional health/documents requirements upon arrival
## 14478        Additional health/documents requirements upon arrival
## 14479                            Isolation and quarantine policies
## 14480                            Isolation and quarantine policies
## 14481                            Isolation and quarantine policies
## 14482                            Isolation and quarantine policies
## 14483                            Isolation and quarantine policies
## 14484                            Isolation and quarantine policies
## 14485                                              Border closure 
## 14486                                              Border closure 
## 14487                                              Border closure 
## 14488                                              Border closure 
## 14489                                              Border closure 
## 14490                                              Border closure 
## 14491                             International flights suspension
## 14492                             International flights suspension
## 14493                             International flights suspension
## 14494                             International flights suspension
## 14495                             International flights suspension
## 14496                             International flights suspension
## 14497                                            Visa restrictions
## 14498                                            Visa restrictions
## 14499                                            Visa restrictions
## 14500                                            Visa restrictions
## 14501                                            Visa restrictions
## 14502                                            Visa restrictions
## 14503                                             Schools closure 
## 14504                                             Schools closure 
## 14505                                             Schools closure 
## 14506                                             Schools closure 
## 14507                                             Schools closure 
## 14508                                             Schools closure 
## 14509                                      Limit public gatherings
## 14510                                      Limit public gatherings
## 14511                                      Limit public gatherings
## 14512                                      Limit public gatherings
## 14513                                      Limit public gatherings
## 14514                                      Limit public gatherings
## 14515                    Closure of businesses and public services
## 14516                    Closure of businesses and public services
## 14517                    Closure of businesses and public services
## 14518                    Closure of businesses and public services
## 14519                    Closure of businesses and public services
## 14520                    Closure of businesses and public services
## 14521                                                      Curfews
## 14522                                                      Curfews
## 14523                                                      Curfews
## 14524                                                      Curfews
## 14525                                                      Curfews
## 14526                                                      Curfews
## 14527                                 Domestic travel restrictions
## 14528                                 Domestic travel restrictions
## 14529                                 Domestic travel restrictions
## 14530                                 Domestic travel restrictions
## 14531                                 Domestic travel restrictions
## 14532                                 Domestic travel restrictions
## 14533                                      Limit public gatherings
## 14534                                      Limit public gatherings
## 14535                                      Limit public gatherings
## 14536                                      Limit public gatherings
## 14537                                      Limit public gatherings
## 14538                                      Limit public gatherings
## 14539                       Strengthening the public health system
## 14540                       Strengthening the public health system
## 14541                       Strengthening the public health system
## 14542                       Strengthening the public health system
## 14543                       Strengthening the public health system
## 14544                       Strengthening the public health system
## 14545                                      Limit public gatherings
## 14546                                      Limit public gatherings
## 14547                                      Limit public gatherings
## 14548                                      Limit public gatherings
## 14549                                      Limit public gatherings
## 14550                                      Limit public gatherings
## 14551                                               Testing policy
## 14552                                               Testing policy
## 14553                                               Testing policy
## 14554                                               Testing policy
## 14555                                               Testing policy
## 14556                                               Testing policy
## 14557                                      Mass population testing
## 14558                                      Mass population testing
## 14559                                      Mass population testing
## 14560                                      Mass population testing
## 14561                                      Mass population testing
## 14562                                      Mass population testing
## 14563                                            Economic measures
## 14564                                            Economic measures
## 14565                                            Economic measures
## 14566                                            Economic measures
## 14567                                            Economic measures
## 14568                                            Economic measures
## 14569                                      General recommendations
## 14570                                      General recommendations
## 14571                                      General recommendations
## 14572                                      General recommendations
## 14573                                      General recommendations
## 14574                                      General recommendations
## 14575                       Strengthening the public health system
## 14576                       Strengthening the public health system
## 14577                       Strengthening the public health system
## 14578                       Strengthening the public health system
## 14579                       Strengthening the public health system
## 14580                       Strengthening the public health system
## 14581                           Changes in prison-related policies
## 14582                           Changes in prison-related policies
## 14583                           Changes in prison-related policies
## 14584                           Changes in prison-related policies
## 14585                           Changes in prison-related policies
## 14586                           Changes in prison-related policies
## 14587                Requirement to wear protective gear in public
## 14588                Requirement to wear protective gear in public
## 14589                Requirement to wear protective gear in public
## 14590                Requirement to wear protective gear in public
## 14591                Requirement to wear protective gear in public
## 14592                Requirement to wear protective gear in public
## 14593                       Strengthening the public health system
## 14594                       Strengthening the public health system
## 14595                       Strengthening the public health system
## 14596                       Strengthening the public health system
## 14597                       Strengthening the public health system
## 14598                       Strengthening the public health system
## 14599                                               Testing policy
## 14600                                               Testing policy
## 14601                                               Testing policy
## 14602                                               Testing policy
## 14603                                               Testing policy
## 14604                                               Testing policy
## 14605                                          Awareness campaigns
## 14606                                          Awareness campaigns
## 14607                                          Awareness campaigns
## 14608                                          Awareness campaigns
## 14609                                          Awareness campaigns
## 14610                                          Awareness campaigns
## 14611                                      General recommendations
## 14612                                      General recommendations
## 14613                                      General recommendations
## 14614                                      General recommendations
## 14615                                      General recommendations
## 14616                                      General recommendations
## 14617                            Isolation and quarantine policies
## 14618                            Isolation and quarantine policies
## 14619                            Isolation and quarantine policies
## 14620                            Isolation and quarantine policies
## 14621                            Isolation and quarantine policies
## 14622                            Isolation and quarantine policies
## 14623                                            Economic measures
## 14624                                            Economic measures
## 14625                                            Economic measures
## 14626                                            Economic measures
## 14627                                            Economic measures
## 14628                                            Economic measures
## 14629                        Other public health measures enforced
## 14630                        Other public health measures enforced
## 14631                        Other public health measures enforced
## 14632                        Other public health measures enforced
## 14633                        Other public health measures enforced
## 14634                        Other public health measures enforced
## 14635                        Other public health measures enforced
## 14636                        Other public health measures enforced
## 14637                        Other public health measures enforced
## 14638                        Other public health measures enforced
## 14639                        Other public health measures enforced
## 14640                        Other public health measures enforced
## 14641                                          Awareness campaigns
## 14642                                          Awareness campaigns
## 14643                                          Awareness campaigns
## 14644                                          Awareness campaigns
## 14645                                          Awareness campaigns
## 14646                                          Awareness campaigns
## 14647                    Closure of businesses and public services
## 14648                    Closure of businesses and public services
## 14649                    Closure of businesses and public services
## 14650                    Closure of businesses and public services
## 14651                    Closure of businesses and public services
## 14652                    Closure of businesses and public services
## 14653                       Strengthening the public health system
## 14654                       Strengthening the public health system
## 14655                       Strengthening the public health system
## 14656                       Strengthening the public health system
## 14657                       Strengthening the public health system
## 14658                       Strengthening the public health system
## 14659                                             Schools closure 
## 14660                                             Schools closure 
## 14661                                             Schools closure 
## 14662                                             Schools closure 
## 14663                                             Schools closure 
## 14664                                             Schools closure 
## 14665                                 Domestic travel restrictions
## 14666                                 Domestic travel restrictions
## 14667                                 Domestic travel restrictions
## 14668                                 Domestic travel restrictions
## 14669                                 Domestic travel restrictions
## 14670                                 Domestic travel restrictions
## 14671                                  Surveillance and monitoring
## 14672                                  Surveillance and monitoring
## 14673                                  Surveillance and monitoring
## 14674                                  Surveillance and monitoring
## 14675                                  Surveillance and monitoring
## 14676                                  Surveillance and monitoring
## 14677                                              Border closure 
## 14678                                              Border closure 
## 14679                                              Border closure 
## 14680                                              Border closure 
## 14681                                              Border closure 
## 14682                                              Border closure 
## 14683                                      Limit public gatherings
## 14684                                      Limit public gatherings
## 14685                                      Limit public gatherings
## 14686                                      Limit public gatherings
## 14687                                      Limit public gatherings
## 14688                                      Limit public gatherings
## 14689                            Isolation and quarantine policies
## 14690                            Isolation and quarantine policies
## 14691                            Isolation and quarantine policies
## 14692                            Isolation and quarantine policies
## 14693                            Isolation and quarantine policies
## 14694                            Isolation and quarantine policies
## 14695                       Strengthening the public health system
## 14696                       Strengthening the public health system
## 14697                       Strengthening the public health system
## 14698                       Strengthening the public health system
## 14699                       Strengthening the public health system
## 14700                       Strengthening the public health system
## 14701           Health screenings in airports and border crossings
## 14702           Health screenings in airports and border crossings
## 14703           Health screenings in airports and border crossings
## 14704           Health screenings in airports and border crossings
## 14705           Health screenings in airports and border crossings
## 14706           Health screenings in airports and border crossings
## 14707                             International flights suspension
## 14708                             International flights suspension
## 14709                             International flights suspension
## 14710                             International flights suspension
## 14711                             International flights suspension
## 14712                             International flights suspension
## 14713                                             Schools closure 
## 14714                                             Schools closure 
## 14715                                             Schools closure 
## 14716                                             Schools closure 
## 14717                                             Schools closure 
## 14718                                             Schools closure 
## 14719                                              Border closure 
## 14720                                              Border closure 
## 14721                                              Border closure 
## 14722                                              Border closure 
## 14723                                              Border closure 
## 14724                                              Border closure 
## 14725                                            Visa restrictions
## 14726                                            Visa restrictions
## 14727                                            Visa restrictions
## 14728                                            Visa restrictions
## 14729                                            Visa restrictions
## 14730                                            Visa restrictions
## 14731                                          Awareness campaigns
## 14732                                          Awareness campaigns
## 14733                                          Awareness campaigns
## 14734                                          Awareness campaigns
## 14735                                          Awareness campaigns
## 14736                                          Awareness campaigns
## 14737                                      General recommendations
## 14738                                      General recommendations
## 14739                                      General recommendations
## 14740                                      General recommendations
## 14741                                      General recommendations
## 14742                                      General recommendations
## 14743                       Strengthening the public health system
## 14744                       Strengthening the public health system
## 14745                       Strengthening the public health system
## 14746                       Strengthening the public health system
## 14747                       Strengthening the public health system
## 14748                       Strengthening the public health system
## 14749                                            Economic measures
## 14750                                            Economic measures
## 14751                                            Economic measures
## 14752                                            Economic measures
## 14753                                            Economic measures
## 14754                                            Economic measures
## 14755                       Strengthening the public health system
## 14756                       Strengthening the public health system
## 14757                       Strengthening the public health system
## 14758                       Strengthening the public health system
## 14759                       Strengthening the public health system
## 14760                       Strengthening the public health system
## 14761                       Strengthening the public health system
## 14762                       Strengthening the public health system
## 14763                       Strengthening the public health system
## 14764                       Strengthening the public health system
## 14765                       Strengthening the public health system
## 14766                       Strengthening the public health system
## 14767                                             Partial lockdown
## 14768                                             Partial lockdown
## 14769                                             Partial lockdown
## 14770                                             Partial lockdown
## 14771                                             Partial lockdown
## 14772                                             Partial lockdown
## 14773                                          Awareness campaigns
## 14774                                          Awareness campaigns
## 14775                                          Awareness campaigns
## 14776                                          Awareness campaigns
## 14777                                          Awareness campaigns
## 14778                                          Awareness campaigns
## 14779                            Isolation and quarantine policies
## 14780                            Isolation and quarantine policies
## 14781                            Isolation and quarantine policies
## 14782                            Isolation and quarantine policies
## 14783                            Isolation and quarantine policies
## 14784                            Isolation and quarantine policies
## 14785                                      Limit public gatherings
## 14786                                      Limit public gatherings
## 14787                                      Limit public gatherings
## 14788                                      Limit public gatherings
## 14789                                      Limit public gatherings
## 14790                                      Limit public gatherings
## 14791                                  State of emergency declared
## 14792                                  State of emergency declared
## 14793                                  State of emergency declared
## 14794                                  State of emergency declared
## 14795                                  State of emergency declared
## 14796                                  State of emergency declared
## 14797                                            Economic measures
## 14798                                            Economic measures
## 14799                                            Economic measures
## 14800                                            Economic measures
## 14801                                            Economic measures
## 14802                                            Economic measures
## 14803                       Strengthening the public health system
## 14804                       Strengthening the public health system
## 14805                       Strengthening the public health system
## 14806                       Strengthening the public health system
## 14807                       Strengthening the public health system
## 14808                       Strengthening the public health system
## 14809                                              Border closure 
## 14810                                              Border closure 
## 14811                                              Border closure 
## 14812                                              Border closure 
## 14813                                              Border closure 
## 14814                                              Border closure 
## 14815                                            Economic measures
## 14816                                            Economic measures
## 14817                                            Economic measures
## 14818                                            Economic measures
## 14819                                            Economic measures
## 14820                                            Economic measures
## 14821                            Isolation and quarantine policies
## 14822                            Isolation and quarantine policies
## 14823                            Isolation and quarantine policies
## 14824                            Isolation and quarantine policies
## 14825                            Isolation and quarantine policies
## 14826                            Isolation and quarantine policies
## 14827                                          Awareness campaigns
## 14828                                          Awareness campaigns
## 14829                                          Awareness campaigns
## 14830                                          Awareness campaigns
## 14831                                          Awareness campaigns
## 14832                                          Awareness campaigns
## 14833                                      General recommendations
## 14834                                      General recommendations
## 14835                                      General recommendations
## 14836                                      General recommendations
## 14837                                      General recommendations
## 14838                                      General recommendations
## 14839 Emergency administrative structures activated or established
## 14840 Emergency administrative structures activated or established
## 14841 Emergency administrative structures activated or established
## 14842 Emergency administrative structures activated or established
## 14843 Emergency administrative structures activated or established
## 14844 Emergency administrative structures activated or established
## 14845 Emergency administrative structures activated or established
## 14846 Emergency administrative structures activated or established
## 14847 Emergency administrative structures activated or established
## 14848 Emergency administrative structures activated or established
## 14849 Emergency administrative structures activated or established
## 14850 Emergency administrative structures activated or established
## 14851                                            Economic measures
## 14852                                            Economic measures
## 14853                                            Economic measures
## 14854                                            Economic measures
## 14855                                            Economic measures
## 14856                                            Economic measures
## 14857                                          Awareness campaigns
## 14858                                          Awareness campaigns
## 14859                                          Awareness campaigns
## 14860                                          Awareness campaigns
## 14861                                          Awareness campaigns
## 14862                                          Awareness campaigns
## 14863                       Strengthening the public health system
## 14864                       Strengthening the public health system
## 14865                       Strengthening the public health system
## 14866                       Strengthening the public health system
## 14867                       Strengthening the public health system
## 14868                       Strengthening the public health system
## 14869                            Isolation and quarantine policies
## 14870                            Isolation and quarantine policies
## 14871                            Isolation and quarantine policies
## 14872                            Isolation and quarantine policies
## 14873                            Isolation and quarantine policies
## 14874                            Isolation and quarantine policies
## 14875                                      General recommendations
## 14876                                      General recommendations
## 14877                                      General recommendations
## 14878                                      General recommendations
## 14879                                      General recommendations
## 14880                                      General recommendations
## 14881                             International flights suspension
## 14882                             International flights suspension
## 14883                             International flights suspension
## 14884                             International flights suspension
## 14885                             International flights suspension
## 14886                             International flights suspension
## 14887                                            Economic measures
## 14888                                            Economic measures
## 14889                                            Economic measures
## 14890                                            Economic measures
## 14891                                            Economic measures
## 14892                                            Economic measures
## 14893                            Isolation and quarantine policies
## 14894                            Isolation and quarantine policies
## 14895                            Isolation and quarantine policies
## 14896                            Isolation and quarantine policies
## 14897                            Isolation and quarantine policies
## 14898                            Isolation and quarantine policies
## 14899                                  Surveillance and monitoring
## 14900                                  Surveillance and monitoring
## 14901                                  Surveillance and monitoring
## 14902                                  Surveillance and monitoring
## 14903                                  Surveillance and monitoring
## 14904                                  Surveillance and monitoring
## 14905                                      General recommendations
## 14906                                      General recommendations
## 14907                                      General recommendations
## 14908                                      General recommendations
## 14909                                      General recommendations
## 14910                                      General recommendations
## 14911                                          Awareness campaigns
## 14912                                          Awareness campaigns
## 14913                                          Awareness campaigns
## 14914                                          Awareness campaigns
## 14915                                          Awareness campaigns
## 14916                                          Awareness campaigns
## 14917                                            Economic measures
## 14918                                            Economic measures
## 14919                                            Economic measures
## 14920                                            Economic measures
## 14921                                            Economic measures
## 14922                                            Economic measures
## 14923                       Strengthening the public health system
## 14924                       Strengthening the public health system
## 14925                       Strengthening the public health system
## 14926                       Strengthening the public health system
## 14927                       Strengthening the public health system
## 14928                       Strengthening the public health system
## 14929                        Other public health measures enforced
## 14930                        Other public health measures enforced
## 14931                        Other public health measures enforced
## 14932                        Other public health measures enforced
## 14933                        Other public health measures enforced
## 14934                        Other public health measures enforced
## 14935                                      Limit public gatherings
## 14936                                      Limit public gatherings
## 14937                                      Limit public gatherings
## 14938                                      Limit public gatherings
## 14939                                      Limit public gatherings
## 14940                                      Limit public gatherings
## 14941                                            Economic measures
## 14942                                            Economic measures
## 14943                                            Economic measures
## 14944                                            Economic measures
## 14945                                            Economic measures
## 14946                                            Economic measures
## 14947                                            Economic measures
## 14948                                            Economic measures
## 14949                                            Economic measures
## 14950                                            Economic measures
## 14951                                            Economic measures
## 14952                                            Economic measures
## 14953                                      General recommendations
## 14954                                      General recommendations
## 14955                                      General recommendations
## 14956                                      General recommendations
## 14957                                      General recommendations
## 14958                                      General recommendations
## 14959 Emergency administrative structures activated or established
## 14960 Emergency administrative structures activated or established
## 14961 Emergency administrative structures activated or established
## 14962 Emergency administrative structures activated or established
## 14963 Emergency administrative structures activated or established
## 14964 Emergency administrative structures activated or established
## 14965 Emergency administrative structures activated or established
## 14966 Emergency administrative structures activated or established
## 14967 Emergency administrative structures activated or established
## 14968 Emergency administrative structures activated or established
## 14969 Emergency administrative structures activated or established
## 14970 Emergency administrative structures activated or established
## 14971                                            Economic measures
## 14972                                            Economic measures
## 14973                                            Economic measures
## 14974                                            Economic measures
## 14975                                            Economic measures
## 14976                                            Economic measures
## 14977                                            Economic measures
## 14978                                            Economic measures
## 14979                                            Economic measures
## 14980                                            Economic measures
## 14981                                            Economic measures
## 14982                                            Economic measures
## 14983                                      General recommendations
## 14984                                      General recommendations
## 14985                                      General recommendations
## 14986                                      General recommendations
## 14987                                      General recommendations
## 14988                                      General recommendations
## 14989                                          Awareness campaigns
## 14990                                          Awareness campaigns
## 14991                                          Awareness campaigns
## 14992                                          Awareness campaigns
## 14993                                          Awareness campaigns
## 14994                                          Awareness campaigns
## 14995                       Strengthening the public health system
## 14996                       Strengthening the public health system
## 14997                       Strengthening the public health system
## 14998                       Strengthening the public health system
## 14999                       Strengthening the public health system
## 15000                       Strengthening the public health system
## 15001                Requirement to wear protective gear in public
## 15002                Requirement to wear protective gear in public
## 15003                Requirement to wear protective gear in public
## 15004                Requirement to wear protective gear in public
## 15005                Requirement to wear protective gear in public
## 15006                Requirement to wear protective gear in public
## 15007                            Isolation and quarantine policies
## 15008                            Isolation and quarantine policies
## 15009                            Isolation and quarantine policies
## 15010                            Isolation and quarantine policies
## 15011                            Isolation and quarantine policies
## 15012                            Isolation and quarantine policies
## 15013                        Other public health measures enforced
## 15014                        Other public health measures enforced
## 15015                        Other public health measures enforced
## 15016                        Other public health measures enforced
## 15017                        Other public health measures enforced
## 15018                        Other public health measures enforced
## 15019                       Strengthening the public health system
## 15020                       Strengthening the public health system
## 15021                       Strengthening the public health system
## 15022                       Strengthening the public health system
## 15023                       Strengthening the public health system
## 15024                       Strengthening the public health system
## 15025                                            Economic measures
## 15026                                            Economic measures
## 15027                                            Economic measures
## 15028                                            Economic measures
## 15029                                            Economic measures
## 15030                                            Economic measures
## 15031                                            Economic measures
## 15032                                            Economic measures
## 15033                                            Economic measures
## 15034                                            Economic measures
## 15035                                            Economic measures
## 15036                                            Economic measures
## 15037                        Other public health measures enforced
## 15038                        Other public health measures enforced
## 15039                        Other public health measures enforced
## 15040                        Other public health measures enforced
## 15041                        Other public health measures enforced
## 15042                        Other public health measures enforced
## 15043                                          Awareness campaigns
## 15044                                          Awareness campaigns
## 15045                                          Awareness campaigns
## 15046                                          Awareness campaigns
## 15047                                          Awareness campaigns
## 15048                                          Awareness campaigns
## 15049                       Strengthening the public health system
## 15050                       Strengthening the public health system
## 15051                       Strengthening the public health system
## 15052                       Strengthening the public health system
## 15053                       Strengthening the public health system
## 15054                       Strengthening the public health system
## 15055 Emergency administrative structures activated or established
## 15056 Emergency administrative structures activated or established
## 15057 Emergency administrative structures activated or established
## 15058 Emergency administrative structures activated or established
## 15059 Emergency administrative structures activated or established
## 15060 Emergency administrative structures activated or established
## 15061                                            Economic measures
## 15062                                            Economic measures
## 15063                                            Economic measures
## 15064                                            Economic measures
## 15065                                            Economic measures
## 15066                                            Economic measures
## 15067                                          Awareness campaigns
## 15068                                          Awareness campaigns
## 15069                                          Awareness campaigns
## 15070                                          Awareness campaigns
## 15071                                          Awareness campaigns
## 15072                                          Awareness campaigns
## 15073                                          Military deployment
## 15074                                          Military deployment
## 15075                                          Military deployment
## 15076                                          Military deployment
## 15077                                          Military deployment
## 15078                                          Military deployment
## 15079 Emergency administrative structures activated or established
## 15080 Emergency administrative structures activated or established
## 15081 Emergency administrative structures activated or established
## 15082 Emergency administrative structures activated or established
## 15083 Emergency administrative structures activated or established
## 15084 Emergency administrative structures activated or established
## 15085 Emergency administrative structures activated or established
## 15086 Emergency administrative structures activated or established
## 15087 Emergency administrative structures activated or established
## 15088 Emergency administrative structures activated or established
## 15089 Emergency administrative structures activated or established
## 15090 Emergency administrative structures activated or established
## 15091 Emergency administrative structures activated or established
## 15092 Emergency administrative structures activated or established
## 15093 Emergency administrative structures activated or established
## 15094 Emergency administrative structures activated or established
## 15095 Emergency administrative structures activated or established
## 15096 Emergency administrative structures activated or established
## 15097                        Other public health measures enforced
## 15098                        Other public health measures enforced
## 15099                        Other public health measures enforced
## 15100                        Other public health measures enforced
## 15101                        Other public health measures enforced
## 15102                        Other public health measures enforced
## 15103                                          Awareness campaigns
## 15104                                          Awareness campaigns
## 15105                                          Awareness campaigns
## 15106                                          Awareness campaigns
## 15107                                          Awareness campaigns
## 15108                                          Awareness campaigns
## 15109                       Strengthening the public health system
## 15110                       Strengthening the public health system
## 15111                       Strengthening the public health system
## 15112                       Strengthening the public health system
## 15113                       Strengthening the public health system
## 15114                       Strengthening the public health system
## 15115                                              Border closure 
## 15116                                              Border closure 
## 15117                                              Border closure 
## 15118                                              Border closure 
## 15119                                              Border closure 
## 15120                                              Border closure 
## 15121                Requirement to wear protective gear in public
## 15122                Requirement to wear protective gear in public
## 15123                Requirement to wear protective gear in public
## 15124                Requirement to wear protective gear in public
## 15125                Requirement to wear protective gear in public
## 15126                Requirement to wear protective gear in public
## 15127                                            Economic measures
## 15128                                            Economic measures
## 15129                                            Economic measures
## 15130                                            Economic measures
## 15131                                            Economic measures
## 15132                                            Economic measures
## 15133                                            Economic measures
## 15134                                            Economic measures
## 15135                                            Economic measures
## 15136                                            Economic measures
## 15137                                            Economic measures
## 15138                                            Economic measures
## 15139                                            Economic measures
## 15140                                            Economic measures
## 15141                                            Economic measures
## 15142                                            Economic measures
## 15143                                            Economic measures
## 15144                                            Economic measures
## 15145                                            Economic measures
## 15146                                            Economic measures
## 15147                                            Economic measures
## 15148                                            Economic measures
## 15149                                            Economic measures
## 15150                                            Economic measures
## 15151                                            Economic measures
## 15152                                            Economic measures
## 15153                                            Economic measures
## 15154                                            Economic measures
## 15155                                            Economic measures
## 15156                                            Economic measures
## 15157                                            Economic measures
## 15158                                            Economic measures
## 15159                                            Economic measures
## 15160                                            Economic measures
## 15161                                            Economic measures
## 15162                                            Economic measures
## 15163                                            Economic measures
## 15164                                            Economic measures
## 15165                                            Economic measures
## 15166                                            Economic measures
## 15167                                            Economic measures
## 15168                                            Economic measures
## 15169                                            Economic measures
## 15170                                            Economic measures
## 15171                                            Economic measures
## 15172                                            Economic measures
## 15173                                            Economic measures
## 15174                                            Economic measures
## 15175                                              Border closure 
## 15176                                              Border closure 
## 15177                                              Border closure 
## 15178                                              Border closure 
## 15179                                              Border closure 
## 15180                                              Border closure 
## 15181 Emergency administrative structures activated or established
## 15182 Emergency administrative structures activated or established
## 15183 Emergency administrative structures activated or established
## 15184 Emergency administrative structures activated or established
## 15185 Emergency administrative structures activated or established
## 15186 Emergency administrative structures activated or established
## 15187                                          Awareness campaigns
## 15188                                          Awareness campaigns
## 15189                                          Awareness campaigns
## 15190                                          Awareness campaigns
## 15191                                          Awareness campaigns
## 15192                                          Awareness campaigns
## 15193                                      Limit public gatherings
## 15194                                      Limit public gatherings
## 15195                                      Limit public gatherings
## 15196                                      Limit public gatherings
## 15197                                      Limit public gatherings
## 15198                                      Limit public gatherings
## 15199                                              Border closure 
## 15200                                              Border closure 
## 15201                                              Border closure 
## 15202                                              Border closure 
## 15203                                              Border closure 
## 15204                                              Border closure 
## 15205                                            Economic measures
## 15206                                            Economic measures
## 15207                                            Economic measures
## 15208                                            Economic measures
## 15209                                            Economic measures
## 15210                                            Economic measures
## 15211                                            Visa restrictions
## 15212                                            Visa restrictions
## 15213                                            Visa restrictions
## 15214                                            Visa restrictions
## 15215                                            Visa restrictions
## 15216                                            Visa restrictions
## 15217                                              Border closure 
## 15218                                              Border closure 
## 15219                                              Border closure 
## 15220                                              Border closure 
## 15221                                              Border closure 
## 15222                                              Border closure 
## 15223                        Other public health measures enforced
## 15224                        Other public health measures enforced
## 15225                        Other public health measures enforced
## 15226                        Other public health measures enforced
## 15227                        Other public health measures enforced
## 15228                        Other public health measures enforced
## 15229                                            Economic measures
## 15230                                            Economic measures
## 15231                                            Economic measures
## 15232                                            Economic measures
## 15233                                            Economic measures
## 15234                                            Economic measures
## 15235             Psychological assistance and medical social work
## 15236             Psychological assistance and medical social work
## 15237             Psychological assistance and medical social work
## 15238             Psychological assistance and medical social work
## 15239             Psychological assistance and medical social work
## 15240             Psychological assistance and medical social work
## 15241                                            Economic measures
## 15242                                            Economic measures
## 15243                                            Economic measures
## 15244                                            Economic measures
## 15245                                            Economic measures
## 15246                                            Economic measures
## 15247                                             Partial lockdown
## 15248                                             Partial lockdown
## 15249                                             Partial lockdown
## 15250                                             Partial lockdown
## 15251                                             Partial lockdown
## 15252                                             Partial lockdown
## 15253                                            Economic measures
## 15254                                            Economic measures
## 15255                                            Economic measures
## 15256                                            Economic measures
## 15257                                            Economic measures
## 15258                                            Economic measures
## 15259                                            Economic measures
## 15260                                            Economic measures
## 15261                                            Economic measures
## 15262                                            Economic measures
## 15263                                            Economic measures
## 15264                                            Economic measures
## 15265                                            Economic measures
## 15266                                            Economic measures
## 15267                                            Economic measures
## 15268                                            Economic measures
## 15269                                            Economic measures
## 15270                                            Economic measures
## 15271                                            Economic measures
## 15272                                            Economic measures
## 15273                                            Economic measures
## 15274                                            Economic measures
## 15275                                            Economic measures
## 15276                                            Economic measures
## 15277                    Closure of businesses and public services
## 15278                    Closure of businesses and public services
## 15279                    Closure of businesses and public services
## 15280                    Closure of businesses and public services
## 15281                    Closure of businesses and public services
## 15282                    Closure of businesses and public services
## 15283                                            Economic measures
## 15284                                            Economic measures
## 15285                                            Economic measures
## 15286                                            Economic measures
## 15287                                            Economic measures
## 15288                                            Economic measures
## 15289                                            Economic measures
## 15290                                            Economic measures
## 15291                                            Economic measures
## 15292                                            Economic measures
## 15293                                            Economic measures
## 15294                                            Economic measures
## 15295                                            Economic measures
## 15296                                            Economic measures
## 15297                                            Economic measures
## 15298                                            Economic measures
## 15299                                            Economic measures
## 15300                                            Economic measures
## 15301                                            Economic measures
## 15302                                            Economic measures
## 15303                                            Economic measures
## 15304                                            Economic measures
## 15305                                            Economic measures
## 15306                                            Economic measures
## 15307                                            Economic measures
## 15308                                            Economic measures
## 15309                                            Economic measures
## 15310                                            Economic measures
## 15311                                            Economic measures
## 15312                                            Economic measures
## 15313                                            Economic measures
## 15314                                            Economic measures
## 15315                                            Economic measures
## 15316                                            Economic measures
## 15317                                            Economic measures
## 15318                                            Economic measures
## 15319                                            Economic measures
## 15320                                            Economic measures
## 15321                                            Economic measures
## 15322                                            Economic measures
## 15323                                            Economic measures
## 15324                                            Economic measures
## 15325                                            Economic measures
## 15326                                            Economic measures
## 15327                                            Economic measures
## 15328                                            Economic measures
## 15329                                            Economic measures
## 15330                                            Economic measures
## 15331                                            Economic measures
## 15332                                            Economic measures
## 15333                                            Economic measures
## 15334                                            Economic measures
## 15335                                            Economic measures
## 15336                                            Economic measures
## 15337                                            Economic measures
## 15338                                            Economic measures
## 15339                                            Economic measures
## 15340                                            Economic measures
## 15341                                            Economic measures
## 15342                                            Economic measures
## 15343                                            Economic measures
## 15344                                            Economic measures
## 15345                                            Economic measures
## 15346                                            Economic measures
## 15347                                            Economic measures
## 15348                                            Economic measures
## 15349                                            Economic measures
## 15350                                            Economic measures
## 15351                                            Economic measures
## 15352                                            Economic measures
## 15353                                            Economic measures
## 15354                                            Economic measures
## 15355                                            Economic measures
## 15356                                            Economic measures
## 15357                                            Economic measures
## 15358                                            Economic measures
## 15359                                            Economic measures
## 15360                                            Economic measures
## 15361                                            Economic measures
## 15362                                            Economic measures
## 15363                                            Economic measures
## 15364                                            Economic measures
## 15365                                            Economic measures
## 15366                                            Economic measures
## 15367                                            Economic measures
## 15368                                            Economic measures
## 15369                                            Economic measures
## 15370                                            Economic measures
## 15371                                            Economic measures
## 15372                                            Economic measures
## 15373           Health screenings in airports and border crossings
## 15374           Health screenings in airports and border crossings
## 15375           Health screenings in airports and border crossings
## 15376           Health screenings in airports and border crossings
## 15377           Health screenings in airports and border crossings
## 15378           Health screenings in airports and border crossings
## 15379           Health screenings in airports and border crossings
## 15380           Health screenings in airports and border crossings
## 15381           Health screenings in airports and border crossings
## 15382           Health screenings in airports and border crossings
## 15383           Health screenings in airports and border crossings
## 15384           Health screenings in airports and border crossings
## 15385           Health screenings in airports and border crossings
## 15386           Health screenings in airports and border crossings
## 15387           Health screenings in airports and border crossings
## 15388           Health screenings in airports and border crossings
## 15389           Health screenings in airports and border crossings
## 15390           Health screenings in airports and border crossings
## 15391                                            Economic measures
## 15392                                            Economic measures
## 15393                                            Economic measures
## 15394                                            Economic measures
## 15395                                            Economic measures
## 15396                                            Economic measures
## 15397                                            Economic measures
## 15398                                            Economic measures
## 15399                                            Economic measures
## 15400                                            Economic measures
## 15401                                            Economic measures
## 15402                                            Economic measures
## 15403                                            Economic measures
## 15404                                            Economic measures
## 15405                                            Economic measures
## 15406                                            Economic measures
## 15407                                            Economic measures
## 15408                                            Economic measures
## 15409                                            Economic measures
## 15410                                            Economic measures
## 15411                                            Economic measures
## 15412                                            Economic measures
## 15413                                            Economic measures
## 15414                                            Economic measures
## 15415                                            Economic measures
## 15416                                            Economic measures
## 15417                                            Economic measures
## 15418                                            Economic measures
## 15419                                            Economic measures
## 15420                                            Economic measures
## 15421                                            Economic measures
## 15422                                            Economic measures
## 15423                                            Economic measures
## 15424                                            Economic measures
## 15425                                            Economic measures
## 15426                                            Economic measures
## 15427                                            Economic measures
## 15428                                            Economic measures
## 15429                                            Economic measures
## 15430                                            Economic measures
## 15431                                            Economic measures
## 15432                                            Economic measures
## 15433                                            Economic measures
## 15434                                            Economic measures
## 15435                                            Economic measures
## 15436                                            Economic measures
## 15437                                            Economic measures
## 15438                                            Economic measures
## 15439                                            Economic measures
## 15440                                            Economic measures
## 15441                                            Economic measures
## 15442                                            Economic measures
## 15443                                            Economic measures
## 15444                                            Economic measures
## 15445                                            Economic measures
## 15446                                            Economic measures
## 15447                                            Economic measures
## 15448                                            Economic measures
## 15449                                            Economic measures
## 15450                                            Economic measures
## 15451                                            Economic measures
## 15452                                            Economic measures
## 15453                                            Economic measures
## 15454                                            Economic measures
## 15455                                            Economic measures
## 15456                                            Economic measures
## 15457                                            Economic measures
## 15458                                            Economic measures
## 15459                                            Economic measures
## 15460                                            Economic measures
## 15461                                            Economic measures
## 15462                                            Economic measures
## 15463                                            Economic measures
## 15464                                            Economic measures
## 15465                                            Economic measures
## 15466                                            Economic measures
## 15467                                            Economic measures
## 15468                                            Economic measures
## 15469                                            Economic measures
## 15470                                            Economic measures
## 15471                                            Economic measures
## 15472                                            Economic measures
## 15473                                            Economic measures
## 15474                                            Economic measures
## 15475                                            Economic measures
## 15476                                            Economic measures
## 15477                                            Economic measures
## 15478                                            Economic measures
## 15479                                            Economic measures
## 15480                                            Economic measures
## 15481                                            Economic measures
## 15482                                            Economic measures
## 15483                                            Economic measures
## 15484                                            Economic measures
## 15485                                            Economic measures
## 15486                                            Economic measures
## 15487                                            Economic measures
## 15488                                            Economic measures
## 15489                                            Economic measures
## 15490                                            Economic measures
## 15491                                            Economic measures
## 15492                                            Economic measures
## 15493                                            Economic measures
## 15494                                            Economic measures
## 15495                                            Economic measures
## 15496                                            Economic measures
## 15497                                            Economic measures
## 15498                                            Economic measures
## 15499                                            Economic measures
## 15500                                            Economic measures
## 15501                                            Economic measures
## 15502                                            Economic measures
## 15503                                            Economic measures
## 15504                                            Economic measures
## 15505                                            Economic measures
## 15506                                            Economic measures
## 15507                                            Economic measures
## 15508                                            Economic measures
## 15509                                            Economic measures
## 15510                                            Economic measures
## 15511                                            Economic measures
## 15512                                            Economic measures
## 15513                                            Economic measures
## 15514                                            Economic measures
## 15515                                            Economic measures
## 15516                                            Economic measures
## 15517                                            Economic measures
## 15518                                            Economic measures
## 15519                                            Economic measures
## 15520                                            Economic measures
## 15521                                            Economic measures
## 15522                                            Economic measures
## 15523                             International flights suspension
## 15524                             International flights suspension
## 15525                             International flights suspension
## 15526                             International flights suspension
## 15527                             International flights suspension
## 15528                             International flights suspension
## 15529                                 Domestic travel restrictions
## 15530                                 Domestic travel restrictions
## 15531                                 Domestic travel restrictions
## 15532                                 Domestic travel restrictions
## 15533                                 Domestic travel restrictions
## 15534                                 Domestic travel restrictions
## 15535                            Isolation and quarantine policies
## 15536                            Isolation and quarantine policies
## 15537                            Isolation and quarantine policies
## 15538                            Isolation and quarantine policies
## 15539                            Isolation and quarantine policies
## 15540                            Isolation and quarantine policies
## 15541                                            Economic measures
## 15542                                            Economic measures
## 15543                                            Economic measures
## 15544                                            Economic measures
## 15545                                            Economic measures
## 15546                                            Economic measures
## 15547                                            Economic measures
## 15548                                            Economic measures
## 15549                                            Economic measures
## 15550                                            Economic measures
## 15551                                            Economic measures
## 15552                                            Economic measures
## 15553                                            Economic measures
## 15554                                            Economic measures
## 15555                                            Economic measures
## 15556                                            Economic measures
## 15557                                            Economic measures
## 15558                                            Economic measures
## 15559                                            Economic measures
## 15560                                            Economic measures
## 15561                                            Economic measures
## 15562                                            Economic measures
## 15563                                            Economic measures
## 15564                                            Economic measures
## 15565                                            Economic measures
## 15566                                            Economic measures
## 15567                                            Economic measures
## 15568                                            Economic measures
## 15569                                            Economic measures
## 15570                                            Economic measures
## 15571        Additional health/documents requirements upon arrival
## 15572        Additional health/documents requirements upon arrival
## 15573        Additional health/documents requirements upon arrival
## 15574        Additional health/documents requirements upon arrival
## 15575        Additional health/documents requirements upon arrival
## 15576        Additional health/documents requirements upon arrival
## 15577        Additional health/documents requirements upon arrival
## 15578        Additional health/documents requirements upon arrival
## 15579        Additional health/documents requirements upon arrival
## 15580        Additional health/documents requirements upon arrival
## 15581        Additional health/documents requirements upon arrival
## 15582        Additional health/documents requirements upon arrival
## 15583           Health screenings in airports and border crossings
## 15584           Health screenings in airports and border crossings
## 15585           Health screenings in airports and border crossings
## 15586           Health screenings in airports and border crossings
## 15587           Health screenings in airports and border crossings
## 15588           Health screenings in airports and border crossings
## 15589                            Isolation and quarantine policies
## 15590                            Isolation and quarantine policies
## 15591                            Isolation and quarantine policies
## 15592                            Isolation and quarantine policies
## 15593                            Isolation and quarantine policies
## 15594                            Isolation and quarantine policies
## 15595                    Closure of businesses and public services
## 15596                    Closure of businesses and public services
## 15597                    Closure of businesses and public services
## 15598                    Closure of businesses and public services
## 15599                    Closure of businesses and public services
## 15600                    Closure of businesses and public services
## 15601                                      Limit public gatherings
## 15602                                      Limit public gatherings
## 15603                                      Limit public gatherings
## 15604                                      Limit public gatherings
## 15605                                      Limit public gatherings
## 15606                                      Limit public gatherings
## 15607                       Strengthening the public health system
## 15608                       Strengthening the public health system
## 15609                       Strengthening the public health system
## 15610                       Strengthening the public health system
## 15611                       Strengthening the public health system
## 15612                       Strengthening the public health system
## 15613                                          Awareness campaigns
## 15614                                          Awareness campaigns
## 15615                                          Awareness campaigns
## 15616                                          Awareness campaigns
## 15617                                          Awareness campaigns
## 15618                                          Awareness campaigns
## 15619                             International flights suspension
## 15620                             International flights suspension
## 15621                             International flights suspension
## 15622                             International flights suspension
## 15623                             International flights suspension
## 15624                             International flights suspension
## 15625                                              Border closure 
## 15626                                              Border closure 
## 15627                                              Border closure 
## 15628                                              Border closure 
## 15629                                              Border closure 
## 15630                                              Border closure 
## 15631                            Isolation and quarantine policies
## 15632                            Isolation and quarantine policies
## 15633                            Isolation and quarantine policies
## 15634                            Isolation and quarantine policies
## 15635                            Isolation and quarantine policies
## 15636                            Isolation and quarantine policies
## 15637                            Isolation and quarantine policies
## 15638                            Isolation and quarantine policies
## 15639                            Isolation and quarantine policies
## 15640                            Isolation and quarantine policies
## 15641                            Isolation and quarantine policies
## 15642                            Isolation and quarantine policies
## 15643                                             Schools closure 
## 15644                                             Schools closure 
## 15645                                             Schools closure 
## 15646                                             Schools closure 
## 15647                                             Schools closure 
## 15648                                             Schools closure 
## 15649                                      Limit public gatherings
## 15650                                      Limit public gatherings
## 15651                                      Limit public gatherings
## 15652                                      Limit public gatherings
## 15653                                      Limit public gatherings
## 15654                                      Limit public gatherings
## 15655                                      Limit public gatherings
## 15656                                      Limit public gatherings
## 15657                                      Limit public gatherings
## 15658                                      Limit public gatherings
## 15659                                      Limit public gatherings
## 15660                                      Limit public gatherings
## 15661                                 Domestic travel restrictions
## 15662                                 Domestic travel restrictions
## 15663                                 Domestic travel restrictions
## 15664                                 Domestic travel restrictions
## 15665                                 Domestic travel restrictions
## 15666                                 Domestic travel restrictions
## 15667                                      Limit public gatherings
## 15668                                      Limit public gatherings
## 15669                                      Limit public gatherings
## 15670                                      Limit public gatherings
## 15671                                      Limit public gatherings
## 15672                                      Limit public gatherings
## 15673                                            Visa restrictions
## 15674                                            Visa restrictions
## 15675                                            Visa restrictions
## 15676                                            Visa restrictions
## 15677                                            Visa restrictions
## 15678                                            Visa restrictions
## 15679                        Other public health measures enforced
## 15680                        Other public health measures enforced
## 15681                        Other public health measures enforced
## 15682                        Other public health measures enforced
## 15683                        Other public health measures enforced
## 15684                        Other public health measures enforced
## 15685                                      Limit public gatherings
## 15686                                      Limit public gatherings
## 15687                                      Limit public gatherings
## 15688                                      Limit public gatherings
## 15689                                      Limit public gatherings
## 15690                                      Limit public gatherings
## 15691 Emergency administrative structures activated or established
## 15692 Emergency administrative structures activated or established
## 15693 Emergency administrative structures activated or established
## 15694 Emergency administrative structures activated or established
## 15695 Emergency administrative structures activated or established
## 15696 Emergency administrative structures activated or established
## 15697                                 Domestic travel restrictions
## 15698                                 Domestic travel restrictions
## 15699                                 Domestic travel restrictions
## 15700                                 Domestic travel restrictions
## 15701                                 Domestic travel restrictions
## 15702                                 Domestic travel restrictions
## 15703                                 Domestic travel restrictions
## 15704                                 Domestic travel restrictions
## 15705                                 Domestic travel restrictions
## 15706                                 Domestic travel restrictions
## 15707                                 Domestic travel restrictions
## 15708                                 Domestic travel restrictions
## 15709           Health screenings in airports and border crossings
## 15710           Health screenings in airports and border crossings
## 15711           Health screenings in airports and border crossings
## 15712           Health screenings in airports and border crossings
## 15713           Health screenings in airports and border crossings
## 15714           Health screenings in airports and border crossings
## 15715                            Isolation and quarantine policies
## 15716                            Isolation and quarantine policies
## 15717                            Isolation and quarantine policies
## 15718                            Isolation and quarantine policies
## 15719                            Isolation and quarantine policies
## 15720                            Isolation and quarantine policies
## 15721                             International flights suspension
## 15722                             International flights suspension
## 15723                             International flights suspension
## 15724                             International flights suspension
## 15725                             International flights suspension
## 15726                             International flights suspension
## 15727                                                      Curfews
## 15728                                                      Curfews
## 15729                                                      Curfews
## 15730                                                      Curfews
## 15731                                                      Curfews
## 15732                                                      Curfews
## 15733           Health screenings in airports and border crossings
## 15734           Health screenings in airports and border crossings
## 15735           Health screenings in airports and border crossings
## 15736           Health screenings in airports and border crossings
## 15737           Health screenings in airports and border crossings
## 15738           Health screenings in airports and border crossings
## 15739                                             Partial lockdown
## 15740                                             Partial lockdown
## 15741                                             Partial lockdown
## 15742                                             Partial lockdown
## 15743                                             Partial lockdown
## 15744                                             Partial lockdown
## 15745            Lockdown of refugee/idp camps or other minorities
## 15746            Lockdown of refugee/idp camps or other minorities
## 15747            Lockdown of refugee/idp camps or other minorities
## 15748            Lockdown of refugee/idp camps or other minorities
## 15749            Lockdown of refugee/idp camps or other minorities
## 15750            Lockdown of refugee/idp camps or other minorities
## 15751                               Checkpoints within the country
## 15752                               Checkpoints within the country
## 15753                               Checkpoints within the country
## 15754                               Checkpoints within the country
## 15755                               Checkpoints within the country
## 15756                               Checkpoints within the country
## 15757                                      Limit public gatherings
## 15758                                      Limit public gatherings
## 15759                                      Limit public gatherings
## 15760                                      Limit public gatherings
## 15761                                      Limit public gatherings
## 15762                                      Limit public gatherings
## 15763                                      Limit public gatherings
## 15764                                      Limit public gatherings
## 15765                                      Limit public gatherings
## 15766                                      Limit public gatherings
## 15767                                      Limit public gatherings
## 15768                                      Limit public gatherings
## 15769                                 Domestic travel restrictions
## 15770                                 Domestic travel restrictions
## 15771                                 Domestic travel restrictions
## 15772                                 Domestic travel restrictions
## 15773                                 Domestic travel restrictions
## 15774                                 Domestic travel restrictions
## 15775                                      Limit public gatherings
## 15776                                      Limit public gatherings
## 15777                                      Limit public gatherings
## 15778                                      Limit public gatherings
## 15779                                      Limit public gatherings
## 15780                                      Limit public gatherings
## 15781                                                      Curfews
## 15782                                                      Curfews
## 15783                                                      Curfews
## 15784                                                      Curfews
## 15785                                                      Curfews
## 15786                                                      Curfews
## 15787                             International flights suspension
## 15788                             International flights suspension
## 15789                             International flights suspension
## 15790                             International flights suspension
## 15791                             International flights suspension
## 15792                             International flights suspension
## 15793                                                      Curfews
## 15794                                                      Curfews
## 15795                                                      Curfews
## 15796                                                      Curfews
## 15797                                                      Curfews
## 15798                                                      Curfews
## 15799                Requirement to wear protective gear in public
## 15800                Requirement to wear protective gear in public
## 15801                Requirement to wear protective gear in public
## 15802                Requirement to wear protective gear in public
## 15803                Requirement to wear protective gear in public
## 15804                Requirement to wear protective gear in public
## 15805                       Strengthening the public health system
## 15806                       Strengthening the public health system
## 15807                       Strengthening the public health system
## 15808                       Strengthening the public health system
## 15809                       Strengthening the public health system
## 15810                       Strengthening the public health system
## 15811                                            Economic measures
## 15812                                            Economic measures
## 15813                                            Economic measures
## 15814                                            Economic measures
## 15815                                            Economic measures
## 15816                                            Economic measures
## 15817                                            Economic measures
## 15818                                            Economic measures
## 15819                                            Economic measures
## 15820                                            Economic measures
## 15821                                            Economic measures
## 15822                                            Economic measures
## 15823                                            Economic measures
## 15824                                            Economic measures
## 15825                                            Economic measures
## 15826                                            Economic measures
## 15827                                            Economic measures
## 15828                                            Economic measures
## 15829                                            Economic measures
## 15830                                            Economic measures
## 15831                                            Economic measures
## 15832                                            Economic measures
## 15833                                            Economic measures
## 15834                                            Economic measures
## 15835                                            Economic measures
## 15836                                            Economic measures
## 15837                                            Economic measures
## 15838                                            Economic measures
## 15839                                            Economic measures
## 15840                                            Economic measures
## 15841                           Changes in prison-related policies
## 15842                           Changes in prison-related policies
## 15843                           Changes in prison-related policies
## 15844                           Changes in prison-related policies
## 15845                           Changes in prison-related policies
## 15846                           Changes in prison-related policies
## 15847                             International flights suspension
## 15848                             International flights suspension
## 15849                             International flights suspension
## 15850                             International flights suspension
## 15851                             International flights suspension
## 15852                             International flights suspension
## 15853                Requirement to wear protective gear in public
## 15854                Requirement to wear protective gear in public
## 15855                Requirement to wear protective gear in public
## 15856                Requirement to wear protective gear in public
## 15857                Requirement to wear protective gear in public
## 15858                Requirement to wear protective gear in public
## 15859                 Amendments to funeral and burial regulations
## 15860                 Amendments to funeral and burial regulations
## 15861                 Amendments to funeral and burial regulations
## 15862                 Amendments to funeral and burial regulations
## 15863                 Amendments to funeral and burial regulations
## 15864                 Amendments to funeral and burial regulations
## 15865                                                      Curfews
## 15866                                                      Curfews
## 15867                                                      Curfews
## 15868                                                      Curfews
## 15869                                                      Curfews
## 15870                                                      Curfews
## 15871                Requirement to wear protective gear in public
## 15872                Requirement to wear protective gear in public
## 15873                Requirement to wear protective gear in public
## 15874                Requirement to wear protective gear in public
## 15875                Requirement to wear protective gear in public
## 15876                Requirement to wear protective gear in public
## 15877                                 Domestic travel restrictions
## 15878                                 Domestic travel restrictions
## 15879                                 Domestic travel restrictions
## 15880                                 Domestic travel restrictions
## 15881                                 Domestic travel restrictions
## 15882                                 Domestic travel restrictions
## 15883                            Isolation and quarantine policies
## 15884                            Isolation and quarantine policies
## 15885                            Isolation and quarantine policies
## 15886                            Isolation and quarantine policies
## 15887                            Isolation and quarantine policies
## 15888                            Isolation and quarantine policies
## 15889 Emergency administrative structures activated or established
## 15890 Emergency administrative structures activated or established
## 15891 Emergency administrative structures activated or established
## 15892 Emergency administrative structures activated or established
## 15893 Emergency administrative structures activated or established
## 15894 Emergency administrative structures activated or established
## 15895 Emergency administrative structures activated or established
## 15896 Emergency administrative structures activated or established
## 15897 Emergency administrative structures activated or established
## 15898 Emergency administrative structures activated or established
## 15899 Emergency administrative structures activated or established
## 15900 Emergency administrative structures activated or established
## 15901                       Strengthening the public health system
## 15902                       Strengthening the public health system
## 15903                       Strengthening the public health system
## 15904                       Strengthening the public health system
## 15905                       Strengthening the public health system
## 15906                       Strengthening the public health system
## 15907                                            Economic measures
## 15908                                            Economic measures
## 15909                                            Economic measures
## 15910                                            Economic measures
## 15911                                            Economic measures
## 15912                                            Economic measures
## 15913                       Strengthening the public health system
## 15914                       Strengthening the public health system
## 15915                       Strengthening the public health system
## 15916                       Strengthening the public health system
## 15917                       Strengthening the public health system
## 15918                       Strengthening the public health system
## 15919                                            Economic measures
## 15920                                            Economic measures
## 15921                                            Economic measures
## 15922                                            Economic measures
## 15923                                            Economic measures
## 15924                                            Economic measures
## 15925                                            Economic measures
## 15926                                            Economic measures
## 15927                                            Economic measures
## 15928                                            Economic measures
## 15929                                            Economic measures
## 15930                                            Economic measures
## 15931                                  State of emergency declared
## 15932                                  State of emergency declared
## 15933                                  State of emergency declared
## 15934                                  State of emergency declared
## 15935                                  State of emergency declared
## 15936                                  State of emergency declared
## 15937                            Isolation and quarantine policies
## 15938                            Isolation and quarantine policies
## 15939                            Isolation and quarantine policies
## 15940                            Isolation and quarantine policies
## 15941                            Isolation and quarantine policies
## 15942                            Isolation and quarantine policies
## 15943                                 Domestic travel restrictions
## 15944                                 Domestic travel restrictions
## 15945                                 Domestic travel restrictions
## 15946                                 Domestic travel restrictions
## 15947                                 Domestic travel restrictions
## 15948                                 Domestic travel restrictions
## 15949                             International flights suspension
## 15950                             International flights suspension
## 15951                             International flights suspension
## 15952                             International flights suspension
## 15953                             International flights suspension
## 15954                             International flights suspension
## 15955                             International flights suspension
## 15956                             International flights suspension
## 15957                             International flights suspension
## 15958                             International flights suspension
## 15959                             International flights suspension
## 15960                             International flights suspension
## 15961                             International flights suspension
## 15962                             International flights suspension
## 15963                             International flights suspension
## 15964                             International flights suspension
## 15965                             International flights suspension
## 15966                             International flights suspension
## 15967                            Isolation and quarantine policies
## 15968                            Isolation and quarantine policies
## 15969                            Isolation and quarantine policies
## 15970                            Isolation and quarantine policies
## 15971                            Isolation and quarantine policies
## 15972                            Isolation and quarantine policies
## 15973                                          Military deployment
## 15974                                          Military deployment
## 15975                                          Military deployment
## 15976                                          Military deployment
## 15977                                          Military deployment
## 15978                                          Military deployment
## 15979                                              Border closure 
## 15980                                              Border closure 
## 15981                                              Border closure 
## 15982                                              Border closure 
## 15983                                              Border closure 
## 15984                                              Border closure 
## 15985                                              Border closure 
## 15986                                              Border closure 
## 15987                                              Border closure 
## 15988                                              Border closure 
## 15989                                              Border closure 
## 15990                                              Border closure 
## 15991        Additional health/documents requirements upon arrival
## 15992        Additional health/documents requirements upon arrival
## 15993        Additional health/documents requirements upon arrival
## 15994        Additional health/documents requirements upon arrival
## 15995        Additional health/documents requirements upon arrival
## 15996        Additional health/documents requirements upon arrival
## 15997                            Isolation and quarantine policies
## 15998                            Isolation and quarantine policies
## 15999                            Isolation and quarantine policies
## 16000                            Isolation and quarantine policies
## 16001                            Isolation and quarantine policies
## 16002                            Isolation and quarantine policies
## 16003                                  State of emergency declared
## 16004                                  State of emergency declared
## 16005                                  State of emergency declared
## 16006                                  State of emergency declared
## 16007                                  State of emergency declared
## 16008                                  State of emergency declared
## 16009                                                      Curfews
## 16010                                                      Curfews
## 16011                                                      Curfews
## 16012                                                      Curfews
## 16013                                                      Curfews
## 16014                                                      Curfews
## 16015                            Isolation and quarantine policies
## 16016                            Isolation and quarantine policies
## 16017                            Isolation and quarantine policies
## 16018                            Isolation and quarantine policies
## 16019                            Isolation and quarantine policies
## 16020                            Isolation and quarantine policies
## 16021                            Isolation and quarantine policies
## 16022                            Isolation and quarantine policies
## 16023                            Isolation and quarantine policies
## 16024                            Isolation and quarantine policies
## 16025                            Isolation and quarantine policies
## 16026                            Isolation and quarantine policies
## 16027                                             Schools closure 
## 16028                                             Schools closure 
## 16029                                             Schools closure 
## 16030                                             Schools closure 
## 16031                                             Schools closure 
## 16032                                             Schools closure 
## 16033                                      Limit public gatherings
## 16034                                      Limit public gatherings
## 16035                                      Limit public gatherings
## 16036                                      Limit public gatherings
## 16037                                      Limit public gatherings
## 16038                                      Limit public gatherings
## 16039                                      Limit public gatherings
## 16040                                      Limit public gatherings
## 16041                                      Limit public gatherings
## 16042                                      Limit public gatherings
## 16043                                      Limit public gatherings
## 16044                                      Limit public gatherings
## 16045                                      Limit public gatherings
## 16046                                      Limit public gatherings
## 16047                                      Limit public gatherings
## 16048                                      Limit public gatherings
## 16049                                      Limit public gatherings
## 16050                                      Limit public gatherings
## 16051                                 Domestic travel restrictions
## 16052                                 Domestic travel restrictions
## 16053                                 Domestic travel restrictions
## 16054                                 Domestic travel restrictions
## 16055                                 Domestic travel restrictions
## 16056                                 Domestic travel restrictions
## 16057                                            Economic measures
## 16058                                            Economic measures
## 16059                                            Economic measures
## 16060                                            Economic measures
## 16061                                            Economic measures
## 16062                                            Economic measures
## 16063                                             Partial lockdown
## 16064                                             Partial lockdown
## 16065                                             Partial lockdown
## 16066                                             Partial lockdown
## 16067                                             Partial lockdown
## 16068                                             Partial lockdown
## 16069                                             Partial lockdown
## 16070                                             Partial lockdown
## 16071                                             Partial lockdown
## 16072                                             Partial lockdown
## 16073                                             Partial lockdown
## 16074                                             Partial lockdown
## 16075                                             Partial lockdown
## 16076                                             Partial lockdown
## 16077                                             Partial lockdown
## 16078                                             Partial lockdown
## 16079                                             Partial lockdown
## 16080                                             Partial lockdown
## 16081                                             Partial lockdown
## 16082                                             Partial lockdown
## 16083                                             Partial lockdown
## 16084                                             Partial lockdown
## 16085                                             Partial lockdown
## 16086                                             Partial lockdown
## 16087                                                      Curfews
## 16088                                                      Curfews
## 16089                                                      Curfews
## 16090                                                      Curfews
## 16091                                                      Curfews
## 16092                                                      Curfews
## 16093                               Checkpoints within the country
## 16094                               Checkpoints within the country
## 16095                               Checkpoints within the country
## 16096                               Checkpoints within the country
## 16097                               Checkpoints within the country
## 16098                               Checkpoints within the country
## 16099                                      Limit public gatherings
## 16100                                      Limit public gatherings
## 16101                                      Limit public gatherings
## 16102                                      Limit public gatherings
## 16103                                      Limit public gatherings
## 16104                                      Limit public gatherings
## 16105                           Changes in prison-related policies
## 16106                           Changes in prison-related policies
## 16107                           Changes in prison-related policies
## 16108                           Changes in prison-related policies
## 16109                           Changes in prison-related policies
## 16110                           Changes in prison-related policies
## 16111                           Changes in prison-related policies
## 16112                           Changes in prison-related policies
## 16113                           Changes in prison-related policies
## 16114                           Changes in prison-related policies
## 16115                           Changes in prison-related policies
## 16116                           Changes in prison-related policies
## 16117                       Strengthening the public health system
## 16118                       Strengthening the public health system
## 16119                       Strengthening the public health system
## 16120                       Strengthening the public health system
## 16121                       Strengthening the public health system
## 16122                       Strengthening the public health system
## 16123                                             Partial lockdown
## 16124                                             Partial lockdown
## 16125                                             Partial lockdown
## 16126                                             Partial lockdown
## 16127                                             Partial lockdown
## 16128                                             Partial lockdown
## 16129                                             Partial lockdown
## 16130                                             Partial lockdown
## 16131                                             Partial lockdown
## 16132                                             Partial lockdown
## 16133                                             Partial lockdown
## 16134                                             Partial lockdown
## 16135                                             Partial lockdown
## 16136                                             Partial lockdown
## 16137                                             Partial lockdown
## 16138                                             Partial lockdown
## 16139                                             Partial lockdown
## 16140                                             Partial lockdown
## 16141                               Checkpoints within the country
## 16142                               Checkpoints within the country
## 16143                               Checkpoints within the country
## 16144                               Checkpoints within the country
## 16145                               Checkpoints within the country
## 16146                               Checkpoints within the country
## 16147                Requirement to wear protective gear in public
## 16148                Requirement to wear protective gear in public
## 16149                Requirement to wear protective gear in public
## 16150                Requirement to wear protective gear in public
## 16151                Requirement to wear protective gear in public
## 16152                Requirement to wear protective gear in public
## 16153                                      General recommendations
## 16154                                      General recommendations
## 16155                                      General recommendations
## 16156                                      General recommendations
## 16157                                      General recommendations
## 16158                                      General recommendations
## 16159                                            Economic measures
## 16160                                            Economic measures
## 16161                                            Economic measures
## 16162                                            Economic measures
## 16163                                            Economic measures
## 16164                                            Economic measures
## 16165                                            Economic measures
## 16166                                            Economic measures
## 16167                                            Economic measures
## 16168                                            Economic measures
## 16169                                            Economic measures
## 16170                                            Economic measures
## 16171                Requirement to wear protective gear in public
## 16172                Requirement to wear protective gear in public
## 16173                Requirement to wear protective gear in public
## 16174                Requirement to wear protective gear in public
## 16175                Requirement to wear protective gear in public
## 16176                Requirement to wear protective gear in public
## 16177                                             Partial lockdown
## 16178                                             Partial lockdown
## 16179                                             Partial lockdown
## 16180                                             Partial lockdown
## 16181                                             Partial lockdown
## 16182                                             Partial lockdown
## 16183                                             Partial lockdown
## 16184                                             Partial lockdown
## 16185                                             Partial lockdown
## 16186                                             Partial lockdown
## 16187                                             Partial lockdown
## 16188                                             Partial lockdown
## 16189                           Changes in prison-related policies
## 16190                           Changes in prison-related policies
## 16191                           Changes in prison-related policies
## 16192                           Changes in prison-related policies
## 16193                           Changes in prison-related policies
## 16194                           Changes in prison-related policies
## 16195                                             Partial lockdown
## 16196                                             Partial lockdown
## 16197                                             Partial lockdown
## 16198                                             Partial lockdown
## 16199                                             Partial lockdown
## 16200                                             Partial lockdown
## 16201                                            Economic measures
## 16202                                            Economic measures
## 16203                                            Economic measures
## 16204                                            Economic measures
## 16205                                            Economic measures
## 16206                                            Economic measures
## 16207                                 Domestic travel restrictions
## 16208                                 Domestic travel restrictions
## 16209                                 Domestic travel restrictions
## 16210                                 Domestic travel restrictions
## 16211                                 Domestic travel restrictions
## 16212                                 Domestic travel restrictions
## 16213                                             Partial lockdown
## 16214                                             Partial lockdown
## 16215                                             Partial lockdown
## 16216                                             Partial lockdown
## 16217                                             Partial lockdown
## 16218                                             Partial lockdown
## 16219                                 Domestic travel restrictions
## 16220                                 Domestic travel restrictions
## 16221                                 Domestic travel restrictions
## 16222                                 Domestic travel restrictions
## 16223                                 Domestic travel restrictions
## 16224                                 Domestic travel restrictions
## 16225                                            Economic measures
## 16226                                            Economic measures
## 16227                                            Economic measures
## 16228                                            Economic measures
## 16229                                            Economic measures
## 16230                                            Economic measures
## 16231                                             Partial lockdown
## 16232                                             Partial lockdown
## 16233                                             Partial lockdown
## 16234                                             Partial lockdown
## 16235                                             Partial lockdown
## 16236                                             Partial lockdown
## 16237                                            Economic measures
## 16238                                            Economic measures
## 16239                                            Economic measures
## 16240                                            Economic measures
## 16241                                            Economic measures
## 16242                                            Economic measures
## 16243                                            Economic measures
## 16244                                            Economic measures
## 16245                                            Economic measures
## 16246                                            Economic measures
## 16247                                            Economic measures
## 16248                                            Economic measures
## 16249                                            Economic measures
## 16250                                            Economic measures
## 16251                                            Economic measures
## 16252                                            Economic measures
## 16253                                            Economic measures
## 16254                                            Economic measures
## 16255                                      Limit public gatherings
## 16256                                      Limit public gatherings
## 16257                                      Limit public gatherings
## 16258                                      Limit public gatherings
## 16259                                      Limit public gatherings
## 16260                                      Limit public gatherings
## 16261                                             Partial lockdown
## 16262                                             Partial lockdown
## 16263                                             Partial lockdown
## 16264                                             Partial lockdown
## 16265                                             Partial lockdown
## 16266                                             Partial lockdown
## 16267                               Checkpoints within the country
## 16268                               Checkpoints within the country
## 16269                               Checkpoints within the country
## 16270                               Checkpoints within the country
## 16271                               Checkpoints within the country
## 16272                               Checkpoints within the country
## 16273                                             Partial lockdown
## 16274                                             Partial lockdown
## 16275                                             Partial lockdown
## 16276                                             Partial lockdown
## 16277                                             Partial lockdown
## 16278                                             Partial lockdown
## 16279                                             Partial lockdown
## 16280                                             Partial lockdown
## 16281                                             Partial lockdown
## 16282                                             Partial lockdown
## 16283                                             Partial lockdown
## 16284                                             Partial lockdown
## 16285                Requirement to wear protective gear in public
## 16286                Requirement to wear protective gear in public
## 16287                Requirement to wear protective gear in public
## 16288                Requirement to wear protective gear in public
## 16289                Requirement to wear protective gear in public
## 16290                Requirement to wear protective gear in public
## 16291                       Strengthening the public health system
## 16292                       Strengthening the public health system
## 16293                       Strengthening the public health system
## 16294                       Strengthening the public health system
## 16295                       Strengthening the public health system
## 16296                       Strengthening the public health system
## 16297                                 Domestic travel restrictions
## 16298                                 Domestic travel restrictions
## 16299                                 Domestic travel restrictions
## 16300                                 Domestic travel restrictions
## 16301                                 Domestic travel restrictions
## 16302                                 Domestic travel restrictions
## 16303                       Strengthening the public health system
## 16304                       Strengthening the public health system
## 16305                       Strengthening the public health system
## 16306                       Strengthening the public health system
## 16307                       Strengthening the public health system
## 16308                       Strengthening the public health system
## 16309                                            Economic measures
## 16310                                            Economic measures
## 16311                                            Economic measures
## 16312                                            Economic measures
## 16313                                            Economic measures
## 16314                                            Economic measures
## 16315                                             Partial lockdown
## 16316                                             Partial lockdown
## 16317                                             Partial lockdown
## 16318                                             Partial lockdown
## 16319                                             Partial lockdown
## 16320                                             Partial lockdown
## 16321                       Strengthening the public health system
## 16322                       Strengthening the public health system
## 16323                       Strengthening the public health system
## 16324                       Strengthening the public health system
## 16325                       Strengthening the public health system
## 16326                       Strengthening the public health system
## 16327                            Isolation and quarantine policies
## 16328                            Isolation and quarantine policies
## 16329                            Isolation and quarantine policies
## 16330                            Isolation and quarantine policies
## 16331                            Isolation and quarantine policies
## 16332                            Isolation and quarantine policies
## 16333                                            Economic measures
## 16334                                            Economic measures
## 16335                                            Economic measures
## 16336                                            Economic measures
## 16337                                            Economic measures
## 16338                                            Economic measures
## 16339                            Isolation and quarantine policies
## 16340                            Isolation and quarantine policies
## 16341                            Isolation and quarantine policies
## 16342                            Isolation and quarantine policies
## 16343                            Isolation and quarantine policies
## 16344                            Isolation and quarantine policies
## 16345                                            Economic measures
## 16346                                            Economic measures
## 16347                                            Economic measures
## 16348                                            Economic measures
## 16349                                            Economic measures
## 16350                                            Economic measures
## 16351                            Isolation and quarantine policies
## 16352                            Isolation and quarantine policies
## 16353                            Isolation and quarantine policies
## 16354                            Isolation and quarantine policies
## 16355                            Isolation and quarantine policies
## 16356                            Isolation and quarantine policies
## 16357                                            Economic measures
## 16358                                            Economic measures
## 16359                                            Economic measures
## 16360                                            Economic measures
## 16361                                            Economic measures
## 16362                                            Economic measures
## 16363                                  State of emergency declared
## 16364                                  State of emergency declared
## 16365                                  State of emergency declared
## 16366                                  State of emergency declared
## 16367                                  State of emergency declared
## 16368                                  State of emergency declared
## 16369                                            Economic measures
## 16370                                            Economic measures
## 16371                                            Economic measures
## 16372                                            Economic measures
## 16373                                            Economic measures
## 16374                                            Economic measures
## 16375             Psychological assistance and medical social work
## 16376             Psychological assistance and medical social work
## 16377             Psychological assistance and medical social work
## 16378             Psychological assistance and medical social work
## 16379             Psychological assistance and medical social work
## 16380             Psychological assistance and medical social work
## 16381                       Strengthening the public health system
## 16382                       Strengthening the public health system
## 16383                       Strengthening the public health system
## 16384                       Strengthening the public health system
## 16385                       Strengthening the public health system
## 16386                       Strengthening the public health system
## 16387                       Strengthening the public health system
## 16388                       Strengthening the public health system
## 16389                       Strengthening the public health system
## 16390                       Strengthening the public health system
## 16391                       Strengthening the public health system
## 16392                       Strengthening the public health system
## 16393                                            Economic measures
## 16394                                            Economic measures
## 16395                                            Economic measures
## 16396                                            Economic measures
## 16397                                            Economic measures
## 16398                                            Economic measures
## 16399                                            Economic measures
## 16400                                            Economic measures
## 16401                                            Economic measures
## 16402                                            Economic measures
## 16403                                            Economic measures
## 16404                                            Economic measures
## 16405                                  Surveillance and monitoring
## 16406                                  Surveillance and monitoring
## 16407                                  Surveillance and monitoring
## 16408                                  Surveillance and monitoring
## 16409                                  Surveillance and monitoring
## 16410                                  Surveillance and monitoring
## 16411                                             Schools closure 
## 16412                                             Schools closure 
## 16413                                             Schools closure 
## 16414                                             Schools closure 
## 16415                                             Schools closure 
## 16416                                             Schools closure 
## 16417                    Closure of businesses and public services
## 16418                    Closure of businesses and public services
## 16419                    Closure of businesses and public services
## 16420                    Closure of businesses and public services
## 16421                    Closure of businesses and public services
## 16422                    Closure of businesses and public services
## 16423                            Isolation and quarantine policies
## 16424                            Isolation and quarantine policies
## 16425                            Isolation and quarantine policies
## 16426                            Isolation and quarantine policies
## 16427                            Isolation and quarantine policies
## 16428                            Isolation and quarantine policies
## 16429                                      Limit public gatherings
## 16430                                      Limit public gatherings
## 16431                                      Limit public gatherings
## 16432                                      Limit public gatherings
## 16433                                      Limit public gatherings
## 16434                                      Limit public gatherings
## 16435                                            Economic measures
## 16436                                            Economic measures
## 16437                                            Economic measures
## 16438                                            Economic measures
## 16439                                            Economic measures
## 16440                                            Economic measures
## 16441                                          Awareness campaigns
## 16442                                          Awareness campaigns
## 16443                                          Awareness campaigns
## 16444                                          Awareness campaigns
## 16445                                          Awareness campaigns
## 16446                                          Awareness campaigns
## 16447           Health screenings in airports and border crossings
## 16448           Health screenings in airports and border crossings
## 16449           Health screenings in airports and border crossings
## 16450           Health screenings in airports and border crossings
## 16451           Health screenings in airports and border crossings
## 16452           Health screenings in airports and border crossings
## 16453 Emergency administrative structures activated or established
## 16454 Emergency administrative structures activated or established
## 16455 Emergency administrative structures activated or established
## 16456 Emergency administrative structures activated or established
## 16457 Emergency administrative structures activated or established
## 16458 Emergency administrative structures activated or established
## 16459                                 Domestic travel restrictions
## 16460                                 Domestic travel restrictions
## 16461                                 Domestic travel restrictions
## 16462                                 Domestic travel restrictions
## 16463                                 Domestic travel restrictions
## 16464                                 Domestic travel restrictions
## 16465                       Strengthening the public health system
## 16466                       Strengthening the public health system
## 16467                       Strengthening the public health system
## 16468                       Strengthening the public health system
## 16469                       Strengthening the public health system
## 16470                       Strengthening the public health system
## 16471                                  State of emergency declared
## 16472                                  State of emergency declared
## 16473                                  State of emergency declared
## 16474                                  State of emergency declared
## 16475                                  State of emergency declared
## 16476                                  State of emergency declared
## 16477                                             Partial lockdown
## 16478                                             Partial lockdown
## 16479                                             Partial lockdown
## 16480                                             Partial lockdown
## 16481                                             Partial lockdown
## 16482                                             Partial lockdown
## 16483        Additional health/documents requirements upon arrival
## 16484        Additional health/documents requirements upon arrival
## 16485        Additional health/documents requirements upon arrival
## 16486        Additional health/documents requirements upon arrival
## 16487        Additional health/documents requirements upon arrival
## 16488        Additional health/documents requirements upon arrival
## 16489             Psychological assistance and medical social work
## 16490             Psychological assistance and medical social work
## 16491             Psychological assistance and medical social work
## 16492             Psychological assistance and medical social work
## 16493             Psychological assistance and medical social work
## 16494             Psychological assistance and medical social work
## 16495                            Isolation and quarantine policies
## 16496                            Isolation and quarantine policies
## 16497                            Isolation and quarantine policies
## 16498                            Isolation and quarantine policies
## 16499                            Isolation and quarantine policies
## 16500                            Isolation and quarantine policies
## 16501           Health screenings in airports and border crossings
## 16502           Health screenings in airports and border crossings
## 16503           Health screenings in airports and border crossings
## 16504           Health screenings in airports and border crossings
## 16505           Health screenings in airports and border crossings
## 16506           Health screenings in airports and border crossings
## 16507                            Isolation and quarantine policies
## 16508                            Isolation and quarantine policies
## 16509                            Isolation and quarantine policies
## 16510                            Isolation and quarantine policies
## 16511                            Isolation and quarantine policies
## 16512                            Isolation and quarantine policies
## 16513                       Strengthening the public health system
## 16514                       Strengthening the public health system
## 16515                       Strengthening the public health system
## 16516                       Strengthening the public health system
## 16517                       Strengthening the public health system
## 16518                       Strengthening the public health system
## 16519                       Strengthening the public health system
## 16520                       Strengthening the public health system
## 16521                       Strengthening the public health system
## 16522                       Strengthening the public health system
## 16523                       Strengthening the public health system
## 16524                       Strengthening the public health system
## 16525                       Strengthening the public health system
## 16526                       Strengthening the public health system
## 16527                       Strengthening the public health system
## 16528                       Strengthening the public health system
## 16529                       Strengthening the public health system
## 16530                       Strengthening the public health system
## 16531                            Isolation and quarantine policies
## 16532                            Isolation and quarantine policies
## 16533                            Isolation and quarantine policies
## 16534                            Isolation and quarantine policies
## 16535                            Isolation and quarantine policies
## 16536                            Isolation and quarantine policies
## 16537             Psychological assistance and medical social work
## 16538             Psychological assistance and medical social work
## 16539             Psychological assistance and medical social work
## 16540             Psychological assistance and medical social work
## 16541             Psychological assistance and medical social work
## 16542             Psychological assistance and medical social work
## 16543                                      General recommendations
## 16544                                      General recommendations
## 16545                                      General recommendations
## 16546                                      General recommendations
## 16547                                      General recommendations
## 16548                                      General recommendations
## 16549                            Isolation and quarantine policies
## 16550                            Isolation and quarantine policies
## 16551                            Isolation and quarantine policies
## 16552                            Isolation and quarantine policies
## 16553                            Isolation and quarantine policies
## 16554                            Isolation and quarantine policies
## 16555                            Isolation and quarantine policies
## 16556                            Isolation and quarantine policies
## 16557                            Isolation and quarantine policies
## 16558                            Isolation and quarantine policies
## 16559                            Isolation and quarantine policies
## 16560                            Isolation and quarantine policies
## 16561                            Isolation and quarantine policies
## 16562                            Isolation and quarantine policies
## 16563                            Isolation and quarantine policies
## 16564                            Isolation and quarantine policies
## 16565                            Isolation and quarantine policies
## 16566                            Isolation and quarantine policies
## 16567                            Isolation and quarantine policies
## 16568                            Isolation and quarantine policies
## 16569                            Isolation and quarantine policies
## 16570                            Isolation and quarantine policies
## 16571                            Isolation and quarantine policies
## 16572                            Isolation and quarantine policies
## 16573                            Isolation and quarantine policies
## 16574                            Isolation and quarantine policies
## 16575                            Isolation and quarantine policies
## 16576                            Isolation and quarantine policies
## 16577                            Isolation and quarantine policies
## 16578                            Isolation and quarantine policies
## 16579                            Isolation and quarantine policies
## 16580                            Isolation and quarantine policies
## 16581                            Isolation and quarantine policies
## 16582                            Isolation and quarantine policies
## 16583                            Isolation and quarantine policies
## 16584                            Isolation and quarantine policies
## 16585                                      General recommendations
## 16586                                      General recommendations
## 16587                                      General recommendations
## 16588                                      General recommendations
## 16589                                      General recommendations
## 16590                                      General recommendations
## 16591                                      General recommendations
## 16592                                      General recommendations
## 16593                                      General recommendations
## 16594                                      General recommendations
## 16595                                      General recommendations
## 16596                                      General recommendations
## 16597                            Isolation and quarantine policies
## 16598                            Isolation and quarantine policies
## 16599                            Isolation and quarantine policies
## 16600                            Isolation and quarantine policies
## 16601                            Isolation and quarantine policies
## 16602                            Isolation and quarantine policies
## 16603                            Isolation and quarantine policies
## 16604                            Isolation and quarantine policies
## 16605                            Isolation and quarantine policies
## 16606                            Isolation and quarantine policies
## 16607                            Isolation and quarantine policies
## 16608                            Isolation and quarantine policies
## 16609             Psychological assistance and medical social work
## 16610             Psychological assistance and medical social work
## 16611             Psychological assistance and medical social work
## 16612             Psychological assistance and medical social work
## 16613             Psychological assistance and medical social work
## 16614             Psychological assistance and medical social work
## 16615           Health screenings in airports and border crossings
## 16616           Health screenings in airports and border crossings
## 16617           Health screenings in airports and border crossings
## 16618           Health screenings in airports and border crossings
## 16619           Health screenings in airports and border crossings
## 16620           Health screenings in airports and border crossings
## 16621                             International flights suspension
## 16622                             International flights suspension
## 16623                             International flights suspension
## 16624                             International flights suspension
## 16625                             International flights suspension
## 16626                             International flights suspension
## 16627                             International flights suspension
## 16628                             International flights suspension
## 16629                             International flights suspension
## 16630                             International flights suspension
## 16631                             International flights suspension
## 16632                             International flights suspension
## 16633                       Strengthening the public health system
## 16634                       Strengthening the public health system
## 16635                       Strengthening the public health system
## 16636                       Strengthening the public health system
## 16637                       Strengthening the public health system
## 16638                       Strengthening the public health system
## 16639                       Strengthening the public health system
## 16640                       Strengthening the public health system
## 16641                       Strengthening the public health system
## 16642                       Strengthening the public health system
## 16643                       Strengthening the public health system
## 16644                       Strengthening the public health system
## 16645                                 Domestic travel restrictions
## 16646                                 Domestic travel restrictions
## 16647                                 Domestic travel restrictions
## 16648                                 Domestic travel restrictions
## 16649                                 Domestic travel restrictions
## 16650                                 Domestic travel restrictions
## 16651           Health screenings in airports and border crossings
## 16652           Health screenings in airports and border crossings
## 16653           Health screenings in airports and border crossings
## 16654           Health screenings in airports and border crossings
## 16655           Health screenings in airports and border crossings
## 16656           Health screenings in airports and border crossings
## 16657           Health screenings in airports and border crossings
## 16658           Health screenings in airports and border crossings
## 16659           Health screenings in airports and border crossings
## 16660           Health screenings in airports and border crossings
## 16661           Health screenings in airports and border crossings
## 16662           Health screenings in airports and border crossings
## 16663           Health screenings in airports and border crossings
## 16664           Health screenings in airports and border crossings
## 16665           Health screenings in airports and border crossings
## 16666           Health screenings in airports and border crossings
## 16667           Health screenings in airports and border crossings
## 16668           Health screenings in airports and border crossings
## 16669                            Isolation and quarantine policies
## 16670                            Isolation and quarantine policies
## 16671                            Isolation and quarantine policies
## 16672                            Isolation and quarantine policies
## 16673                            Isolation and quarantine policies
## 16674                            Isolation and quarantine policies
## 16675           Health screenings in airports and border crossings
## 16676           Health screenings in airports and border crossings
## 16677           Health screenings in airports and border crossings
## 16678           Health screenings in airports and border crossings
## 16679           Health screenings in airports and border crossings
## 16680           Health screenings in airports and border crossings
## 16681        Additional health/documents requirements upon arrival
## 16682        Additional health/documents requirements upon arrival
## 16683        Additional health/documents requirements upon arrival
## 16684        Additional health/documents requirements upon arrival
## 16685        Additional health/documents requirements upon arrival
## 16686        Additional health/documents requirements upon arrival
## 16687                             International flights suspension
## 16688                             International flights suspension
## 16689                             International flights suspension
## 16690                             International flights suspension
## 16691                             International flights suspension
## 16692                             International flights suspension
## 16693                            Isolation and quarantine policies
## 16694                            Isolation and quarantine policies
## 16695                            Isolation and quarantine policies
## 16696                            Isolation and quarantine policies
## 16697                            Isolation and quarantine policies
## 16698                            Isolation and quarantine policies
## 16699                        Other public health measures enforced
## 16700                        Other public health measures enforced
## 16701                        Other public health measures enforced
## 16702                        Other public health measures enforced
## 16703                        Other public health measures enforced
## 16704                        Other public health measures enforced
## 16705                            Isolation and quarantine policies
## 16706                            Isolation and quarantine policies
## 16707                            Isolation and quarantine policies
## 16708                            Isolation and quarantine policies
## 16709                            Isolation and quarantine policies
## 16710                            Isolation and quarantine policies
## 16711                             International flights suspension
## 16712                             International flights suspension
## 16713                             International flights suspension
## 16714                             International flights suspension
## 16715                             International flights suspension
## 16716                             International flights suspension
## 16717             Psychological assistance and medical social work
## 16718             Psychological assistance and medical social work
## 16719             Psychological assistance and medical social work
## 16720             Psychological assistance and medical social work
## 16721             Psychological assistance and medical social work
## 16722             Psychological assistance and medical social work
## 16723                                            Visa restrictions
## 16724                                            Visa restrictions
## 16725                                            Visa restrictions
## 16726                                            Visa restrictions
## 16727                                            Visa restrictions
## 16728                                            Visa restrictions
## 16729                        Other public health measures enforced
## 16730                        Other public health measures enforced
## 16731                        Other public health measures enforced
## 16732                        Other public health measures enforced
## 16733                        Other public health measures enforced
## 16734                        Other public health measures enforced
## 16735                            Isolation and quarantine policies
## 16736                            Isolation and quarantine policies
## 16737                            Isolation and quarantine policies
## 16738                            Isolation and quarantine policies
## 16739                            Isolation and quarantine policies
## 16740                            Isolation and quarantine policies
## 16741           Health screenings in airports and border crossings
## 16742           Health screenings in airports and border crossings
## 16743           Health screenings in airports and border crossings
## 16744           Health screenings in airports and border crossings
## 16745           Health screenings in airports and border crossings
## 16746           Health screenings in airports and border crossings
## 16747           Health screenings in airports and border crossings
## 16748           Health screenings in airports and border crossings
## 16749           Health screenings in airports and border crossings
## 16750           Health screenings in airports and border crossings
## 16751           Health screenings in airports and border crossings
## 16752           Health screenings in airports and border crossings
## 16753                                               Testing policy
## 16754                                               Testing policy
## 16755                                               Testing policy
## 16756                                               Testing policy
## 16757                                               Testing policy
## 16758                                               Testing policy
## 16759                             International flights suspension
## 16760                             International flights suspension
## 16761                             International flights suspension
## 16762                             International flights suspension
## 16763                             International flights suspension
## 16764                             International flights suspension
## 16765                                 Domestic travel restrictions
## 16766                                 Domestic travel restrictions
## 16767                                 Domestic travel restrictions
## 16768                                 Domestic travel restrictions
## 16769                                 Domestic travel restrictions
## 16770                                 Domestic travel restrictions
## 16771                            Isolation and quarantine policies
## 16772                            Isolation and quarantine policies
## 16773                            Isolation and quarantine policies
## 16774                            Isolation and quarantine policies
## 16775                            Isolation and quarantine policies
## 16776                            Isolation and quarantine policies
## 16777                             International flights suspension
## 16778                             International flights suspension
## 16779                             International flights suspension
## 16780                             International flights suspension
## 16781                             International flights suspension
## 16782                             International flights suspension
## 16783             Psychological assistance and medical social work
## 16784             Psychological assistance and medical social work
## 16785             Psychological assistance and medical social work
## 16786             Psychological assistance and medical social work
## 16787             Psychological assistance and medical social work
## 16788             Psychological assistance and medical social work
## 16789                                  Surveillance and monitoring
## 16790                                  Surveillance and monitoring
## 16791                                  Surveillance and monitoring
## 16792                                  Surveillance and monitoring
## 16793                                  Surveillance and monitoring
## 16794                                  Surveillance and monitoring
## 16795                Requirement to wear protective gear in public
## 16796                Requirement to wear protective gear in public
## 16797                Requirement to wear protective gear in public
## 16798                Requirement to wear protective gear in public
## 16799                Requirement to wear protective gear in public
## 16800                Requirement to wear protective gear in public
## 16801                                          Awareness campaigns
## 16802                                          Awareness campaigns
## 16803                                          Awareness campaigns
## 16804                                          Awareness campaigns
## 16805                                          Awareness campaigns
## 16806                                          Awareness campaigns
## 16807                                  Surveillance and monitoring
## 16808                                  Surveillance and monitoring
## 16809                                  Surveillance and monitoring
## 16810                                  Surveillance and monitoring
## 16811                                  Surveillance and monitoring
## 16812                                  Surveillance and monitoring
## 16813                                  Surveillance and monitoring
## 16814                                  Surveillance and monitoring
## 16815                                  Surveillance and monitoring
## 16816                                  Surveillance and monitoring
## 16817                                  Surveillance and monitoring
## 16818                                  Surveillance and monitoring
## 16819                       Strengthening the public health system
## 16820                       Strengthening the public health system
## 16821                       Strengthening the public health system
## 16822                       Strengthening the public health system
## 16823                       Strengthening the public health system
## 16824                       Strengthening the public health system
## 16825                                              Border closure 
## 16826                                              Border closure 
## 16827                                              Border closure 
## 16828                                              Border closure 
## 16829                                              Border closure 
## 16830                                              Border closure 
## 16831                                  Surveillance and monitoring
## 16832                                  Surveillance and monitoring
## 16833                                  Surveillance and monitoring
## 16834                                  Surveillance and monitoring
## 16835                                  Surveillance and monitoring
## 16836                                  Surveillance and monitoring
## 16837                                      Mass population testing
## 16838                                      Mass population testing
## 16839                                      Mass population testing
## 16840                                      Mass population testing
## 16841                                      Mass population testing
## 16842                                      Mass population testing
## 16843                                      Limit public gatherings
## 16844                                      Limit public gatherings
## 16845                                      Limit public gatherings
## 16846                                      Limit public gatherings
## 16847                                      Limit public gatherings
## 16848                                      Limit public gatherings
## 16849                                            Economic measures
## 16850                                            Economic measures
## 16851                                            Economic measures
## 16852                                            Economic measures
## 16853                                            Economic measures
## 16854                                            Economic measures
## 16855                       Strengthening the public health system
## 16856                       Strengthening the public health system
## 16857                       Strengthening the public health system
## 16858                       Strengthening the public health system
## 16859                       Strengthening the public health system
## 16860                       Strengthening the public health system
## 16861                            Isolation and quarantine policies
## 16862                            Isolation and quarantine policies
## 16863                            Isolation and quarantine policies
## 16864                            Isolation and quarantine policies
## 16865                            Isolation and quarantine policies
## 16866                            Isolation and quarantine policies
## 16867        Additional health/documents requirements upon arrival
## 16868        Additional health/documents requirements upon arrival
## 16869        Additional health/documents requirements upon arrival
## 16870        Additional health/documents requirements upon arrival
## 16871        Additional health/documents requirements upon arrival
## 16872        Additional health/documents requirements upon arrival
## 16873                                               Testing policy
## 16874                                               Testing policy
## 16875                                               Testing policy
## 16876                                               Testing policy
## 16877                                               Testing policy
## 16878                                               Testing policy
## 16879                                               Testing policy
## 16880                                               Testing policy
## 16881                                               Testing policy
## 16882                                               Testing policy
## 16883                                               Testing policy
## 16884                                               Testing policy
## 16885                                              Border closure 
## 16886                                              Border closure 
## 16887                                              Border closure 
## 16888                                              Border closure 
## 16889                                              Border closure 
## 16890                                              Border closure 
## 16891                                 Domestic travel restrictions
## 16892                                 Domestic travel restrictions
## 16893                                 Domestic travel restrictions
## 16894                                 Domestic travel restrictions
## 16895                                 Domestic travel restrictions
## 16896                                 Domestic travel restrictions
## 16897                                               Testing policy
## 16898                                               Testing policy
## 16899                                               Testing policy
## 16900                                               Testing policy
## 16901                                               Testing policy
## 16902                                               Testing policy
## 16903                                               Testing policy
## 16904                                               Testing policy
## 16905                                               Testing policy
## 16906                                               Testing policy
## 16907                                               Testing policy
## 16908                                               Testing policy
## 16909                                               Testing policy
## 16910                                               Testing policy
## 16911                                               Testing policy
## 16912                                               Testing policy
## 16913                                               Testing policy
## 16914                                               Testing policy
## 16915                                  Surveillance and monitoring
## 16916                                  Surveillance and monitoring
## 16917                                  Surveillance and monitoring
## 16918                                  Surveillance and monitoring
## 16919                                  Surveillance and monitoring
## 16920                                  Surveillance and monitoring
## 16921                                  Surveillance and monitoring
## 16922                                  Surveillance and monitoring
## 16923                                  Surveillance and monitoring
## 16924                                  Surveillance and monitoring
## 16925                                  Surveillance and monitoring
## 16926                                  Surveillance and monitoring
## 16927           Health screenings in airports and border crossings
## 16928           Health screenings in airports and border crossings
## 16929           Health screenings in airports and border crossings
## 16930           Health screenings in airports and border crossings
## 16931           Health screenings in airports and border crossings
## 16932           Health screenings in airports and border crossings
## 16933                                             Schools closure 
## 16934                                             Schools closure 
## 16935                                             Schools closure 
## 16936                                             Schools closure 
## 16937                                             Schools closure 
## 16938                                             Schools closure 
## 16939           Health screenings in airports and border crossings
## 16940           Health screenings in airports and border crossings
## 16941           Health screenings in airports and border crossings
## 16942           Health screenings in airports and border crossings
## 16943           Health screenings in airports and border crossings
## 16944           Health screenings in airports and border crossings
## 16945                            Isolation and quarantine policies
## 16946                            Isolation and quarantine policies
## 16947                            Isolation and quarantine policies
## 16948                            Isolation and quarantine policies
## 16949                            Isolation and quarantine policies
## 16950                            Isolation and quarantine policies
## 16951                               Checkpoints within the country
## 16952                               Checkpoints within the country
## 16953                               Checkpoints within the country
## 16954                               Checkpoints within the country
## 16955                               Checkpoints within the country
## 16956                               Checkpoints within the country
## 16957                       Strengthening the public health system
## 16958                       Strengthening the public health system
## 16959                       Strengthening the public health system
## 16960                       Strengthening the public health system
## 16961                       Strengthening the public health system
## 16962                       Strengthening the public health system
## 16963                                              Border closure 
## 16964                                              Border closure 
## 16965                                              Border closure 
## 16966                                              Border closure 
## 16967                                              Border closure 
## 16968                                              Border closure 
## 16969                                  Surveillance and monitoring
## 16970                                  Surveillance and monitoring
## 16971                                  Surveillance and monitoring
## 16972                                  Surveillance and monitoring
## 16973                                  Surveillance and monitoring
## 16974                                  Surveillance and monitoring
## 16975           Health screenings in airports and border crossings
## 16976           Health screenings in airports and border crossings
## 16977           Health screenings in airports and border crossings
## 16978           Health screenings in airports and border crossings
## 16979           Health screenings in airports and border crossings
## 16980           Health screenings in airports and border crossings
## 16981                            Isolation and quarantine policies
## 16982                            Isolation and quarantine policies
## 16983                            Isolation and quarantine policies
## 16984                            Isolation and quarantine policies
## 16985                            Isolation and quarantine policies
## 16986                            Isolation and quarantine policies
## 16987             Psychological assistance and medical social work
## 16988             Psychological assistance and medical social work
## 16989             Psychological assistance and medical social work
## 16990             Psychological assistance and medical social work
## 16991             Psychological assistance and medical social work
## 16992             Psychological assistance and medical social work
## 16993                                               Testing policy
## 16994                                               Testing policy
## 16995                                               Testing policy
## 16996                                               Testing policy
## 16997                                               Testing policy
## 16998                                               Testing policy
## 16999             Psychological assistance and medical social work
## 17000             Psychological assistance and medical social work
## 17001             Psychological assistance and medical social work
## 17002             Psychological assistance and medical social work
## 17003             Psychological assistance and medical social work
## 17004             Psychological assistance and medical social work
## 17005                                               Testing policy
## 17006                                               Testing policy
## 17007                                               Testing policy
## 17008                                               Testing policy
## 17009                                               Testing policy
## 17010                                               Testing policy
## 17011                       Strengthening the public health system
## 17012                       Strengthening the public health system
## 17013                       Strengthening the public health system
## 17014                       Strengthening the public health system
## 17015                       Strengthening the public health system
## 17016                       Strengthening the public health system
## 17017                                  Surveillance and monitoring
## 17018                                  Surveillance and monitoring
## 17019                                  Surveillance and monitoring
## 17020                                  Surveillance and monitoring
## 17021                                  Surveillance and monitoring
## 17022                                  Surveillance and monitoring
## 17023                                               Testing policy
## 17024                                               Testing policy
## 17025                                               Testing policy
## 17026                                               Testing policy
## 17027                                               Testing policy
## 17028                                               Testing policy
## 17029                            Isolation and quarantine policies
## 17030                            Isolation and quarantine policies
## 17031                            Isolation and quarantine policies
## 17032                            Isolation and quarantine policies
## 17033                            Isolation and quarantine policies
## 17034                            Isolation and quarantine policies
## 17035                                               Testing policy
## 17036                                               Testing policy
## 17037                                               Testing policy
## 17038                                               Testing policy
## 17039                                               Testing policy
## 17040                                               Testing policy
## 17041                                  Surveillance and monitoring
## 17042                                  Surveillance and monitoring
## 17043                                  Surveillance and monitoring
## 17044                                  Surveillance and monitoring
## 17045                                  Surveillance and monitoring
## 17046                                  Surveillance and monitoring
## 17047             Psychological assistance and medical social work
## 17048             Psychological assistance and medical social work
## 17049             Psychological assistance and medical social work
## 17050             Psychological assistance and medical social work
## 17051             Psychological assistance and medical social work
## 17052             Psychological assistance and medical social work
## 17053                                            Economic measures
## 17054                                            Economic measures
## 17055                                            Economic measures
## 17056                                            Economic measures
## 17057                                            Economic measures
## 17058                                            Economic measures
## 17059                            Isolation and quarantine policies
## 17060                            Isolation and quarantine policies
## 17061                            Isolation and quarantine policies
## 17062                            Isolation and quarantine policies
## 17063                            Isolation and quarantine policies
## 17064                            Isolation and quarantine policies
## 17065           Health screenings in airports and border crossings
## 17066           Health screenings in airports and border crossings
## 17067           Health screenings in airports and border crossings
## 17068           Health screenings in airports and border crossings
## 17069           Health screenings in airports and border crossings
## 17070           Health screenings in airports and border crossings
## 17071                       Strengthening the public health system
## 17072                       Strengthening the public health system
## 17073                       Strengthening the public health system
## 17074                       Strengthening the public health system
## 17075                       Strengthening the public health system
## 17076                       Strengthening the public health system
## 17077                            Isolation and quarantine policies
## 17078                            Isolation and quarantine policies
## 17079                            Isolation and quarantine policies
## 17080                            Isolation and quarantine policies
## 17081                            Isolation and quarantine policies
## 17082                            Isolation and quarantine policies
## 17083 Emergency administrative structures activated or established
## 17084 Emergency administrative structures activated or established
## 17085 Emergency administrative structures activated or established
## 17086 Emergency administrative structures activated or established
## 17087 Emergency administrative structures activated or established
## 17088 Emergency administrative structures activated or established
## 17089                                            Economic measures
## 17090                                            Economic measures
## 17091                                            Economic measures
## 17092                                            Economic measures
## 17093                                            Economic measures
## 17094                                            Economic measures
## 17095           Health screenings in airports and border crossings
## 17096           Health screenings in airports and border crossings
## 17097           Health screenings in airports and border crossings
## 17098           Health screenings in airports and border crossings
## 17099           Health screenings in airports and border crossings
## 17100           Health screenings in airports and border crossings
## 17101                                  Surveillance and monitoring
## 17102                                  Surveillance and monitoring
## 17103                                  Surveillance and monitoring
## 17104                                  Surveillance and monitoring
## 17105                                  Surveillance and monitoring
## 17106                                  Surveillance and monitoring
## 17107                                      Limit public gatherings
## 17108                                      Limit public gatherings
## 17109                                      Limit public gatherings
## 17110                                      Limit public gatherings
## 17111                                      Limit public gatherings
## 17112                                      Limit public gatherings
## 17113 Emergency administrative structures activated or established
## 17114 Emergency administrative structures activated or established
## 17115 Emergency administrative structures activated or established
## 17116 Emergency administrative structures activated or established
## 17117 Emergency administrative structures activated or established
## 17118 Emergency administrative structures activated or established
## 17119 Emergency administrative structures activated or established
## 17120 Emergency administrative structures activated or established
## 17121 Emergency administrative structures activated or established
## 17122 Emergency administrative structures activated or established
## 17123 Emergency administrative structures activated or established
## 17124 Emergency administrative structures activated or established
## 17125                                             Partial lockdown
## 17126                                             Partial lockdown
## 17127                                             Partial lockdown
## 17128                                             Partial lockdown
## 17129                                             Partial lockdown
## 17130                                             Partial lockdown
## 17131                                  Surveillance and monitoring
## 17132                                  Surveillance and monitoring
## 17133                                  Surveillance and monitoring
## 17134                                  Surveillance and monitoring
## 17135                                  Surveillance and monitoring
## 17136                                  Surveillance and monitoring
## 17137 Emergency administrative structures activated or established
## 17138 Emergency administrative structures activated or established
## 17139 Emergency administrative structures activated or established
## 17140 Emergency administrative structures activated or established
## 17141 Emergency administrative structures activated or established
## 17142 Emergency administrative structures activated or established
## 17143                                      Limit public gatherings
## 17144                                      Limit public gatherings
## 17145                                      Limit public gatherings
## 17146                                      Limit public gatherings
## 17147                                      Limit public gatherings
## 17148                                      Limit public gatherings
## 17149                                          Awareness campaigns
## 17150                                          Awareness campaigns
## 17151                                          Awareness campaigns
## 17152                                          Awareness campaigns
## 17153                                          Awareness campaigns
## 17154                                          Awareness campaigns
## 17155 Emergency administrative structures activated or established
## 17156 Emergency administrative structures activated or established
## 17157 Emergency administrative structures activated or established
## 17158 Emergency administrative structures activated or established
## 17159 Emergency administrative structures activated or established
## 17160 Emergency administrative structures activated or established
## 17161 Emergency administrative structures activated or established
## 17162 Emergency administrative structures activated or established
## 17163 Emergency administrative structures activated or established
## 17164 Emergency administrative structures activated or established
## 17165 Emergency administrative structures activated or established
## 17166 Emergency administrative structures activated or established
## 17167                                            Economic measures
## 17168                                            Economic measures
## 17169                                            Economic measures
## 17170                                            Economic measures
## 17171                                            Economic measures
## 17172                                            Economic measures
## 17173                Requirement to wear protective gear in public
## 17174                Requirement to wear protective gear in public
## 17175                Requirement to wear protective gear in public
## 17176                Requirement to wear protective gear in public
## 17177                Requirement to wear protective gear in public
## 17178                Requirement to wear protective gear in public
## 17179                       Strengthening the public health system
## 17180                       Strengthening the public health system
## 17181                       Strengthening the public health system
## 17182                       Strengthening the public health system
## 17183                       Strengthening the public health system
## 17184                       Strengthening the public health system
## 17185 Emergency administrative structures activated or established
## 17186 Emergency administrative structures activated or established
## 17187 Emergency administrative structures activated or established
## 17188 Emergency administrative structures activated or established
## 17189 Emergency administrative structures activated or established
## 17190 Emergency administrative structures activated or established
## 17191           Health screenings in airports and border crossings
## 17192           Health screenings in airports and border crossings
## 17193           Health screenings in airports and border crossings
## 17194           Health screenings in airports and border crossings
## 17195           Health screenings in airports and border crossings
## 17196           Health screenings in airports and border crossings
## 17197                                             Schools closure 
## 17198                                             Schools closure 
## 17199                                             Schools closure 
## 17200                                             Schools closure 
## 17201                                             Schools closure 
## 17202                                             Schools closure 
## 17203                                 Domestic travel restrictions
## 17204                                 Domestic travel restrictions
## 17205                                 Domestic travel restrictions
## 17206                                 Domestic travel restrictions
## 17207                                 Domestic travel restrictions
## 17208                                 Domestic travel restrictions
## 17209                            Isolation and quarantine policies
## 17210                            Isolation and quarantine policies
## 17211                            Isolation and quarantine policies
## 17212                            Isolation and quarantine policies
## 17213                            Isolation and quarantine policies
## 17214                            Isolation and quarantine policies
## 17215                                               Testing policy
## 17216                                               Testing policy
## 17217                                               Testing policy
## 17218                                               Testing policy
## 17219                                               Testing policy
## 17220                                               Testing policy
## 17221                                               Testing policy
## 17222                                               Testing policy
## 17223                                               Testing policy
## 17224                                               Testing policy
## 17225                                               Testing policy
## 17226                                               Testing policy
## 17227                       Strengthening the public health system
## 17228                       Strengthening the public health system
## 17229                       Strengthening the public health system
## 17230                       Strengthening the public health system
## 17231                       Strengthening the public health system
## 17232                       Strengthening the public health system
## 17233                Requirement to wear protective gear in public
## 17234                Requirement to wear protective gear in public
## 17235                Requirement to wear protective gear in public
## 17236                Requirement to wear protective gear in public
## 17237                Requirement to wear protective gear in public
## 17238                Requirement to wear protective gear in public
## 17239                                      General recommendations
## 17240                                      General recommendations
## 17241                                      General recommendations
## 17242                                      General recommendations
## 17243                                      General recommendations
## 17244                                      General recommendations
## 17245                                              Border closure 
## 17246                                              Border closure 
## 17247                                              Border closure 
## 17248                                              Border closure 
## 17249                                              Border closure 
## 17250                                              Border closure 
## 17251                                             Partial lockdown
## 17252                                             Partial lockdown
## 17253                                             Partial lockdown
## 17254                                             Partial lockdown
## 17255                                             Partial lockdown
## 17256                                             Partial lockdown
## 17257           Health screenings in airports and border crossings
## 17258           Health screenings in airports and border crossings
## 17259           Health screenings in airports and border crossings
## 17260           Health screenings in airports and border crossings
## 17261           Health screenings in airports and border crossings
## 17262           Health screenings in airports and border crossings
## 17263                                            Economic measures
## 17264                                            Economic measures
## 17265                                            Economic measures
## 17266                                            Economic measures
## 17267                                            Economic measures
## 17268                                            Economic measures
## 17269 Emergency administrative structures activated or established
## 17270 Emergency administrative structures activated or established
## 17271 Emergency administrative structures activated or established
## 17272 Emergency administrative structures activated or established
## 17273 Emergency administrative structures activated or established
## 17274 Emergency administrative structures activated or established
## 17275                Requirement to wear protective gear in public
## 17276                Requirement to wear protective gear in public
## 17277                Requirement to wear protective gear in public
## 17278                Requirement to wear protective gear in public
## 17279                Requirement to wear protective gear in public
## 17280                Requirement to wear protective gear in public
## 17281                                               Testing policy
## 17282                                               Testing policy
## 17283                                               Testing policy
## 17284                                               Testing policy
## 17285                                               Testing policy
## 17286                                               Testing policy
## 17287                                               Testing policy
## 17288                                               Testing policy
## 17289                                               Testing policy
## 17290                                               Testing policy
## 17291                                               Testing policy
## 17292                                               Testing policy
## 17293                       Strengthening the public health system
## 17294                       Strengthening the public health system
## 17295                       Strengthening the public health system
## 17296                       Strengthening the public health system
## 17297                       Strengthening the public health system
## 17298                       Strengthening the public health system
## 17299                       Strengthening the public health system
## 17300                       Strengthening the public health system
## 17301                       Strengthening the public health system
## 17302                       Strengthening the public health system
## 17303                       Strengthening the public health system
## 17304                       Strengthening the public health system
## 17305                                               Testing policy
## 17306                                               Testing policy
## 17307                                               Testing policy
## 17308                                               Testing policy
## 17309                                               Testing policy
## 17310                                               Testing policy
## 17311                Requirement to wear protective gear in public
## 17312                Requirement to wear protective gear in public
## 17313                Requirement to wear protective gear in public
## 17314                Requirement to wear protective gear in public
## 17315                Requirement to wear protective gear in public
## 17316                Requirement to wear protective gear in public
## 17317                       Strengthening the public health system
## 17318                       Strengthening the public health system
## 17319                       Strengthening the public health system
## 17320                       Strengthening the public health system
## 17321                       Strengthening the public health system
## 17322                       Strengthening the public health system
## 17323                                      Mass population testing
## 17324                                      Mass population testing
## 17325                                      Mass population testing
## 17326                                      Mass population testing
## 17327                                      Mass population testing
## 17328                                      Mass population testing
## 17329                            Isolation and quarantine policies
## 17330                            Isolation and quarantine policies
## 17331                            Isolation and quarantine policies
## 17332                            Isolation and quarantine policies
## 17333                            Isolation and quarantine policies
## 17334                            Isolation and quarantine policies
## 17335                                      General recommendations
## 17336                                      General recommendations
## 17337                                      General recommendations
## 17338                                      General recommendations
## 17339                                      General recommendations
## 17340                                      General recommendations
## 17341                       Strengthening the public health system
## 17342                       Strengthening the public health system
## 17343                       Strengthening the public health system
## 17344                       Strengthening the public health system
## 17345                       Strengthening the public health system
## 17346                       Strengthening the public health system
## 17347                       Strengthening the public health system
## 17348                       Strengthening the public health system
## 17349                       Strengthening the public health system
## 17350                       Strengthening the public health system
## 17351                       Strengthening the public health system
## 17352                       Strengthening the public health system
## 17353                       Strengthening the public health system
## 17354                       Strengthening the public health system
## 17355                       Strengthening the public health system
## 17356                       Strengthening the public health system
## 17357                       Strengthening the public health system
## 17358                       Strengthening the public health system
## 17359                                             Partial lockdown
## 17360                                             Partial lockdown
## 17361                                             Partial lockdown
## 17362                                             Partial lockdown
## 17363                                             Partial lockdown
## 17364                                             Partial lockdown
## 17365 Emergency administrative structures activated or established
## 17366 Emergency administrative structures activated or established
## 17367 Emergency administrative structures activated or established
## 17368 Emergency administrative structures activated or established
## 17369 Emergency administrative structures activated or established
## 17370 Emergency administrative structures activated or established
## 17371                                               Testing policy
## 17372                                               Testing policy
## 17373                                               Testing policy
## 17374                                               Testing policy
## 17375                                               Testing policy
## 17376                                               Testing policy
## 17377                        Other public health measures enforced
## 17378                        Other public health measures enforced
## 17379                        Other public health measures enforced
## 17380                        Other public health measures enforced
## 17381                        Other public health measures enforced
## 17382                        Other public health measures enforced
## 17383                                      General recommendations
## 17384                                      General recommendations
## 17385                                      General recommendations
## 17386                                      General recommendations
## 17387                                      General recommendations
## 17388                                      General recommendations
## 17389                Requirement to wear protective gear in public
## 17390                Requirement to wear protective gear in public
## 17391                Requirement to wear protective gear in public
## 17392                Requirement to wear protective gear in public
## 17393                Requirement to wear protective gear in public
## 17394                Requirement to wear protective gear in public
## 17395                                            Economic measures
## 17396                                            Economic measures
## 17397                                            Economic measures
## 17398                                            Economic measures
## 17399                                            Economic measures
## 17400                                            Economic measures
## 17401                            Isolation and quarantine policies
## 17402                            Isolation and quarantine policies
## 17403                            Isolation and quarantine policies
## 17404                            Isolation and quarantine policies
## 17405                            Isolation and quarantine policies
## 17406                            Isolation and quarantine policies
## 17407                        Other public health measures enforced
## 17408                        Other public health measures enforced
## 17409                        Other public health measures enforced
## 17410                        Other public health measures enforced
## 17411                        Other public health measures enforced
## 17412                        Other public health measures enforced
## 17413                            Isolation and quarantine policies
## 17414                            Isolation and quarantine policies
## 17415                            Isolation and quarantine policies
## 17416                            Isolation and quarantine policies
## 17417                            Isolation and quarantine policies
## 17418                            Isolation and quarantine policies
## 17419        Additional health/documents requirements upon arrival
## 17420        Additional health/documents requirements upon arrival
## 17421        Additional health/documents requirements upon arrival
## 17422        Additional health/documents requirements upon arrival
## 17423        Additional health/documents requirements upon arrival
## 17424        Additional health/documents requirements upon arrival
## 17425                                             Schools closure 
## 17426                                             Schools closure 
## 17427                                             Schools closure 
## 17428                                             Schools closure 
## 17429                                             Schools closure 
## 17430                                             Schools closure 
## 17431                                            Visa restrictions
## 17432                                            Visa restrictions
## 17433                                            Visa restrictions
## 17434                                            Visa restrictions
## 17435                                            Visa restrictions
## 17436                                            Visa restrictions
## 17437                            Isolation and quarantine policies
## 17438                            Isolation and quarantine policies
## 17439                            Isolation and quarantine policies
## 17440                            Isolation and quarantine policies
## 17441                            Isolation and quarantine policies
## 17442                            Isolation and quarantine policies
## 17443        Additional health/documents requirements upon arrival
## 17444        Additional health/documents requirements upon arrival
## 17445        Additional health/documents requirements upon arrival
## 17446        Additional health/documents requirements upon arrival
## 17447        Additional health/documents requirements upon arrival
## 17448        Additional health/documents requirements upon arrival
## 17449                                  State of emergency declared
## 17450                                  State of emergency declared
## 17451                                  State of emergency declared
## 17452                                  State of emergency declared
## 17453                                  State of emergency declared
## 17454                                  State of emergency declared
## 17455                                              Border closure 
## 17456                                              Border closure 
## 17457                                              Border closure 
## 17458                                              Border closure 
## 17459                                              Border closure 
## 17460                                              Border closure 
## 17461                                              Border closure 
## 17462                                              Border closure 
## 17463                                              Border closure 
## 17464                                              Border closure 
## 17465                                              Border closure 
## 17466                                              Border closure 
## 17467                                             Partial lockdown
## 17468                                             Partial lockdown
## 17469                                             Partial lockdown
## 17470                                             Partial lockdown
## 17471                                             Partial lockdown
## 17472                                             Partial lockdown
## 17473                             International flights suspension
## 17474                             International flights suspension
## 17475                             International flights suspension
## 17476                             International flights suspension
## 17477                             International flights suspension
## 17478                             International flights suspension
## 17479                            Isolation and quarantine policies
## 17480                            Isolation and quarantine policies
## 17481                            Isolation and quarantine policies
## 17482                            Isolation and quarantine policies
## 17483                            Isolation and quarantine policies
## 17484                            Isolation and quarantine policies
## 17485                                      Limit public gatherings
## 17486                                      Limit public gatherings
## 17487                                      Limit public gatherings
## 17488                                      Limit public gatherings
## 17489                                      Limit public gatherings
## 17490                                      Limit public gatherings
## 17491                                             Partial lockdown
## 17492                                             Partial lockdown
## 17493                                             Partial lockdown
## 17494                                             Partial lockdown
## 17495                                             Partial lockdown
## 17496                                             Partial lockdown
## 17497                                 Domestic travel restrictions
## 17498                                 Domestic travel restrictions
## 17499                                 Domestic travel restrictions
## 17500                                 Domestic travel restrictions
## 17501                                 Domestic travel restrictions
## 17502                                 Domestic travel restrictions
## 17503                                            Economic measures
## 17504                                            Economic measures
## 17505                                            Economic measures
## 17506                                            Economic measures
## 17507                                            Economic measures
## 17508                                            Economic measures
## 17509                                            Economic measures
## 17510                                            Economic measures
## 17511                                            Economic measures
## 17512                                            Economic measures
## 17513                                            Economic measures
## 17514                                            Economic measures
## 17515                       Strengthening the public health system
## 17516                       Strengthening the public health system
## 17517                       Strengthening the public health system
## 17518                       Strengthening the public health system
## 17519                       Strengthening the public health system
## 17520                       Strengthening the public health system
## 17521                                            Economic measures
## 17522                                            Economic measures
## 17523                                            Economic measures
## 17524                                            Economic measures
## 17525                                            Economic measures
## 17526                                            Economic measures
## 17527                                            Economic measures
## 17528                                            Economic measures
## 17529                                            Economic measures
## 17530                                            Economic measures
## 17531                                            Economic measures
## 17532                                            Economic measures
## 17533                                            Economic measures
## 17534                                            Economic measures
## 17535                                            Economic measures
## 17536                                            Economic measures
## 17537                                            Economic measures
## 17538                                            Economic measures
## 17539                                            Economic measures
## 17540                                            Economic measures
## 17541                                            Economic measures
## 17542                                            Economic measures
## 17543                                            Economic measures
## 17544                                            Economic measures
## 17545                       Strengthening the public health system
## 17546                       Strengthening the public health system
## 17547                       Strengthening the public health system
## 17548                       Strengthening the public health system
## 17549                       Strengthening the public health system
## 17550                       Strengthening the public health system
## 17551                                            Economic measures
## 17552                                            Economic measures
## 17553                                            Economic measures
## 17554                                            Economic measures
## 17555                                            Economic measures
## 17556                                            Economic measures
## 17557                       Strengthening the public health system
## 17558                       Strengthening the public health system
## 17559                       Strengthening the public health system
## 17560                       Strengthening the public health system
## 17561                       Strengthening the public health system
## 17562                       Strengthening the public health system
## 17563                                             Partial lockdown
## 17564                                             Partial lockdown
## 17565                                             Partial lockdown
## 17566                                             Partial lockdown
## 17567                                             Partial lockdown
## 17568                                             Partial lockdown
## 17569                                            Economic measures
## 17570                                            Economic measures
## 17571                                            Economic measures
## 17572                                            Economic measures
## 17573                                            Economic measures
## 17574                                            Economic measures
## 17575                Requirement to wear protective gear in public
## 17576                Requirement to wear protective gear in public
## 17577                Requirement to wear protective gear in public
## 17578                Requirement to wear protective gear in public
## 17579                Requirement to wear protective gear in public
## 17580                Requirement to wear protective gear in public
## 17581                       Strengthening the public health system
## 17582                       Strengthening the public health system
## 17583                       Strengthening the public health system
## 17584                       Strengthening the public health system
## 17585                       Strengthening the public health system
## 17586                       Strengthening the public health system
## 17587                                            Economic measures
## 17588                                            Economic measures
## 17589                                            Economic measures
## 17590                                            Economic measures
## 17591                                            Economic measures
## 17592                                            Economic measures
## 17593                                             Partial lockdown
## 17594                                             Partial lockdown
## 17595                                             Partial lockdown
## 17596                                             Partial lockdown
## 17597                                             Partial lockdown
## 17598                                             Partial lockdown
## 17599                                             Partial lockdown
## 17600                                             Partial lockdown
## 17601                                             Partial lockdown
## 17602                                             Partial lockdown
## 17603                                             Partial lockdown
## 17604                                             Partial lockdown
## 17605                       Strengthening the public health system
## 17606                       Strengthening the public health system
## 17607                       Strengthening the public health system
## 17608                       Strengthening the public health system
## 17609                       Strengthening the public health system
## 17610                       Strengthening the public health system
## 17611                                            Economic measures
## 17612                                            Economic measures
## 17613                                            Economic measures
## 17614                                            Economic measures
## 17615                                            Economic measures
## 17616                                            Economic measures
## 17617                       Strengthening the public health system
## 17618                       Strengthening the public health system
## 17619                       Strengthening the public health system
## 17620                       Strengthening the public health system
## 17621                       Strengthening the public health system
## 17622                       Strengthening the public health system
## 17623                       Strengthening the public health system
## 17624                       Strengthening the public health system
## 17625                       Strengthening the public health system
## 17626                       Strengthening the public health system
## 17627                       Strengthening the public health system
## 17628                       Strengthening the public health system
## 17629                                            Economic measures
## 17630                                            Economic measures
## 17631                                            Economic measures
## 17632                                            Economic measures
## 17633                                            Economic measures
## 17634                                            Economic measures
## 17635                           Changes in prison-related policies
## 17636                           Changes in prison-related policies
## 17637                           Changes in prison-related policies
## 17638                           Changes in prison-related policies
## 17639                           Changes in prison-related policies
## 17640                           Changes in prison-related policies
## 17641                                            Economic measures
## 17642                                            Economic measures
## 17643                                            Economic measures
## 17644                                            Economic measures
## 17645                                            Economic measures
## 17646                                            Economic measures
## 17647                                             Partial lockdown
## 17648                                             Partial lockdown
## 17649                                             Partial lockdown
## 17650                                             Partial lockdown
## 17651                                             Partial lockdown
## 17652                                             Partial lockdown
## 17653                                             Schools closure 
## 17654                                             Schools closure 
## 17655                                             Schools closure 
## 17656                                             Schools closure 
## 17657                                             Schools closure 
## 17658                                             Schools closure 
## 17659                             International flights suspension
## 17660                             International flights suspension
## 17661                             International flights suspension
## 17662                             International flights suspension
## 17663                             International flights suspension
## 17664                             International flights suspension
## 17665                                 Domestic travel restrictions
## 17666                                 Domestic travel restrictions
## 17667                                 Domestic travel restrictions
## 17668                                 Domestic travel restrictions
## 17669                                 Domestic travel restrictions
## 17670                                 Domestic travel restrictions
## 17671                                      Limit public gatherings
## 17672                                      Limit public gatherings
## 17673                                      Limit public gatherings
## 17674                                      Limit public gatherings
## 17675                                      Limit public gatherings
## 17676                                      Limit public gatherings
## 17677                                      Limit public gatherings
## 17678                                      Limit public gatherings
## 17679                                      Limit public gatherings
## 17680                                      Limit public gatherings
## 17681                                      Limit public gatherings
## 17682                                      Limit public gatherings
## 17683                                             Partial lockdown
## 17684                                             Partial lockdown
## 17685                                             Partial lockdown
## 17686                                             Partial lockdown
## 17687                                             Partial lockdown
## 17688                                             Partial lockdown
## 17689                        Other public health measures enforced
## 17690                        Other public health measures enforced
## 17691                        Other public health measures enforced
## 17692                        Other public health measures enforced
## 17693                        Other public health measures enforced
## 17694                        Other public health measures enforced
## 17695                                             Partial lockdown
## 17696                                             Partial lockdown
## 17697                                             Partial lockdown
## 17698                                             Partial lockdown
## 17699                                             Partial lockdown
## 17700                                             Partial lockdown
## 17701                                             Partial lockdown
## 17702                                             Partial lockdown
## 17703                                             Partial lockdown
## 17704                                             Partial lockdown
## 17705                                             Partial lockdown
## 17706                                             Partial lockdown
## 17707                                               Testing policy
## 17708                                               Testing policy
## 17709                                               Testing policy
## 17710                                               Testing policy
## 17711                                               Testing policy
## 17712                                               Testing policy
## 17713                                            Economic measures
## 17714                                            Economic measures
## 17715                                            Economic measures
## 17716                                            Economic measures
## 17717                                            Economic measures
## 17718                                            Economic measures
## 17719                                            Economic measures
## 17720                                            Economic measures
## 17721                                            Economic measures
## 17722                                            Economic measures
## 17723                                            Economic measures
## 17724                                            Economic measures
## 17725                                             Partial lockdown
## 17726                                             Partial lockdown
## 17727                                             Partial lockdown
## 17728                                             Partial lockdown
## 17729                                             Partial lockdown
## 17730                                             Partial lockdown
## 17731                                             Partial lockdown
## 17732                                             Partial lockdown
## 17733                                             Partial lockdown
## 17734                                             Partial lockdown
## 17735                                             Partial lockdown
## 17736                                             Partial lockdown
## 17737                                             Partial lockdown
## 17738                                             Partial lockdown
## 17739                                             Partial lockdown
## 17740                                             Partial lockdown
## 17741                                             Partial lockdown
## 17742                                             Partial lockdown
## 17743                                             Partial lockdown
## 17744                                             Partial lockdown
## 17745                                             Partial lockdown
## 17746                                             Partial lockdown
## 17747                                             Partial lockdown
## 17748                                             Partial lockdown
## 17749                                             Partial lockdown
## 17750                                             Partial lockdown
## 17751                                             Partial lockdown
## 17752                                             Partial lockdown
## 17753                                             Partial lockdown
## 17754                                             Partial lockdown
## 17755                                          Military deployment
## 17756                                          Military deployment
## 17757                                          Military deployment
## 17758                                          Military deployment
## 17759                                          Military deployment
## 17760                                          Military deployment
## 17761                                      Mass population testing
## 17762                                      Mass population testing
## 17763                                      Mass population testing
## 17764                                      Mass population testing
## 17765                                      Mass population testing
## 17766                                      Mass population testing
## 17767                             International flights suspension
## 17768                             International flights suspension
## 17769                             International flights suspension
## 17770                             International flights suspension
## 17771                             International flights suspension
## 17772                             International flights suspension
## 17773                                              Border closure 
## 17774                                              Border closure 
## 17775                                              Border closure 
## 17776                                              Border closure 
## 17777                                              Border closure 
## 17778                                              Border closure 
## 17779                                  State of emergency declared
## 17780                                  State of emergency declared
## 17781                                  State of emergency declared
## 17782                                  State of emergency declared
## 17783                                  State of emergency declared
## 17784                                  State of emergency declared
## 17785                            Isolation and quarantine policies
## 17786                            Isolation and quarantine policies
## 17787                            Isolation and quarantine policies
## 17788                            Isolation and quarantine policies
## 17789                            Isolation and quarantine policies
## 17790                            Isolation and quarantine policies
## 17791                                             Partial lockdown
## 17792                                             Partial lockdown
## 17793                                             Partial lockdown
## 17794                                             Partial lockdown
## 17795                                             Partial lockdown
## 17796                                             Partial lockdown
## 17797                    Closure of businesses and public services
## 17798                    Closure of businesses and public services
## 17799                    Closure of businesses and public services
## 17800                    Closure of businesses and public services
## 17801                    Closure of businesses and public services
## 17802                    Closure of businesses and public services
## 17803                                             Partial lockdown
## 17804                                             Partial lockdown
## 17805                                             Partial lockdown
## 17806                                             Partial lockdown
## 17807                                             Partial lockdown
## 17808                                             Partial lockdown
## 17809                                               Testing policy
## 17810                                               Testing policy
## 17811                                               Testing policy
## 17812                                               Testing policy
## 17813                                               Testing policy
## 17814                                               Testing policy
## 17815                                 Domestic travel restrictions
## 17816                                 Domestic travel restrictions
## 17817                                 Domestic travel restrictions
## 17818                                 Domestic travel restrictions
## 17819                                 Domestic travel restrictions
## 17820                                 Domestic travel restrictions
## 17821                            Isolation and quarantine policies
## 17822                            Isolation and quarantine policies
## 17823                            Isolation and quarantine policies
## 17824                            Isolation and quarantine policies
## 17825                            Isolation and quarantine policies
## 17826                            Isolation and quarantine policies
## 17827                                            Economic measures
## 17828                                            Economic measures
## 17829                                            Economic measures
## 17830                                            Economic measures
## 17831                                            Economic measures
## 17832                                            Economic measures
## 17833                                             Schools closure 
## 17834                                             Schools closure 
## 17835                                             Schools closure 
## 17836                                             Schools closure 
## 17837                                             Schools closure 
## 17838                                             Schools closure 
## 17839                                             Schools closure 
## 17840                                             Schools closure 
## 17841                                             Schools closure 
## 17842                                             Schools closure 
## 17843                                             Schools closure 
## 17844                                             Schools closure 
## 17845                                 Domestic travel restrictions
## 17846                                 Domestic travel restrictions
## 17847                                 Domestic travel restrictions
## 17848                                 Domestic travel restrictions
## 17849                                 Domestic travel restrictions
## 17850                                 Domestic travel restrictions
## 17851                                              Border closure 
## 17852                                              Border closure 
## 17853                                              Border closure 
## 17854                                              Border closure 
## 17855                                              Border closure 
## 17856                                              Border closure 
## 17857                             International flights suspension
## 17858                             International flights suspension
## 17859                             International flights suspension
## 17860                             International flights suspension
## 17861                             International flights suspension
## 17862                             International flights suspension
## 17863                                            Economic measures
## 17864                                            Economic measures
## 17865                                            Economic measures
## 17866                                            Economic measures
## 17867                                            Economic measures
## 17868                                            Economic measures
## 17869                                      Humanitarian exemptions
## 17870                                      Humanitarian exemptions
## 17871                                      Humanitarian exemptions
## 17872                                      Humanitarian exemptions
## 17873                                      Humanitarian exemptions
## 17874                                      Humanitarian exemptions
## 17875                             International flights suspension
## 17876                             International flights suspension
## 17877                             International flights suspension
## 17878                             International flights suspension
## 17879                             International flights suspension
## 17880                             International flights suspension
## 17881                            Isolation and quarantine policies
## 17882                            Isolation and quarantine policies
## 17883                            Isolation and quarantine policies
## 17884                            Isolation and quarantine policies
## 17885                            Isolation and quarantine policies
## 17886                            Isolation and quarantine policies
## 17887                                            Visa restrictions
## 17888                                            Visa restrictions
## 17889                                            Visa restrictions
## 17890                                            Visa restrictions
## 17891                                            Visa restrictions
## 17892                                            Visa restrictions
## 17893                                               Border checks 
## 17894                                               Border checks 
## 17895                                               Border checks 
## 17896                                               Border checks 
## 17897                                               Border checks 
## 17898                                               Border checks 
## 17899                             International flights suspension
## 17900                             International flights suspension
## 17901                             International flights suspension
## 17902                             International flights suspension
## 17903                             International flights suspension
## 17904                             International flights suspension
## 17905                                      Limit public gatherings
## 17906                                      Limit public gatherings
## 17907                                      Limit public gatherings
## 17908                                      Limit public gatherings
## 17909                                      Limit public gatherings
## 17910                                      Limit public gatherings
## 17911                                      Limit public gatherings
## 17912                                      Limit public gatherings
## 17913                                      Limit public gatherings
## 17914                                      Limit public gatherings
## 17915                                      Limit public gatherings
## 17916                                      Limit public gatherings
## 17917                           Changes in prison-related policies
## 17918                           Changes in prison-related policies
## 17919                           Changes in prison-related policies
## 17920                           Changes in prison-related policies
## 17921                           Changes in prison-related policies
## 17922                           Changes in prison-related policies
## 17923 Emergency administrative structures activated or established
## 17924 Emergency administrative structures activated or established
## 17925 Emergency administrative structures activated or established
## 17926 Emergency administrative structures activated or established
## 17927 Emergency administrative structures activated or established
## 17928 Emergency administrative structures activated or established
## 17929                                 Domestic travel restrictions
## 17930                                 Domestic travel restrictions
## 17931                                 Domestic travel restrictions
## 17932                                 Domestic travel restrictions
## 17933                                 Domestic travel restrictions
## 17934                                 Domestic travel restrictions
## 17935                                      Limit public gatherings
## 17936                                      Limit public gatherings
## 17937                                      Limit public gatherings
## 17938                                      Limit public gatherings
## 17939                                      Limit public gatherings
## 17940                                      Limit public gatherings
## 17941                                            Economic measures
## 17942                                            Economic measures
## 17943                                            Economic measures
## 17944                                            Economic measures
## 17945                                            Economic measures
## 17946                                            Economic measures
## 17947 Emergency administrative structures activated or established
## 17948 Emergency administrative structures activated or established
## 17949 Emergency administrative structures activated or established
## 17950 Emergency administrative structures activated or established
## 17951 Emergency administrative structures activated or established
## 17952 Emergency administrative structures activated or established
## 17953                                      Limit public gatherings
## 17954                                      Limit public gatherings
## 17955                                      Limit public gatherings
## 17956                                      Limit public gatherings
## 17957                                      Limit public gatherings
## 17958                                      Limit public gatherings
## 17959                                               Testing policy
## 17960                                               Testing policy
## 17961                                               Testing policy
## 17962                                               Testing policy
## 17963                                               Testing policy
## 17964                                               Testing policy
## 17965                                                      Curfews
## 17966                                                      Curfews
## 17967                                                      Curfews
## 17968                                                      Curfews
## 17969                                                      Curfews
## 17970                                                      Curfews
## 17971                Requirement to wear protective gear in public
## 17972                Requirement to wear protective gear in public
## 17973                Requirement to wear protective gear in public
## 17974                Requirement to wear protective gear in public
## 17975                Requirement to wear protective gear in public
## 17976                Requirement to wear protective gear in public
## 17977                                      Limit public gatherings
## 17978                                      Limit public gatherings
## 17979                                      Limit public gatherings
## 17980                                      Limit public gatherings
## 17981                                      Limit public gatherings
## 17982                                      Limit public gatherings
## 17983                                          Awareness campaigns
## 17984                                          Awareness campaigns
## 17985                                          Awareness campaigns
## 17986                                          Awareness campaigns
## 17987                                          Awareness campaigns
## 17988                                          Awareness campaigns
## 17989                                             Schools closure 
## 17990                                             Schools closure 
## 17991                                             Schools closure 
## 17992                                             Schools closure 
## 17993                                             Schools closure 
## 17994                                             Schools closure 
## 17995                    Closure of businesses and public services
## 17996                    Closure of businesses and public services
## 17997                    Closure of businesses and public services
## 17998                    Closure of businesses and public services
## 17999                    Closure of businesses and public services
## 18000                    Closure of businesses and public services
## 18001                        Other public health measures enforced
## 18002                        Other public health measures enforced
## 18003                        Other public health measures enforced
## 18004                        Other public health measures enforced
## 18005                        Other public health measures enforced
## 18006                        Other public health measures enforced
## 18007                Requirement to wear protective gear in public
## 18008                Requirement to wear protective gear in public
## 18009                Requirement to wear protective gear in public
## 18010                Requirement to wear protective gear in public
## 18011                Requirement to wear protective gear in public
## 18012                Requirement to wear protective gear in public
## 18013                                      Limit public gatherings
## 18014                                      Limit public gatherings
## 18015                                      Limit public gatherings
## 18016                                      Limit public gatherings
## 18017                                      Limit public gatherings
## 18018                                      Limit public gatherings
## 18019                Requirement to wear protective gear in public
## 18020                Requirement to wear protective gear in public
## 18021                Requirement to wear protective gear in public
## 18022                Requirement to wear protective gear in public
## 18023                Requirement to wear protective gear in public
## 18024                Requirement to wear protective gear in public
## 18025                       Strengthening the public health system
## 18026                       Strengthening the public health system
## 18027                       Strengthening the public health system
## 18028                       Strengthening the public health system
## 18029                       Strengthening the public health system
## 18030                       Strengthening the public health system
## 18031                                            Economic measures
## 18032                                            Economic measures
## 18033                                            Economic measures
## 18034                                            Economic measures
## 18035                                            Economic measures
## 18036                                            Economic measures
## 18037                            Isolation and quarantine policies
## 18038                            Isolation and quarantine policies
## 18039                            Isolation and quarantine policies
## 18040                            Isolation and quarantine policies
## 18041                            Isolation and quarantine policies
## 18042                            Isolation and quarantine policies
## 18043                                             Schools closure 
## 18044                                             Schools closure 
## 18045                                             Schools closure 
## 18046                                             Schools closure 
## 18047                                             Schools closure 
## 18048                                             Schools closure 
## 18049                                      Limit public gatherings
## 18050                                      Limit public gatherings
## 18051                                      Limit public gatherings
## 18052                                      Limit public gatherings
## 18053                                      Limit public gatherings
## 18054                                      Limit public gatherings
## 18055                                      Limit public gatherings
## 18056                                      Limit public gatherings
## 18057                                      Limit public gatherings
## 18058                                      Limit public gatherings
## 18059                                      Limit public gatherings
## 18060                                      Limit public gatherings
## 18061                                          Awareness campaigns
## 18062                                          Awareness campaigns
## 18063                                          Awareness campaigns
## 18064                                          Awareness campaigns
## 18065                                          Awareness campaigns
## 18066                                          Awareness campaigns
## 18067           Health screenings in airports and border crossings
## 18068           Health screenings in airports and border crossings
## 18069           Health screenings in airports and border crossings
## 18070           Health screenings in airports and border crossings
## 18071           Health screenings in airports and border crossings
## 18072           Health screenings in airports and border crossings
## 18073                                              Border closure 
## 18074                                              Border closure 
## 18075                                              Border closure 
## 18076                                              Border closure 
## 18077                                              Border closure 
## 18078                                              Border closure 
## 18079                       Strengthening the public health system
## 18080                       Strengthening the public health system
## 18081                       Strengthening the public health system
## 18082                       Strengthening the public health system
## 18083                       Strengthening the public health system
## 18084                       Strengthening the public health system
## 18085                                             Partial lockdown
## 18086                                             Partial lockdown
## 18087                                             Partial lockdown
## 18088                                             Partial lockdown
## 18089                                             Partial lockdown
## 18090                                             Partial lockdown
## 18091                                 Domestic travel restrictions
## 18092                                 Domestic travel restrictions
## 18093                                 Domestic travel restrictions
## 18094                                 Domestic travel restrictions
## 18095                                 Domestic travel restrictions
## 18096                                 Domestic travel restrictions
## 18097                                                      Curfews
## 18098                                                      Curfews
## 18099                                                      Curfews
## 18100                                                      Curfews
## 18101                                                      Curfews
## 18102                                                      Curfews
## 18103                                  State of emergency declared
## 18104                                  State of emergency declared
## 18105                                  State of emergency declared
## 18106                                  State of emergency declared
## 18107                                  State of emergency declared
## 18108                                  State of emergency declared
## 18109                                          Military deployment
## 18110                                          Military deployment
## 18111                                          Military deployment
## 18112                                          Military deployment
## 18113                                          Military deployment
## 18114                                          Military deployment
## 18115                                            Economic measures
## 18116                                            Economic measures
## 18117                                            Economic measures
## 18118                                            Economic measures
## 18119                                            Economic measures
## 18120                                            Economic measures
## 18121                                               Testing policy
## 18122                                               Testing policy
## 18123                                               Testing policy
## 18124                                               Testing policy
## 18125                                               Testing policy
## 18126                                               Testing policy
## 18127                                      Limit public gatherings
## 18128                                      Limit public gatherings
## 18129                                      Limit public gatherings
## 18130                                      Limit public gatherings
## 18131                                      Limit public gatherings
## 18132                                      Limit public gatherings
## 18133                                  State of emergency declared
## 18134                                  State of emergency declared
## 18135                                  State of emergency declared
## 18136                                  State of emergency declared
## 18137                                  State of emergency declared
## 18138                                  State of emergency declared
## 18139                                                      Curfews
## 18140                                                      Curfews
## 18141                                                      Curfews
## 18142                                                      Curfews
## 18143                                                      Curfews
## 18144                                                      Curfews
## 18145                                             Partial lockdown
## 18146                                             Partial lockdown
## 18147                                             Partial lockdown
## 18148                                             Partial lockdown
## 18149                                             Partial lockdown
## 18150                                             Partial lockdown
## 18151                                 Domestic travel restrictions
## 18152                                 Domestic travel restrictions
## 18153                                 Domestic travel restrictions
## 18154                                 Domestic travel restrictions
## 18155                                 Domestic travel restrictions
## 18156                                 Domestic travel restrictions
## 18157                Requirement to wear protective gear in public
## 18158                Requirement to wear protective gear in public
## 18159                Requirement to wear protective gear in public
## 18160                Requirement to wear protective gear in public
## 18161                Requirement to wear protective gear in public
## 18162                Requirement to wear protective gear in public
## 18163                                                      Curfews
## 18164                                                      Curfews
## 18165                                                      Curfews
## 18166                                                      Curfews
## 18167                                                      Curfews
## 18168                                                      Curfews
## 18169                                              Border closure 
## 18170                                              Border closure 
## 18171                                              Border closure 
## 18172                                              Border closure 
## 18173                                              Border closure 
## 18174                                              Border closure 
## 18175                                 Domestic travel restrictions
## 18176                                 Domestic travel restrictions
## 18177                                 Domestic travel restrictions
## 18178                                 Domestic travel restrictions
## 18179                                 Domestic travel restrictions
## 18180                                 Domestic travel restrictions
## 18181                    Closure of businesses and public services
## 18182                    Closure of businesses and public services
## 18183                    Closure of businesses and public services
## 18184                    Closure of businesses and public services
## 18185                    Closure of businesses and public services
## 18186                    Closure of businesses and public services
## 18187                                          Awareness campaigns
## 18188                                          Awareness campaigns
## 18189                                          Awareness campaigns
## 18190                                          Awareness campaigns
## 18191                                          Awareness campaigns
## 18192                                          Awareness campaigns
## 18193                                               Testing policy
## 18194                                               Testing policy
## 18195                                               Testing policy
## 18196                                               Testing policy
## 18197                                               Testing policy
## 18198                                               Testing policy
## 18199                                                      Curfews
## 18200                                                      Curfews
## 18201                                                      Curfews
## 18202                                                      Curfews
## 18203                                                      Curfews
## 18204                                                      Curfews
## 18205                                                      Curfews
## 18206                                                      Curfews
## 18207                                                      Curfews
## 18208                                                      Curfews
## 18209                                                      Curfews
## 18210                                                      Curfews
## 18211                                 Domestic travel restrictions
## 18212                                 Domestic travel restrictions
## 18213                                 Domestic travel restrictions
## 18214                                 Domestic travel restrictions
## 18215                                 Domestic travel restrictions
## 18216                                 Domestic travel restrictions
## 18217                                                      Curfews
## 18218                                                      Curfews
## 18219                                                      Curfews
## 18220                                                      Curfews
## 18221                                                      Curfews
## 18222                                                      Curfews
## 18223                                  State of emergency declared
## 18224                                  State of emergency declared
## 18225                                  State of emergency declared
## 18226                                  State of emergency declared
## 18227                                  State of emergency declared
## 18228                                  State of emergency declared
## 18229                            Isolation and quarantine policies
## 18230                            Isolation and quarantine policies
## 18231                            Isolation and quarantine policies
## 18232                            Isolation and quarantine policies
## 18233                            Isolation and quarantine policies
## 18234                            Isolation and quarantine policies
## 18235           Health screenings in airports and border crossings
## 18236           Health screenings in airports and border crossings
## 18237           Health screenings in airports and border crossings
## 18238           Health screenings in airports and border crossings
## 18239           Health screenings in airports and border crossings
## 18240           Health screenings in airports and border crossings
## 18241                             International flights suspension
## 18242                             International flights suspension
## 18243                             International flights suspension
## 18244                             International flights suspension
## 18245                             International flights suspension
## 18246                             International flights suspension
## 18247                                             Schools closure 
## 18248                                             Schools closure 
## 18249                                             Schools closure 
## 18250                                             Schools closure 
## 18251                                             Schools closure 
## 18252                                             Schools closure 
## 18253                                      Limit public gatherings
## 18254                                      Limit public gatherings
## 18255                                      Limit public gatherings
## 18256                                      Limit public gatherings
## 18257                                      Limit public gatherings
## 18258                                      Limit public gatherings
## 18259                            Isolation and quarantine policies
## 18260                            Isolation and quarantine policies
## 18261                            Isolation and quarantine policies
## 18262                            Isolation and quarantine policies
## 18263                            Isolation and quarantine policies
## 18264                            Isolation and quarantine policies
## 18265                                      Limit public gatherings
## 18266                                      Limit public gatherings
## 18267                                      Limit public gatherings
## 18268                                      Limit public gatherings
## 18269                                      Limit public gatherings
## 18270                                      Limit public gatherings
## 18271                                  State of emergency declared
## 18272                                  State of emergency declared
## 18273                                  State of emergency declared
## 18274                                  State of emergency declared
## 18275                                  State of emergency declared
## 18276                                  State of emergency declared
## 18277                                              Border closure 
## 18278                                              Border closure 
## 18279                                              Border closure 
## 18280                                              Border closure 
## 18281                                              Border closure 
## 18282                                              Border closure 
## 18283                                 Domestic travel restrictions
## 18284                                 Domestic travel restrictions
## 18285                                 Domestic travel restrictions
## 18286                                 Domestic travel restrictions
## 18287                                 Domestic travel restrictions
## 18288                                 Domestic travel restrictions
## 18289                                      Limit public gatherings
## 18290                                      Limit public gatherings
## 18291                                      Limit public gatherings
## 18292                                      Limit public gatherings
## 18293                                      Limit public gatherings
## 18294                                      Limit public gatherings
## 18295                                             Partial lockdown
## 18296                                             Partial lockdown
## 18297                                             Partial lockdown
## 18298                                             Partial lockdown
## 18299                                             Partial lockdown
## 18300                                             Partial lockdown
## 18301                                             Partial lockdown
## 18302                                             Partial lockdown
## 18303                                             Partial lockdown
## 18304                                             Partial lockdown
## 18305                                             Partial lockdown
## 18306                                             Partial lockdown
## 18307                                      Limit public gatherings
## 18308                                      Limit public gatherings
## 18309                                      Limit public gatherings
## 18310                                      Limit public gatherings
## 18311                                      Limit public gatherings
## 18312                                      Limit public gatherings
## 18313                 Amendments to funeral and burial regulations
## 18314                 Amendments to funeral and burial regulations
## 18315                 Amendments to funeral and burial regulations
## 18316                 Amendments to funeral and burial regulations
## 18317                 Amendments to funeral and burial regulations
## 18318                 Amendments to funeral and burial regulations
## 18319                                            Economic measures
## 18320                                            Economic measures
## 18321                                            Economic measures
## 18322                                            Economic measures
## 18323                                            Economic measures
## 18324                                            Economic measures
## 18325                                      Limit public gatherings
## 18326                                      Limit public gatherings
## 18327                                      Limit public gatherings
## 18328                                      Limit public gatherings
## 18329                                      Limit public gatherings
## 18330                                      Limit public gatherings
## 18331                                             Partial lockdown
## 18332                                             Partial lockdown
## 18333                                             Partial lockdown
## 18334                                             Partial lockdown
## 18335                                             Partial lockdown
## 18336                                             Partial lockdown
## 18337                Requirement to wear protective gear in public
## 18338                Requirement to wear protective gear in public
## 18339                Requirement to wear protective gear in public
## 18340                Requirement to wear protective gear in public
## 18341                Requirement to wear protective gear in public
## 18342                Requirement to wear protective gear in public
## 18343                                             Partial lockdown
## 18344                                             Partial lockdown
## 18345                                             Partial lockdown
## 18346                                             Partial lockdown
## 18347                                             Partial lockdown
## 18348                                             Partial lockdown
## 18349                               Checkpoints within the country
## 18350                               Checkpoints within the country
## 18351                               Checkpoints within the country
## 18352                               Checkpoints within the country
## 18353                               Checkpoints within the country
## 18354                               Checkpoints within the country
## 18355                                             Partial lockdown
## 18356                                             Partial lockdown
## 18357                                             Partial lockdown
## 18358                                             Partial lockdown
## 18359                                             Partial lockdown
## 18360                                             Partial lockdown
## 18361                                                      Curfews
## 18362                                                      Curfews
## 18363                                                      Curfews
## 18364                                                      Curfews
## 18365                                                      Curfews
## 18366                                                      Curfews
## 18367                Requirement to wear protective gear in public
## 18368                Requirement to wear protective gear in public
## 18369                Requirement to wear protective gear in public
## 18370                Requirement to wear protective gear in public
## 18371                Requirement to wear protective gear in public
## 18372                Requirement to wear protective gear in public
## 18373                            Isolation and quarantine policies
## 18374                            Isolation and quarantine policies
## 18375                            Isolation and quarantine policies
## 18376                            Isolation and quarantine policies
## 18377                            Isolation and quarantine policies
## 18378                            Isolation and quarantine policies
## 18379                                 Domestic travel restrictions
## 18380                                 Domestic travel restrictions
## 18381                                 Domestic travel restrictions
## 18382                                 Domestic travel restrictions
## 18383                                 Domestic travel restrictions
## 18384                                 Domestic travel restrictions
## 18385                                             Partial lockdown
## 18386                                             Partial lockdown
## 18387                                             Partial lockdown
## 18388                                             Partial lockdown
## 18389                                             Partial lockdown
## 18390                                             Partial lockdown
## 18391                               Checkpoints within the country
## 18392                               Checkpoints within the country
## 18393                               Checkpoints within the country
## 18394                               Checkpoints within the country
## 18395                               Checkpoints within the country
## 18396                               Checkpoints within the country
## 18397 Emergency administrative structures activated or established
## 18398 Emergency administrative structures activated or established
## 18399 Emergency administrative structures activated or established
## 18400 Emergency administrative structures activated or established
## 18401 Emergency administrative structures activated or established
## 18402 Emergency administrative structures activated or established
## 18403                                  State of emergency declared
## 18404                                  State of emergency declared
## 18405                                  State of emergency declared
## 18406                                  State of emergency declared
## 18407                                  State of emergency declared
## 18408                                  State of emergency declared
## 18409                                             Schools closure 
## 18410                                             Schools closure 
## 18411                                             Schools closure 
## 18412                                             Schools closure 
## 18413                                             Schools closure 
## 18414                                             Schools closure 
## 18415                                      Limit public gatherings
## 18416                                      Limit public gatherings
## 18417                                      Limit public gatherings
## 18418                                      Limit public gatherings
## 18419                                      Limit public gatherings
## 18420                                      Limit public gatherings
## 18421                             International flights suspension
## 18422                             International flights suspension
## 18423                             International flights suspension
## 18424                             International flights suspension
## 18425                             International flights suspension
## 18426                             International flights suspension
## 18427                                              Border closure 
## 18428                                              Border closure 
## 18429                                              Border closure 
## 18430                                              Border closure 
## 18431                                              Border closure 
## 18432                                              Border closure 
## 18433                Requirement to wear protective gear in public
## 18434                Requirement to wear protective gear in public
## 18435                Requirement to wear protective gear in public
## 18436                Requirement to wear protective gear in public
## 18437                Requirement to wear protective gear in public
## 18438                Requirement to wear protective gear in public
## 18439                Requirement to wear protective gear in public
## 18440                Requirement to wear protective gear in public
## 18441                Requirement to wear protective gear in public
## 18442                Requirement to wear protective gear in public
## 18443                Requirement to wear protective gear in public
## 18444                Requirement to wear protective gear in public
## 18445                                             Partial lockdown
## 18446                                             Partial lockdown
## 18447                                             Partial lockdown
## 18448                                             Partial lockdown
## 18449                                             Partial lockdown
## 18450                                             Partial lockdown
## 18451                            Isolation and quarantine policies
## 18452                            Isolation and quarantine policies
## 18453                            Isolation and quarantine policies
## 18454                            Isolation and quarantine policies
## 18455                            Isolation and quarantine policies
## 18456                            Isolation and quarantine policies
## 18457                                                      Curfews
## 18458                                                      Curfews
## 18459                                                      Curfews
## 18460                                                      Curfews
## 18461                                                      Curfews
## 18462                                                      Curfews
## 18463                                 Domestic travel restrictions
## 18464                                 Domestic travel restrictions
## 18465                                 Domestic travel restrictions
## 18466                                 Domestic travel restrictions
## 18467                                 Domestic travel restrictions
## 18468                                 Domestic travel restrictions
## 18469                                  State of emergency declared
## 18470                                  State of emergency declared
## 18471                                  State of emergency declared
## 18472                                  State of emergency declared
## 18473                                  State of emergency declared
## 18474                                  State of emergency declared
## 18475                    Closure of businesses and public services
## 18476                    Closure of businesses and public services
## 18477                    Closure of businesses and public services
## 18478                    Closure of businesses and public services
## 18479                    Closure of businesses and public services
## 18480                    Closure of businesses and public services
## 18481                    Closure of businesses and public services
## 18482                    Closure of businesses and public services
## 18483                    Closure of businesses and public services
## 18484                    Closure of businesses and public services
## 18485                    Closure of businesses and public services
## 18486                    Closure of businesses and public services
## 18487                            Isolation and quarantine policies
## 18488                            Isolation and quarantine policies
## 18489                            Isolation and quarantine policies
## 18490                            Isolation and quarantine policies
## 18491                            Isolation and quarantine policies
## 18492                            Isolation and quarantine policies
## 18493                                              Border closure 
## 18494                                              Border closure 
## 18495                                              Border closure 
## 18496                                              Border closure 
## 18497                                              Border closure 
## 18498                                              Border closure 
## 18499                            Isolation and quarantine policies
## 18500                            Isolation and quarantine policies
## 18501                            Isolation and quarantine policies
## 18502                            Isolation and quarantine policies
## 18503                            Isolation and quarantine policies
## 18504                            Isolation and quarantine policies
## 18505                                  State of emergency declared
## 18506                                  State of emergency declared
## 18507                                  State of emergency declared
## 18508                                  State of emergency declared
## 18509                                  State of emergency declared
## 18510                                  State of emergency declared
## 18511                                      Limit public gatherings
## 18512                                      Limit public gatherings
## 18513                                      Limit public gatherings
## 18514                                      Limit public gatherings
## 18515                                      Limit public gatherings
## 18516                                      Limit public gatherings
## 18517                                             Schools closure 
## 18518                                             Schools closure 
## 18519                                             Schools closure 
## 18520                                             Schools closure 
## 18521                                             Schools closure 
## 18522                                             Schools closure 
## 18523                       Strengthening the public health system
## 18524                       Strengthening the public health system
## 18525                       Strengthening the public health system
## 18526                       Strengthening the public health system
## 18527                       Strengthening the public health system
## 18528                       Strengthening the public health system
## 18529                                            Visa restrictions
## 18530                                            Visa restrictions
## 18531                                            Visa restrictions
## 18532                                            Visa restrictions
## 18533                                            Visa restrictions
## 18534                                            Visa restrictions
## 18535                                 Domestic travel restrictions
## 18536                                 Domestic travel restrictions
## 18537                                 Domestic travel restrictions
## 18538                                 Domestic travel restrictions
## 18539                                 Domestic travel restrictions
## 18540                                 Domestic travel restrictions
## 18541                             International flights suspension
## 18542                             International flights suspension
## 18543                             International flights suspension
## 18544                             International flights suspension
## 18545                             International flights suspension
## 18546                             International flights suspension
## 18547                                 Domestic travel restrictions
## 18548                                 Domestic travel restrictions
## 18549                                 Domestic travel restrictions
## 18550                                 Domestic travel restrictions
## 18551                                 Domestic travel restrictions
## 18552                                 Domestic travel restrictions
## 18553                                 Domestic travel restrictions
## 18554                                 Domestic travel restrictions
## 18555                                 Domestic travel restrictions
## 18556                                 Domestic travel restrictions
## 18557                                 Domestic travel restrictions
## 18558                                 Domestic travel restrictions
## 18559                                 Domestic travel restrictions
## 18560                                 Domestic travel restrictions
## 18561                                 Domestic travel restrictions
## 18562                                 Domestic travel restrictions
## 18563                                 Domestic travel restrictions
## 18564                                 Domestic travel restrictions
## 18565                                 Domestic travel restrictions
## 18566                                 Domestic travel restrictions
## 18567                                 Domestic travel restrictions
## 18568                                 Domestic travel restrictions
## 18569                                 Domestic travel restrictions
## 18570                                 Domestic travel restrictions
## 18571                                            Economic measures
## 18572                                            Economic measures
## 18573                                            Economic measures
## 18574                                            Economic measures
## 18575                                            Economic measures
## 18576                                            Economic measures
## 18577                                 Domestic travel restrictions
## 18578                                 Domestic travel restrictions
## 18579                                 Domestic travel restrictions
## 18580                                 Domestic travel restrictions
## 18581                                 Domestic travel restrictions
## 18582                                 Domestic travel restrictions
## 18583                                 Domestic travel restrictions
## 18584                                 Domestic travel restrictions
## 18585                                 Domestic travel restrictions
## 18586                                 Domestic travel restrictions
## 18587                                 Domestic travel restrictions
## 18588                                 Domestic travel restrictions
## 18589                    Closure of businesses and public services
## 18590                    Closure of businesses and public services
## 18591                    Closure of businesses and public services
## 18592                    Closure of businesses and public services
## 18593                    Closure of businesses and public services
## 18594                    Closure of businesses and public services
## 18595                                  Surveillance and monitoring
## 18596                                  Surveillance and monitoring
## 18597                                  Surveillance and monitoring
## 18598                                  Surveillance and monitoring
## 18599                                  Surveillance and monitoring
## 18600                                  Surveillance and monitoring
## 18601                                            Economic measures
## 18602                                            Economic measures
## 18603                                            Economic measures
## 18604                                            Economic measures
## 18605                                            Economic measures
## 18606                                            Economic measures
## 18607                                              Border closure 
## 18608                                              Border closure 
## 18609                                              Border closure 
## 18610                                              Border closure 
## 18611                                              Border closure 
## 18612                                              Border closure 
## 18613                                            Economic measures
## 18614                                            Economic measures
## 18615                                            Economic measures
## 18616                                            Economic measures
## 18617                                            Economic measures
## 18618                                            Economic measures
## 18619                                      Limit public gatherings
## 18620                                      Limit public gatherings
## 18621                                      Limit public gatherings
## 18622                                      Limit public gatherings
## 18623                                      Limit public gatherings
## 18624                                      Limit public gatherings
## 18625                                 Domestic travel restrictions
## 18626                                 Domestic travel restrictions
## 18627                                 Domestic travel restrictions
## 18628                                 Domestic travel restrictions
## 18629                                 Domestic travel restrictions
## 18630                                 Domestic travel restrictions
## 18631                                          Awareness campaigns
## 18632                                          Awareness campaigns
## 18633                                          Awareness campaigns
## 18634                                          Awareness campaigns
## 18635                                          Awareness campaigns
## 18636                                          Awareness campaigns
## 18637                        Other public health measures enforced
## 18638                        Other public health measures enforced
## 18639                        Other public health measures enforced
## 18640                        Other public health measures enforced
## 18641                        Other public health measures enforced
## 18642                        Other public health measures enforced
## 18643                                      General recommendations
## 18644                                      General recommendations
## 18645                                      General recommendations
## 18646                                      General recommendations
## 18647                                      General recommendations
## 18648                                      General recommendations
## 18649                                      Limit public gatherings
## 18650                                      Limit public gatherings
## 18651                                      Limit public gatherings
## 18652                                      Limit public gatherings
## 18653                                      Limit public gatherings
## 18654                                      Limit public gatherings
## 18655                    Closure of businesses and public services
## 18656                    Closure of businesses and public services
## 18657                    Closure of businesses and public services
## 18658                    Closure of businesses and public services
## 18659                    Closure of businesses and public services
## 18660                    Closure of businesses and public services
## 18661                                 Domestic travel restrictions
## 18662                                 Domestic travel restrictions
## 18663                                 Domestic travel restrictions
## 18664                                 Domestic travel restrictions
## 18665                                 Domestic travel restrictions
## 18666                                 Domestic travel restrictions
## 18667                                              Border closure 
## 18668                                              Border closure 
## 18669                                              Border closure 
## 18670                                              Border closure 
## 18671                                              Border closure 
## 18672                                              Border closure 
## 18673           Health screenings in airports and border crossings
## 18674           Health screenings in airports and border crossings
## 18675           Health screenings in airports and border crossings
## 18676           Health screenings in airports and border crossings
## 18677           Health screenings in airports and border crossings
## 18678           Health screenings in airports and border crossings
## 18679                                               Testing policy
## 18680                                               Testing policy
## 18681                                               Testing policy
## 18682                                               Testing policy
## 18683                                               Testing policy
## 18684                                               Testing policy
## 18685                                              Border closure 
## 18686                                              Border closure 
## 18687                                              Border closure 
## 18688                                              Border closure 
## 18689                                              Border closure 
## 18690                                              Border closure 
## 18691                                 Domestic travel restrictions
## 18692                                 Domestic travel restrictions
## 18693                                 Domestic travel restrictions
## 18694                                 Domestic travel restrictions
## 18695                                 Domestic travel restrictions
## 18696                                 Domestic travel restrictions
## 18697                    Closure of businesses and public services
## 18698                    Closure of businesses and public services
## 18699                    Closure of businesses and public services
## 18700                    Closure of businesses and public services
## 18701                    Closure of businesses and public services
## 18702                    Closure of businesses and public services
## 18703                                      Limit public gatherings
## 18704                                      Limit public gatherings
## 18705                                      Limit public gatherings
## 18706                                      Limit public gatherings
## 18707                                      Limit public gatherings
## 18708                                      Limit public gatherings
## 18709                                 Domestic travel restrictions
## 18710                                 Domestic travel restrictions
## 18711                                 Domestic travel restrictions
## 18712                                 Domestic travel restrictions
## 18713                                 Domestic travel restrictions
## 18714                                 Domestic travel restrictions
## 18715                                             Partial lockdown
## 18716                                             Partial lockdown
## 18717                                             Partial lockdown
## 18718                                             Partial lockdown
## 18719                                             Partial lockdown
## 18720                                             Partial lockdown
## 18721                                             Partial lockdown
## 18722                                             Partial lockdown
## 18723                                             Partial lockdown
## 18724                                             Partial lockdown
## 18725                                             Partial lockdown
## 18726                                             Partial lockdown
## 18727                        Other public health measures enforced
## 18728                        Other public health measures enforced
## 18729                        Other public health measures enforced
## 18730                        Other public health measures enforced
## 18731                        Other public health measures enforced
## 18732                        Other public health measures enforced
## 18733                                      General recommendations
## 18734                                      General recommendations
## 18735                                      General recommendations
## 18736                                      General recommendations
## 18737                                      General recommendations
## 18738                                      General recommendations
## 18739                        Other public health measures enforced
## 18740                        Other public health measures enforced
## 18741                        Other public health measures enforced
## 18742                        Other public health measures enforced
## 18743                        Other public health measures enforced
## 18744                        Other public health measures enforced
## 18745 Emergency administrative structures activated or established
## 18746 Emergency administrative structures activated or established
## 18747 Emergency administrative structures activated or established
## 18748 Emergency administrative structures activated or established
## 18749 Emergency administrative structures activated or established
## 18750 Emergency administrative structures activated or established
## 18751                             International flights suspension
## 18752                             International flights suspension
## 18753                             International flights suspension
## 18754                             International flights suspension
## 18755                             International flights suspension
## 18756                             International flights suspension
## 18757                    Closure of businesses and public services
## 18758                    Closure of businesses and public services
## 18759                    Closure of businesses and public services
## 18760                    Closure of businesses and public services
## 18761                    Closure of businesses and public services
## 18762                    Closure of businesses and public services
## 18763                    Closure of businesses and public services
## 18764                    Closure of businesses and public services
## 18765                    Closure of businesses and public services
## 18766                    Closure of businesses and public services
## 18767                    Closure of businesses and public services
## 18768                    Closure of businesses and public services
## 18769                    Closure of businesses and public services
## 18770                    Closure of businesses and public services
## 18771                    Closure of businesses and public services
## 18772                    Closure of businesses and public services
## 18773                    Closure of businesses and public services
## 18774                    Closure of businesses and public services
## 18775                                      Limit public gatherings
## 18776                                      Limit public gatherings
## 18777                                      Limit public gatherings
## 18778                                      Limit public gatherings
## 18779                                      Limit public gatherings
## 18780                                      Limit public gatherings
## 18781                    Closure of businesses and public services
## 18782                    Closure of businesses and public services
## 18783                    Closure of businesses and public services
## 18784                    Closure of businesses and public services
## 18785                    Closure of businesses and public services
## 18786                    Closure of businesses and public services
## 18787                                            Economic measures
## 18788                                            Economic measures
## 18789                                            Economic measures
## 18790                                            Economic measures
## 18791                                            Economic measures
## 18792                                            Economic measures
## 18793                                            Economic measures
## 18794                                            Economic measures
## 18795                                            Economic measures
## 18796                                            Economic measures
## 18797                                            Economic measures
## 18798                                            Economic measures
## 18799                                            Economic measures
## 18800                                            Economic measures
## 18801                                            Economic measures
## 18802                                            Economic measures
## 18803                                            Economic measures
## 18804                                            Economic measures
## 18805                                  Surveillance and monitoring
## 18806                                  Surveillance and monitoring
## 18807                                  Surveillance and monitoring
## 18808                                  Surveillance and monitoring
## 18809                                  Surveillance and monitoring
## 18810                                  Surveillance and monitoring
## 18811                Requirement to wear protective gear in public
## 18812                Requirement to wear protective gear in public
## 18813                Requirement to wear protective gear in public
## 18814                Requirement to wear protective gear in public
## 18815                Requirement to wear protective gear in public
## 18816                Requirement to wear protective gear in public
## 18817                                            Economic measures
## 18818                                            Economic measures
## 18819                                            Economic measures
## 18820                                            Economic measures
## 18821                                            Economic measures
## 18822                                            Economic measures
## 18823                                 Domestic travel restrictions
## 18824                                 Domestic travel restrictions
## 18825                                 Domestic travel restrictions
## 18826                                 Domestic travel restrictions
## 18827                                 Domestic travel restrictions
## 18828                                 Domestic travel restrictions
## 18829                                            Economic measures
## 18830                                            Economic measures
## 18831                                            Economic measures
## 18832                                            Economic measures
## 18833                                            Economic measures
## 18834                                            Economic measures
## 18835                    Closure of businesses and public services
## 18836                    Closure of businesses and public services
## 18837                    Closure of businesses and public services
## 18838                    Closure of businesses and public services
## 18839                    Closure of businesses and public services
## 18840                    Closure of businesses and public services
## 18841                    Closure of businesses and public services
## 18842                    Closure of businesses and public services
## 18843                    Closure of businesses and public services
## 18844                    Closure of businesses and public services
## 18845                    Closure of businesses and public services
## 18846                    Closure of businesses and public services
## 18847                    Closure of businesses and public services
## 18848                    Closure of businesses and public services
## 18849                    Closure of businesses and public services
## 18850                    Closure of businesses and public services
## 18851                    Closure of businesses and public services
## 18852                    Closure of businesses and public services
## 18853           Health screenings in airports and border crossings
## 18854           Health screenings in airports and border crossings
## 18855           Health screenings in airports and border crossings
## 18856           Health screenings in airports and border crossings
## 18857           Health screenings in airports and border crossings
## 18858           Health screenings in airports and border crossings
## 18859                            Isolation and quarantine policies
## 18860                            Isolation and quarantine policies
## 18861                            Isolation and quarantine policies
## 18862                            Isolation and quarantine policies
## 18863                            Isolation and quarantine policies
## 18864                            Isolation and quarantine policies
## 18865                                            Visa restrictions
## 18866                                            Visa restrictions
## 18867                                            Visa restrictions
## 18868                                            Visa restrictions
## 18869                                            Visa restrictions
## 18870                                            Visa restrictions
## 18871                             International flights suspension
## 18872                             International flights suspension
## 18873                             International flights suspension
## 18874                             International flights suspension
## 18875                             International flights suspension
## 18876                             International flights suspension
## 18877                                              Border closure 
## 18878                                              Border closure 
## 18879                                              Border closure 
## 18880                                              Border closure 
## 18881                                              Border closure 
## 18882                                              Border closure 
## 18883                                      Limit public gatherings
## 18884                                      Limit public gatherings
## 18885                                      Limit public gatherings
## 18886                                      Limit public gatherings
## 18887                                      Limit public gatherings
## 18888                                      Limit public gatherings
## 18889                                      Limit public gatherings
## 18890                                      Limit public gatherings
## 18891                                      Limit public gatherings
## 18892                                      Limit public gatherings
## 18893                                      Limit public gatherings
## 18894                                      Limit public gatherings
## 18895                                      Limit public gatherings
## 18896                                      Limit public gatherings
## 18897                                      Limit public gatherings
## 18898                                      Limit public gatherings
## 18899                                      Limit public gatherings
## 18900                                      Limit public gatherings
## 18901                                             Schools closure 
## 18902                                             Schools closure 
## 18903                                             Schools closure 
## 18904                                             Schools closure 
## 18905                                             Schools closure 
## 18906                                             Schools closure 
## 18907                                                      Curfews
## 18908                                                      Curfews
## 18909                                                      Curfews
## 18910                                                      Curfews
## 18911                                                      Curfews
## 18912                                                      Curfews
## 18913                                 Domestic travel restrictions
## 18914                                 Domestic travel restrictions
## 18915                                 Domestic travel restrictions
## 18916                                 Domestic travel restrictions
## 18917                                 Domestic travel restrictions
## 18918                                 Domestic travel restrictions
## 18919                                      Limit public gatherings
## 18920                                      Limit public gatherings
## 18921                                      Limit public gatherings
## 18922                                      Limit public gatherings
## 18923                                      Limit public gatherings
## 18924                                      Limit public gatherings
## 18925                               Checkpoints within the country
## 18926                               Checkpoints within the country
## 18927                               Checkpoints within the country
## 18928                               Checkpoints within the country
## 18929                               Checkpoints within the country
## 18930                               Checkpoints within the country
## 18931                       Strengthening the public health system
## 18932                       Strengthening the public health system
## 18933                       Strengthening the public health system
## 18934                       Strengthening the public health system
## 18935                       Strengthening the public health system
## 18936                       Strengthening the public health system
## 18937                                            Economic measures
## 18938                                            Economic measures
## 18939                                            Economic measures
## 18940                                            Economic measures
## 18941                                            Economic measures
## 18942                                            Economic measures
## 18943                    Closure of businesses and public services
## 18944                    Closure of businesses and public services
## 18945                    Closure of businesses and public services
## 18946                    Closure of businesses and public services
## 18947                    Closure of businesses and public services
## 18948                    Closure of businesses and public services
## 18949                                      General recommendations
## 18950                                      General recommendations
## 18951                                      General recommendations
## 18952                                      General recommendations
## 18953                                      General recommendations
## 18954                                      General recommendations
## 18955                Requirement to wear protective gear in public
## 18956                Requirement to wear protective gear in public
## 18957                Requirement to wear protective gear in public
## 18958                Requirement to wear protective gear in public
## 18959                Requirement to wear protective gear in public
## 18960                Requirement to wear protective gear in public
## 18961                                             Partial lockdown
## 18962                                             Partial lockdown
## 18963                                             Partial lockdown
## 18964                                             Partial lockdown
## 18965                                             Partial lockdown
## 18966                                             Partial lockdown
## 18967                                      General recommendations
## 18968                                      General recommendations
## 18969                                      General recommendations
## 18970                                      General recommendations
## 18971                                      General recommendations
## 18972                                      General recommendations
## 18973                                            Economic measures
## 18974                                            Economic measures
## 18975                                            Economic measures
## 18976                                            Economic measures
## 18977                                            Economic measures
## 18978                                            Economic measures
## 18979                                  State of emergency declared
## 18980                                  State of emergency declared
## 18981                                  State of emergency declared
## 18982                                  State of emergency declared
## 18983                                  State of emergency declared
## 18984                                  State of emergency declared
## 18985                       Strengthening the public health system
## 18986                       Strengthening the public health system
## 18987                       Strengthening the public health system
## 18988                       Strengthening the public health system
## 18989                       Strengthening the public health system
## 18990                       Strengthening the public health system
## 18991                                             Schools closure 
## 18992                                             Schools closure 
## 18993                                             Schools closure 
## 18994                                             Schools closure 
## 18995                                             Schools closure 
## 18996                                             Schools closure 
## 18997                                            Economic measures
## 18998                                            Economic measures
## 18999                                            Economic measures
## 19000                                            Economic measures
## 19001                                            Economic measures
## 19002                                            Economic measures
## 19003                       Strengthening the public health system
## 19004                       Strengthening the public health system
## 19005                       Strengthening the public health system
## 19006                       Strengthening the public health system
## 19007                       Strengthening the public health system
## 19008                       Strengthening the public health system
## 19009                                            Economic measures
## 19010                                            Economic measures
## 19011                                            Economic measures
## 19012                                            Economic measures
## 19013                                            Economic measures
## 19014                                            Economic measures
## 19015                                  State of emergency declared
## 19016                                  State of emergency declared
## 19017                                  State of emergency declared
## 19018                                  State of emergency declared
## 19019                                  State of emergency declared
## 19020                                  State of emergency declared
## 19021                                            Economic measures
## 19022                                            Economic measures
## 19023                                            Economic measures
## 19024                                            Economic measures
## 19025                                            Economic measures
## 19026                                            Economic measures
## 19027                                            Economic measures
## 19028                                            Economic measures
## 19029                                            Economic measures
## 19030                                            Economic measures
## 19031                                            Economic measures
## 19032                                            Economic measures
## 19033                                                      Curfews
## 19034                                                      Curfews
## 19035                                                      Curfews
## 19036                                                      Curfews
## 19037                                                      Curfews
## 19038                                                      Curfews
## 19039                                             Schools closure 
## 19040                                             Schools closure 
## 19041                                             Schools closure 
## 19042                                             Schools closure 
## 19043                                             Schools closure 
## 19044                                             Schools closure 
## 19045                                      Limit public gatherings
## 19046                                      Limit public gatherings
## 19047                                      Limit public gatherings
## 19048                                      Limit public gatherings
## 19049                                      Limit public gatherings
## 19050                                      Limit public gatherings
## 19051                                      Limit public gatherings
## 19052                                      Limit public gatherings
## 19053                                      Limit public gatherings
## 19054                                      Limit public gatherings
## 19055                                      Limit public gatherings
## 19056                                      Limit public gatherings
## 19057                                  State of emergency declared
## 19058                                  State of emergency declared
## 19059                                  State of emergency declared
## 19060                                  State of emergency declared
## 19061                                  State of emergency declared
## 19062                                  State of emergency declared
## 19063                    Closure of businesses and public services
## 19064                    Closure of businesses and public services
## 19065                    Closure of businesses and public services
## 19066                    Closure of businesses and public services
## 19067                    Closure of businesses and public services
## 19068                    Closure of businesses and public services
## 19069                                             Schools closure 
## 19070                                             Schools closure 
## 19071                                             Schools closure 
## 19072                                             Schools closure 
## 19073                                             Schools closure 
## 19074                                             Schools closure 
## 19075                       Strengthening the public health system
## 19076                       Strengthening the public health system
## 19077                       Strengthening the public health system
## 19078                       Strengthening the public health system
## 19079                       Strengthening the public health system
## 19080                       Strengthening the public health system
## 19081                                                      Curfews
## 19082                                                      Curfews
## 19083                                                      Curfews
## 19084                                                      Curfews
## 19085                                                      Curfews
## 19086                                                      Curfews
## 19087                                 Domestic travel restrictions
## 19088                                 Domestic travel restrictions
## 19089                                 Domestic travel restrictions
## 19090                                 Domestic travel restrictions
## 19091                                 Domestic travel restrictions
## 19092                                 Domestic travel restrictions
## 19093                                  State of emergency declared
## 19094                                  State of emergency declared
## 19095                                  State of emergency declared
## 19096                                  State of emergency declared
## 19097                                  State of emergency declared
## 19098                                  State of emergency declared
## 19099                    Closure of businesses and public services
## 19100                    Closure of businesses and public services
## 19101                    Closure of businesses and public services
## 19102                    Closure of businesses and public services
## 19103                    Closure of businesses and public services
## 19104                    Closure of businesses and public services
## 19105                                                      Curfews
## 19106                                                      Curfews
## 19107                                                      Curfews
## 19108                                                      Curfews
## 19109                                                      Curfews
## 19110                                                      Curfews
## 19111                               Checkpoints within the country
## 19112                               Checkpoints within the country
## 19113                               Checkpoints within the country
## 19114                               Checkpoints within the country
## 19115                               Checkpoints within the country
## 19116                               Checkpoints within the country
## 19117                                            Economic measures
## 19118                                            Economic measures
## 19119                                            Economic measures
## 19120                                            Economic measures
## 19121                                            Economic measures
## 19122                                            Economic measures
## 19123                                  State of emergency declared
## 19124                                  State of emergency declared
## 19125                                  State of emergency declared
## 19126                                  State of emergency declared
## 19127                                  State of emergency declared
## 19128                                  State of emergency declared
## 19129                            Isolation and quarantine policies
## 19130                            Isolation and quarantine policies
## 19131                            Isolation and quarantine policies
## 19132                            Isolation and quarantine policies
## 19133                            Isolation and quarantine policies
## 19134                            Isolation and quarantine policies
## 19135                       Strengthening the public health system
## 19136                       Strengthening the public health system
## 19137                       Strengthening the public health system
## 19138                       Strengthening the public health system
## 19139                       Strengthening the public health system
## 19140                       Strengthening the public health system
## 19141                    Closure of businesses and public services
## 19142                    Closure of businesses and public services
## 19143                    Closure of businesses and public services
## 19144                    Closure of businesses and public services
## 19145                    Closure of businesses and public services
## 19146                    Closure of businesses and public services
## 19147                    Closure of businesses and public services
## 19148                    Closure of businesses and public services
## 19149                    Closure of businesses and public services
## 19150                    Closure of businesses and public services
## 19151                    Closure of businesses and public services
## 19152                    Closure of businesses and public services
## 19153                                 Domestic travel restrictions
## 19154                                 Domestic travel restrictions
## 19155                                 Domestic travel restrictions
## 19156                                 Domestic travel restrictions
## 19157                                 Domestic travel restrictions
## 19158                                 Domestic travel restrictions
## 19159                                              Border closure 
## 19160                                              Border closure 
## 19161                                              Border closure 
## 19162                                              Border closure 
## 19163                                              Border closure 
## 19164                                              Border closure 
## 19165                                  State of emergency declared
## 19166                                  State of emergency declared
## 19167                                  State of emergency declared
## 19168                                  State of emergency declared
## 19169                                  State of emergency declared
## 19170                                  State of emergency declared
## 19171                                      Limit public gatherings
## 19172                                      Limit public gatherings
## 19173                                      Limit public gatherings
## 19174                                      Limit public gatherings
## 19175                                      Limit public gatherings
## 19176                                      Limit public gatherings
## 19177                            Isolation and quarantine policies
## 19178                            Isolation and quarantine policies
## 19179                            Isolation and quarantine policies
## 19180                            Isolation and quarantine policies
## 19181                            Isolation and quarantine policies
## 19182                            Isolation and quarantine policies
## 19183                                      General recommendations
## 19184                                      General recommendations
## 19185                                      General recommendations
## 19186                                      General recommendations
## 19187                                      General recommendations
## 19188                                      General recommendations
## 19189                                             Schools closure 
## 19190                                             Schools closure 
## 19191                                             Schools closure 
## 19192                                             Schools closure 
## 19193                                             Schools closure 
## 19194                                             Schools closure 
## 19195                                      General recommendations
## 19196                                      General recommendations
## 19197                                      General recommendations
## 19198                                      General recommendations
## 19199                                      General recommendations
## 19200                                      General recommendations
## 19201                                              Border closure 
## 19202                                              Border closure 
## 19203                                              Border closure 
## 19204                                              Border closure 
## 19205                                              Border closure 
## 19206                                              Border closure 
## 19207                                            Economic measures
## 19208                                            Economic measures
## 19209                                            Economic measures
## 19210                                            Economic measures
## 19211                                            Economic measures
## 19212                                            Economic measures
## 19213                                            Economic measures
## 19214                                            Economic measures
## 19215                                            Economic measures
## 19216                                            Economic measures
## 19217                                            Economic measures
## 19218                                            Economic measures
## 19219                            Isolation and quarantine policies
## 19220                            Isolation and quarantine policies
## 19221                            Isolation and quarantine policies
## 19222                            Isolation and quarantine policies
## 19223                            Isolation and quarantine policies
## 19224                            Isolation and quarantine policies
## 19225                                      Limit public gatherings
## 19226                                      Limit public gatherings
## 19227                                      Limit public gatherings
## 19228                                      Limit public gatherings
## 19229                                      Limit public gatherings
## 19230                                      Limit public gatherings
## 19231                    Closure of businesses and public services
## 19232                    Closure of businesses and public services
## 19233                    Closure of businesses and public services
## 19234                    Closure of businesses and public services
## 19235                    Closure of businesses and public services
## 19236                    Closure of businesses and public services
## 19237 Emergency administrative structures activated or established
## 19238 Emergency administrative structures activated or established
## 19239 Emergency administrative structures activated or established
## 19240 Emergency administrative structures activated or established
## 19241 Emergency administrative structures activated or established
## 19242 Emergency administrative structures activated or established
## 19243                       Strengthening the public health system
## 19244                       Strengthening the public health system
## 19245                       Strengthening the public health system
## 19246                       Strengthening the public health system
## 19247                       Strengthening the public health system
## 19248                       Strengthening the public health system
## 19249                    Closure of businesses and public services
## 19250                    Closure of businesses and public services
## 19251                    Closure of businesses and public services
## 19252                    Closure of businesses and public services
## 19253                    Closure of businesses and public services
## 19254                    Closure of businesses and public services
## 19255                                 Domestic travel restrictions
## 19256                                 Domestic travel restrictions
## 19257                                 Domestic travel restrictions
## 19258                                 Domestic travel restrictions
## 19259                                 Domestic travel restrictions
## 19260                                 Domestic travel restrictions
## 19261                                  Surveillance and monitoring
## 19262                                  Surveillance and monitoring
## 19263                                  Surveillance and monitoring
## 19264                                  Surveillance and monitoring
## 19265                                  Surveillance and monitoring
## 19266                                  Surveillance and monitoring
## 19267                       Strengthening the public health system
## 19268                       Strengthening the public health system
## 19269                       Strengthening the public health system
## 19270                       Strengthening the public health system
## 19271                       Strengthening the public health system
## 19272                       Strengthening the public health system
## 19273                                            Economic measures
## 19274                                            Economic measures
## 19275                                            Economic measures
## 19276                                            Economic measures
## 19277                                            Economic measures
## 19278                                            Economic measures
## 19279                       Strengthening the public health system
## 19280                       Strengthening the public health system
## 19281                       Strengthening the public health system
## 19282                       Strengthening the public health system
## 19283                       Strengthening the public health system
## 19284                       Strengthening the public health system
## 19285                                            Economic measures
## 19286                                            Economic measures
## 19287                                            Economic measures
## 19288                                            Economic measures
## 19289                                            Economic measures
## 19290                                            Economic measures
## 19291                        Other public health measures enforced
## 19292                        Other public health measures enforced
## 19293                        Other public health measures enforced
## 19294                        Other public health measures enforced
## 19295                        Other public health measures enforced
## 19296                        Other public health measures enforced
## 19297                             International flights suspension
## 19298                             International flights suspension
## 19299                             International flights suspension
## 19300                             International flights suspension
## 19301                             International flights suspension
## 19302                             International flights suspension
## 19303                                            Economic measures
## 19304                                            Economic measures
## 19305                                            Economic measures
## 19306                                            Economic measures
## 19307                                            Economic measures
## 19308                                            Economic measures
## 19309                                      General recommendations
## 19310                                      General recommendations
## 19311                                      General recommendations
## 19312                                      General recommendations
## 19313                                      General recommendations
## 19314                                      General recommendations
## 19315                    Closure of businesses and public services
## 19316                    Closure of businesses and public services
## 19317                    Closure of businesses and public services
## 19318                    Closure of businesses and public services
## 19319                    Closure of businesses and public services
## 19320                    Closure of businesses and public services
## 19321                       Strengthening the public health system
## 19322                       Strengthening the public health system
## 19323                       Strengthening the public health system
## 19324                       Strengthening the public health system
## 19325                       Strengthening the public health system
## 19326                       Strengthening the public health system
## 19327                                      General recommendations
## 19328                                      General recommendations
## 19329                                      General recommendations
## 19330                                      General recommendations
## 19331                                      General recommendations
## 19332                                      General recommendations
## 19333                       Strengthening the public health system
## 19334                       Strengthening the public health system
## 19335                       Strengthening the public health system
## 19336                       Strengthening the public health system
## 19337                       Strengthening the public health system
## 19338                       Strengthening the public health system
## 19339                                            Economic measures
## 19340                                            Economic measures
## 19341                                            Economic measures
## 19342                                            Economic measures
## 19343                                            Economic measures
## 19344                                            Economic measures
## 19345                                            Economic measures
## 19346                                            Economic measures
## 19347                                            Economic measures
## 19348                                            Economic measures
## 19349                                            Economic measures
## 19350                                            Economic measures
## 19351                                            Economic measures
## 19352                                            Economic measures
## 19353                                            Economic measures
## 19354                                            Economic measures
## 19355                                            Economic measures
## 19356                                            Economic measures
## 19357                                            Economic measures
## 19358                                            Economic measures
## 19359                                            Economic measures
## 19360                                            Economic measures
## 19361                                            Economic measures
## 19362                                            Economic measures
## 19363                                             Partial lockdown
## 19364                                             Partial lockdown
## 19365                                             Partial lockdown
## 19366                                             Partial lockdown
## 19367                                             Partial lockdown
## 19368                                             Partial lockdown
## 19369                                             Partial lockdown
## 19370                                             Partial lockdown
## 19371                                             Partial lockdown
## 19372                                             Partial lockdown
## 19373                                             Partial lockdown
## 19374                                             Partial lockdown
## 19375                                      Limit public gatherings
## 19376                                      Limit public gatherings
## 19377                                      Limit public gatherings
## 19378                                      Limit public gatherings
## 19379                                      Limit public gatherings
## 19380                                      Limit public gatherings
## 19381                    Closure of businesses and public services
## 19382                    Closure of businesses and public services
## 19383                    Closure of businesses and public services
## 19384                    Closure of businesses and public services
## 19385                    Closure of businesses and public services
## 19386                    Closure of businesses and public services
## 19387                    Closure of businesses and public services
## 19388                    Closure of businesses and public services
## 19389                    Closure of businesses and public services
## 19390                    Closure of businesses and public services
## 19391                    Closure of businesses and public services
## 19392                    Closure of businesses and public services
## 19393                    Closure of businesses and public services
## 19394                    Closure of businesses and public services
## 19395                    Closure of businesses and public services
## 19396                    Closure of businesses and public services
## 19397                    Closure of businesses and public services
## 19398                    Closure of businesses and public services
## 19399                    Closure of businesses and public services
## 19400                    Closure of businesses and public services
## 19401                    Closure of businesses and public services
## 19402                    Closure of businesses and public services
## 19403                    Closure of businesses and public services
## 19404                    Closure of businesses and public services
## 19405                                      Limit public gatherings
## 19406                                      Limit public gatherings
## 19407                                      Limit public gatherings
## 19408                                      Limit public gatherings
## 19409                                      Limit public gatherings
## 19410                                      Limit public gatherings
## 19411                                             Schools closure 
## 19412                                             Schools closure 
## 19413                                             Schools closure 
## 19414                                             Schools closure 
## 19415                                             Schools closure 
## 19416                                             Schools closure 
## 19417                       Strengthening the public health system
## 19418                       Strengthening the public health system
## 19419                       Strengthening the public health system
## 19420                       Strengthening the public health system
## 19421                       Strengthening the public health system
## 19422                       Strengthening the public health system
## 19423                    Closure of businesses and public services
## 19424                    Closure of businesses and public services
## 19425                    Closure of businesses and public services
## 19426                    Closure of businesses and public services
## 19427                    Closure of businesses and public services
## 19428                    Closure of businesses and public services
## 19429                                      General recommendations
## 19430                                      General recommendations
## 19431                                      General recommendations
## 19432                                      General recommendations
## 19433                                      General recommendations
## 19434                                      General recommendations
## 19435                                             Schools closure 
## 19436                                             Schools closure 
## 19437                                             Schools closure 
## 19438                                             Schools closure 
## 19439                                             Schools closure 
## 19440                                             Schools closure 
## 19441        Additional health/documents requirements upon arrival
## 19442        Additional health/documents requirements upon arrival
## 19443        Additional health/documents requirements upon arrival
## 19444        Additional health/documents requirements upon arrival
## 19445        Additional health/documents requirements upon arrival
## 19446        Additional health/documents requirements upon arrival
## 19447        Additional health/documents requirements upon arrival
## 19448        Additional health/documents requirements upon arrival
## 19449        Additional health/documents requirements upon arrival
## 19450        Additional health/documents requirements upon arrival
## 19451        Additional health/documents requirements upon arrival
## 19452        Additional health/documents requirements upon arrival
## 19453                    Closure of businesses and public services
## 19454                    Closure of businesses and public services
## 19455                    Closure of businesses and public services
## 19456                    Closure of businesses and public services
## 19457                    Closure of businesses and public services
## 19458                    Closure of businesses and public services
## 19459                    Closure of businesses and public services
## 19460                    Closure of businesses and public services
## 19461                    Closure of businesses and public services
## 19462                    Closure of businesses and public services
## 19463                    Closure of businesses and public services
## 19464                    Closure of businesses and public services
## 19465                                 Domestic travel restrictions
## 19466                                 Domestic travel restrictions
## 19467                                 Domestic travel restrictions
## 19468                                 Domestic travel restrictions
## 19469                                 Domestic travel restrictions
## 19470                                 Domestic travel restrictions
## 19471                                              Border closure 
## 19472                                              Border closure 
## 19473                                              Border closure 
## 19474                                              Border closure 
## 19475                                              Border closure 
## 19476                                              Border closure 
## 19477                                            Economic measures
## 19478                                            Economic measures
## 19479                                            Economic measures
## 19480                                            Economic measures
## 19481                                            Economic measures
## 19482                                            Economic measures
## 19483                                      Limit public gatherings
## 19484                                      Limit public gatherings
## 19485                                      Limit public gatherings
## 19486                                      Limit public gatherings
## 19487                                      Limit public gatherings
## 19488                                      Limit public gatherings
## 19489                    Closure of businesses and public services
## 19490                    Closure of businesses and public services
## 19491                    Closure of businesses and public services
## 19492                    Closure of businesses and public services
## 19493                    Closure of businesses and public services
## 19494                    Closure of businesses and public services
## 19495                                             Schools closure 
## 19496                                             Schools closure 
## 19497                                             Schools closure 
## 19498                                             Schools closure 
## 19499                                             Schools closure 
## 19500                                             Schools closure 
## 19501                                             Schools closure 
## 19502                                             Schools closure 
## 19503                                             Schools closure 
## 19504                                             Schools closure 
## 19505                                             Schools closure 
## 19506                                             Schools closure 
## 19507                    Closure of businesses and public services
## 19508                    Closure of businesses and public services
## 19509                    Closure of businesses and public services
## 19510                    Closure of businesses and public services
## 19511                    Closure of businesses and public services
## 19512                    Closure of businesses and public services
## 19513                    Closure of businesses and public services
## 19514                    Closure of businesses and public services
## 19515                    Closure of businesses and public services
## 19516                    Closure of businesses and public services
## 19517                    Closure of businesses and public services
## 19518                    Closure of businesses and public services
## 19519                    Closure of businesses and public services
## 19520                    Closure of businesses and public services
## 19521                    Closure of businesses and public services
## 19522                    Closure of businesses and public services
## 19523                    Closure of businesses and public services
## 19524                    Closure of businesses and public services
## 19525                    Closure of businesses and public services
## 19526                    Closure of businesses and public services
## 19527                    Closure of businesses and public services
## 19528                    Closure of businesses and public services
## 19529                    Closure of businesses and public services
## 19530                    Closure of businesses and public services
## 19531                                      Limit public gatherings
## 19532                                      Limit public gatherings
## 19533                                      Limit public gatherings
## 19534                                      Limit public gatherings
## 19535                                      Limit public gatherings
## 19536                                      Limit public gatherings
## 19537                    Closure of businesses and public services
## 19538                    Closure of businesses and public services
## 19539                    Closure of businesses and public services
## 19540                    Closure of businesses and public services
## 19541                    Closure of businesses and public services
## 19542                    Closure of businesses and public services
## 19543        Additional health/documents requirements upon arrival
## 19544        Additional health/documents requirements upon arrival
## 19545        Additional health/documents requirements upon arrival
## 19546        Additional health/documents requirements upon arrival
## 19547        Additional health/documents requirements upon arrival
## 19548        Additional health/documents requirements upon arrival
## 19549                    Closure of businesses and public services
## 19550                    Closure of businesses and public services
## 19551                    Closure of businesses and public services
## 19552                    Closure of businesses and public services
## 19553                    Closure of businesses and public services
## 19554                    Closure of businesses and public services
## 19555                                 Domestic travel restrictions
## 19556                                 Domestic travel restrictions
## 19557                                 Domestic travel restrictions
## 19558                                 Domestic travel restrictions
## 19559                                 Domestic travel restrictions
## 19560                                 Domestic travel restrictions
## 19561                                      Limit public gatherings
## 19562                                      Limit public gatherings
## 19563                                      Limit public gatherings
## 19564                                      Limit public gatherings
## 19565                                      Limit public gatherings
## 19566                                      Limit public gatherings
## 19567                            Isolation and quarantine policies
## 19568                            Isolation and quarantine policies
## 19569                            Isolation and quarantine policies
## 19570                            Isolation and quarantine policies
## 19571                            Isolation and quarantine policies
## 19572                            Isolation and quarantine policies
## 19573                    Closure of businesses and public services
## 19574                    Closure of businesses and public services
## 19575                    Closure of businesses and public services
## 19576                    Closure of businesses and public services
## 19577                    Closure of businesses and public services
## 19578                    Closure of businesses and public services
## 19579                       Strengthening the public health system
## 19580                       Strengthening the public health system
## 19581                       Strengthening the public health system
## 19582                       Strengthening the public health system
## 19583                       Strengthening the public health system
## 19584                       Strengthening the public health system
## 19585                             International flights suspension
## 19586                             International flights suspension
## 19587                             International flights suspension
## 19588                             International flights suspension
## 19589                             International flights suspension
## 19590                             International flights suspension
## 19591                                      General recommendations
## 19592                                      General recommendations
## 19593                                      General recommendations
## 19594                                      General recommendations
## 19595                                      General recommendations
## 19596                                      General recommendations
## 19597                                      General recommendations
## 19598                                      General recommendations
## 19599                                      General recommendations
## 19600                                      General recommendations
## 19601                                      General recommendations
## 19602                                      General recommendations
## 19603                        Other public health measures enforced
## 19604                        Other public health measures enforced
## 19605                        Other public health measures enforced
## 19606                        Other public health measures enforced
## 19607                        Other public health measures enforced
## 19608                        Other public health measures enforced
## 19609                                              Border closure 
## 19610                                              Border closure 
## 19611                                              Border closure 
## 19612                                              Border closure 
## 19613                                              Border closure 
## 19614                                              Border closure 
## 19615                                      Limit public gatherings
## 19616                                      Limit public gatherings
## 19617                                      Limit public gatherings
## 19618                                      Limit public gatherings
## 19619                                      Limit public gatherings
## 19620                                      Limit public gatherings
## 19621        Additional health/documents requirements upon arrival
## 19622        Additional health/documents requirements upon arrival
## 19623        Additional health/documents requirements upon arrival
## 19624        Additional health/documents requirements upon arrival
## 19625        Additional health/documents requirements upon arrival
## 19626        Additional health/documents requirements upon arrival
## 19627                        Other public health measures enforced
## 19628                        Other public health measures enforced
## 19629                        Other public health measures enforced
## 19630                        Other public health measures enforced
## 19631                        Other public health measures enforced
## 19632                        Other public health measures enforced
## 19633                                              Border closure 
## 19634                                              Border closure 
## 19635                                              Border closure 
## 19636                                              Border closure 
## 19637                                              Border closure 
## 19638                                              Border closure 
## 19639                       Strengthening the public health system
## 19640                       Strengthening the public health system
## 19641                       Strengthening the public health system
## 19642                       Strengthening the public health system
## 19643                       Strengthening the public health system
## 19644                       Strengthening the public health system
## 19645                                          Awareness campaigns
## 19646                                          Awareness campaigns
## 19647                                          Awareness campaigns
## 19648                                          Awareness campaigns
## 19649                                          Awareness campaigns
## 19650                                          Awareness campaigns
## 19651                                          Military deployment
## 19652                                          Military deployment
## 19653                                          Military deployment
## 19654                                          Military deployment
## 19655                                          Military deployment
## 19656                                          Military deployment
## 19657           Health screenings in airports and border crossings
## 19658           Health screenings in airports and border crossings
## 19659           Health screenings in airports and border crossings
## 19660           Health screenings in airports and border crossings
## 19661           Health screenings in airports and border crossings
## 19662           Health screenings in airports and border crossings
## 19663                            Isolation and quarantine policies
## 19664                            Isolation and quarantine policies
## 19665                            Isolation and quarantine policies
## 19666                            Isolation and quarantine policies
## 19667                            Isolation and quarantine policies
## 19668                            Isolation and quarantine policies
## 19669                                              Border closure 
## 19670                                              Border closure 
## 19671                                              Border closure 
## 19672                                              Border closure 
## 19673                                              Border closure 
## 19674                                              Border closure 
## 19675                       Strengthening the public health system
## 19676                       Strengthening the public health system
## 19677                       Strengthening the public health system
## 19678                       Strengthening the public health system
## 19679                       Strengthening the public health system
## 19680                       Strengthening the public health system
## 19681                                      Limit public gatherings
## 19682                                      Limit public gatherings
## 19683                                      Limit public gatherings
## 19684                                      Limit public gatherings
## 19685                                      Limit public gatherings
## 19686                                      Limit public gatherings
## 19687                                            Economic measures
## 19688                                            Economic measures
## 19689                                            Economic measures
## 19690                                            Economic measures
## 19691                                            Economic measures
## 19692                                            Economic measures
## 19693                                 Domestic travel restrictions
## 19694                                 Domestic travel restrictions
## 19695                                 Domestic travel restrictions
## 19696                                 Domestic travel restrictions
## 19697                                 Domestic travel restrictions
## 19698                                 Domestic travel restrictions
## 19699                                      General recommendations
## 19700                                      General recommendations
## 19701                                      General recommendations
## 19702                                      General recommendations
## 19703                                      General recommendations
## 19704                                      General recommendations
## 19705                             International flights suspension
## 19706                             International flights suspension
## 19707                             International flights suspension
## 19708                             International flights suspension
## 19709                             International flights suspension
## 19710                             International flights suspension
## 19711                                              Border closure 
## 19712                                              Border closure 
## 19713                                              Border closure 
## 19714                                              Border closure 
## 19715                                              Border closure 
## 19716                                              Border closure 
## 19717                                               Testing policy
## 19718                                               Testing policy
## 19719                                               Testing policy
## 19720                                               Testing policy
## 19721                                               Testing policy
## 19722                                               Testing policy
## 19723                            Isolation and quarantine policies
## 19724                            Isolation and quarantine policies
## 19725                            Isolation and quarantine policies
## 19726                            Isolation and quarantine policies
## 19727                            Isolation and quarantine policies
## 19728                            Isolation and quarantine policies
## 19729                            Isolation and quarantine policies
## 19730                            Isolation and quarantine policies
## 19731                            Isolation and quarantine policies
## 19732                            Isolation and quarantine policies
## 19733                            Isolation and quarantine policies
## 19734                            Isolation and quarantine policies
## 19735                                 Domestic travel restrictions
## 19736                                 Domestic travel restrictions
## 19737                                 Domestic travel restrictions
## 19738                                 Domestic travel restrictions
## 19739                                 Domestic travel restrictions
## 19740                                 Domestic travel restrictions
## 19741                Requirement to wear protective gear in public
## 19742                Requirement to wear protective gear in public
## 19743                Requirement to wear protective gear in public
## 19744                Requirement to wear protective gear in public
## 19745                Requirement to wear protective gear in public
## 19746                Requirement to wear protective gear in public
## 19747                                             Partial lockdown
## 19748                                             Partial lockdown
## 19749                                             Partial lockdown
## 19750                                             Partial lockdown
## 19751                                             Partial lockdown
## 19752                                             Partial lockdown
## 19753                                             Partial lockdown
## 19754                                             Partial lockdown
## 19755                                             Partial lockdown
## 19756                                             Partial lockdown
## 19757                                             Partial lockdown
## 19758                                             Partial lockdown
## 19759 Emergency administrative structures activated or established
## 19760 Emergency administrative structures activated or established
## 19761 Emergency administrative structures activated or established
## 19762 Emergency administrative structures activated or established
## 19763 Emergency administrative structures activated or established
## 19764 Emergency administrative structures activated or established
## 19765                                             Schools closure 
## 19766                                             Schools closure 
## 19767                                             Schools closure 
## 19768                                             Schools closure 
## 19769                                             Schools closure 
## 19770                                             Schools closure 
## 19771                                             Schools closure 
## 19772                                             Schools closure 
## 19773                                             Schools closure 
## 19774                                             Schools closure 
## 19775                                             Schools closure 
## 19776                                             Schools closure 
## 19777                             International flights suspension
## 19778                             International flights suspension
## 19779                             International flights suspension
## 19780                             International flights suspension
## 19781                             International flights suspension
## 19782                             International flights suspension
## 19783                            Isolation and quarantine policies
## 19784                            Isolation and quarantine policies
## 19785                            Isolation and quarantine policies
## 19786                            Isolation and quarantine policies
## 19787                            Isolation and quarantine policies
## 19788                            Isolation and quarantine policies
## 19789                                      Limit public gatherings
## 19790                                      Limit public gatherings
## 19791                                      Limit public gatherings
## 19792                                      Limit public gatherings
## 19793                                      Limit public gatherings
## 19794                                      Limit public gatherings
## 19795                               Checkpoints within the country
## 19796                               Checkpoints within the country
## 19797                               Checkpoints within the country
## 19798                               Checkpoints within the country
## 19799                               Checkpoints within the country
## 19800                               Checkpoints within the country
## 19801                            Isolation and quarantine policies
## 19802                            Isolation and quarantine policies
## 19803                            Isolation and quarantine policies
## 19804                            Isolation and quarantine policies
## 19805                            Isolation and quarantine policies
## 19806                            Isolation and quarantine policies
## 19807                                 Domestic travel restrictions
## 19808                                 Domestic travel restrictions
## 19809                                 Domestic travel restrictions
## 19810                                 Domestic travel restrictions
## 19811                                 Domestic travel restrictions
## 19812                                 Domestic travel restrictions
## 19813                                            Economic measures
## 19814                                            Economic measures
## 19815                                            Economic measures
## 19816                                            Economic measures
## 19817                                            Economic measures
## 19818                                            Economic measures
## 19819                             International flights suspension
## 19820                             International flights suspension
## 19821                             International flights suspension
## 19822                             International flights suspension
## 19823                             International flights suspension
## 19824                             International flights suspension
## 19825                                      Mass population testing
## 19826                                      Mass population testing
## 19827                                      Mass population testing
## 19828                                      Mass population testing
## 19829                                      Mass population testing
## 19830                                      Mass population testing
## 19831                    Closure of businesses and public services
## 19832                    Closure of businesses and public services
## 19833                    Closure of businesses and public services
## 19834                    Closure of businesses and public services
## 19835                    Closure of businesses and public services
## 19836                    Closure of businesses and public services
## 19837                                             Schools closure 
## 19838                                             Schools closure 
## 19839                                             Schools closure 
## 19840                                             Schools closure 
## 19841                                             Schools closure 
## 19842                                             Schools closure 
## 19843 Emergency administrative structures activated or established
## 19844 Emergency administrative structures activated or established
## 19845 Emergency administrative structures activated or established
## 19846 Emergency administrative structures activated or established
## 19847 Emergency administrative structures activated or established
## 19848 Emergency administrative structures activated or established
## 19849                    Closure of businesses and public services
## 19850                    Closure of businesses and public services
## 19851                    Closure of businesses and public services
## 19852                    Closure of businesses and public services
## 19853                    Closure of businesses and public services
## 19854                    Closure of businesses and public services
## 19855                                 Domestic travel restrictions
## 19856                                 Domestic travel restrictions
## 19857                                 Domestic travel restrictions
## 19858                                 Domestic travel restrictions
## 19859                                 Domestic travel restrictions
## 19860                                 Domestic travel restrictions
## 19861                                              Border closure 
## 19862                                              Border closure 
## 19863                                              Border closure 
## 19864                                              Border closure 
## 19865                                              Border closure 
## 19866                                              Border closure 
## 19867                                             Schools closure 
## 19868                                             Schools closure 
## 19869                                             Schools closure 
## 19870                                             Schools closure 
## 19871                                             Schools closure 
## 19872                                             Schools closure 
## 19873                                            Economic measures
## 19874                                            Economic measures
## 19875                                            Economic measures
## 19876                                            Economic measures
## 19877                                            Economic measures
## 19878                                            Economic measures
## 19879        Additional health/documents requirements upon arrival
## 19880        Additional health/documents requirements upon arrival
## 19881        Additional health/documents requirements upon arrival
## 19882        Additional health/documents requirements upon arrival
## 19883        Additional health/documents requirements upon arrival
## 19884        Additional health/documents requirements upon arrival
## 19885                            Isolation and quarantine policies
## 19886                            Isolation and quarantine policies
## 19887                            Isolation and quarantine policies
## 19888                            Isolation and quarantine policies
## 19889                            Isolation and quarantine policies
## 19890                            Isolation and quarantine policies
## 19891                                      Limit public gatherings
## 19892                                      Limit public gatherings
## 19893                                      Limit public gatherings
## 19894                                      Limit public gatherings
## 19895                                      Limit public gatherings
## 19896                                      Limit public gatherings
## 19897                                          Awareness campaigns
## 19898                                          Awareness campaigns
## 19899                                          Awareness campaigns
## 19900                                          Awareness campaigns
## 19901                                          Awareness campaigns
## 19902                                          Awareness campaigns
## 19903                                  State of emergency declared
## 19904                                  State of emergency declared
## 19905                                  State of emergency declared
## 19906                                  State of emergency declared
## 19907                                  State of emergency declared
## 19908                                  State of emergency declared
## 19909                    Closure of businesses and public services
## 19910                    Closure of businesses and public services
## 19911                    Closure of businesses and public services
## 19912                    Closure of businesses and public services
## 19913                    Closure of businesses and public services
## 19914                    Closure of businesses and public services
## 19915                             International flights suspension
## 19916                             International flights suspension
## 19917                             International flights suspension
## 19918                             International flights suspension
## 19919                             International flights suspension
## 19920                             International flights suspension
## 19921                       Strengthening the public health system
## 19922                       Strengthening the public health system
## 19923                       Strengthening the public health system
## 19924                       Strengthening the public health system
## 19925                       Strengthening the public health system
## 19926                       Strengthening the public health system
## 19927           Health screenings in airports and border crossings
## 19928           Health screenings in airports and border crossings
## 19929           Health screenings in airports and border crossings
## 19930           Health screenings in airports and border crossings
## 19931           Health screenings in airports and border crossings
## 19932           Health screenings in airports and border crossings
## 19933                                                      Curfews
## 19934                                                      Curfews
## 19935                                                      Curfews
## 19936                                                      Curfews
## 19937                                                      Curfews
## 19938                                                      Curfews
## 19939 Emergency administrative structures activated or established
## 19940 Emergency administrative structures activated or established
## 19941 Emergency administrative structures activated or established
## 19942 Emergency administrative structures activated or established
## 19943 Emergency administrative structures activated or established
## 19944 Emergency administrative structures activated or established
## 19945                                 Domestic travel restrictions
## 19946                                 Domestic travel restrictions
## 19947                                 Domestic travel restrictions
## 19948                                 Domestic travel restrictions
## 19949                                 Domestic travel restrictions
## 19950                                 Domestic travel restrictions
## 19951                                             Partial lockdown
## 19952                                             Partial lockdown
## 19953                                             Partial lockdown
## 19954                                             Partial lockdown
## 19955                                             Partial lockdown
## 19956                                             Partial lockdown
## 19957                                                      Curfews
## 19958                                                      Curfews
## 19959                                                      Curfews
## 19960                                                      Curfews
## 19961                                                      Curfews
## 19962                                                      Curfews
## 19963                                 Domestic travel restrictions
## 19964                                 Domestic travel restrictions
## 19965                                 Domestic travel restrictions
## 19966                                 Domestic travel restrictions
## 19967                                 Domestic travel restrictions
## 19968                                 Domestic travel restrictions
## 19969                    Closure of businesses and public services
## 19970                    Closure of businesses and public services
## 19971                    Closure of businesses and public services
## 19972                    Closure of businesses and public services
## 19973                    Closure of businesses and public services
## 19974                    Closure of businesses and public services
## 19975                                            Economic measures
## 19976                                            Economic measures
## 19977                                            Economic measures
## 19978                                            Economic measures
## 19979                                            Economic measures
## 19980                                            Economic measures
## 19981                       Strengthening the public health system
## 19982                       Strengthening the public health system
## 19983                       Strengthening the public health system
## 19984                       Strengthening the public health system
## 19985                       Strengthening the public health system
## 19986                       Strengthening the public health system
## 19987                             International flights suspension
## 19988                             International flights suspension
## 19989                             International flights suspension
## 19990                             International flights suspension
## 19991                             International flights suspension
## 19992                             International flights suspension
## 19993                       Strengthening the public health system
## 19994                       Strengthening the public health system
## 19995                       Strengthening the public health system
## 19996                       Strengthening the public health system
## 19997                       Strengthening the public health system
## 19998                       Strengthening the public health system
## 19999                                            Economic measures
## 20000                                            Economic measures
## 20001                                            Economic measures
## 20002                                            Economic measures
## 20003                                            Economic measures
## 20004                                            Economic measures
## 20005                                            Economic measures
## 20006                                            Economic measures
## 20007                                            Economic measures
## 20008                                            Economic measures
## 20009                                            Economic measures
## 20010                                            Economic measures
## 20011                                            Economic measures
## 20012                                            Economic measures
## 20013                                            Economic measures
## 20014                                            Economic measures
## 20015                                            Economic measures
## 20016                                            Economic measures
## 20017                                  State of emergency declared
## 20018                                  State of emergency declared
## 20019                                  State of emergency declared
## 20020                                  State of emergency declared
## 20021                                  State of emergency declared
## 20022                                  State of emergency declared
## 20023                                                      Curfews
## 20024                                                      Curfews
## 20025                                                      Curfews
## 20026                                                      Curfews
## 20027                                                      Curfews
## 20028                                                      Curfews
## 20029                                 Domestic travel restrictions
## 20030                                 Domestic travel restrictions
## 20031                                 Domestic travel restrictions
## 20032                                 Domestic travel restrictions
## 20033                                 Domestic travel restrictions
## 20034                                 Domestic travel restrictions
## 20035                                      Limit public gatherings
## 20036                                      Limit public gatherings
## 20037                                      Limit public gatherings
## 20038                                      Limit public gatherings
## 20039                                      Limit public gatherings
## 20040                                      Limit public gatherings
## 20041                                  Surveillance and monitoring
## 20042                                  Surveillance and monitoring
## 20043                                  Surveillance and monitoring
## 20044                                  Surveillance and monitoring
## 20045                                  Surveillance and monitoring
## 20046                                  Surveillance and monitoring
## 20047                                                      Curfews
## 20048                                                      Curfews
## 20049                                                      Curfews
## 20050                                                      Curfews
## 20051                                                      Curfews
## 20052                                                      Curfews
## 20053                                 Domestic travel restrictions
## 20054                                 Domestic travel restrictions
## 20055                                 Domestic travel restrictions
## 20056                                 Domestic travel restrictions
## 20057                                 Domestic travel restrictions
## 20058                                 Domestic travel restrictions
## 20059                    Closure of businesses and public services
## 20060                    Closure of businesses and public services
## 20061                    Closure of businesses and public services
## 20062                    Closure of businesses and public services
## 20063                    Closure of businesses and public services
## 20064                    Closure of businesses and public services
## 20065                                             Schools closure 
## 20066                                             Schools closure 
## 20067                                             Schools closure 
## 20068                                             Schools closure 
## 20069                                             Schools closure 
## 20070                                             Schools closure 
## 20071                                            Economic measures
## 20072                                            Economic measures
## 20073                                            Economic measures
## 20074                                            Economic measures
## 20075                                            Economic measures
## 20076                                            Economic measures
## 20077                                               Testing policy
## 20078                                               Testing policy
## 20079                                               Testing policy
## 20080                                               Testing policy
## 20081                                               Testing policy
## 20082                                               Testing policy
## 20083 Emergency administrative structures activated or established
## 20084 Emergency administrative structures activated or established
## 20085 Emergency administrative structures activated or established
## 20086 Emergency administrative structures activated or established
## 20087 Emergency administrative structures activated or established
## 20088 Emergency administrative structures activated or established
## 20089                        Other public health measures enforced
## 20090                        Other public health measures enforced
## 20091                        Other public health measures enforced
## 20092                        Other public health measures enforced
## 20093                        Other public health measures enforced
## 20094                        Other public health measures enforced
## 20095                        Other public health measures enforced
## 20096                        Other public health measures enforced
## 20097                        Other public health measures enforced
## 20098                        Other public health measures enforced
## 20099                        Other public health measures enforced
## 20100                        Other public health measures enforced
## 20101                                      Limit public gatherings
## 20102                                      Limit public gatherings
## 20103                                      Limit public gatherings
## 20104                                      Limit public gatherings
## 20105                                      Limit public gatherings
## 20106                                      Limit public gatherings
## 20107                Requirement to wear protective gear in public
## 20108                Requirement to wear protective gear in public
## 20109                Requirement to wear protective gear in public
## 20110                Requirement to wear protective gear in public
## 20111                Requirement to wear protective gear in public
## 20112                Requirement to wear protective gear in public
## 20113                                      Limit public gatherings
## 20114                                      Limit public gatherings
## 20115                                      Limit public gatherings
## 20116                                      Limit public gatherings
## 20117                                      Limit public gatherings
## 20118                                      Limit public gatherings
## 20119                             International flights suspension
## 20120                             International flights suspension
## 20121                             International flights suspension
## 20122                             International flights suspension
## 20123                             International flights suspension
## 20124                             International flights suspension
## 20125                    Closure of businesses and public services
## 20126                    Closure of businesses and public services
## 20127                    Closure of businesses and public services
## 20128                    Closure of businesses and public services
## 20129                    Closure of businesses and public services
## 20130                    Closure of businesses and public services
## 20131                                            Economic measures
## 20132                                            Economic measures
## 20133                                            Economic measures
## 20134                                            Economic measures
## 20135                                            Economic measures
## 20136                                            Economic measures
## 20137                                               Testing policy
## 20138                                               Testing policy
## 20139                                               Testing policy
## 20140                                               Testing policy
## 20141                                               Testing policy
## 20142                                               Testing policy
## 20143                                            Economic measures
## 20144                                            Economic measures
## 20145                                            Economic measures
## 20146                                            Economic measures
## 20147                                            Economic measures
## 20148                                            Economic measures
## 20149                             International flights suspension
## 20150                             International flights suspension
## 20151                             International flights suspension
## 20152                             International flights suspension
## 20153                             International flights suspension
## 20154                             International flights suspension
## 20155                Requirement to wear protective gear in public
## 20156                Requirement to wear protective gear in public
## 20157                Requirement to wear protective gear in public
## 20158                Requirement to wear protective gear in public
## 20159                Requirement to wear protective gear in public
## 20160                Requirement to wear protective gear in public
## 20161                                                      Curfews
## 20162                                                      Curfews
## 20163                                                      Curfews
## 20164                                                      Curfews
## 20165                                                      Curfews
## 20166                                                      Curfews
## 20167                                 Domestic travel restrictions
## 20168                                 Domestic travel restrictions
## 20169                                 Domestic travel restrictions
## 20170                                 Domestic travel restrictions
## 20171                                 Domestic travel restrictions
## 20172                                 Domestic travel restrictions
## 20173                    Closure of businesses and public services
## 20174                    Closure of businesses and public services
## 20175                    Closure of businesses and public services
## 20176                    Closure of businesses and public services
## 20177                    Closure of businesses and public services
## 20178                    Closure of businesses and public services
## 20179                                             Schools closure 
## 20180                                             Schools closure 
## 20181                                             Schools closure 
## 20182                                             Schools closure 
## 20183                                             Schools closure 
## 20184                                             Schools closure 
## 20185                        Other public health measures enforced
## 20186                        Other public health measures enforced
## 20187                        Other public health measures enforced
## 20188                        Other public health measures enforced
## 20189                        Other public health measures enforced
## 20190                        Other public health measures enforced
## 20191                                 Domestic travel restrictions
## 20192                                 Domestic travel restrictions
## 20193                                 Domestic travel restrictions
## 20194                                 Domestic travel restrictions
## 20195                                 Domestic travel restrictions
## 20196                                 Domestic travel restrictions
## 20197                    Closure of businesses and public services
## 20198                    Closure of businesses and public services
## 20199                    Closure of businesses and public services
## 20200                    Closure of businesses and public services
## 20201                    Closure of businesses and public services
## 20202                    Closure of businesses and public services
## 20203                    Closure of businesses and public services
## 20204                    Closure of businesses and public services
## 20205                    Closure of businesses and public services
## 20206                    Closure of businesses and public services
## 20207                    Closure of businesses and public services
## 20208                    Closure of businesses and public services
## 20209                    Closure of businesses and public services
## 20210                    Closure of businesses and public services
## 20211                    Closure of businesses and public services
## 20212                    Closure of businesses and public services
## 20213                    Closure of businesses and public services
## 20214                    Closure of businesses and public services
## 20215                    Closure of businesses and public services
## 20216                    Closure of businesses and public services
## 20217                    Closure of businesses and public services
## 20218                    Closure of businesses and public services
## 20219                    Closure of businesses and public services
## 20220                    Closure of businesses and public services
## 20221                    Closure of businesses and public services
## 20222                    Closure of businesses and public services
## 20223                    Closure of businesses and public services
## 20224                    Closure of businesses and public services
## 20225                    Closure of businesses and public services
## 20226                    Closure of businesses and public services
## 20227                    Closure of businesses and public services
## 20228                    Closure of businesses and public services
## 20229                    Closure of businesses and public services
## 20230                    Closure of businesses and public services
## 20231                    Closure of businesses and public services
## 20232                    Closure of businesses and public services
## 20233                                              Border closure 
## 20234                                              Border closure 
## 20235                                              Border closure 
## 20236                                              Border closure 
## 20237                                              Border closure 
## 20238                                              Border closure 
## 20239                                 Domestic travel restrictions
## 20240                                 Domestic travel restrictions
## 20241                                 Domestic travel restrictions
## 20242                                 Domestic travel restrictions
## 20243                                 Domestic travel restrictions
## 20244                                 Domestic travel restrictions
## 20245                                             Partial lockdown
## 20246                                             Partial lockdown
## 20247                                             Partial lockdown
## 20248                                             Partial lockdown
## 20249                                             Partial lockdown
## 20250                                             Partial lockdown
## 20251                                      Limit public gatherings
## 20252                                      Limit public gatherings
## 20253                                      Limit public gatherings
## 20254                                      Limit public gatherings
## 20255                                      Limit public gatherings
## 20256                                      Limit public gatherings
## 20257                                      Limit public gatherings
## 20258                                      Limit public gatherings
## 20259                                      Limit public gatherings
## 20260                                      Limit public gatherings
## 20261                                      Limit public gatherings
## 20262                                      Limit public gatherings
## 20263                                 Domestic travel restrictions
## 20264                                 Domestic travel restrictions
## 20265                                 Domestic travel restrictions
## 20266                                 Domestic travel restrictions
## 20267                                 Domestic travel restrictions
## 20268                                 Domestic travel restrictions
## 20269                    Closure of businesses and public services
## 20270                    Closure of businesses and public services
## 20271                    Closure of businesses and public services
## 20272                    Closure of businesses and public services
## 20273                    Closure of businesses and public services
## 20274                    Closure of businesses and public services
## 20275                    Closure of businesses and public services
## 20276                    Closure of businesses and public services
## 20277                    Closure of businesses and public services
## 20278                    Closure of businesses and public services
## 20279                    Closure of businesses and public services
## 20280                    Closure of businesses and public services
## 20281 Emergency administrative structures activated or established
## 20282 Emergency administrative structures activated or established
## 20283 Emergency administrative structures activated or established
## 20284 Emergency administrative structures activated or established
## 20285 Emergency administrative structures activated or established
## 20286 Emergency administrative structures activated or established
## 20287                Requirement to wear protective gear in public
## 20288                Requirement to wear protective gear in public
## 20289                Requirement to wear protective gear in public
## 20290                Requirement to wear protective gear in public
## 20291                Requirement to wear protective gear in public
## 20292                Requirement to wear protective gear in public
## 20293                             International flights suspension
## 20294                             International flights suspension
## 20295                             International flights suspension
## 20296                             International flights suspension
## 20297                             International flights suspension
## 20298                             International flights suspension
## 20299                                             Schools closure 
## 20300                                             Schools closure 
## 20301                                             Schools closure 
## 20302                                             Schools closure 
## 20303                                             Schools closure 
## 20304                                             Schools closure 
## 20305                                            Economic measures
## 20306                                            Economic measures
## 20307                                            Economic measures
## 20308                                            Economic measures
## 20309                                            Economic measures
## 20310                                            Economic measures
## 20311                    Closure of businesses and public services
## 20312                    Closure of businesses and public services
## 20313                    Closure of businesses and public services
## 20314                    Closure of businesses and public services
## 20315                    Closure of businesses and public services
## 20316                    Closure of businesses and public services
## 20317                    Closure of businesses and public services
## 20318                    Closure of businesses and public services
## 20319                    Closure of businesses and public services
## 20320                    Closure of businesses and public services
## 20321                    Closure of businesses and public services
## 20322                    Closure of businesses and public services
## 20323                                 Domestic travel restrictions
## 20324                                 Domestic travel restrictions
## 20325                                 Domestic travel restrictions
## 20326                                 Domestic travel restrictions
## 20327                                 Domestic travel restrictions
## 20328                                 Domestic travel restrictions
## 20329                                                      Curfews
## 20330                                                      Curfews
## 20331                                                      Curfews
## 20332                                                      Curfews
## 20333                                                      Curfews
## 20334                                                      Curfews
## 20335                                      Limit public gatherings
## 20336                                      Limit public gatherings
## 20337                                      Limit public gatherings
## 20338                                      Limit public gatherings
## 20339                                      Limit public gatherings
## 20340                                      Limit public gatherings
## 20341                    Closure of businesses and public services
## 20342                    Closure of businesses and public services
## 20343                    Closure of businesses and public services
## 20344                    Closure of businesses and public services
## 20345                    Closure of businesses and public services
## 20346                    Closure of businesses and public services
## 20347                                            Visa restrictions
## 20348                                            Visa restrictions
## 20349                                            Visa restrictions
## 20350                                            Visa restrictions
## 20351                                            Visa restrictions
## 20352                                            Visa restrictions
## 20353                                            Economic measures
## 20354                                            Economic measures
## 20355                                            Economic measures
## 20356                                            Economic measures
## 20357                                            Economic measures
## 20358                                            Economic measures
## 20359                                 Domestic travel restrictions
## 20360                                 Domestic travel restrictions
## 20361                                 Domestic travel restrictions
## 20362                                 Domestic travel restrictions
## 20363                                 Domestic travel restrictions
## 20364                                 Domestic travel restrictions
## 20365                                                      Curfews
## 20366                                                      Curfews
## 20367                                                      Curfews
## 20368                                                      Curfews
## 20369                                                      Curfews
## 20370                                                      Curfews
## 20371                    Closure of businesses and public services
## 20372                    Closure of businesses and public services
## 20373                    Closure of businesses and public services
## 20374                    Closure of businesses and public services
## 20375                    Closure of businesses and public services
## 20376                    Closure of businesses and public services
## 20377                                      Limit public gatherings
## 20378                                      Limit public gatherings
## 20379                                      Limit public gatherings
## 20380                                      Limit public gatherings
## 20381                                      Limit public gatherings
## 20382                                      Limit public gatherings
## 20383                                             Schools closure 
## 20384                                             Schools closure 
## 20385                                             Schools closure 
## 20386                                             Schools closure 
## 20387                                             Schools closure 
## 20388                                             Schools closure 
## 20389                    Closure of businesses and public services
## 20390                    Closure of businesses and public services
## 20391                    Closure of businesses and public services
## 20392                    Closure of businesses and public services
## 20393                    Closure of businesses and public services
## 20394                    Closure of businesses and public services
## 20395                    Closure of businesses and public services
## 20396                    Closure of businesses and public services
## 20397                    Closure of businesses and public services
## 20398                    Closure of businesses and public services
## 20399                    Closure of businesses and public services
## 20400                    Closure of businesses and public services
## 20401                                 Domestic travel restrictions
## 20402                                 Domestic travel restrictions
## 20403                                 Domestic travel restrictions
## 20404                                 Domestic travel restrictions
## 20405                                 Domestic travel restrictions
## 20406                                 Domestic travel restrictions
## 20407           Health screenings in airports and border crossings
## 20408           Health screenings in airports and border crossings
## 20409           Health screenings in airports and border crossings
## 20410           Health screenings in airports and border crossings
## 20411           Health screenings in airports and border crossings
## 20412           Health screenings in airports and border crossings
## 20413                            Isolation and quarantine policies
## 20414                            Isolation and quarantine policies
## 20415                            Isolation and quarantine policies
## 20416                            Isolation and quarantine policies
## 20417                            Isolation and quarantine policies
## 20418                            Isolation and quarantine policies
## 20419                                             Schools closure 
## 20420                                             Schools closure 
## 20421                                             Schools closure 
## 20422                                             Schools closure 
## 20423                                             Schools closure 
## 20424                                             Schools closure 
## 20425                                      Limit public gatherings
## 20426                                      Limit public gatherings
## 20427                                      Limit public gatherings
## 20428                                      Limit public gatherings
## 20429                                      Limit public gatherings
## 20430                                      Limit public gatherings
## 20431                                  State of emergency declared
## 20432                                  State of emergency declared
## 20433                                  State of emergency declared
## 20434                                  State of emergency declared
## 20435                                  State of emergency declared
## 20436                                  State of emergency declared
## 20437                                             Partial lockdown
## 20438                                             Partial lockdown
## 20439                                             Partial lockdown
## 20440                                             Partial lockdown
## 20441                                             Partial lockdown
## 20442                                             Partial lockdown
## 20443                                              Border closure 
## 20444                                              Border closure 
## 20445                                              Border closure 
## 20446                                              Border closure 
## 20447                                              Border closure 
## 20448                                              Border closure 
## 20449                Requirement to wear protective gear in public
## 20450                Requirement to wear protective gear in public
## 20451                Requirement to wear protective gear in public
## 20452                Requirement to wear protective gear in public
## 20453                Requirement to wear protective gear in public
## 20454                Requirement to wear protective gear in public
## 20455                                      Limit public gatherings
## 20456                                      Limit public gatherings
## 20457                                      Limit public gatherings
## 20458                                      Limit public gatherings
## 20459                                      Limit public gatherings
## 20460                                      Limit public gatherings
## 20461                        Other public health measures enforced
## 20462                        Other public health measures enforced
## 20463                        Other public health measures enforced
## 20464                        Other public health measures enforced
## 20465                        Other public health measures enforced
## 20466                        Other public health measures enforced
## 20467                    Closure of businesses and public services
## 20468                    Closure of businesses and public services
## 20469                    Closure of businesses and public services
## 20470                    Closure of businesses and public services
## 20471                    Closure of businesses and public services
## 20472                    Closure of businesses and public services
## 20473                                            Economic measures
## 20474                                            Economic measures
## 20475                                            Economic measures
## 20476                                            Economic measures
## 20477                                            Economic measures
## 20478                                            Economic measures
## 20479                                            Economic measures
## 20480                                            Economic measures
## 20481                                            Economic measures
## 20482                                            Economic measures
## 20483                                            Economic measures
## 20484                                            Economic measures
## 20485        Additional health/documents requirements upon arrival
## 20486        Additional health/documents requirements upon arrival
## 20487        Additional health/documents requirements upon arrival
## 20488        Additional health/documents requirements upon arrival
## 20489        Additional health/documents requirements upon arrival
## 20490        Additional health/documents requirements upon arrival
## 20491                       Strengthening the public health system
## 20492                       Strengthening the public health system
## 20493                       Strengthening the public health system
## 20494                       Strengthening the public health system
## 20495                       Strengthening the public health system
## 20496                       Strengthening the public health system
## 20497                                  Surveillance and monitoring
## 20498                                  Surveillance and monitoring
## 20499                                  Surveillance and monitoring
## 20500                                  Surveillance and monitoring
## 20501                                  Surveillance and monitoring
## 20502                                  Surveillance and monitoring
## 20503                                      General recommendations
## 20504                                      General recommendations
## 20505                                      General recommendations
## 20506                                      General recommendations
## 20507                                      General recommendations
## 20508                                      General recommendations
## 20509                                      Limit public gatherings
## 20510                                      Limit public gatherings
## 20511                                      Limit public gatherings
## 20512                                      Limit public gatherings
## 20513                                      Limit public gatherings
## 20514                                      Limit public gatherings
## 20515                    Closure of businesses and public services
## 20516                    Closure of businesses and public services
## 20517                    Closure of businesses and public services
## 20518                    Closure of businesses and public services
## 20519                    Closure of businesses and public services
## 20520                    Closure of businesses and public services
## 20521                    Closure of businesses and public services
## 20522                    Closure of businesses and public services
## 20523                    Closure of businesses and public services
## 20524                    Closure of businesses and public services
## 20525                    Closure of businesses and public services
## 20526                    Closure of businesses and public services
## 20527                                Limit product imports/exports
## 20528                                Limit product imports/exports
## 20529                                Limit product imports/exports
## 20530                                Limit product imports/exports
## 20531                                Limit product imports/exports
## 20532                                Limit product imports/exports
## 20533                        Other public health measures enforced
## 20534                        Other public health measures enforced
## 20535                        Other public health measures enforced
## 20536                        Other public health measures enforced
## 20537                        Other public health measures enforced
## 20538                        Other public health measures enforced
## 20539                                              Border closure 
## 20540                                              Border closure 
## 20541                                              Border closure 
## 20542                                              Border closure 
## 20543                                              Border closure 
## 20544                                              Border closure 
## 20545                            Isolation and quarantine policies
## 20546                            Isolation and quarantine policies
## 20547                            Isolation and quarantine policies
## 20548                            Isolation and quarantine policies
## 20549                            Isolation and quarantine policies
## 20550                            Isolation and quarantine policies
## 20551                                            Visa restrictions
## 20552                                            Visa restrictions
## 20553                                            Visa restrictions
## 20554                                            Visa restrictions
## 20555                                            Visa restrictions
## 20556                                            Visa restrictions
## 20557        Additional health/documents requirements upon arrival
## 20558        Additional health/documents requirements upon arrival
## 20559        Additional health/documents requirements upon arrival
## 20560        Additional health/documents requirements upon arrival
## 20561        Additional health/documents requirements upon arrival
## 20562        Additional health/documents requirements upon arrival
## 20563                            Isolation and quarantine policies
## 20564                            Isolation and quarantine policies
## 20565                            Isolation and quarantine policies
## 20566                            Isolation and quarantine policies
## 20567                            Isolation and quarantine policies
## 20568                            Isolation and quarantine policies
## 20569                                            Economic measures
## 20570                                            Economic measures
## 20571                                            Economic measures
## 20572                                            Economic measures
## 20573                                            Economic measures
## 20574                                            Economic measures
## 20575                                            Economic measures
## 20576                                            Economic measures
## 20577                                            Economic measures
## 20578                                            Economic measures
## 20579                                            Economic measures
## 20580                                            Economic measures
## 20581                                            Economic measures
## 20582                                            Economic measures
## 20583                                            Economic measures
## 20584                                            Economic measures
## 20585                                            Economic measures
## 20586                                            Economic measures
## 20587             Psychological assistance and medical social work
## 20588             Psychological assistance and medical social work
## 20589             Psychological assistance and medical social work
## 20590             Psychological assistance and medical social work
## 20591             Psychological assistance and medical social work
## 20592             Psychological assistance and medical social work
## 20593                       Strengthening the public health system
## 20594                       Strengthening the public health system
## 20595                       Strengthening the public health system
## 20596                       Strengthening the public health system
## 20597                       Strengthening the public health system
## 20598                       Strengthening the public health system
## 20599                                               Testing policy
## 20600                                               Testing policy
## 20601                                               Testing policy
## 20602                                               Testing policy
## 20603                                               Testing policy
## 20604                                               Testing policy
## 20605             Psychological assistance and medical social work
## 20606             Psychological assistance and medical social work
## 20607             Psychological assistance and medical social work
## 20608             Psychological assistance and medical social work
## 20609             Psychological assistance and medical social work
## 20610             Psychological assistance and medical social work
## 20611                       Strengthening the public health system
## 20612                       Strengthening the public health system
## 20613                       Strengthening the public health system
## 20614                       Strengthening the public health system
## 20615                       Strengthening the public health system
## 20616                       Strengthening the public health system
## 20617                    Closure of businesses and public services
## 20618                    Closure of businesses and public services
## 20619                    Closure of businesses and public services
## 20620                    Closure of businesses and public services
## 20621                    Closure of businesses and public services
## 20622                    Closure of businesses and public services
## 20623                       Strengthening the public health system
## 20624                       Strengthening the public health system
## 20625                       Strengthening the public health system
## 20626                       Strengthening the public health system
## 20627                       Strengthening the public health system
## 20628                       Strengthening the public health system
## 20629                                            Economic measures
## 20630                                            Economic measures
## 20631                                            Economic measures
## 20632                                            Economic measures
## 20633                                            Economic measures
## 20634                                            Economic measures
## 20635                       Strengthening the public health system
## 20636                       Strengthening the public health system
## 20637                       Strengthening the public health system
## 20638                       Strengthening the public health system
## 20639                       Strengthening the public health system
## 20640                       Strengthening the public health system
## 20641                       Strengthening the public health system
## 20642                       Strengthening the public health system
## 20643                       Strengthening the public health system
## 20644                       Strengthening the public health system
## 20645                       Strengthening the public health system
## 20646                       Strengthening the public health system
## 20647                       Strengthening the public health system
## 20648                       Strengthening the public health system
## 20649                       Strengthening the public health system
## 20650                       Strengthening the public health system
## 20651                       Strengthening the public health system
## 20652                       Strengthening the public health system
## 20653                                            Economic measures
## 20654                                            Economic measures
## 20655                                            Economic measures
## 20656                                            Economic measures
## 20657                                            Economic measures
## 20658                                            Economic measures
## 20659                                            Economic measures
## 20660                                            Economic measures
## 20661                                            Economic measures
## 20662                                            Economic measures
## 20663                                            Economic measures
## 20664                                            Economic measures
## 20665                                            Economic measures
## 20666                                            Economic measures
## 20667                                            Economic measures
## 20668                                            Economic measures
## 20669                                            Economic measures
## 20670                                            Economic measures
## 20671                            Isolation and quarantine policies
## 20672                            Isolation and quarantine policies
## 20673                            Isolation and quarantine policies
## 20674                            Isolation and quarantine policies
## 20675                            Isolation and quarantine policies
## 20676                            Isolation and quarantine policies
## 20677                       Strengthening the public health system
## 20678                       Strengthening the public health system
## 20679                       Strengthening the public health system
## 20680                       Strengthening the public health system
## 20681                       Strengthening the public health system
## 20682                       Strengthening the public health system
## 20683                       Strengthening the public health system
## 20684                       Strengthening the public health system
## 20685                       Strengthening the public health system
## 20686                       Strengthening the public health system
## 20687                       Strengthening the public health system
## 20688                       Strengthening the public health system
## 20689                                  Surveillance and monitoring
## 20690                                  Surveillance and monitoring
## 20691                                  Surveillance and monitoring
## 20692                                  Surveillance and monitoring
## 20693                                  Surveillance and monitoring
## 20694                                  Surveillance and monitoring
## 20695                                               Border checks 
## 20696                                               Border checks 
## 20697                                               Border checks 
## 20698                                               Border checks 
## 20699                                               Border checks 
## 20700                                               Border checks 
## 20701                                      Limit public gatherings
## 20702                                      Limit public gatherings
## 20703                                      Limit public gatherings
## 20704                                      Limit public gatherings
## 20705                                      Limit public gatherings
## 20706                                      Limit public gatherings
## 20707                                               Testing policy
## 20708                                               Testing policy
## 20709                                               Testing policy
## 20710                                               Testing policy
## 20711                                               Testing policy
## 20712                                               Testing policy
## 20713                                              Border closure 
## 20714                                              Border closure 
## 20715                                              Border closure 
## 20716                                              Border closure 
## 20717                                              Border closure 
## 20718                                              Border closure 
## 20719                    Closure of businesses and public services
## 20720                    Closure of businesses and public services
## 20721                    Closure of businesses and public services
## 20722                    Closure of businesses and public services
## 20723                    Closure of businesses and public services
## 20724                    Closure of businesses and public services
## 20725                                      Limit public gatherings
## 20726                                      Limit public gatherings
## 20727                                      Limit public gatherings
## 20728                                      Limit public gatherings
## 20729                                      Limit public gatherings
## 20730                                      Limit public gatherings
## 20731                    Closure of businesses and public services
## 20732                    Closure of businesses and public services
## 20733                    Closure of businesses and public services
## 20734                    Closure of businesses and public services
## 20735                    Closure of businesses and public services
## 20736                    Closure of businesses and public services
## 20737                    Closure of businesses and public services
## 20738                    Closure of businesses and public services
## 20739                    Closure of businesses and public services
## 20740                    Closure of businesses and public services
## 20741                    Closure of businesses and public services
## 20742                    Closure of businesses and public services
## 20743                    Closure of businesses and public services
## 20744                    Closure of businesses and public services
## 20745                    Closure of businesses and public services
## 20746                    Closure of businesses and public services
## 20747                    Closure of businesses and public services
## 20748                    Closure of businesses and public services
## 20749                                             Schools closure 
## 20750                                             Schools closure 
## 20751                                             Schools closure 
## 20752                                             Schools closure 
## 20753                                             Schools closure 
## 20754                                             Schools closure 
## 20755                                             Schools closure 
## 20756                                             Schools closure 
## 20757                                             Schools closure 
## 20758                                             Schools closure 
## 20759                                             Schools closure 
## 20760                                             Schools closure 
## 20761                                             Schools closure 
## 20762                                             Schools closure 
## 20763                                             Schools closure 
## 20764                                             Schools closure 
## 20765                                             Schools closure 
## 20766                                             Schools closure 
## 20767                                          Military deployment
## 20768                                          Military deployment
## 20769                                          Military deployment
## 20770                                          Military deployment
## 20771                                          Military deployment
## 20772                                          Military deployment
## 20773                                            Economic measures
## 20774                                            Economic measures
## 20775                                            Economic measures
## 20776                                            Economic measures
## 20777                                            Economic measures
## 20778                                            Economic measures
## 20779                Requirement to wear protective gear in public
## 20780                Requirement to wear protective gear in public
## 20781                Requirement to wear protective gear in public
## 20782                Requirement to wear protective gear in public
## 20783                Requirement to wear protective gear in public
## 20784                Requirement to wear protective gear in public
## 20785                                  State of emergency declared
## 20786                                  State of emergency declared
## 20787                                  State of emergency declared
## 20788                                  State of emergency declared
## 20789                                  State of emergency declared
## 20790                                  State of emergency declared
## 20791                                          Military deployment
## 20792                                          Military deployment
## 20793                                          Military deployment
## 20794                                          Military deployment
## 20795                                          Military deployment
## 20796                                          Military deployment
## 20797                                            Economic measures
## 20798                                            Economic measures
## 20799                                            Economic measures
## 20800                                            Economic measures
## 20801                                            Economic measures
## 20802                                            Economic measures
## 20803                    Closure of businesses and public services
## 20804                    Closure of businesses and public services
## 20805                    Closure of businesses and public services
## 20806                    Closure of businesses and public services
## 20807                    Closure of businesses and public services
## 20808                    Closure of businesses and public services
## 20809                    Closure of businesses and public services
## 20810                    Closure of businesses and public services
## 20811                    Closure of businesses and public services
## 20812                    Closure of businesses and public services
## 20813                    Closure of businesses and public services
## 20814                    Closure of businesses and public services
## 20815                       strengthening the public health system
## 20816                       strengthening the public health system
## 20817                       strengthening the public health system
## 20818                       strengthening the public health system
## 20819                       strengthening the public health system
## 20820                       strengthening the public health system
## 20821                Requirement to wear protective gear in public
## 20822                Requirement to wear protective gear in public
## 20823                Requirement to wear protective gear in public
## 20824                Requirement to wear protective gear in public
## 20825                Requirement to wear protective gear in public
## 20826                Requirement to wear protective gear in public
## 20827                       strengthening the public health system
## 20828                       strengthening the public health system
## 20829                       strengthening the public health system
## 20830                       strengthening the public health system
## 20831                       strengthening the public health system
## 20832                       strengthening the public health system
## 20833                       strengthening the public health system
## 20834                       strengthening the public health system
## 20835                       strengthening the public health system
## 20836                       strengthening the public health system
## 20837                       strengthening the public health system
## 20838                       strengthening the public health system
## 20839                                            Economic measures
## 20840                                            Economic measures
## 20841                                            Economic measures
## 20842                                            Economic measures
## 20843                                            Economic measures
## 20844                                            Economic measures
## 20845                    Closure of businesses and public services
## 20846                    Closure of businesses and public services
## 20847                    Closure of businesses and public services
## 20848                    Closure of businesses and public services
## 20849                    Closure of businesses and public services
## 20850                    Closure of businesses and public services
## 20851                            Isolation and quarantine policies
## 20852                            Isolation and quarantine policies
## 20853                            Isolation and quarantine policies
## 20854                            Isolation and quarantine policies
## 20855                            Isolation and quarantine policies
## 20856                            Isolation and quarantine policies
## 20857                        Other public health measures enforced
## 20858                        Other public health measures enforced
## 20859                        Other public health measures enforced
## 20860                        Other public health measures enforced
## 20861                        Other public health measures enforced
## 20862                        Other public health measures enforced
## 20863             Psychological assistance and medical social work
## 20864             Psychological assistance and medical social work
## 20865             Psychological assistance and medical social work
## 20866             Psychological assistance and medical social work
## 20867             Psychological assistance and medical social work
## 20868             Psychological assistance and medical social work
## 20869                        Other public health measures enforced
## 20870                        Other public health measures enforced
## 20871                        Other public health measures enforced
## 20872                        Other public health measures enforced
## 20873                        Other public health measures enforced
## 20874                        Other public health measures enforced
## 20875                       strengthening the public health system
## 20876                       strengthening the public health system
## 20877                       strengthening the public health system
## 20878                       strengthening the public health system
## 20879                       strengthening the public health system
## 20880                       strengthening the public health system
## 20881                                              Border closure 
## 20882                                              Border closure 
## 20883                                              Border closure 
## 20884                                              Border closure 
## 20885                                              Border closure 
## 20886                                              Border closure 
## 20887                       Strengthening the public health system
## 20888                       Strengthening the public health system
## 20889                       Strengthening the public health system
## 20890                       Strengthening the public health system
## 20891                       Strengthening the public health system
## 20892                       Strengthening the public health system
## 20893                                            Economic measures
## 20894                                            Economic measures
## 20895                                            Economic measures
## 20896                                            Economic measures
## 20897                                            Economic measures
## 20898                                            Economic measures
## 20899                                            Economic measures
## 20900                                            Economic measures
## 20901                                            Economic measures
## 20902                                            Economic measures
## 20903                                            Economic measures
## 20904                                            Economic measures
## 20905                    Closure of businesses and public services
## 20906                    Closure of businesses and public services
## 20907                    Closure of businesses and public services
## 20908                    Closure of businesses and public services
## 20909                    Closure of businesses and public services
## 20910                    Closure of businesses and public services
## 20911                    Closure of businesses and public services
## 20912                    Closure of businesses and public services
## 20913                    Closure of businesses and public services
## 20914                    Closure of businesses and public services
## 20915                    Closure of businesses and public services
## 20916                    Closure of businesses and public services
## 20917                    Closure of businesses and public services
## 20918                    Closure of businesses and public services
## 20919                    Closure of businesses and public services
## 20920                    Closure of businesses and public services
## 20921                    Closure of businesses and public services
## 20922                    Closure of businesses and public services
## 20923                                      Limit public gatherings
## 20924                                      Limit public gatherings
## 20925                                      Limit public gatherings
## 20926                                      Limit public gatherings
## 20927                                      Limit public gatherings
## 20928                                      Limit public gatherings
## 20929                                             Schools closure 
## 20930                                             Schools closure 
## 20931                                             Schools closure 
## 20932                                             Schools closure 
## 20933                                             Schools closure 
## 20934                                             Schools closure 
## 20935                                              Border closure 
## 20936                                              Border closure 
## 20937                                              Border closure 
## 20938                                              Border closure 
## 20939                                              Border closure 
## 20940                                              Border closure 
## 20941                                              Border closure 
## 20942                                              Border closure 
## 20943                                              Border closure 
## 20944                                              Border closure 
## 20945                                              Border closure 
## 20946                                              Border closure 
## 20947                                            Economic measures
## 20948                                            Economic measures
## 20949                                            Economic measures
## 20950                                            Economic measures
## 20951                                            Economic measures
## 20952                                            Economic measures
## 20953                       Strengthening the public health system
## 20954                       Strengthening the public health system
## 20955                       Strengthening the public health system
## 20956                       Strengthening the public health system
## 20957                       Strengthening the public health system
## 20958                       Strengthening the public health system
## 20959                    Closure of businesses and public services
## 20960                    Closure of businesses and public services
## 20961                    Closure of businesses and public services
## 20962                    Closure of businesses and public services
## 20963                    Closure of businesses and public services
## 20964                    Closure of businesses and public services
## 20965                       Strengthening the public health system
## 20966                       Strengthening the public health system
## 20967                       Strengthening the public health system
## 20968                       Strengthening the public health system
## 20969                       Strengthening the public health system
## 20970                       Strengthening the public health system
## 20971                                            Visa restrictions
## 20972                                            Visa restrictions
## 20973                                            Visa restrictions
## 20974                                            Visa restrictions
## 20975                                            Visa restrictions
## 20976                                            Visa restrictions
## 20977                                            Visa restrictions
## 20978                                            Visa restrictions
## 20979                                            Visa restrictions
## 20980                                            Visa restrictions
## 20981                                            Visa restrictions
## 20982                                            Visa restrictions
## 20983                                Limit product imports/exports
## 20984                                Limit product imports/exports
## 20985                                Limit product imports/exports
## 20986                                Limit product imports/exports
## 20987                                Limit product imports/exports
## 20988                                Limit product imports/exports
## 20989                                Limit product imports/exports
## 20990                                Limit product imports/exports
## 20991                                Limit product imports/exports
## 20992                                Limit product imports/exports
## 20993                                Limit product imports/exports
## 20994                                Limit product imports/exports
## 20995                                            Visa restrictions
## 20996                                            Visa restrictions
## 20997                                            Visa restrictions
## 20998                                            Visa restrictions
## 20999                                            Visa restrictions
## 21000                                            Visa restrictions
## 21001                                            Visa restrictions
## 21002                                            Visa restrictions
## 21003                                            Visa restrictions
## 21004                                            Visa restrictions
## 21005                                            Visa restrictions
## 21006                                            Visa restrictions
## 21007                             International flights suspension
## 21008                             International flights suspension
## 21009                             International flights suspension
## 21010                             International flights suspension
## 21011                             International flights suspension
## 21012                             International flights suspension
## 21013                             International flights suspension
## 21014                             International flights suspension
## 21015                             International flights suspension
## 21016                             International flights suspension
## 21017                             International flights suspension
## 21018                             International flights suspension
## 21019                                            Economic measures
## 21020                                            Economic measures
## 21021                                            Economic measures
## 21022                                            Economic measures
## 21023                                            Economic measures
## 21024                                            Economic measures
## 21025                        Other public health measures enforced
## 21026                        Other public health measures enforced
## 21027                        Other public health measures enforced
## 21028                        Other public health measures enforced
## 21029                        Other public health measures enforced
## 21030                        Other public health measures enforced
## 21031                                      Limit public gatherings
## 21032                                      Limit public gatherings
## 21033                                      Limit public gatherings
## 21034                                      Limit public gatherings
## 21035                                      Limit public gatherings
## 21036                                      Limit public gatherings
## 21037                                  State of emergency declared
## 21038                                  State of emergency declared
## 21039                                  State of emergency declared
## 21040                                  State of emergency declared
## 21041                                  State of emergency declared
## 21042                                  State of emergency declared
## 21043                Requirement to wear protective gear in public
## 21044                Requirement to wear protective gear in public
## 21045                Requirement to wear protective gear in public
## 21046                Requirement to wear protective gear in public
## 21047                Requirement to wear protective gear in public
## 21048                Requirement to wear protective gear in public
## 21049                                      Limit public gatherings
## 21050                                      Limit public gatherings
## 21051                                      Limit public gatherings
## 21052                                      Limit public gatherings
## 21053                                      Limit public gatherings
## 21054                                      Limit public gatherings
## 21055                    Closure of businesses and public services
## 21056                    Closure of businesses and public services
## 21057                    Closure of businesses and public services
## 21058                    Closure of businesses and public services
## 21059                    Closure of businesses and public services
## 21060                    Closure of businesses and public services
## 21061                        Other public health measures enforced
## 21062                        Other public health measures enforced
## 21063                        Other public health measures enforced
## 21064                        Other public health measures enforced
## 21065                        Other public health measures enforced
## 21066                        Other public health measures enforced
## 21067        Additional health/documents requirements upon arrival
## 21068        Additional health/documents requirements upon arrival
## 21069        Additional health/documents requirements upon arrival
## 21070        Additional health/documents requirements upon arrival
## 21071        Additional health/documents requirements upon arrival
## 21072        Additional health/documents requirements upon arrival
## 21073                                            Economic measures
## 21074                                            Economic measures
## 21075                                            Economic measures
## 21076                                            Economic measures
## 21077                                            Economic measures
## 21078                                            Economic measures
## 21079                                            Economic measures
## 21080                                            Economic measures
## 21081                                            Economic measures
## 21082                                            Economic measures
## 21083                                            Economic measures
## 21084                                            Economic measures
## 21085                                            Economic measures
## 21086                                            Economic measures
## 21087                                            Economic measures
## 21088                                            Economic measures
## 21089                                            Economic measures
## 21090                                            Economic measures
## 21091                                              Border closure 
## 21092                                              Border closure 
## 21093                                              Border closure 
## 21094                                              Border closure 
## 21095                                              Border closure 
## 21096                                              Border closure 
## 21097                       Strengthening the public health system
## 21098                       Strengthening the public health system
## 21099                       Strengthening the public health system
## 21100                       Strengthening the public health system
## 21101                       Strengthening the public health system
## 21102                       Strengthening the public health system
## 21103                            Isolation and quarantine policies
## 21104                            Isolation and quarantine policies
## 21105                            Isolation and quarantine policies
## 21106                            Isolation and quarantine policies
## 21107                            Isolation and quarantine policies
## 21108                            Isolation and quarantine policies
## 21109                Requirement to wear protective gear in public
## 21110                Requirement to wear protective gear in public
## 21111                Requirement to wear protective gear in public
## 21112                Requirement to wear protective gear in public
## 21113                Requirement to wear protective gear in public
## 21114                Requirement to wear protective gear in public
## 21115 Emergency administrative structures activated or established
## 21116 Emergency administrative structures activated or established
## 21117 Emergency administrative structures activated or established
## 21118 Emergency administrative structures activated or established
## 21119 Emergency administrative structures activated or established
## 21120 Emergency administrative structures activated or established
## 21121                    Closure of businesses and public services
## 21122                    Closure of businesses and public services
## 21123                    Closure of businesses and public services
## 21124                    Closure of businesses and public services
## 21125                    Closure of businesses and public services
## 21126                    Closure of businesses and public services
## 21127                    Closure of businesses and public services
## 21128                    Closure of businesses and public services
## 21129                    Closure of businesses and public services
## 21130                    Closure of businesses and public services
## 21131                    Closure of businesses and public services
## 21132                    Closure of businesses and public services
## 21133                                                      Curfews
## 21134                                                      Curfews
## 21135                                                      Curfews
## 21136                                                      Curfews
## 21137                                                      Curfews
## 21138                                                      Curfews
## 21139                            Isolation and quarantine policies
## 21140                            Isolation and quarantine policies
## 21141                            Isolation and quarantine policies
## 21142                            Isolation and quarantine policies
## 21143                            Isolation and quarantine policies
## 21144                            Isolation and quarantine policies
## 21145                       Strengthening the public health system
## 21146                       Strengthening the public health system
## 21147                       Strengthening the public health system
## 21148                       Strengthening the public health system
## 21149                       Strengthening the public health system
## 21150                       Strengthening the public health system
## 21151                       Strengthening the public health system
## 21152                       Strengthening the public health system
## 21153                       Strengthening the public health system
## 21154                       Strengthening the public health system
## 21155                       Strengthening the public health system
## 21156                       Strengthening the public health system
## 21157                                            Economic measures
## 21158                                            Economic measures
## 21159                                            Economic measures
## 21160                                            Economic measures
## 21161                                            Economic measures
## 21162                                            Economic measures
## 21163                                            Economic measures
## 21164                                            Economic measures
## 21165                                            Economic measures
## 21166                                            Economic measures
## 21167                                            Economic measures
## 21168                                            Economic measures
## 21169                                            Economic measures
## 21170                                            Economic measures
## 21171                                            Economic measures
## 21172                                            Economic measures
## 21173                                            Economic measures
## 21174                                            Economic measures
## 21175                                            Economic measures
## 21176                                            Economic measures
## 21177                                            Economic measures
## 21178                                            Economic measures
## 21179                                            Economic measures
## 21180                                            Economic measures
## 21181                                            Economic measures
## 21182                                            Economic measures
## 21183                                            Economic measures
## 21184                                            Economic measures
## 21185                                            Economic measures
## 21186                                            Economic measures
## 21187                    Closure of businesses and public services
## 21188                    Closure of businesses and public services
## 21189                    Closure of businesses and public services
## 21190                    Closure of businesses and public services
## 21191                    Closure of businesses and public services
## 21192                    Closure of businesses and public services
## 21193                                              Border closure 
## 21194                                              Border closure 
## 21195                                              Border closure 
## 21196                                              Border closure 
## 21197                                              Border closure 
## 21198                                              Border closure 
## 21199                                              Border closure 
## 21200                                              Border closure 
## 21201                                              Border closure 
## 21202                                              Border closure 
## 21203                                              Border closure 
## 21204                                              Border closure 
## 21205                    Closure of businesses and public services
## 21206                    Closure of businesses and public services
## 21207                    Closure of businesses and public services
## 21208                    Closure of businesses and public services
## 21209                    Closure of businesses and public services
## 21210                    Closure of businesses and public services
## 21211                Requirement to wear protective gear in public
## 21212                Requirement to wear protective gear in public
## 21213                Requirement to wear protective gear in public
## 21214                Requirement to wear protective gear in public
## 21215                Requirement to wear protective gear in public
## 21216                Requirement to wear protective gear in public
## 21217                                          Awareness campaigns
## 21218                                          Awareness campaigns
## 21219                                          Awareness campaigns
## 21220                                          Awareness campaigns
## 21221                                          Awareness campaigns
## 21222                                          Awareness campaigns
## 21223                                      Limit public gatherings
## 21224                                      Limit public gatherings
## 21225                                      Limit public gatherings
## 21226                                      Limit public gatherings
## 21227                                      Limit public gatherings
## 21228                                      Limit public gatherings
## 21229                        Other public health measures enforced
## 21230                        Other public health measures enforced
## 21231                        Other public health measures enforced
## 21232                        Other public health measures enforced
## 21233                        Other public health measures enforced
## 21234                        Other public health measures enforced
## 21235                                  State of emergency declared
## 21236                                  State of emergency declared
## 21237                                  State of emergency declared
## 21238                                  State of emergency declared
## 21239                                  State of emergency declared
## 21240                                  State of emergency declared
## 21241                                          Awareness campaigns
## 21242                                          Awareness campaigns
## 21243                                          Awareness campaigns
## 21244                                          Awareness campaigns
## 21245                                          Awareness campaigns
## 21246                                          Awareness campaigns
## 21247                Requirement to wear protective gear in public
## 21248                Requirement to wear protective gear in public
## 21249                Requirement to wear protective gear in public
## 21250                Requirement to wear protective gear in public
## 21251                Requirement to wear protective gear in public
## 21252                Requirement to wear protective gear in public
## 21253                Requirement to wear protective gear in public
## 21254                Requirement to wear protective gear in public
## 21255                Requirement to wear protective gear in public
## 21256                Requirement to wear protective gear in public
## 21257                Requirement to wear protective gear in public
## 21258                Requirement to wear protective gear in public
## 21259                        Other public health measures enforced
## 21260                        Other public health measures enforced
## 21261                        Other public health measures enforced
## 21262                        Other public health measures enforced
## 21263                        Other public health measures enforced
## 21264                        Other public health measures enforced
## 21265                            Isolation and quarantine policies
## 21266                            Isolation and quarantine policies
## 21267                            Isolation and quarantine policies
## 21268                            Isolation and quarantine policies
## 21269                            Isolation and quarantine policies
## 21270                            Isolation and quarantine policies
## 21271                                              Border closure 
## 21272                                              Border closure 
## 21273                                              Border closure 
## 21274                                              Border closure 
## 21275                                              Border closure 
## 21276                                              Border closure 
## 21277                                             Schools closure 
## 21278                                             Schools closure 
## 21279                                             Schools closure 
## 21280                                             Schools closure 
## 21281                                             Schools closure 
## 21282                                             Schools closure 
## 21283                                             Schools closure 
## 21284                                             Schools closure 
## 21285                                             Schools closure 
## 21286                                             Schools closure 
## 21287                                             Schools closure 
## 21288                                             Schools closure 
## 21289                                          Awareness campaigns
## 21290                                          Awareness campaigns
## 21291                                          Awareness campaigns
## 21292                                          Awareness campaigns
## 21293                                          Awareness campaigns
## 21294                                          Awareness campaigns
## 21295                    Closure of businesses and public services
## 21296                    Closure of businesses and public services
## 21297                    Closure of businesses and public services
## 21298                    Closure of businesses and public services
## 21299                    Closure of businesses and public services
## 21300                    Closure of businesses and public services
## 21301                                               Border checks 
## 21302                                               Border checks 
## 21303                                               Border checks 
## 21304                                               Border checks 
## 21305                                               Border checks 
## 21306                                               Border checks 
## 21307                                               Border checks 
## 21308                                               Border checks 
## 21309                                               Border checks 
## 21310                                               Border checks 
## 21311                                               Border checks 
## 21312                                               Border checks 
## 21313                            Isolation and quarantine policies
## 21314                            Isolation and quarantine policies
## 21315                            Isolation and quarantine policies
## 21316                            Isolation and quarantine policies
## 21317                            Isolation and quarantine policies
## 21318                            Isolation and quarantine policies
## 21319        Additional health/documents requirements upon arrival
## 21320        Additional health/documents requirements upon arrival
## 21321        Additional health/documents requirements upon arrival
## 21322        Additional health/documents requirements upon arrival
## 21323        Additional health/documents requirements upon arrival
## 21324        Additional health/documents requirements upon arrival
## 21325                            Isolation and quarantine policies
## 21326                            Isolation and quarantine policies
## 21327                            Isolation and quarantine policies
## 21328                            Isolation and quarantine policies
## 21329                            Isolation and quarantine policies
## 21330                            Isolation and quarantine policies
## 21331        Additional health/documents requirements upon arrival
## 21332        Additional health/documents requirements upon arrival
## 21333        Additional health/documents requirements upon arrival
## 21334        Additional health/documents requirements upon arrival
## 21335        Additional health/documents requirements upon arrival
## 21336        Additional health/documents requirements upon arrival
## 21337                                            Economic measures
## 21338                                            Economic measures
## 21339                                            Economic measures
## 21340                                            Economic measures
## 21341                                            Economic measures
## 21342                                            Economic measures
## 21343        Additional health/documents requirements upon arrival
## 21344        Additional health/documents requirements upon arrival
## 21345        Additional health/documents requirements upon arrival
## 21346        Additional health/documents requirements upon arrival
## 21347        Additional health/documents requirements upon arrival
## 21348        Additional health/documents requirements upon arrival
## 21349        Additional health/documents requirements upon arrival
## 21350        Additional health/documents requirements upon arrival
## 21351        Additional health/documents requirements upon arrival
## 21352        Additional health/documents requirements upon arrival
## 21353        Additional health/documents requirements upon arrival
## 21354        Additional health/documents requirements upon arrival
## 21355                                            Economic measures
## 21356                                            Economic measures
## 21357                                            Economic measures
## 21358                                            Economic measures
## 21359                                            Economic measures
## 21360                                            Economic measures
## 21361                        Other public health measures enforced
## 21362                        Other public health measures enforced
## 21363                        Other public health measures enforced
## 21364                        Other public health measures enforced
## 21365                        Other public health measures enforced
## 21366                        Other public health measures enforced
## 21367                        Other public health measures enforced
## 21368                        Other public health measures enforced
## 21369                        Other public health measures enforced
## 21370                        Other public health measures enforced
## 21371                        Other public health measures enforced
## 21372                        Other public health measures enforced
## 21373                Requirement to wear protective gear in public
## 21374                Requirement to wear protective gear in public
## 21375                Requirement to wear protective gear in public
## 21376                Requirement to wear protective gear in public
## 21377                Requirement to wear protective gear in public
## 21378                Requirement to wear protective gear in public
## 21379                        Other public health measures enforced
## 21380                        Other public health measures enforced
## 21381                        Other public health measures enforced
## 21382                        Other public health measures enforced
## 21383                        Other public health measures enforced
## 21384                        Other public health measures enforced
## 21385                                      Limit public gatherings
## 21386                                      Limit public gatherings
## 21387                                      Limit public gatherings
## 21388                                      Limit public gatherings
## 21389                                      Limit public gatherings
## 21390                                      Limit public gatherings
## 21391                                            Economic measures
## 21392                                            Economic measures
## 21393                                            Economic measures
## 21394                                            Economic measures
## 21395                                            Economic measures
## 21396                                            Economic measures
## 21397                                            Economic measures
## 21398                                            Economic measures
## 21399                                            Economic measures
## 21400                                            Economic measures
## 21401                                            Economic measures
## 21402                                            Economic measures
## 21403                                              Border closure 
## 21404                                              Border closure 
## 21405                                              Border closure 
## 21406                                              Border closure 
## 21407                                              Border closure 
## 21408                                              Border closure 
## 21409        Additional health/documents requirements upon arrival
## 21410        Additional health/documents requirements upon arrival
## 21411        Additional health/documents requirements upon arrival
## 21412        Additional health/documents requirements upon arrival
## 21413        Additional health/documents requirements upon arrival
## 21414        Additional health/documents requirements upon arrival
## 21415                                            Economic measures
## 21416                                            Economic measures
## 21417                                            Economic measures
## 21418                                            Economic measures
## 21419                                            Economic measures
## 21420                                            Economic measures
## 21421                Requirement to wear protective gear in public
## 21422                Requirement to wear protective gear in public
## 21423                Requirement to wear protective gear in public
## 21424                Requirement to wear protective gear in public
## 21425                Requirement to wear protective gear in public
## 21426                Requirement to wear protective gear in public
## 21427                        Other public health measures enforced
## 21428                        Other public health measures enforced
## 21429                        Other public health measures enforced
## 21430                        Other public health measures enforced
## 21431                        Other public health measures enforced
## 21432                        Other public health measures enforced
## 21433                                      Limit public gatherings
## 21434                                      Limit public gatherings
## 21435                                      Limit public gatherings
## 21436                                      Limit public gatherings
## 21437                                      Limit public gatherings
## 21438                                      Limit public gatherings
## 21439                        Other public health measures enforced
## 21440                        Other public health measures enforced
## 21441                        Other public health measures enforced
## 21442                        Other public health measures enforced
## 21443                        Other public health measures enforced
## 21444                        Other public health measures enforced
## 21445                        Other public health measures enforced
## 21446                        Other public health measures enforced
## 21447                        Other public health measures enforced
## 21448                        Other public health measures enforced
## 21449                        Other public health measures enforced
## 21450                        Other public health measures enforced
## 21451                        Other public health measures enforced
## 21452                        Other public health measures enforced
## 21453                        Other public health measures enforced
## 21454                        Other public health measures enforced
## 21455                        Other public health measures enforced
## 21456                        Other public health measures enforced
## 21457                        Other public health measures enforced
## 21458                        Other public health measures enforced
## 21459                        Other public health measures enforced
## 21460                        Other public health measures enforced
## 21461                        Other public health measures enforced
## 21462                        Other public health measures enforced
## 21463                                              Border closure 
## 21464                                              Border closure 
## 21465                                              Border closure 
## 21466                                              Border closure 
## 21467                                              Border closure 
## 21468                                              Border closure 
## 21469                                      General recommendations
## 21470                                      General recommendations
## 21471                                      General recommendations
## 21472                                      General recommendations
## 21473                                      General recommendations
## 21474                                      General recommendations
## 21475                                             Schools closure 
## 21476                                             Schools closure 
## 21477                                             Schools closure 
## 21478                                             Schools closure 
## 21479                                             Schools closure 
## 21480                                             Schools closure 
## 21481                    Closure of businesses and public services
## 21482                    Closure of businesses and public services
## 21483                    Closure of businesses and public services
## 21484                    Closure of businesses and public services
## 21485                    Closure of businesses and public services
## 21486                    Closure of businesses and public services
## 21487                    Closure of businesses and public services
## 21488                    Closure of businesses and public services
## 21489                    Closure of businesses and public services
## 21490                    Closure of businesses and public services
## 21491                    Closure of businesses and public services
## 21492                    Closure of businesses and public services
## 21493                                      Limit public gatherings
## 21494                                      Limit public gatherings
## 21495                                      Limit public gatherings
## 21496                                      Limit public gatherings
## 21497                                      Limit public gatherings
## 21498                                      Limit public gatherings
## 21499                    Closure of businesses and public services
## 21500                    Closure of businesses and public services
## 21501                    Closure of businesses and public services
## 21502                    Closure of businesses and public services
## 21503                    Closure of businesses and public services
## 21504                    Closure of businesses and public services
## 21505                                      General recommendations
## 21506                                      General recommendations
## 21507                                      General recommendations
## 21508                                      General recommendations
## 21509                                      General recommendations
## 21510                                      General recommendations
## 21511                       Strengthening the public health system
## 21512                       Strengthening the public health system
## 21513                       Strengthening the public health system
## 21514                       Strengthening the public health system
## 21515                       Strengthening the public health system
## 21516                       Strengthening the public health system
## 21517                                      General recommendations
## 21518                                      General recommendations
## 21519                                      General recommendations
## 21520                                      General recommendations
## 21521                                      General recommendations
## 21522                                      General recommendations
## 21523        Additional health/documents requirements upon arrival
## 21524        Additional health/documents requirements upon arrival
## 21525        Additional health/documents requirements upon arrival
## 21526        Additional health/documents requirements upon arrival
## 21527        Additional health/documents requirements upon arrival
## 21528        Additional health/documents requirements upon arrival
## 21529                           Changes in prison-related policies
## 21530                           Changes in prison-related policies
## 21531                           Changes in prison-related policies
## 21532                           Changes in prison-related policies
## 21533                           Changes in prison-related policies
## 21534                           Changes in prison-related policies
## 21535                                  Surveillance and monitoring
## 21536                                  Surveillance and monitoring
## 21537                                  Surveillance and monitoring
## 21538                                  Surveillance and monitoring
## 21539                                  Surveillance and monitoring
## 21540                                  Surveillance and monitoring
## 21541                        Other public health measures enforced
## 21542                        Other public health measures enforced
## 21543                        Other public health measures enforced
## 21544                        Other public health measures enforced
## 21545                        Other public health measures enforced
## 21546                        Other public health measures enforced
## 21547                                            Economic measures
## 21548                                            Economic measures
## 21549                                            Economic measures
## 21550                                            Economic measures
## 21551                                            Economic measures
## 21552                                            Economic measures
## 21553                                            Economic measures
## 21554                                            Economic measures
## 21555                                            Economic measures
## 21556                                            Economic measures
## 21557                                            Economic measures
## 21558                                            Economic measures
## 21559                                            Economic measures
## 21560                                            Economic measures
## 21561                                            Economic measures
## 21562                                            Economic measures
## 21563                                            Economic measures
## 21564                                            Economic measures
## 21565                                            Economic measures
## 21566                                            Economic measures
## 21567                                            Economic measures
## 21568                                            Economic measures
## 21569                                            Economic measures
## 21570                                            Economic measures
## 21571                                          Awareness campaigns
## 21572                                          Awareness campaigns
## 21573                                          Awareness campaigns
## 21574                                          Awareness campaigns
## 21575                                          Awareness campaigns
## 21576                                          Awareness campaigns
## 21577                       Strengthening the public health system
## 21578                       Strengthening the public health system
## 21579                       Strengthening the public health system
## 21580                       Strengthening the public health system
## 21581                       Strengthening the public health system
## 21582                       Strengthening the public health system
## 21583                                            Economic measures
## 21584                                            Economic measures
## 21585                                            Economic measures
## 21586                                            Economic measures
## 21587                                            Economic measures
## 21588                                            Economic measures
## 21589                       Strengthening the public health system
## 21590                       Strengthening the public health system
## 21591                       Strengthening the public health system
## 21592                       Strengthening the public health system
## 21593                       Strengthening the public health system
## 21594                       Strengthening the public health system
## 21595                                               Testing policy
## 21596                                               Testing policy
## 21597                                               Testing policy
## 21598                                               Testing policy
## 21599                                               Testing policy
## 21600                                               Testing policy
## 21601             Psychological assistance and medical social work
## 21602             Psychological assistance and medical social work
## 21603             Psychological assistance and medical social work
## 21604             Psychological assistance and medical social work
## 21605             Psychological assistance and medical social work
## 21606             Psychological assistance and medical social work
## 21607                       Strengthening the public health system
## 21608                       Strengthening the public health system
## 21609                       Strengthening the public health system
## 21610                       Strengthening the public health system
## 21611                       Strengthening the public health system
## 21612                       Strengthening the public health system
## 21613                       Strengthening the public health system
## 21614                       Strengthening the public health system
## 21615                       Strengthening the public health system
## 21616                       Strengthening the public health system
## 21617                       Strengthening the public health system
## 21618                       Strengthening the public health system
## 21619                       Strengthening the public health system
## 21620                       Strengthening the public health system
## 21621                       Strengthening the public health system
## 21622                       Strengthening the public health system
## 21623                       Strengthening the public health system
## 21624                       Strengthening the public health system
## 21625                       Strengthening the public health system
## 21626                       Strengthening the public health system
## 21627                       Strengthening the public health system
## 21628                       Strengthening the public health system
## 21629                       Strengthening the public health system
## 21630                       Strengthening the public health system
## 21631                                      General recommendations
## 21632                                      General recommendations
## 21633                                      General recommendations
## 21634                                      General recommendations
## 21635                                      General recommendations
## 21636                                      General recommendations
## 21637                                               testing policy
## 21638                                               testing policy
## 21639                                               testing policy
## 21640                                               testing policy
## 21641                                               testing policy
## 21642                                               testing policy
## 21643                       Strengthening the public health system
## 21644                       Strengthening the public health system
## 21645                       Strengthening the public health system
## 21646                       Strengthening the public health system
## 21647                       Strengthening the public health system
## 21648                       Strengthening the public health system
## 21649                                      limit public gatherings
## 21650                                      limit public gatherings
## 21651                                      limit public gatherings
## 21652                                      limit public gatherings
## 21653                                      limit public gatherings
## 21654                                      limit public gatherings
## 21655                                            Economic measures
## 21656                                            Economic measures
## 21657                                            Economic measures
## 21658                                            Economic measures
## 21659                                            Economic measures
## 21660                                            Economic measures
## 21661                                            Economic measures
## 21662                                            Economic measures
## 21663                                            Economic measures
## 21664                                            Economic measures
## 21665                                            Economic measures
## 21666                                            Economic measures
## 21667                                            Economic measures
## 21668                                            Economic measures
## 21669                                            Economic measures
## 21670                                            Economic measures
## 21671                                            Economic measures
## 21672                                            Economic measures
## 21673                                            Economic measures
## 21674                                            Economic measures
## 21675                                            Economic measures
## 21676                                            Economic measures
## 21677                                            Economic measures
## 21678                                            Economic measures
## 21679                                      General recommendations
## 21680                                      General recommendations
## 21681                                      General recommendations
## 21682                                      General recommendations
## 21683                                      General recommendations
## 21684                                      General recommendations
## 21685                       Strengthening the public health system
## 21686                       Strengthening the public health system
## 21687                       Strengthening the public health system
## 21688                       Strengthening the public health system
## 21689                       Strengthening the public health system
## 21690                       Strengthening the public health system
## 21691                                      General recommendations
## 21692                                      General recommendations
## 21693                                      General recommendations
## 21694                                      General recommendations
## 21695                                      General recommendations
## 21696                                      General recommendations
## 21697                       Strengthening the public health system
## 21698                       Strengthening the public health system
## 21699                       Strengthening the public health system
## 21700                       Strengthening the public health system
## 21701                       Strengthening the public health system
## 21702                       Strengthening the public health system
## 21703                                               Testing policy
## 21704                                               Testing policy
## 21705                                               Testing policy
## 21706                                               Testing policy
## 21707                                               Testing policy
## 21708                                               Testing policy
## 21709                       strengthening the public health system
## 21710                       strengthening the public health system
## 21711                       strengthening the public health system
## 21712                       strengthening the public health system
## 21713                       strengthening the public health system
## 21714                       strengthening the public health system
## 21715                                            Economic measures
## 21716                                            Economic measures
## 21717                                            Economic measures
## 21718                                            Economic measures
## 21719                                            Economic measures
## 21720                                            Economic measures
## 21721                                            Economic measures
## 21722                                            Economic measures
## 21723                                            Economic measures
## 21724                                            Economic measures
## 21725                                            Economic measures
## 21726                                            Economic measures
## 21727                                          Awareness campaigns
## 21728                                          Awareness campaigns
## 21729                                          Awareness campaigns
## 21730                                          Awareness campaigns
## 21731                                          Awareness campaigns
## 21732                                          Awareness campaigns
## 21733                        Other public health measures enforced
## 21734                        Other public health measures enforced
## 21735                        Other public health measures enforced
## 21736                        Other public health measures enforced
## 21737                        Other public health measures enforced
## 21738                        Other public health measures enforced
## 21739                                            Economic measures
## 21740                                            Economic measures
## 21741                                            Economic measures
## 21742                                            Economic measures
## 21743                                            Economic measures
## 21744                                            Economic measures
## 21745                                            Economic measures
## 21746                                            Economic measures
## 21747                                            Economic measures
## 21748                                            Economic measures
## 21749                                            Economic measures
## 21750                                            Economic measures
## 21751                       Strengthening the public health system
## 21752                       Strengthening the public health system
## 21753                       Strengthening the public health system
## 21754                       Strengthening the public health system
## 21755                       Strengthening the public health system
## 21756                       Strengthening the public health system
## 21757                                            Economic measures
## 21758                                            Economic measures
## 21759                                            Economic measures
## 21760                                            Economic measures
## 21761                                            Economic measures
## 21762                                            Economic measures
## 21763                                            Economic measures
## 21764                                            Economic measures
## 21765                                            Economic measures
## 21766                                            Economic measures
## 21767                                            Economic measures
## 21768                                            Economic measures
## 21769                    Closure of businesses and public services
## 21770                    Closure of businesses and public services
## 21771                    Closure of businesses and public services
## 21772                    Closure of businesses and public services
## 21773                    Closure of businesses and public services
## 21774                    Closure of businesses and public services
## 21775                            Isolation and quarantine policies
## 21776                            Isolation and quarantine policies
## 21777                            Isolation and quarantine policies
## 21778                            Isolation and quarantine policies
## 21779                            Isolation and quarantine policies
## 21780                            Isolation and quarantine policies
## 21781           Health screenings in airports and border crossings
## 21782           Health screenings in airports and border crossings
## 21783           Health screenings in airports and border crossings
## 21784           Health screenings in airports and border crossings
## 21785           Health screenings in airports and border crossings
## 21786           Health screenings in airports and border crossings
## 21787                                      Limit public gatherings
## 21788                                      Limit public gatherings
## 21789                                      Limit public gatherings
## 21790                                      Limit public gatherings
## 21791                                      Limit public gatherings
## 21792                                      Limit public gatherings
## 21793                                             Schools closure 
## 21794                                             Schools closure 
## 21795                                             Schools closure 
## 21796                                             Schools closure 
## 21797                                             Schools closure 
## 21798                                             Schools closure 
## 21799                                      Limit public gatherings
## 21800                                      Limit public gatherings
## 21801                                      Limit public gatherings
## 21802                                      Limit public gatherings
## 21803                                      Limit public gatherings
## 21804                                      Limit public gatherings
## 21805                    Closure of businesses and public services
## 21806                    Closure of businesses and public services
## 21807                    Closure of businesses and public services
## 21808                    Closure of businesses and public services
## 21809                    Closure of businesses and public services
## 21810                    Closure of businesses and public services
## 21811                                               Border checks 
## 21812                                               Border checks 
## 21813                                               Border checks 
## 21814                                               Border checks 
## 21815                                               Border checks 
## 21816                                               Border checks 
## 21817                                      General recommendations
## 21818                                      General recommendations
## 21819                                      General recommendations
## 21820                                      General recommendations
## 21821                                      General recommendations
## 21822                                      General recommendations
## 21823                                             Schools closure 
## 21824                                             Schools closure 
## 21825                                             Schools closure 
## 21826                                             Schools closure 
## 21827                                             Schools closure 
## 21828                                             Schools closure 
## 21829                    Closure of businesses and public services
## 21830                    Closure of businesses and public services
## 21831                    Closure of businesses and public services
## 21832                    Closure of businesses and public services
## 21833                    Closure of businesses and public services
## 21834                    Closure of businesses and public services
## 21835                                      Limit public gatherings
## 21836                                      Limit public gatherings
## 21837                                      Limit public gatherings
## 21838                                      Limit public gatherings
## 21839                                      Limit public gatherings
## 21840                                      Limit public gatherings
## 21841                                      General recommendations
## 21842                                      General recommendations
## 21843                                      General recommendations
## 21844                                      General recommendations
## 21845                                      General recommendations
## 21846                                      General recommendations
## 21847                                      General recommendations
## 21848                                      General recommendations
## 21849                                      General recommendations
## 21850                                      General recommendations
## 21851                                      General recommendations
## 21852                                      General recommendations
## 21853                                            Economic measures
## 21854                                            Economic measures
## 21855                                            Economic measures
## 21856                                            Economic measures
## 21857                                            Economic measures
## 21858                                            Economic measures
## 21859                            Isolation and quarantine policies
## 21860                            Isolation and quarantine policies
## 21861                            Isolation and quarantine policies
## 21862                            Isolation and quarantine policies
## 21863                            Isolation and quarantine policies
## 21864                            Isolation and quarantine policies
## 21865                       Strengthening the public health system
## 21866                       Strengthening the public health system
## 21867                       Strengthening the public health system
## 21868                       Strengthening the public health system
## 21869                       Strengthening the public health system
## 21870                       Strengthening the public health system
## 21871 Emergency administrative structures activated or established
## 21872 Emergency administrative structures activated or established
## 21873 Emergency administrative structures activated or established
## 21874 Emergency administrative structures activated or established
## 21875 Emergency administrative structures activated or established
## 21876 Emergency administrative structures activated or established
## 21877 Emergency administrative structures activated or established
## 21878 Emergency administrative structures activated or established
## 21879 Emergency administrative structures activated or established
## 21880 Emergency administrative structures activated or established
## 21881 Emergency administrative structures activated or established
## 21882 Emergency administrative structures activated or established
## 21883                                            Economic measures
## 21884                                            Economic measures
## 21885                                            Economic measures
## 21886                                            Economic measures
## 21887                                            Economic measures
## 21888                                            Economic measures
## 21889                                            Economic measures
## 21890                                            Economic measures
## 21891                                            Economic measures
## 21892                                            Economic measures
## 21893                                            Economic measures
## 21894                                            Economic measures
## 21895                       strengthening the public health system
## 21896                       strengthening the public health system
## 21897                       strengthening the public health system
## 21898                       strengthening the public health system
## 21899                       strengthening the public health system
## 21900                       strengthening the public health system
## 21901                       strengthening the public health system
## 21902                       strengthening the public health system
## 21903                       strengthening the public health system
## 21904                       strengthening the public health system
## 21905                       strengthening the public health system
## 21906                       strengthening the public health system
## 21907                                      General recommendations
## 21908                                      General recommendations
## 21909                                      General recommendations
## 21910                                      General recommendations
## 21911                                      General recommendations
## 21912                                      General recommendations
## 21913                        Other public health measures enforced
## 21914                        Other public health measures enforced
## 21915                        Other public health measures enforced
## 21916                        Other public health measures enforced
## 21917                        Other public health measures enforced
## 21918                        Other public health measures enforced
## 21919 Emergency administrative structures activated or established
## 21920 Emergency administrative structures activated or established
## 21921 Emergency administrative structures activated or established
## 21922 Emergency administrative structures activated or established
## 21923 Emergency administrative structures activated or established
## 21924 Emergency administrative structures activated or established
## 21925                                      General recommendations
## 21926                                      General recommendations
## 21927                                      General recommendations
## 21928                                      General recommendations
## 21929                                      General recommendations
## 21930                                      General recommendations
## 21931                                      General recommendations
## 21932                                      General recommendations
## 21933                                      General recommendations
## 21934                                      General recommendations
## 21935                                      General recommendations
## 21936                                      General recommendations
## 21937                       strengthening the public health system
## 21938                       strengthening the public health system
## 21939                       strengthening the public health system
## 21940                       strengthening the public health system
## 21941                       strengthening the public health system
## 21942                       strengthening the public health system
## 21943                                            Economic measures
## 21944                                            Economic measures
## 21945                                            Economic measures
## 21946                                            Economic measures
## 21947                                            Economic measures
## 21948                                            Economic measures
## 21949                    Closure of businesses and public services
## 21950                    Closure of businesses and public services
## 21951                    Closure of businesses and public services
## 21952                    Closure of businesses and public services
## 21953                    Closure of businesses and public services
## 21954                    Closure of businesses and public services
## 21955                    Closure of businesses and public services
## 21956                    Closure of businesses and public services
## 21957                    Closure of businesses and public services
## 21958                    Closure of businesses and public services
## 21959                    Closure of businesses and public services
## 21960                    Closure of businesses and public services
## 21961                    Closure of businesses and public services
## 21962                    Closure of businesses and public services
## 21963                    Closure of businesses and public services
## 21964                    Closure of businesses and public services
## 21965                    Closure of businesses and public services
## 21966                    Closure of businesses and public services
## 21967                    Closure of businesses and public services
## 21968                    Closure of businesses and public services
## 21969                    Closure of businesses and public services
## 21970                    Closure of businesses and public services
## 21971                    Closure of businesses and public services
## 21972                    Closure of businesses and public services
## 21973                                      General recommendations
## 21974                                      General recommendations
## 21975                                      General recommendations
## 21976                                      General recommendations
## 21977                                      General recommendations
## 21978                                      General recommendations
## 21979                                      General recommendations
## 21980                                      General recommendations
## 21981                                      General recommendations
## 21982                                      General recommendations
## 21983                                      General recommendations
## 21984                                      General recommendations
## 21985                                            Economic measures
## 21986                                            Economic measures
## 21987                                            Economic measures
## 21988                                            Economic measures
## 21989                                            Economic measures
## 21990                                            Economic measures
## 21991                                            Economic measures
## 21992                                            Economic measures
## 21993                                            Economic measures
## 21994                                            Economic measures
## 21995                                            Economic measures
## 21996                                            Economic measures
## 21997                                            Economic measures
## 21998                                            Economic measures
## 21999                                            Economic measures
## 22000                                            Economic measures
## 22001                                            Economic measures
## 22002                                            Economic measures
## 22003                                      General recommendations
## 22004                                      General recommendations
## 22005                                      General recommendations
## 22006                                      General recommendations
## 22007                                      General recommendations
## 22008                                      General recommendations
## 22009                       Strengthening the public health system
## 22010                       Strengthening the public health system
## 22011                       Strengthening the public health system
## 22012                       Strengthening the public health system
## 22013                       Strengthening the public health system
## 22014                       Strengthening the public health system
## 22015                        Other public health measures enforced
## 22016                        Other public health measures enforced
## 22017                        Other public health measures enforced
## 22018                        Other public health measures enforced
## 22019                        Other public health measures enforced
## 22020                        Other public health measures enforced
## 22021                                      Limit public gatherings
## 22022                                      Limit public gatherings
## 22023                                      Limit public gatherings
## 22024                                      Limit public gatherings
## 22025                                      Limit public gatherings
## 22026                                      Limit public gatherings
## 22027                                      Limit public gatherings
## 22028                                      Limit public gatherings
## 22029                                      Limit public gatherings
## 22030                                      Limit public gatherings
## 22031                                      Limit public gatherings
## 22032                                      Limit public gatherings
## 22033                                      Limit public gatherings
## 22034                                      Limit public gatherings
## 22035                                      Limit public gatherings
## 22036                                      Limit public gatherings
## 22037                                      Limit public gatherings
## 22038                                      Limit public gatherings
## 22039                                            Economic measures
## 22040                                            Economic measures
## 22041                                            Economic measures
## 22042                                            Economic measures
## 22043                                            Economic measures
## 22044                                            Economic measures
## 22045                                          Awareness campaigns
## 22046                                          Awareness campaigns
## 22047                                          Awareness campaigns
## 22048                                          Awareness campaigns
## 22049                                          Awareness campaigns
## 22050                                          Awareness campaigns
## 22051                       Strengthening the public health system
## 22052                       Strengthening the public health system
## 22053                       Strengthening the public health system
## 22054                       Strengthening the public health system
## 22055                       Strengthening the public health system
## 22056                       Strengthening the public health system
## 22057                           Changes in prison-related policies
## 22058                           Changes in prison-related policies
## 22059                           Changes in prison-related policies
## 22060                           Changes in prison-related policies
## 22061                           Changes in prison-related policies
## 22062                           Changes in prison-related policies
## 22063                           Changes in prison-related policies
## 22064                           Changes in prison-related policies
## 22065                           Changes in prison-related policies
## 22066                           Changes in prison-related policies
## 22067                           Changes in prison-related policies
## 22068                           Changes in prison-related policies
## 22069                                      General recommendations
## 22070                                      General recommendations
## 22071                                      General recommendations
## 22072                                      General recommendations
## 22073                                      General recommendations
## 22074                                      General recommendations
## 22075                                      General recommendations
## 22076                                      General recommendations
## 22077                                      General recommendations
## 22078                                      General recommendations
## 22079                                      General recommendations
## 22080                                      General recommendations
## 22081                                      Limit public gatherings
## 22082                                      Limit public gatherings
## 22083                                      Limit public gatherings
## 22084                                      Limit public gatherings
## 22085                                      Limit public gatherings
## 22086                                      Limit public gatherings
## 22087                        Other public health measures enforced
## 22088                        Other public health measures enforced
## 22089                        Other public health measures enforced
## 22090                        Other public health measures enforced
## 22091                        Other public health measures enforced
## 22092                        Other public health measures enforced
## 22093                                            Economic measures
## 22094                                            Economic measures
## 22095                                            Economic measures
## 22096                                            Economic measures
## 22097                                            Economic measures
## 22098                                            Economic measures
## 22099                            Isolation and quarantine policies
## 22100                            Isolation and quarantine policies
## 22101                            Isolation and quarantine policies
## 22102                            Isolation and quarantine policies
## 22103                            Isolation and quarantine policies
## 22104                            Isolation and quarantine policies
## 22105                    Closure of businesses and public services
## 22106                    Closure of businesses and public services
## 22107                    Closure of businesses and public services
## 22108                    Closure of businesses and public services
## 22109                    Closure of businesses and public services
## 22110                    Closure of businesses and public services
## 22111 Emergency administrative structures activated or established
## 22112 Emergency administrative structures activated or established
## 22113 Emergency administrative structures activated or established
## 22114 Emergency administrative structures activated or established
## 22115 Emergency administrative structures activated or established
## 22116 Emergency administrative structures activated or established
## 22117                        Other public health measures enforced
## 22118                        Other public health measures enforced
## 22119                        Other public health measures enforced
## 22120                        Other public health measures enforced
## 22121                        Other public health measures enforced
## 22122                        Other public health measures enforced
## 22123                                          Awareness campaigns
## 22124                                          Awareness campaigns
## 22125                                          Awareness campaigns
## 22126                                          Awareness campaigns
## 22127                                          Awareness campaigns
## 22128                                          Awareness campaigns
## 22129                    Closure of businesses and public services
## 22130                    Closure of businesses and public services
## 22131                    Closure of businesses and public services
## 22132                    Closure of businesses and public services
## 22133                    Closure of businesses and public services
## 22134                    Closure of businesses and public services
## 22135                                            Economic measures
## 22136                                            Economic measures
## 22137                                            Economic measures
## 22138                                            Economic measures
## 22139                                            Economic measures
## 22140                                            Economic measures
## 22141                            Isolation and quarantine policies
## 22142                            Isolation and quarantine policies
## 22143                            Isolation and quarantine policies
## 22144                            Isolation and quarantine policies
## 22145                            Isolation and quarantine policies
## 22146                            Isolation and quarantine policies
## 22147                                               Testing policy
## 22148                                               Testing policy
## 22149                                               Testing policy
## 22150                                               Testing policy
## 22151                                               Testing policy
## 22152                                               Testing policy
## 22153                       strengthening the public health system
## 22154                       strengthening the public health system
## 22155                       strengthening the public health system
## 22156                       strengthening the public health system
## 22157                       strengthening the public health system
## 22158                       strengthening the public health system
## 22159                                            Economic measures
## 22160                                            Economic measures
## 22161                                            Economic measures
## 22162                                            Economic measures
## 22163                                            Economic measures
## 22164                                            Economic measures
## 22165                       Strengthening the public health system
## 22166                       Strengthening the public health system
## 22167                       Strengthening the public health system
## 22168                       Strengthening the public health system
## 22169                       Strengthening the public health system
## 22170                       Strengthening the public health system
## 22171                                      Limit public gatherings
## 22172                                      Limit public gatherings
## 22173                                      Limit public gatherings
## 22174                                      Limit public gatherings
## 22175                                      Limit public gatherings
## 22176                                      Limit public gatherings
## 22177                        Other public health measures enforced
## 22178                        Other public health measures enforced
## 22179                        Other public health measures enforced
## 22180                        Other public health measures enforced
## 22181                        Other public health measures enforced
## 22182                        Other public health measures enforced
## 22183                                      General recommendations
## 22184                                      General recommendations
## 22185                                      General recommendations
## 22186                                      General recommendations
## 22187                                      General recommendations
## 22188                                      General recommendations
## 22189                                               Testing policy
## 22190                                               Testing policy
## 22191                                               Testing policy
## 22192                                               Testing policy
## 22193                                               Testing policy
## 22194                                               Testing policy
## 22195                                            Economic measures
## 22196                                            Economic measures
## 22197                                            Economic measures
## 22198                                            Economic measures
## 22199                                            Economic measures
## 22200                                            Economic measures
## 22201                                      General recommendations
## 22202                                      General recommendations
## 22203                                      General recommendations
## 22204                                      General recommendations
## 22205                                      General recommendations
## 22206                                      General recommendations
## 22207                    Closure of businesses and public services
## 22208                    Closure of businesses and public services
## 22209                    Closure of businesses and public services
## 22210                    Closure of businesses and public services
## 22211                    Closure of businesses and public services
## 22212                    Closure of businesses and public services
## 22213                    Closure of businesses and public services
## 22214                    Closure of businesses and public services
## 22215                    Closure of businesses and public services
## 22216                    Closure of businesses and public services
## 22217                    Closure of businesses and public services
## 22218                    Closure of businesses and public services
## 22219                                             Schools closure 
## 22220                                             Schools closure 
## 22221                                             Schools closure 
## 22222                                             Schools closure 
## 22223                                             Schools closure 
## 22224                                             Schools closure 
## 22225                                             Schools closure 
## 22226                                             Schools closure 
## 22227                                             Schools closure 
## 22228                                             Schools closure 
## 22229                                             Schools closure 
## 22230                                             Schools closure 
## 22231                                      Limit public gatherings
## 22232                                      Limit public gatherings
## 22233                                      Limit public gatherings
## 22234                                      Limit public gatherings
## 22235                                      Limit public gatherings
## 22236                                      Limit public gatherings
## 22237                    Closure of businesses and public services
## 22238                    Closure of businesses and public services
## 22239                    Closure of businesses and public services
## 22240                    Closure of businesses and public services
## 22241                    Closure of businesses and public services
## 22242                    Closure of businesses and public services
## 22243                    Closure of businesses and public services
## 22244                    Closure of businesses and public services
## 22245                    Closure of businesses and public services
## 22246                    Closure of businesses and public services
## 22247                    Closure of businesses and public services
## 22248                    Closure of businesses and public services
## 22249                                             Schools closure 
## 22250                                             Schools closure 
## 22251                                             Schools closure 
## 22252                                             Schools closure 
## 22253                                             Schools closure 
## 22254                                             Schools closure 
## 22255                                            Economic measures
## 22256                                            Economic measures
## 22257                                            Economic measures
## 22258                                            Economic measures
## 22259                                            Economic measures
## 22260                                            Economic measures
## 22261                        Other public health measures enforced
## 22262                        Other public health measures enforced
## 22263                        Other public health measures enforced
## 22264                        Other public health measures enforced
## 22265                        Other public health measures enforced
## 22266                        Other public health measures enforced
## 22267                                            Economic measures
## 22268                                            Economic measures
## 22269                                            Economic measures
## 22270                                            Economic measures
## 22271                                            Economic measures
## 22272                                            Economic measures
## 22273                                      General recommendations
## 22274                                      General recommendations
## 22275                                      General recommendations
## 22276                                      General recommendations
## 22277                                      General recommendations
## 22278                                      General recommendations
## 22279                        Other public health measures enforced
## 22280                        Other public health measures enforced
## 22281                        Other public health measures enforced
## 22282                        Other public health measures enforced
## 22283                        Other public health measures enforced
## 22284                        Other public health measures enforced
## 22285                                      General recommendations
## 22286                                      General recommendations
## 22287                                      General recommendations
## 22288                                      General recommendations
## 22289                                      General recommendations
## 22290                                      General recommendations
## 22291                        Other public health measures enforced
## 22292                        Other public health measures enforced
## 22293                        Other public health measures enforced
## 22294                        Other public health measures enforced
## 22295                        Other public health measures enforced
## 22296                        Other public health measures enforced
## 22297                                            Economic measures
## 22298                                            Economic measures
## 22299                                            Economic measures
## 22300                                            Economic measures
## 22301                                            Economic measures
## 22302                                            Economic measures
## 22303                            Isolation and quarantine policies
## 22304                            Isolation and quarantine policies
## 22305                            Isolation and quarantine policies
## 22306                            Isolation and quarantine policies
## 22307                            Isolation and quarantine policies
## 22308                            Isolation and quarantine policies
## 22309                                            Economic measures
## 22310                                            Economic measures
## 22311                                            Economic measures
## 22312                                            Economic measures
## 22313                                            Economic measures
## 22314                                            Economic measures
## 22315                                               Testing policy
## 22316                                               Testing policy
## 22317                                               Testing policy
## 22318                                               Testing policy
## 22319                                               Testing policy
## 22320                                               Testing policy
## 22321                                            Economic measures
## 22322                                            Economic measures
## 22323                                            Economic measures
## 22324                                            Economic measures
## 22325                                            Economic measures
## 22326                                            Economic measures
## 22327                                            Economic measures
## 22328                                            Economic measures
## 22329                                            Economic measures
## 22330                                            Economic measures
## 22331                                            Economic measures
## 22332                                            Economic measures
## 22333                                            Economic measures
## 22334                                            Economic measures
## 22335                                            Economic measures
## 22336                                            Economic measures
## 22337                                            Economic measures
## 22338                                            Economic measures
## 22339                                              Border closure 
## 22340                                              Border closure 
## 22341                                              Border closure 
## 22342                                              Border closure 
## 22343                                              Border closure 
## 22344                                              Border closure 
## 22345                                               Testing policy
## 22346                                               Testing policy
## 22347                                               Testing policy
## 22348                                               Testing policy
## 22349                                               Testing policy
## 22350                                               Testing policy
## 22351                    Closure of businesses and public services
## 22352                    Closure of businesses and public services
## 22353                    Closure of businesses and public services
## 22354                    Closure of businesses and public services
## 22355                    Closure of businesses and public services
## 22356                    Closure of businesses and public services
## 22357                                      General recommendations
## 22358                                      General recommendations
## 22359                                      General recommendations
## 22360                                      General recommendations
## 22361                                      General recommendations
## 22362                                      General recommendations
## 22363                        Other public health measures enforced
## 22364                        Other public health measures enforced
## 22365                        Other public health measures enforced
## 22366                        Other public health measures enforced
## 22367                        Other public health measures enforced
## 22368                        Other public health measures enforced
## 22369                    Closure of businesses and public services
## 22370                    Closure of businesses and public services
## 22371                    Closure of businesses and public services
## 22372                    Closure of businesses and public services
## 22373                    Closure of businesses and public services
## 22374                    Closure of businesses and public services
## 22375                    Closure of businesses and public services
## 22376                    Closure of businesses and public services
## 22377                    Closure of businesses and public services
## 22378                    Closure of businesses and public services
## 22379                    Closure of businesses and public services
## 22380                    Closure of businesses and public services
## 22381                        Other public health measures enforced
## 22382                        Other public health measures enforced
## 22383                        Other public health measures enforced
## 22384                        Other public health measures enforced
## 22385                        Other public health measures enforced
## 22386                        Other public health measures enforced
## 22387                       Strengthening the public health system
## 22388                       Strengthening the public health system
## 22389                       Strengthening the public health system
## 22390                       Strengthening the public health system
## 22391                       Strengthening the public health system
## 22392                       Strengthening the public health system
## 22393                        Other public health measures enforced
## 22394                        Other public health measures enforced
## 22395                        Other public health measures enforced
## 22396                        Other public health measures enforced
## 22397                        Other public health measures enforced
## 22398                        Other public health measures enforced
## 22399                    Closure of businesses and public services
## 22400                    Closure of businesses and public services
## 22401                    Closure of businesses and public services
## 22402                    Closure of businesses and public services
## 22403                    Closure of businesses and public services
## 22404                    Closure of businesses and public services
## 22405                        Other public health measures enforced
## 22406                        Other public health measures enforced
## 22407                        Other public health measures enforced
## 22408                        Other public health measures enforced
## 22409                        Other public health measures enforced
## 22410                        Other public health measures enforced
## 22411                                            Economic measures
## 22412                                            Economic measures
## 22413                                            Economic measures
## 22414                                            Economic measures
## 22415                                            Economic measures
## 22416                                            Economic measures
## 22417                                      General recommendations
## 22418                                      General recommendations
## 22419                                      General recommendations
## 22420                                      General recommendations
## 22421                                      General recommendations
## 22422                                      General recommendations
## 22423                                      General recommendations
## 22424                                      General recommendations
## 22425                                      General recommendations
## 22426                                      General recommendations
## 22427                                      General recommendations
## 22428                                      General recommendations
## 22429                                            Economic measures
## 22430                                            Economic measures
## 22431                                            Economic measures
## 22432                                            Economic measures
## 22433                                            Economic measures
## 22434                                            Economic measures
## 22435                    Closure of businesses and public services
## 22436                    Closure of businesses and public services
## 22437                    Closure of businesses and public services
## 22438                    Closure of businesses and public services
## 22439                    Closure of businesses and public services
## 22440                    Closure of businesses and public services
## 22441                                          Awareness campaigns
## 22442                                          Awareness campaigns
## 22443                                          Awareness campaigns
## 22444                                          Awareness campaigns
## 22445                                          Awareness campaigns
## 22446                                          Awareness campaigns
## 22447                                            Economic measures
## 22448                                            Economic measures
## 22449                                            Economic measures
## 22450                                            Economic measures
## 22451                                            Economic measures
## 22452                                            Economic measures
## 22453                                      Limit public gatherings
## 22454                                      Limit public gatherings
## 22455                                      Limit public gatherings
## 22456                                      Limit public gatherings
## 22457                                      Limit public gatherings
## 22458                                      Limit public gatherings
## 22459                                      General recommendations
## 22460                                      General recommendations
## 22461                                      General recommendations
## 22462                                      General recommendations
## 22463                                      General recommendations
## 22464                                      General recommendations
## 22465                    Closure of businesses and public services
## 22466                    Closure of businesses and public services
## 22467                    Closure of businesses and public services
## 22468                    Closure of businesses and public services
## 22469                    Closure of businesses and public services
## 22470                    Closure of businesses and public services
## 22471                                              Border closure 
## 22472                                              Border closure 
## 22473                                              Border closure 
## 22474                                              Border closure 
## 22475                                              Border closure 
## 22476                                              Border closure 
## 22477                                              Border closure 
## 22478                                              Border closure 
## 22479                                              Border closure 
## 22480                                              Border closure 
## 22481                                              Border closure 
## 22482                                              Border closure 
## 22483                                  Surveillance and monitoring
## 22484                                  Surveillance and monitoring
## 22485                                  Surveillance and monitoring
## 22486                                  Surveillance and monitoring
## 22487                                  Surveillance and monitoring
## 22488                                  Surveillance and monitoring
## 22489                    Closure of businesses and public services
## 22490                    Closure of businesses and public services
## 22491                    Closure of businesses and public services
## 22492                    Closure of businesses and public services
## 22493                    Closure of businesses and public services
## 22494                    Closure of businesses and public services
## 22495                                      Limit public gatherings
## 22496                                      Limit public gatherings
## 22497                                      Limit public gatherings
## 22498                                      Limit public gatherings
## 22499                                      Limit public gatherings
## 22500                                      Limit public gatherings
## 22501                                      Limit public gatherings
## 22502                                      Limit public gatherings
## 22503                                      Limit public gatherings
## 22504                                      Limit public gatherings
## 22505                                      Limit public gatherings
## 22506                                      Limit public gatherings
## 22507                                          Awareness campaigns
## 22508                                          Awareness campaigns
## 22509                                          Awareness campaigns
## 22510                                          Awareness campaigns
## 22511                                          Awareness campaigns
## 22512                                          Awareness campaigns
## 22513                                          Awareness campaigns
## 22514                                          Awareness campaigns
## 22515                                          Awareness campaigns
## 22516                                          Awareness campaigns
## 22517                                          Awareness campaigns
## 22518                                          Awareness campaigns
## 22519                    Closure of businesses and public services
## 22520                    Closure of businesses and public services
## 22521                    Closure of businesses and public services
## 22522                    Closure of businesses and public services
## 22523                    Closure of businesses and public services
## 22524                    Closure of businesses and public services
## 22525                                      Limit public gatherings
## 22526                                      Limit public gatherings
## 22527                                      Limit public gatherings
## 22528                                      Limit public gatherings
## 22529                                      Limit public gatherings
## 22530                                      Limit public gatherings
## 22531                                  Surveillance and monitoring
## 22532                                  Surveillance and monitoring
## 22533                                  Surveillance and monitoring
## 22534                                  Surveillance and monitoring
## 22535                                  Surveillance and monitoring
## 22536                                  Surveillance and monitoring
## 22537                                            Economic measures
## 22538                                            Economic measures
## 22539                                            Economic measures
## 22540                                            Economic measures
## 22541                                            Economic measures
## 22542                                            Economic measures
## 22543                                            Economic measures
## 22544                                            Economic measures
## 22545                                            Economic measures
## 22546                                            Economic measures
## 22547                                            Economic measures
## 22548                                            Economic measures
## 22549                                          Awareness campaigns
## 22550                                          Awareness campaigns
## 22551                                          Awareness campaigns
## 22552                                          Awareness campaigns
## 22553                                          Awareness campaigns
## 22554                                          Awareness campaigns
## 22555                       Strengthening the public health system
## 22556                       Strengthening the public health system
## 22557                       Strengthening the public health system
## 22558                       Strengthening the public health system
## 22559                       Strengthening the public health system
## 22560                       Strengthening the public health system
## 22561                        Other public health measures enforced
## 22562                        Other public health measures enforced
## 22563                        Other public health measures enforced
## 22564                        Other public health measures enforced
## 22565                        Other public health measures enforced
## 22566                        Other public health measures enforced
## 22567                            Isolation and quarantine policies
## 22568                            Isolation and quarantine policies
## 22569                            Isolation and quarantine policies
## 22570                            Isolation and quarantine policies
## 22571                            Isolation and quarantine policies
## 22572                            Isolation and quarantine policies
## 22573                                            Economic measures
## 22574                                            Economic measures
## 22575                                            Economic measures
## 22576                                            Economic measures
## 22577                                            Economic measures
## 22578                                            Economic measures
## 22579           Health screenings in airports and border crossings
## 22580           Health screenings in airports and border crossings
## 22581           Health screenings in airports and border crossings
## 22582           Health screenings in airports and border crossings
## 22583           Health screenings in airports and border crossings
## 22584           Health screenings in airports and border crossings
## 22585                             International flights suspension
## 22586                             International flights suspension
## 22587                             International flights suspension
## 22588                             International flights suspension
## 22589                             International flights suspension
## 22590                             International flights suspension
## 22591                       Strengthening the public health system
## 22592                       Strengthening the public health system
## 22593                       Strengthening the public health system
## 22594                       Strengthening the public health system
## 22595                       Strengthening the public health system
## 22596                       Strengthening the public health system
## 22597                                              Border closure 
## 22598                                              Border closure 
## 22599                                              Border closure 
## 22600                                              Border closure 
## 22601                                              Border closure 
## 22602                                              Border closure 
## 22603                                             Schools closure 
## 22604                                             Schools closure 
## 22605                                             Schools closure 
## 22606                                             Schools closure 
## 22607                                             Schools closure 
## 22608                                             Schools closure 
## 22609                    Closure of businesses and public services
## 22610                    Closure of businesses and public services
## 22611                    Closure of businesses and public services
## 22612                    Closure of businesses and public services
## 22613                    Closure of businesses and public services
## 22614                    Closure of businesses and public services
## 22615                                             Partial lockdown
## 22616                                             Partial lockdown
## 22617                                             Partial lockdown
## 22618                                             Partial lockdown
## 22619                                             Partial lockdown
## 22620                                             Partial lockdown
## 22621                                             Partial lockdown
## 22622                                             Partial lockdown
## 22623                                             Partial lockdown
## 22624                                             Partial lockdown
## 22625                                             Partial lockdown
## 22626                                             Partial lockdown
## 22627                                             Partial lockdown
## 22628                                             Partial lockdown
## 22629                                             Partial lockdown
## 22630                                             Partial lockdown
## 22631                                             Partial lockdown
## 22632                                             Partial lockdown
## 22633                        Other public health measures enforced
## 22634                        Other public health measures enforced
## 22635                        Other public health measures enforced
## 22636                        Other public health measures enforced
## 22637                        Other public health measures enforced
## 22638                        Other public health measures enforced
## 22639                                               Testing policy
## 22640                                               Testing policy
## 22641                                               Testing policy
## 22642                                               Testing policy
## 22643                                               Testing policy
## 22644                                               Testing policy
## 22645                                      Limit public gatherings
## 22646                                      Limit public gatherings
## 22647                                      Limit public gatherings
## 22648                                      Limit public gatherings
## 22649                                      Limit public gatherings
## 22650                                      Limit public gatherings
## 22651                                               Testing policy
## 22652                                               Testing policy
## 22653                                               Testing policy
## 22654                                               Testing policy
## 22655                                               Testing policy
## 22656                                               Testing policy
## 22657           Health screenings in airports and border crossings
## 22658           Health screenings in airports and border crossings
## 22659           Health screenings in airports and border crossings
## 22660           Health screenings in airports and border crossings
## 22661           Health screenings in airports and border crossings
## 22662           Health screenings in airports and border crossings
## 22663                                          Awareness campaigns
## 22664                                          Awareness campaigns
## 22665                                          Awareness campaigns
## 22666                                          Awareness campaigns
## 22667                                          Awareness campaigns
## 22668                                          Awareness campaigns
## 22669                                  Surveillance and monitoring
## 22670                                  Surveillance and monitoring
## 22671                                  Surveillance and monitoring
## 22672                                  Surveillance and monitoring
## 22673                                  Surveillance and monitoring
## 22674                                  Surveillance and monitoring
## 22675                                          Awareness campaigns
## 22676                                          Awareness campaigns
## 22677                                          Awareness campaigns
## 22678                                          Awareness campaigns
## 22679                                          Awareness campaigns
## 22680                                          Awareness campaigns
## 22681                       Strengthening the public health system
## 22682                       Strengthening the public health system
## 22683                       Strengthening the public health system
## 22684                       Strengthening the public health system
## 22685                       Strengthening the public health system
## 22686                       Strengthening the public health system
## 22687                       Strengthening the public health system
## 22688                       Strengthening the public health system
## 22689                       Strengthening the public health system
## 22690                       Strengthening the public health system
## 22691                       Strengthening the public health system
## 22692                       Strengthening the public health system
## 22693                       Strengthening the public health system
## 22694                       Strengthening the public health system
## 22695                       Strengthening the public health system
## 22696                       Strengthening the public health system
## 22697                       Strengthening the public health system
## 22698                       Strengthening the public health system
## 22699                                      General recommendations
## 22700                                      General recommendations
## 22701                                      General recommendations
## 22702                                      General recommendations
## 22703                                      General recommendations
## 22704                                      General recommendations
## 22705                                      General recommendations
## 22706                                      General recommendations
## 22707                                      General recommendations
## 22708                                      General recommendations
## 22709                                      General recommendations
## 22710                                      General recommendations
## 22711                                      Limit public gatherings
## 22712                                      Limit public gatherings
## 22713                                      Limit public gatherings
## 22714                                      Limit public gatherings
## 22715                                      Limit public gatherings
## 22716                                      Limit public gatherings
## 22717                                      General recommendations
## 22718                                      General recommendations
## 22719                                      General recommendations
## 22720                                      General recommendations
## 22721                                      General recommendations
## 22722                                      General recommendations
## 22723                                            Economic measures
## 22724                                            Economic measures
## 22725                                            Economic measures
## 22726                                            Economic measures
## 22727                                            Economic measures
## 22728                                            Economic measures
## 22729                                      Limit public gatherings
## 22730                                      Limit public gatherings
## 22731                                      Limit public gatherings
## 22732                                      Limit public gatherings
## 22733                                      Limit public gatherings
## 22734                                      Limit public gatherings
## 22735                Requirement to wear protective gear in public
## 22736                Requirement to wear protective gear in public
## 22737                Requirement to wear protective gear in public
## 22738                Requirement to wear protective gear in public
## 22739                Requirement to wear protective gear in public
## 22740                Requirement to wear protective gear in public
## 22741                                  Surveillance and monitoring
## 22742                                  Surveillance and monitoring
## 22743                                  Surveillance and monitoring
## 22744                                  Surveillance and monitoring
## 22745                                  Surveillance and monitoring
## 22746                                  Surveillance and monitoring
## 22747                                             Partial lockdown
## 22748                                             Partial lockdown
## 22749                                             Partial lockdown
## 22750                                             Partial lockdown
## 22751                                             Partial lockdown
## 22752                                             Partial lockdown
## 22753                                              Border closure 
## 22754                                              Border closure 
## 22755                                              Border closure 
## 22756                                              Border closure 
## 22757                                              Border closure 
## 22758                                              Border closure 
## 22759                                             Partial lockdown
## 22760                                             Partial lockdown
## 22761                                             Partial lockdown
## 22762                                             Partial lockdown
## 22763                                             Partial lockdown
## 22764                                             Partial lockdown
## 22765                                  Surveillance and monitoring
## 22766                                  Surveillance and monitoring
## 22767                                  Surveillance and monitoring
## 22768                                  Surveillance and monitoring
## 22769                                  Surveillance and monitoring
## 22770                                  Surveillance and monitoring
## 22771                                               Testing policy
## 22772                                               Testing policy
## 22773                                               Testing policy
## 22774                                               Testing policy
## 22775                                               Testing policy
## 22776                                               Testing policy
## 22777                                              Border closure 
## 22778                                              Border closure 
## 22779                                              Border closure 
## 22780                                              Border closure 
## 22781                                              Border closure 
## 22782                                              Border closure 
## 22783                Requirement to wear protective gear in public
## 22784                Requirement to wear protective gear in public
## 22785                Requirement to wear protective gear in public
## 22786                Requirement to wear protective gear in public
## 22787                Requirement to wear protective gear in public
## 22788                Requirement to wear protective gear in public
## 22789                                             Partial lockdown
## 22790                                             Partial lockdown
## 22791                                             Partial lockdown
## 22792                                             Partial lockdown
## 22793                                             Partial lockdown
## 22794                                             Partial lockdown
## 22795                                             Partial lockdown
## 22796                                             Partial lockdown
## 22797                                             Partial lockdown
## 22798                                             Partial lockdown
## 22799                                             Partial lockdown
## 22800                                             Partial lockdown
## 22801                    Closure of businesses and public services
## 22802                    Closure of businesses and public services
## 22803                    Closure of businesses and public services
## 22804                    Closure of businesses and public services
## 22805                    Closure of businesses and public services
## 22806                    Closure of businesses and public services
## 22807                                      Limit public gatherings
## 22808                                      Limit public gatherings
## 22809                                      Limit public gatherings
## 22810                                      Limit public gatherings
## 22811                                      Limit public gatherings
## 22812                                      Limit public gatherings
## 22813                                      Limit public gatherings
## 22814                                      Limit public gatherings
## 22815                                      Limit public gatherings
## 22816                                      Limit public gatherings
## 22817                                      Limit public gatherings
## 22818                                      Limit public gatherings
## 22819                                             Partial lockdown
## 22820                                             Partial lockdown
## 22821                                             Partial lockdown
## 22822                                             Partial lockdown
## 22823                                             Partial lockdown
## 22824                                             Partial lockdown
## 22825                                             Partial lockdown
## 22826                                             Partial lockdown
## 22827                                             Partial lockdown
## 22828                                             Partial lockdown
## 22829                                             Partial lockdown
## 22830                                             Partial lockdown
## 22831                                             Partial lockdown
## 22832                                             Partial lockdown
## 22833                                             Partial lockdown
## 22834                                             Partial lockdown
## 22835                                             Partial lockdown
## 22836                                             Partial lockdown
## 22837                                             Schools closure 
## 22838                                             Schools closure 
## 22839                                             Schools closure 
## 22840                                             Schools closure 
## 22841                                             Schools closure 
## 22842                                             Schools closure 
## 22843                                              Border closure 
## 22844                                              Border closure 
## 22845                                              Border closure 
## 22846                                              Border closure 
## 22847                                              Border closure 
## 22848                                              Border closure 
## 22849                                             Partial lockdown
## 22850                                             Partial lockdown
## 22851                                             Partial lockdown
## 22852                                             Partial lockdown
## 22853                                             Partial lockdown
## 22854                                             Partial lockdown
## 22855                       Strengthening the public health system
## 22856                       Strengthening the public health system
## 22857                       Strengthening the public health system
## 22858                       Strengthening the public health system
## 22859                       Strengthening the public health system
## 22860                       Strengthening the public health system
## 22861                Requirement to wear protective gear in public
## 22862                Requirement to wear protective gear in public
## 22863                Requirement to wear protective gear in public
## 22864                Requirement to wear protective gear in public
## 22865                Requirement to wear protective gear in public
## 22866                Requirement to wear protective gear in public
## 22867                                               Testing policy
## 22868                                               Testing policy
## 22869                                               Testing policy
## 22870                                               Testing policy
## 22871                                               Testing policy
## 22872                                               Testing policy
## 22873                                      General recommendations
## 22874                                      General recommendations
## 22875                                      General recommendations
## 22876                                      General recommendations
## 22877                                      General recommendations
## 22878                                      General recommendations
## 22879                       Strengthening the public health system
## 22880                       Strengthening the public health system
## 22881                       Strengthening the public health system
## 22882                       Strengthening the public health system
## 22883                       Strengthening the public health system
## 22884                       Strengthening the public health system
## 22885                                      Limit public gatherings
## 22886                                      Limit public gatherings
## 22887                                      Limit public gatherings
## 22888                                      Limit public gatherings
## 22889                                      Limit public gatherings
## 22890                                      Limit public gatherings
## 22891                        Other public health measures enforced
## 22892                        Other public health measures enforced
## 22893                        Other public health measures enforced
## 22894                        Other public health measures enforced
## 22895                        Other public health measures enforced
## 22896                        Other public health measures enforced
## 22897                             International flights suspension
## 22898                             International flights suspension
## 22899                             International flights suspension
## 22900                             International flights suspension
## 22901                             International flights suspension
## 22902                             International flights suspension
## 22903                       Strengthening the public health system
## 22904                       Strengthening the public health system
## 22905                       Strengthening the public health system
## 22906                       Strengthening the public health system
## 22907                       Strengthening the public health system
## 22908                       Strengthening the public health system
## 22909                                            Economic measures
## 22910                                            Economic measures
## 22911                                            Economic measures
## 22912                                            Economic measures
## 22913                                            Economic measures
## 22914                                            Economic measures
## 22915 Emergency administrative structures activated or established
## 22916 Emergency administrative structures activated or established
## 22917 Emergency administrative structures activated or established
## 22918 Emergency administrative structures activated or established
## 22919 Emergency administrative structures activated or established
## 22920 Emergency administrative structures activated or established
## 22921                                          Awareness campaigns
## 22922                                          Awareness campaigns
## 22923                                          Awareness campaigns
## 22924                                          Awareness campaigns
## 22925                                          Awareness campaigns
## 22926                                          Awareness campaigns
## 22927 Emergency administrative structures activated or established
## 22928 Emergency administrative structures activated or established
## 22929 Emergency administrative structures activated or established
## 22930 Emergency administrative structures activated or established
## 22931 Emergency administrative structures activated or established
## 22932 Emergency administrative structures activated or established
## 22933                       Strengthening the public health system
## 22934                       Strengthening the public health system
## 22935                       Strengthening the public health system
## 22936                       Strengthening the public health system
## 22937                       Strengthening the public health system
## 22938                       Strengthening the public health system
## 22939                                              Border closure 
## 22940                                              Border closure 
## 22941                                              Border closure 
## 22942                                              Border closure 
## 22943                                              Border closure 
## 22944                                              Border closure 
## 22945                            Isolation and quarantine policies
## 22946                            Isolation and quarantine policies
## 22947                            Isolation and quarantine policies
## 22948                            Isolation and quarantine policies
## 22949                            Isolation and quarantine policies
## 22950                            Isolation and quarantine policies
## 22951                                  Surveillance and monitoring
## 22952                                  Surveillance and monitoring
## 22953                                  Surveillance and monitoring
## 22954                                  Surveillance and monitoring
## 22955                                  Surveillance and monitoring
## 22956                                  Surveillance and monitoring
## 22957                                          Awareness campaigns
## 22958                                          Awareness campaigns
## 22959                                          Awareness campaigns
## 22960                                          Awareness campaigns
## 22961                                          Awareness campaigns
## 22962                                          Awareness campaigns
## 22963                                          Awareness campaigns
## 22964                                          Awareness campaigns
## 22965                                          Awareness campaigns
## 22966                                          Awareness campaigns
## 22967                                          Awareness campaigns
## 22968                                          Awareness campaigns
## 22969                                  Surveillance and monitoring
## 22970                                  Surveillance and monitoring
## 22971                                  Surveillance and monitoring
## 22972                                  Surveillance and monitoring
## 22973                                  Surveillance and monitoring
## 22974                                  Surveillance and monitoring
## 22975                       Strengthening the public health system
## 22976                       Strengthening the public health system
## 22977                       Strengthening the public health system
## 22978                       Strengthening the public health system
## 22979                       Strengthening the public health system
## 22980                       Strengthening the public health system
## 22981                       Strengthening the public health system
## 22982                       Strengthening the public health system
## 22983                       Strengthening the public health system
## 22984                       Strengthening the public health system
## 22985                       Strengthening the public health system
## 22986                       Strengthening the public health system
## 22987 Emergency administrative structures activated or established
## 22988 Emergency administrative structures activated or established
## 22989 Emergency administrative structures activated or established
## 22990 Emergency administrative structures activated or established
## 22991 Emergency administrative structures activated or established
## 22992 Emergency administrative structures activated or established
## 22993                       Strengthening the public health system
## 22994                       Strengthening the public health system
## 22995                       Strengthening the public health system
## 22996                       Strengthening the public health system
## 22997                       Strengthening the public health system
## 22998                       Strengthening the public health system
## 22999                       Strengthening the public health system
## 23000                       Strengthening the public health system
## 23001                       Strengthening the public health system
## 23002                       Strengthening the public health system
## 23003                       Strengthening the public health system
## 23004                       Strengthening the public health system
## 23005                    Closure of businesses and public services
## 23006                    Closure of businesses and public services
## 23007                    Closure of businesses and public services
## 23008                    Closure of businesses and public services
## 23009                    Closure of businesses and public services
## 23010                    Closure of businesses and public services
## 23011                                            Economic measures
## 23012                                            Economic measures
## 23013                                            Economic measures
## 23014                                            Economic measures
## 23015                                            Economic measures
## 23016                                            Economic measures
## 23017                                                      Curfews
## 23018                                                      Curfews
## 23019                                                      Curfews
## 23020                                                      Curfews
## 23021                                                      Curfews
## 23022                                                      Curfews
## 23023                                             Partial lockdown
## 23024                                             Partial lockdown
## 23025                                             Partial lockdown
## 23026                                             Partial lockdown
## 23027                                             Partial lockdown
## 23028                                             Partial lockdown
## 23029                                      Limit public gatherings
## 23030                                      Limit public gatherings
## 23031                                      Limit public gatherings
## 23032                                      Limit public gatherings
## 23033                                      Limit public gatherings
## 23034                                      Limit public gatherings
## 23035                       Strengthening the public health system
## 23036                       Strengthening the public health system
## 23037                       Strengthening the public health system
## 23038                       Strengthening the public health system
## 23039                       Strengthening the public health system
## 23040                       Strengthening the public health system
## 23041                                          Awareness campaigns
## 23042                                          Awareness campaigns
## 23043                                          Awareness campaigns
## 23044                                          Awareness campaigns
## 23045                                          Awareness campaigns
## 23046                                          Awareness campaigns
## 23047                        Other public health measures enforced
## 23048                        Other public health measures enforced
## 23049                        Other public health measures enforced
## 23050                        Other public health measures enforced
## 23051                        Other public health measures enforced
## 23052                        Other public health measures enforced
## 23053                                            Economic measures
## 23054                                            Economic measures
## 23055                                            Economic measures
## 23056                                            Economic measures
## 23057                                            Economic measures
## 23058                                            Economic measures
## 23059                                  State of emergency declared
## 23060                                  State of emergency declared
## 23061                                  State of emergency declared
## 23062                                  State of emergency declared
## 23063                                  State of emergency declared
## 23064                                  State of emergency declared
## 23065                                                      Curfews
## 23066                                                      Curfews
## 23067                                                      Curfews
## 23068                                                      Curfews
## 23069                                                      Curfews
## 23070                                                      Curfews
## 23071                                                Full lockdown
## 23072                                                Full lockdown
## 23073                                                Full lockdown
## 23074                                                Full lockdown
## 23075                                                Full lockdown
## 23076                                                Full lockdown
## 23077 Emergency administrative structures activated or established
## 23078 Emergency administrative structures activated or established
## 23079 Emergency administrative structures activated or established
## 23080 Emergency administrative structures activated or established
## 23081 Emergency administrative structures activated or established
## 23082 Emergency administrative structures activated or established
## 23083                                          Awareness campaigns
## 23084                                          Awareness campaigns
## 23085                                          Awareness campaigns
## 23086                                          Awareness campaigns
## 23087                                          Awareness campaigns
## 23088                                          Awareness campaigns
## 23089                                          Awareness campaigns
## 23090                                          Awareness campaigns
## 23091                                          Awareness campaigns
## 23092                                          Awareness campaigns
## 23093                                          Awareness campaigns
## 23094                                          Awareness campaigns
## 23095                       Strengthening the public health system
## 23096                       Strengthening the public health system
## 23097                       Strengthening the public health system
## 23098                       Strengthening the public health system
## 23099                       Strengthening the public health system
## 23100                       Strengthening the public health system
## 23101                       Strengthening the public health system
## 23102                       Strengthening the public health system
## 23103                       Strengthening the public health system
## 23104                       Strengthening the public health system
## 23105                       Strengthening the public health system
## 23106                       Strengthening the public health system
## 23107                           Changes in prison-related policies
## 23108                           Changes in prison-related policies
## 23109                           Changes in prison-related policies
## 23110                           Changes in prison-related policies
## 23111                           Changes in prison-related policies
## 23112                           Changes in prison-related policies
## 23113                                 Domestic travel restrictions
## 23114                                 Domestic travel restrictions
## 23115                                 Domestic travel restrictions
## 23116                                 Domestic travel restrictions
## 23117                                 Domestic travel restrictions
## 23118                                 Domestic travel restrictions
## 23119                                          Awareness campaigns
## 23120                                          Awareness campaigns
## 23121                                          Awareness campaigns
## 23122                                          Awareness campaigns
## 23123                                          Awareness campaigns
## 23124                                          Awareness campaigns
## 23125                                  State of emergency declared
## 23126                                  State of emergency declared
## 23127                                  State of emergency declared
## 23128                                  State of emergency declared
## 23129                                  State of emergency declared
## 23130                                  State of emergency declared
## 23131                                                      Curfews
## 23132                                                      Curfews
## 23133                                                      Curfews
## 23134                                                      Curfews
## 23135                                                      Curfews
## 23136                                                      Curfews
## 23137                       Strengthening the public health system
## 23138                       Strengthening the public health system
## 23139                       Strengthening the public health system
## 23140                       Strengthening the public health system
## 23141                       Strengthening the public health system
## 23142                       Strengthening the public health system
## 23143                                            Economic measures
## 23144                                            Economic measures
## 23145                                            Economic measures
## 23146                                            Economic measures
## 23147                                            Economic measures
## 23148                                            Economic measures
## 23149                                          Awareness campaigns
## 23150                                          Awareness campaigns
## 23151                                          Awareness campaigns
## 23152                                          Awareness campaigns
## 23153                                          Awareness campaigns
## 23154                                          Awareness campaigns
## 23155                        Other public health measures enforced
## 23156                        Other public health measures enforced
## 23157                        Other public health measures enforced
## 23158                        Other public health measures enforced
## 23159                        Other public health measures enforced
## 23160                        Other public health measures enforced
## 23161                                          Awareness campaigns
## 23162                                          Awareness campaigns
## 23163                                          Awareness campaigns
## 23164                                          Awareness campaigns
## 23165                                          Awareness campaigns
## 23166                                          Awareness campaigns
## 23167                                            Economic measures
## 23168                                            Economic measures
## 23169                                            Economic measures
## 23170                                            Economic measures
## 23171                                            Economic measures
## 23172                                            Economic measures
## 23173                                      Mass population testing
## 23174                                      Mass population testing
## 23175                                      Mass population testing
## 23176                                      Mass population testing
## 23177                                      Mass population testing
## 23178                                      Mass population testing
## 23179                                          Awareness campaigns
## 23180                                          Awareness campaigns
## 23181                                          Awareness campaigns
## 23182                                          Awareness campaigns
## 23183                                          Awareness campaigns
## 23184                                          Awareness campaigns
## 23185                    Closure of businesses and public services
## 23186                    Closure of businesses and public services
## 23187                    Closure of businesses and public services
## 23188                    Closure of businesses and public services
## 23189                    Closure of businesses and public services
## 23190                    Closure of businesses and public services
## 23191                    Closure of businesses and public services
## 23192                    Closure of businesses and public services
## 23193                    Closure of businesses and public services
## 23194                    Closure of businesses and public services
## 23195                    Closure of businesses and public services
## 23196                    Closure of businesses and public services
## 23197                        Other public health measures enforced
## 23198                        Other public health measures enforced
## 23199                        Other public health measures enforced
## 23200                        Other public health measures enforced
## 23201                        Other public health measures enforced
## 23202                        Other public health measures enforced
## 23203                Requirement to wear protective gear in public
## 23204                Requirement to wear protective gear in public
## 23205                Requirement to wear protective gear in public
## 23206                Requirement to wear protective gear in public
## 23207                Requirement to wear protective gear in public
## 23208                Requirement to wear protective gear in public
## 23209                       Strengthening the public health system
## 23210                       Strengthening the public health system
## 23211                       Strengthening the public health system
## 23212                       Strengthening the public health system
## 23213                       Strengthening the public health system
## 23214                       Strengthening the public health system
## 23215                       Strengthening the public health system
## 23216                       Strengthening the public health system
## 23217                       Strengthening the public health system
## 23218                       Strengthening the public health system
## 23219                       Strengthening the public health system
## 23220                       Strengthening the public health system
## 23221                                          Awareness campaigns
## 23222                                          Awareness campaigns
## 23223                                          Awareness campaigns
## 23224                                          Awareness campaigns
## 23225                                          Awareness campaigns
## 23226                                          Awareness campaigns
## 23227                       Strengthening the public health system
## 23228                       Strengthening the public health system
## 23229                       Strengthening the public health system
## 23230                       Strengthening the public health system
## 23231                       Strengthening the public health system
## 23232                       Strengthening the public health system
## 23233                                  State of emergency declared
## 23234                                  State of emergency declared
## 23235                                  State of emergency declared
## 23236                                  State of emergency declared
## 23237                                  State of emergency declared
## 23238                                  State of emergency declared
## 23239                                                      Curfews
## 23240                                                      Curfews
## 23241                                                      Curfews
## 23242                                                      Curfews
## 23243                                                      Curfews
## 23244                                                      Curfews
## 23245                                            Economic measures
## 23246                                            Economic measures
## 23247                                            Economic measures
## 23248                                            Economic measures
## 23249                                            Economic measures
## 23250                                            Economic measures
## 23251                    Closure of businesses and public services
## 23252                    Closure of businesses and public services
## 23253                    Closure of businesses and public services
## 23254                    Closure of businesses and public services
## 23255                    Closure of businesses and public services
## 23256                    Closure of businesses and public services
## 23257                Requirement to wear protective gear in public
## 23258                Requirement to wear protective gear in public
## 23259                Requirement to wear protective gear in public
## 23260                Requirement to wear protective gear in public
## 23261                Requirement to wear protective gear in public
## 23262                Requirement to wear protective gear in public
## 23263                                             Partial lockdown
## 23264                                             Partial lockdown
## 23265                                             Partial lockdown
## 23266                                             Partial lockdown
## 23267                                             Partial lockdown
## 23268                                             Partial lockdown
## 23269                    Closure of businesses and public services
## 23270                    Closure of businesses and public services
## 23271                    Closure of businesses and public services
## 23272                    Closure of businesses and public services
## 23273                    Closure of businesses and public services
## 23274                    Closure of businesses and public services
## 23275                                  State of emergency declared
## 23276                                  State of emergency declared
## 23277                                  State of emergency declared
## 23278                                  State of emergency declared
## 23279                                  State of emergency declared
## 23280                                  State of emergency declared
## 23281                                                      Curfews
## 23282                                                      Curfews
## 23283                                                      Curfews
## 23284                                                      Curfews
## 23285                                                      Curfews
## 23286                                                      Curfews
## 23287                             International flights suspension
## 23288                             International flights suspension
## 23289                             International flights suspension
## 23290                             International flights suspension
## 23291                             International flights suspension
## 23292                             International flights suspension
## 23293                                              Border closure 
## 23294                                              Border closure 
## 23295                                              Border closure 
## 23296                                              Border closure 
## 23297                                              Border closure 
## 23298                                              Border closure 
## 23299                    Closure of businesses and public services
## 23300                    Closure of businesses and public services
## 23301                    Closure of businesses and public services
## 23302                    Closure of businesses and public services
## 23303                    Closure of businesses and public services
## 23304                    Closure of businesses and public services
## 23305                    Closure of businesses and public services
## 23306                    Closure of businesses and public services
## 23307                    Closure of businesses and public services
## 23308                    Closure of businesses and public services
## 23309                    Closure of businesses and public services
## 23310                    Closure of businesses and public services
## 23311                                                      Curfews
## 23312                                                      Curfews
## 23313                                                      Curfews
## 23314                                                      Curfews
## 23315                                                      Curfews
## 23316                                                      Curfews
## 23317                                      Mass population testing
## 23318                                      Mass population testing
## 23319                                      Mass population testing
## 23320                                      Mass population testing
## 23321                                      Mass population testing
## 23322                                      Mass population testing
## 23323                    Closure of businesses and public services
## 23324                    Closure of businesses and public services
## 23325                    Closure of businesses and public services
## 23326                    Closure of businesses and public services
## 23327                    Closure of businesses and public services
## 23328                    Closure of businesses and public services
## 23329                                          Awareness campaigns
## 23330                                          Awareness campaigns
## 23331                                          Awareness campaigns
## 23332                                          Awareness campaigns
## 23333                                          Awareness campaigns
## 23334                                          Awareness campaigns
## 23335                             International flights suspension
## 23336                             International flights suspension
## 23337                             International flights suspension
## 23338                             International flights suspension
## 23339                             International flights suspension
## 23340                             International flights suspension
## 23341                                                      Curfews
## 23342                                                      Curfews
## 23343                                                      Curfews
## 23344                                                      Curfews
## 23345                                                      Curfews
## 23346                                                      Curfews
## 23347                                      Limit public gatherings
## 23348                                      Limit public gatherings
## 23349                                      Limit public gatherings
## 23350                                      Limit public gatherings
## 23351                                      Limit public gatherings
## 23352                                      Limit public gatherings
## 23353                                             Schools closure 
## 23354                                             Schools closure 
## 23355                                             Schools closure 
## 23356                                             Schools closure 
## 23357                                             Schools closure 
## 23358                                             Schools closure 
## 23359                    Closure of businesses and public services
## 23360                    Closure of businesses and public services
## 23361                    Closure of businesses and public services
## 23362                    Closure of businesses and public services
## 23363                    Closure of businesses and public services
## 23364                    Closure of businesses and public services
## 23365                                      Limit public gatherings
## 23366                                      Limit public gatherings
## 23367                                      Limit public gatherings
## 23368                                      Limit public gatherings
## 23369                                      Limit public gatherings
## 23370                                      Limit public gatherings
## 23371                                      Limit public gatherings
## 23372                                      Limit public gatherings
## 23373                                      Limit public gatherings
## 23374                                      Limit public gatherings
## 23375                                      Limit public gatherings
## 23376                                      Limit public gatherings
## 23377                Requirement to wear protective gear in public
## 23378                Requirement to wear protective gear in public
## 23379                Requirement to wear protective gear in public
## 23380                Requirement to wear protective gear in public
## 23381                Requirement to wear protective gear in public
## 23382                Requirement to wear protective gear in public
## 23383                                            Economic measures
## 23384                                            Economic measures
## 23385                                            Economic measures
## 23386                                            Economic measures
## 23387                                            Economic measures
## 23388                                            Economic measures
## 23389                                            Economic measures
## 23390                                            Economic measures
## 23391                                            Economic measures
## 23392                                            Economic measures
## 23393                                            Economic measures
## 23394                                            Economic measures
## 23395           Health screenings in airports and border crossings
## 23396           Health screenings in airports and border crossings
## 23397           Health screenings in airports and border crossings
## 23398           Health screenings in airports and border crossings
## 23399           Health screenings in airports and border crossings
## 23400           Health screenings in airports and border crossings
## 23401                             International flights suspension
## 23402                             International flights suspension
## 23403                             International flights suspension
## 23404                             International flights suspension
## 23405                             International flights suspension
## 23406                             International flights suspension
## 23407                                              Border closure 
## 23408                                              Border closure 
## 23409                                              Border closure 
## 23410                                              Border closure 
## 23411                                              Border closure 
## 23412                                              Border closure 
## 23413                             International flights suspension
## 23414                             International flights suspension
## 23415                             International flights suspension
## 23416                             International flights suspension
## 23417                             International flights suspension
## 23418                             International flights suspension
## 23419                            Isolation and quarantine policies
## 23420                            Isolation and quarantine policies
## 23421                            Isolation and quarantine policies
## 23422                            Isolation and quarantine policies
## 23423                            Isolation and quarantine policies
## 23424                            Isolation and quarantine policies
## 23425                                  State of emergency declared
## 23426                                  State of emergency declared
## 23427                                  State of emergency declared
## 23428                                  State of emergency declared
## 23429                                  State of emergency declared
## 23430                                  State of emergency declared
## 23431                                 Domestic travel restrictions
## 23432                                 Domestic travel restrictions
## 23433                                 Domestic travel restrictions
## 23434                                 Domestic travel restrictions
## 23435                                 Domestic travel restrictions
## 23436                                 Domestic travel restrictions
## 23437                                      Limit public gatherings
## 23438                                      Limit public gatherings
## 23439                                      Limit public gatherings
## 23440                                      Limit public gatherings
## 23441                                      Limit public gatherings
## 23442                                      Limit public gatherings
## 23443                                             Schools closure 
## 23444                                             Schools closure 
## 23445                                             Schools closure 
## 23446                                             Schools closure 
## 23447                                             Schools closure 
## 23448                                             Schools closure 
## 23449                                                      Curfews
## 23450                                                      Curfews
## 23451                                                      Curfews
## 23452                                                      Curfews
## 23453                                                      Curfews
## 23454                                                      Curfews
## 23455                                                      Curfews
## 23456                                                      Curfews
## 23457                                                      Curfews
## 23458                                                      Curfews
## 23459                                                      Curfews
## 23460                                                      Curfews
## 23461                                      Limit public gatherings
## 23462                                      Limit public gatherings
## 23463                                      Limit public gatherings
## 23464                                      Limit public gatherings
## 23465                                      Limit public gatherings
## 23466                                      Limit public gatherings
## 23467                                      Limit public gatherings
## 23468                                      Limit public gatherings
## 23469                                      Limit public gatherings
## 23470                                      Limit public gatherings
## 23471                                      Limit public gatherings
## 23472                                      Limit public gatherings
## 23473                                      General recommendations
## 23474                                      General recommendations
## 23475                                      General recommendations
## 23476                                      General recommendations
## 23477                                      General recommendations
## 23478                                      General recommendations
## 23479                                 Domestic travel restrictions
## 23480                                 Domestic travel restrictions
## 23481                                 Domestic travel restrictions
## 23482                                 Domestic travel restrictions
## 23483                                 Domestic travel restrictions
## 23484                                 Domestic travel restrictions
## 23485                               Checkpoints within the country
## 23486                               Checkpoints within the country
## 23487                               Checkpoints within the country
## 23488                               Checkpoints within the country
## 23489                               Checkpoints within the country
## 23490                               Checkpoints within the country
## 23491 Emergency administrative structures activated or established
## 23492 Emergency administrative structures activated or established
## 23493 Emergency administrative structures activated or established
## 23494 Emergency administrative structures activated or established
## 23495 Emergency administrative structures activated or established
## 23496 Emergency administrative structures activated or established
## 23497                        Other public health measures enforced
## 23498                        Other public health measures enforced
## 23499                        Other public health measures enforced
## 23500                        Other public health measures enforced
## 23501                        Other public health measures enforced
## 23502                        Other public health measures enforced
## 23503                                  State of emergency declared
## 23504                                  State of emergency declared
## 23505                                  State of emergency declared
## 23506                                  State of emergency declared
## 23507                                  State of emergency declared
## 23508                                  State of emergency declared
## 23509                                 Domestic travel restrictions
## 23510                                 Domestic travel restrictions
## 23511                                 Domestic travel restrictions
## 23512                                 Domestic travel restrictions
## 23513                                 Domestic travel restrictions
## 23514                                 Domestic travel restrictions
## 23515                                               Testing policy
## 23516                                               Testing policy
## 23517                                               Testing policy
## 23518                                               Testing policy
## 23519                                               Testing policy
## 23520                                               Testing policy
## 23521                                      General recommendations
## 23522                                      General recommendations
## 23523                                      General recommendations
## 23524                                      General recommendations
## 23525                                      General recommendations
## 23526                                      General recommendations
## 23527                                 Domestic travel restrictions
## 23528                                 Domestic travel restrictions
## 23529                                 Domestic travel restrictions
## 23530                                 Domestic travel restrictions
## 23531                                 Domestic travel restrictions
## 23532                                 Domestic travel restrictions
## 23533                                            Economic measures
## 23534                                            Economic measures
## 23535                                            Economic measures
## 23536                                            Economic measures
## 23537                                            Economic measures
## 23538                                            Economic measures
## 23539                                 Domestic travel restrictions
## 23540                                 Domestic travel restrictions
## 23541                                 Domestic travel restrictions
## 23542                                 Domestic travel restrictions
## 23543                                 Domestic travel restrictions
## 23544                                 Domestic travel restrictions
## 23545                                              Border closure 
## 23546                                              Border closure 
## 23547                                              Border closure 
## 23548                                              Border closure 
## 23549                                              Border closure 
## 23550                                              Border closure 
## 23551                                                      Curfews
## 23552                                                      Curfews
## 23553                                                      Curfews
## 23554                                                      Curfews
## 23555                                                      Curfews
## 23556                                                      Curfews
## 23557                                            Economic measures
## 23558                                            Economic measures
## 23559                                            Economic measures
## 23560                                            Economic measures
## 23561                                            Economic measures
## 23562                                            Economic measures
## 23563                                            Economic measures
## 23564                                            Economic measures
## 23565                                            Economic measures
## 23566                                            Economic measures
## 23567                                            Economic measures
## 23568                                            Economic measures
## 23569                       Strengthening the public health system
## 23570                       Strengthening the public health system
## 23571                       Strengthening the public health system
## 23572                       Strengthening the public health system
## 23573                       Strengthening the public health system
## 23574                       Strengthening the public health system
## 23575                                 Domestic travel restrictions
## 23576                                 Domestic travel restrictions
## 23577                                 Domestic travel restrictions
## 23578                                 Domestic travel restrictions
## 23579                                 Domestic travel restrictions
## 23580                                 Domestic travel restrictions
## 23581                                  State of emergency declared
## 23582                                  State of emergency declared
## 23583                                  State of emergency declared
## 23584                                  State of emergency declared
## 23585                                  State of emergency declared
## 23586                                  State of emergency declared
## 23587                                            Economic measures
## 23588                                            Economic measures
## 23589                                            Economic measures
## 23590                                            Economic measures
## 23591                                            Economic measures
## 23592                                            Economic measures
## 23593                                      General recommendations
## 23594                                      General recommendations
## 23595                                      General recommendations
## 23596                                      General recommendations
## 23597                                      General recommendations
## 23598                                      General recommendations
## 23599                                               Testing policy
## 23600                                               Testing policy
## 23601                                               Testing policy
## 23602                                               Testing policy
## 23603                                               Testing policy
## 23604                                               Testing policy
## 23605                       Strengthening the public health system
## 23606                       Strengthening the public health system
## 23607                       Strengthening the public health system
## 23608                       Strengthening the public health system
## 23609                       Strengthening the public health system
## 23610                       Strengthening the public health system
## 23611                            Isolation and quarantine policies
## 23612                            Isolation and quarantine policies
## 23613                            Isolation and quarantine policies
## 23614                            Isolation and quarantine policies
## 23615                            Isolation and quarantine policies
## 23616                            Isolation and quarantine policies
## 23617                            Isolation and quarantine policies
## 23618                            Isolation and quarantine policies
## 23619                            Isolation and quarantine policies
## 23620                            Isolation and quarantine policies
## 23621                            Isolation and quarantine policies
## 23622                            Isolation and quarantine policies
## 23623                                  State of emergency declared
## 23624                                  State of emergency declared
## 23625                                  State of emergency declared
## 23626                                  State of emergency declared
## 23627                                  State of emergency declared
## 23628                                  State of emergency declared
## 23629                                                      Curfews
## 23630                                                      Curfews
## 23631                                                      Curfews
## 23632                                                      Curfews
## 23633                                                      Curfews
## 23634                                                      Curfews
## 23635                                  State of emergency declared
## 23636                                  State of emergency declared
## 23637                                  State of emergency declared
## 23638                                  State of emergency declared
## 23639                                  State of emergency declared
## 23640                                  State of emergency declared
## 23641                                                      Curfews
## 23642                                                      Curfews
## 23643                                                      Curfews
## 23644                                                      Curfews
## 23645                                                      Curfews
## 23646                                                      Curfews
## 23647                                 Domestic travel restrictions
## 23648                                 Domestic travel restrictions
## 23649                                 Domestic travel restrictions
## 23650                                 Domestic travel restrictions
## 23651                                 Domestic travel restrictions
## 23652                                 Domestic travel restrictions
## 23653                    Closure of businesses and public services
## 23654                    Closure of businesses and public services
## 23655                    Closure of businesses and public services
## 23656                    Closure of businesses and public services
## 23657                    Closure of businesses and public services
## 23658                    Closure of businesses and public services
## 23659                    Closure of businesses and public services
## 23660                    Closure of businesses and public services
## 23661                    Closure of businesses and public services
## 23662                    Closure of businesses and public services
## 23663                    Closure of businesses and public services
## 23664                    Closure of businesses and public services
## 23665                                            Economic measures
## 23666                                            Economic measures
## 23667                                            Economic measures
## 23668                                            Economic measures
## 23669                                            Economic measures
## 23670                                            Economic measures
## 23671                                            Economic measures
## 23672                                            Economic measures
## 23673                                            Economic measures
## 23674                                            Economic measures
## 23675                                            Economic measures
## 23676                                            Economic measures
## 23677                    Closure of businesses and public services
## 23678                    Closure of businesses and public services
## 23679                    Closure of businesses and public services
## 23680                    Closure of businesses and public services
## 23681                    Closure of businesses and public services
## 23682                    Closure of businesses and public services
## 23683                                  State of emergency declared
## 23684                                  State of emergency declared
## 23685                                  State of emergency declared
## 23686                                  State of emergency declared
## 23687                                  State of emergency declared
## 23688                                  State of emergency declared
## 23689                                                      Curfews
## 23690                                                      Curfews
## 23691                                                      Curfews
## 23692                                                      Curfews
## 23693                                                      Curfews
## 23694                                                      Curfews
## 23695                    Closure of businesses and public services
## 23696                    Closure of businesses and public services
## 23697                    Closure of businesses and public services
## 23698                    Closure of businesses and public services
## 23699                    Closure of businesses and public services
## 23700                    Closure of businesses and public services
## 23701                                 Domestic travel restrictions
## 23702                                 Domestic travel restrictions
## 23703                                 Domestic travel restrictions
## 23704                                 Domestic travel restrictions
## 23705                                 Domestic travel restrictions
## 23706                                 Domestic travel restrictions
## 23707                                      Limit public gatherings
## 23708                                      Limit public gatherings
## 23709                                      Limit public gatherings
## 23710                                      Limit public gatherings
## 23711                                      Limit public gatherings
## 23712                                      Limit public gatherings
## 23713                                  State of emergency declared
## 23714                                  State of emergency declared
## 23715                                  State of emergency declared
## 23716                                  State of emergency declared
## 23717                                  State of emergency declared
## 23718                                  State of emergency declared
## 23719                                                      Curfews
## 23720                                                      Curfews
## 23721                                                      Curfews
## 23722                                                      Curfews
## 23723                                                      Curfews
## 23724                                                      Curfews
## 23725                             International flights suspension
## 23726                             International flights suspension
## 23727                             International flights suspension
## 23728                             International flights suspension
## 23729                             International flights suspension
## 23730                             International flights suspension
## 23731                                              Border closure 
## 23732                                              Border closure 
## 23733                                              Border closure 
## 23734                                              Border closure 
## 23735                                              Border closure 
## 23736                                              Border closure 
## 23737                                                      Curfews
## 23738                                                      Curfews
## 23739                                                      Curfews
## 23740                                                      Curfews
## 23741                                                      Curfews
## 23742                                                      Curfews
## 23743                                            Economic measures
## 23744                                            Economic measures
## 23745                                            Economic measures
## 23746                                            Economic measures
## 23747                                            Economic measures
## 23748                                            Economic measures
## 23749                Requirement to wear protective gear in public
## 23750                Requirement to wear protective gear in public
## 23751                Requirement to wear protective gear in public
## 23752                Requirement to wear protective gear in public
## 23753                Requirement to wear protective gear in public
## 23754                Requirement to wear protective gear in public
## 23755                                  State of emergency declared
## 23756                                  State of emergency declared
## 23757                                  State of emergency declared
## 23758                                  State of emergency declared
## 23759                                  State of emergency declared
## 23760                                  State of emergency declared
## 23761 Emergency administrative structures activated or established
## 23762 Emergency administrative structures activated or established
## 23763 Emergency administrative structures activated or established
## 23764 Emergency administrative structures activated or established
## 23765 Emergency administrative structures activated or established
## 23766 Emergency administrative structures activated or established
## 23767                            Isolation and quarantine policies
## 23768                            Isolation and quarantine policies
## 23769                            Isolation and quarantine policies
## 23770                            Isolation and quarantine policies
## 23771                            Isolation and quarantine policies
## 23772                            Isolation and quarantine policies
## 23773                                  State of emergency declared
## 23774                                  State of emergency declared
## 23775                                  State of emergency declared
## 23776                                  State of emergency declared
## 23777                                  State of emergency declared
## 23778                                  State of emergency declared
## 23779                                             Partial lockdown
## 23780                                             Partial lockdown
## 23781                                             Partial lockdown
## 23782                                             Partial lockdown
## 23783                                             Partial lockdown
## 23784                                             Partial lockdown
## 23785                                 Domestic travel restrictions
## 23786                                 Domestic travel restrictions
## 23787                                 Domestic travel restrictions
## 23788                                 Domestic travel restrictions
## 23789                                 Domestic travel restrictions
## 23790                                 Domestic travel restrictions
## 23791                    Closure of businesses and public services
## 23792                    Closure of businesses and public services
## 23793                    Closure of businesses and public services
## 23794                    Closure of businesses and public services
## 23795                    Closure of businesses and public services
## 23796                    Closure of businesses and public services
## 23797                                              Border closure 
## 23798                                              Border closure 
## 23799                                              Border closure 
## 23800                                              Border closure 
## 23801                                              Border closure 
## 23802                                              Border closure 
## 23803                             International flights suspension
## 23804                             International flights suspension
## 23805                             International flights suspension
## 23806                             International flights suspension
## 23807                             International flights suspension
## 23808                             International flights suspension
## 23809                                                      Curfews
## 23810                                                      Curfews
## 23811                                                      Curfews
## 23812                                                      Curfews
## 23813                                                      Curfews
## 23814                                                      Curfews
## 23815                                                      Curfews
## 23816                                                      Curfews
## 23817                                                      Curfews
## 23818                                                      Curfews
## 23819                                                      Curfews
## 23820                                                      Curfews
## 23821                                                      Curfews
## 23822                                                      Curfews
## 23823                                                      Curfews
## 23824                                                      Curfews
## 23825                                                      Curfews
## 23826                                                      Curfews
## 23827                                          Military deployment
## 23828                                          Military deployment
## 23829                                          Military deployment
## 23830                                          Military deployment
## 23831                                          Military deployment
## 23832                                          Military deployment
## 23833                                             Partial lockdown
## 23834                                             Partial lockdown
## 23835                                             Partial lockdown
## 23836                                             Partial lockdown
## 23837                                             Partial lockdown
## 23838                                             Partial lockdown
## 23839                                             Schools closure 
## 23840                                             Schools closure 
## 23841                                             Schools closure 
## 23842                                             Schools closure 
## 23843                                             Schools closure 
## 23844                                             Schools closure 
## 23845                       Strengthening the public health system
## 23846                       Strengthening the public health system
## 23847                       Strengthening the public health system
## 23848                       Strengthening the public health system
## 23849                       Strengthening the public health system
## 23850                       Strengthening the public health system
## 23851                                 Domestic travel restrictions
## 23852                                 Domestic travel restrictions
## 23853                                 Domestic travel restrictions
## 23854                                 Domestic travel restrictions
## 23855                                 Domestic travel restrictions
## 23856                                 Domestic travel restrictions
## 23857                             International flights suspension
## 23858                             International flights suspension
## 23859                             International flights suspension
## 23860                             International flights suspension
## 23861                             International flights suspension
## 23862                             International flights suspension
## 23863                                  Surveillance and monitoring
## 23864                                  Surveillance and monitoring
## 23865                                  Surveillance and monitoring
## 23866                                  Surveillance and monitoring
## 23867                                  Surveillance and monitoring
## 23868                                  Surveillance and monitoring
## 23869                                            Economic measures
## 23870                                            Economic measures
## 23871                                            Economic measures
## 23872                                            Economic measures
## 23873                                            Economic measures
## 23874                                            Economic measures
## 23875                                      Limit public gatherings
## 23876                                      Limit public gatherings
## 23877                                      Limit public gatherings
## 23878                                      Limit public gatherings
## 23879                                      Limit public gatherings
## 23880                                      Limit public gatherings
## 23881                                 Domestic travel restrictions
## 23882                                 Domestic travel restrictions
## 23883                                 Domestic travel restrictions
## 23884                                 Domestic travel restrictions
## 23885                                 Domestic travel restrictions
## 23886                                 Domestic travel restrictions
## 23887                Requirement to wear protective gear in public
## 23888                Requirement to wear protective gear in public
## 23889                Requirement to wear protective gear in public
## 23890                Requirement to wear protective gear in public
## 23891                Requirement to wear protective gear in public
## 23892                Requirement to wear protective gear in public
## 23893             Psychological assistance and medical social work
## 23894             Psychological assistance and medical social work
## 23895             Psychological assistance and medical social work
## 23896             Psychological assistance and medical social work
## 23897             Psychological assistance and medical social work
## 23898             Psychological assistance and medical social work
## 23899                                            Economic measures
## 23900                                            Economic measures
## 23901                                            Economic measures
## 23902                                            Economic measures
## 23903                                            Economic measures
## 23904                                            Economic measures
## 23905                                 Domestic travel restrictions
## 23906                                 Domestic travel restrictions
## 23907                                 Domestic travel restrictions
## 23908                                 Domestic travel restrictions
## 23909                                 Domestic travel restrictions
## 23910                                 Domestic travel restrictions
## 23911                                             Partial lockdown
## 23912                                             Partial lockdown
## 23913                                             Partial lockdown
## 23914                                             Partial lockdown
## 23915                                             Partial lockdown
## 23916                                             Partial lockdown
## 23917                       Strengthening the public health system
## 23918                       Strengthening the public health system
## 23919                       Strengthening the public health system
## 23920                       Strengthening the public health system
## 23921                       Strengthening the public health system
## 23922                       Strengthening the public health system
## 23923                                  State of emergency declared
## 23924                                  State of emergency declared
## 23925                                  State of emergency declared
## 23926                                  State of emergency declared
## 23927                                  State of emergency declared
## 23928                                  State of emergency declared
## 23929                                                      Curfews
## 23930                                                      Curfews
## 23931                                                      Curfews
## 23932                                                      Curfews
## 23933                                                      Curfews
## 23934                                                      Curfews
## 23935                                 Domestic travel restrictions
## 23936                                 Domestic travel restrictions
## 23937                                 Domestic travel restrictions
## 23938                                 Domestic travel restrictions
## 23939                                 Domestic travel restrictions
## 23940                                 Domestic travel restrictions
## 23941                                                      Curfews
## 23942                                                      Curfews
## 23943                                                      Curfews
## 23944                                                      Curfews
## 23945                                                      Curfews
## 23946                                                      Curfews
## 23947                    Closure of businesses and public services
## 23948                    Closure of businesses and public services
## 23949                    Closure of businesses and public services
## 23950                    Closure of businesses and public services
## 23951                    Closure of businesses and public services
## 23952                    Closure of businesses and public services
## 23953                                 Domestic travel restrictions
## 23954                                 Domestic travel restrictions
## 23955                                 Domestic travel restrictions
## 23956                                 Domestic travel restrictions
## 23957                                 Domestic travel restrictions
## 23958                                 Domestic travel restrictions
## 23959                                                      Curfews
## 23960                                                      Curfews
## 23961                                                      Curfews
## 23962                                                      Curfews
## 23963                                                      Curfews
## 23964                                                      Curfews
## 23965                    Closure of businesses and public services
## 23966                    Closure of businesses and public services
## 23967                    Closure of businesses and public services
## 23968                    Closure of businesses and public services
## 23969                    Closure of businesses and public services
## 23970                    Closure of businesses and public services
## 23971                                 Domestic travel restrictions
## 23972                                 Domestic travel restrictions
## 23973                                 Domestic travel restrictions
## 23974                                 Domestic travel restrictions
## 23975                                 Domestic travel restrictions
## 23976                                 Domestic travel restrictions
## 23977                       Strengthening the public health system
## 23978                       Strengthening the public health system
## 23979                       Strengthening the public health system
## 23980                       Strengthening the public health system
## 23981                       Strengthening the public health system
## 23982                       Strengthening the public health system
## 23983                                  State of emergency declared
## 23984                                  State of emergency declared
## 23985                                  State of emergency declared
## 23986                                  State of emergency declared
## 23987                                  State of emergency declared
## 23988                                  State of emergency declared
## 23989                       Strengthening the public health system
## 23990                       Strengthening the public health system
## 23991                       Strengthening the public health system
## 23992                       Strengthening the public health system
## 23993                       Strengthening the public health system
## 23994                       Strengthening the public health system
## 23995                                            Economic measures
## 23996                                            Economic measures
## 23997                                            Economic measures
## 23998                                            Economic measures
## 23999                                            Economic measures
## 24000                                            Economic measures
## 24001        Additional health/documents requirements upon arrival
## 24002        Additional health/documents requirements upon arrival
## 24003        Additional health/documents requirements upon arrival
## 24004        Additional health/documents requirements upon arrival
## 24005        Additional health/documents requirements upon arrival
## 24006        Additional health/documents requirements upon arrival
## 24007                                 Domestic travel restrictions
## 24008                                 Domestic travel restrictions
## 24009                                 Domestic travel restrictions
## 24010                                 Domestic travel restrictions
## 24011                                 Domestic travel restrictions
## 24012                                 Domestic travel restrictions
## 24013                             International flights suspension
## 24014                             International flights suspension
## 24015                             International flights suspension
## 24016                             International flights suspension
## 24017                             International flights suspension
## 24018                             International flights suspension
## 24019                    Closure of businesses and public services
## 24020                    Closure of businesses and public services
## 24021                    Closure of businesses and public services
## 24022                    Closure of businesses and public services
## 24023                    Closure of businesses and public services
## 24024                    Closure of businesses and public services
## 24025                                                      Curfews
## 24026                                                      Curfews
## 24027                                                      Curfews
## 24028                                                      Curfews
## 24029                                                      Curfews
## 24030                                                      Curfews
## 24031        Additional health/documents requirements upon arrival
## 24032        Additional health/documents requirements upon arrival
## 24033        Additional health/documents requirements upon arrival
## 24034        Additional health/documents requirements upon arrival
## 24035        Additional health/documents requirements upon arrival
## 24036        Additional health/documents requirements upon arrival
## 24037                                             Partial lockdown
## 24038                                             Partial lockdown
## 24039                                             Partial lockdown
## 24040                                             Partial lockdown
## 24041                                             Partial lockdown
## 24042                                             Partial lockdown
## 24043                                             Partial lockdown
## 24044                                             Partial lockdown
## 24045                                             Partial lockdown
## 24046                                             Partial lockdown
## 24047                                             Partial lockdown
## 24048                                             Partial lockdown
## 24049                                                      Curfews
## 24050                                                      Curfews
## 24051                                                      Curfews
## 24052                                                      Curfews
## 24053                                                      Curfews
## 24054                                                      Curfews
## 24055                                                      Curfews
## 24056                                                      Curfews
## 24057                                                      Curfews
## 24058                                                      Curfews
## 24059                                                      Curfews
## 24060                                                      Curfews
## 24061                                                      Curfews
## 24062                                                      Curfews
## 24063                                                      Curfews
## 24064                                                      Curfews
## 24065                                                      Curfews
## 24066                                                      Curfews
## 24067                             International flights suspension
## 24068                             International flights suspension
## 24069                             International flights suspension
## 24070                             International flights suspension
## 24071                             International flights suspension
## 24072                             International flights suspension
## 24073                                 Domestic travel restrictions
## 24074                                 Domestic travel restrictions
## 24075                                 Domestic travel restrictions
## 24076                                 Domestic travel restrictions
## 24077                                 Domestic travel restrictions
## 24078                                 Domestic travel restrictions
## 24079                                            Economic measures
## 24080                                            Economic measures
## 24081                                            Economic measures
## 24082                                            Economic measures
## 24083                                            Economic measures
## 24084                                            Economic measures
## 24085                                 Domestic travel restrictions
## 24086                                 Domestic travel restrictions
## 24087                                 Domestic travel restrictions
## 24088                                 Domestic travel restrictions
## 24089                                 Domestic travel restrictions
## 24090                                 Domestic travel restrictions
## 24091                                  State of emergency declared
## 24092                                  State of emergency declared
## 24093                                  State of emergency declared
## 24094                                  State of emergency declared
## 24095                                  State of emergency declared
## 24096                                  State of emergency declared
## 24097                Requirement to wear protective gear in public
## 24098                Requirement to wear protective gear in public
## 24099                Requirement to wear protective gear in public
## 24100                Requirement to wear protective gear in public
## 24101                Requirement to wear protective gear in public
## 24102                Requirement to wear protective gear in public
## 24103                                      Limit public gatherings
## 24104                                      Limit public gatherings
## 24105                                      Limit public gatherings
## 24106                                      Limit public gatherings
## 24107                                      Limit public gatherings
## 24108                                      Limit public gatherings
## 24109                                 Domestic travel restrictions
## 24110                                 Domestic travel restrictions
## 24111                                 Domestic travel restrictions
## 24112                                 Domestic travel restrictions
## 24113                                 Domestic travel restrictions
## 24114                                 Domestic travel restrictions
## 24115                                             Schools closure 
## 24116                                             Schools closure 
## 24117                                             Schools closure 
## 24118                                             Schools closure 
## 24119                                             Schools closure 
## 24120                                             Schools closure 
## 24121                            Isolation and quarantine policies
## 24122                            Isolation and quarantine policies
## 24123                            Isolation and quarantine policies
## 24124                            Isolation and quarantine policies
## 24125                            Isolation and quarantine policies
## 24126                            Isolation and quarantine policies
## 24127           Health screenings in airports and border crossings
## 24128           Health screenings in airports and border crossings
## 24129           Health screenings in airports and border crossings
## 24130           Health screenings in airports and border crossings
## 24131           Health screenings in airports and border crossings
## 24132           Health screenings in airports and border crossings
## 24133                            Isolation and quarantine policies
## 24134                            Isolation and quarantine policies
## 24135                            Isolation and quarantine policies
## 24136                            Isolation and quarantine policies
## 24137                            Isolation and quarantine policies
## 24138                            Isolation and quarantine policies
## 24139                             International flights suspension
## 24140                             International flights suspension
## 24141                             International flights suspension
## 24142                             International flights suspension
## 24143                             International flights suspension
## 24144                             International flights suspension
## 24145                             International flights suspension
## 24146                             International flights suspension
## 24147                             International flights suspension
## 24148                             International flights suspension
## 24149                             International flights suspension
## 24150                             International flights suspension
## 24151                             International flights suspension
## 24152                             International flights suspension
## 24153                             International flights suspension
## 24154                             International flights suspension
## 24155                             International flights suspension
## 24156                             International flights suspension
## 24157           Health screenings in airports and border crossings
## 24158           Health screenings in airports and border crossings
## 24159           Health screenings in airports and border crossings
## 24160           Health screenings in airports and border crossings
## 24161           Health screenings in airports and border crossings
## 24162           Health screenings in airports and border crossings
## 24163                                             Schools closure 
## 24164                                             Schools closure 
## 24165                                             Schools closure 
## 24166                                             Schools closure 
## 24167                                             Schools closure 
## 24168                                             Schools closure 
## 24169                            Isolation and quarantine policies
## 24170                            Isolation and quarantine policies
## 24171                            Isolation and quarantine policies
## 24172                            Isolation and quarantine policies
## 24173                            Isolation and quarantine policies
## 24174                            Isolation and quarantine policies
## 24175                    Closure of businesses and public services
## 24176                    Closure of businesses and public services
## 24177                    Closure of businesses and public services
## 24178                    Closure of businesses and public services
## 24179                    Closure of businesses and public services
## 24180                    Closure of businesses and public services
## 24181                                                      Curfews
## 24182                                                      Curfews
## 24183                                                      Curfews
## 24184                                                      Curfews
## 24185                                                      Curfews
## 24186                                                      Curfews
## 24187                             International flights suspension
## 24188                             International flights suspension
## 24189                             International flights suspension
## 24190                             International flights suspension
## 24191                             International flights suspension
## 24192                             International flights suspension
## 24193                                             Schools closure 
## 24194                                             Schools closure 
## 24195                                             Schools closure 
## 24196                                             Schools closure 
## 24197                                             Schools closure 
## 24198                                             Schools closure 
## 24199                       Strengthening the public health system
## 24200                       Strengthening the public health system
## 24201                       Strengthening the public health system
## 24202                       Strengthening the public health system
## 24203                       Strengthening the public health system
## 24204                       Strengthening the public health system
## 24205                                 Domestic travel restrictions
## 24206                                 Domestic travel restrictions
## 24207                                 Domestic travel restrictions
## 24208                                 Domestic travel restrictions
## 24209                                 Domestic travel restrictions
## 24210                                 Domestic travel restrictions
## 24211                                            Economic measures
## 24212                                            Economic measures
## 24213                                            Economic measures
## 24214                                            Economic measures
## 24215                                            Economic measures
## 24216                                            Economic measures
## 24217                                            Visa restrictions
## 24218                                            Visa restrictions
## 24219                                            Visa restrictions
## 24220                                            Visa restrictions
## 24221                                            Visa restrictions
## 24222                                            Visa restrictions
## 24223                            Isolation and quarantine policies
## 24224                            Isolation and quarantine policies
## 24225                            Isolation and quarantine policies
## 24226                            Isolation and quarantine policies
## 24227                            Isolation and quarantine policies
## 24228                            Isolation and quarantine policies
## 24229                             International flights suspension
## 24230                             International flights suspension
## 24231                             International flights suspension
## 24232                             International flights suspension
## 24233                             International flights suspension
## 24234                             International flights suspension
## 24235 Emergency administrative structures activated or established
## 24236 Emergency administrative structures activated or established
## 24237 Emergency administrative structures activated or established
## 24238 Emergency administrative structures activated or established
## 24239 Emergency administrative structures activated or established
## 24240 Emergency administrative structures activated or established
## 24241                       Strengthening the public health system
## 24242                       Strengthening the public health system
## 24243                       Strengthening the public health system
## 24244                       Strengthening the public health system
## 24245                       Strengthening the public health system
## 24246                       Strengthening the public health system
## 24247                                      Limit public gatherings
## 24248                                      Limit public gatherings
## 24249                                      Limit public gatherings
## 24250                                      Limit public gatherings
## 24251                                      Limit public gatherings
## 24252                                      Limit public gatherings
## 24253                        Other public health measures enforced
## 24254                        Other public health measures enforced
## 24255                        Other public health measures enforced
## 24256                        Other public health measures enforced
## 24257                        Other public health measures enforced
## 24258                        Other public health measures enforced
## 24259                            Isolation and quarantine policies
## 24260                            Isolation and quarantine policies
## 24261                            Isolation and quarantine policies
## 24262                            Isolation and quarantine policies
## 24263                            Isolation and quarantine policies
## 24264                            Isolation and quarantine policies
## 24265                                            Economic measures
## 24266                                            Economic measures
## 24267                                            Economic measures
## 24268                                            Economic measures
## 24269                                            Economic measures
## 24270                                            Economic measures
## 24271                                                      Curfews
## 24272                                                      Curfews
## 24273                                                      Curfews
## 24274                                                      Curfews
## 24275                                                      Curfews
## 24276                                                      Curfews
## 24277                                  State of emergency declared
## 24278                                  State of emergency declared
## 24279                                  State of emergency declared
## 24280                                  State of emergency declared
## 24281                                  State of emergency declared
## 24282                                  State of emergency declared
## 24283                                      Limit public gatherings
## 24284                                      Limit public gatherings
## 24285                                      Limit public gatherings
## 24286                                      Limit public gatherings
## 24287                                      Limit public gatherings
## 24288                                      Limit public gatherings
## 24289                                             Schools closure 
## 24290                                             Schools closure 
## 24291                                             Schools closure 
## 24292                                             Schools closure 
## 24293                                             Schools closure 
## 24294                                             Schools closure 
## 24295                    Closure of businesses and public services
## 24296                    Closure of businesses and public services
## 24297                    Closure of businesses and public services
## 24298                    Closure of businesses and public services
## 24299                    Closure of businesses and public services
## 24300                    Closure of businesses and public services
## 24301                                             Partial lockdown
## 24302                                             Partial lockdown
## 24303                                             Partial lockdown
## 24304                                             Partial lockdown
## 24305                                             Partial lockdown
## 24306                                             Partial lockdown
## 24307                                  State of emergency declared
## 24308                                  State of emergency declared
## 24309                                  State of emergency declared
## 24310                                  State of emergency declared
## 24311                                  State of emergency declared
## 24312                                  State of emergency declared
## 24313                                                      Curfews
## 24314                                                      Curfews
## 24315                                                      Curfews
## 24316                                                      Curfews
## 24317                                                      Curfews
## 24318                                                      Curfews
## 24319                    Closure of businesses and public services
## 24320                    Closure of businesses and public services
## 24321                    Closure of businesses and public services
## 24322                    Closure of businesses and public services
## 24323                    Closure of businesses and public services
## 24324                    Closure of businesses and public services
## 24325                                                      Curfews
## 24326                                                      Curfews
## 24327                                                      Curfews
## 24328                                                      Curfews
## 24329                                                      Curfews
## 24330                                                      Curfews
## 24331                                 Domestic travel restrictions
## 24332                                 Domestic travel restrictions
## 24333                                 Domestic travel restrictions
## 24334                                 Domestic travel restrictions
## 24335                                 Domestic travel restrictions
## 24336                                 Domestic travel restrictions
## 24337                    Closure of businesses and public services
## 24338                    Closure of businesses and public services
## 24339                    Closure of businesses and public services
## 24340                    Closure of businesses and public services
## 24341                    Closure of businesses and public services
## 24342                    Closure of businesses and public services
## 24343                                                      Curfews
## 24344                                                      Curfews
## 24345                                                      Curfews
## 24346                                                      Curfews
## 24347                                                      Curfews
## 24348                                                      Curfews
## 24349                    Closure of businesses and public services
## 24350                    Closure of businesses and public services
## 24351                    Closure of businesses and public services
## 24352                    Closure of businesses and public services
## 24353                    Closure of businesses and public services
## 24354                    Closure of businesses and public services
## 24355                    Closure of businesses and public services
## 24356                    Closure of businesses and public services
## 24357                    Closure of businesses and public services
## 24358                    Closure of businesses and public services
## 24359                    Closure of businesses and public services
## 24360                    Closure of businesses and public services
## 24361                Requirement to wear protective gear in public
## 24362                Requirement to wear protective gear in public
## 24363                Requirement to wear protective gear in public
## 24364                Requirement to wear protective gear in public
## 24365                Requirement to wear protective gear in public
## 24366                Requirement to wear protective gear in public
## 24367                             International flights suspension
## 24368                             International flights suspension
## 24369                             International flights suspension
## 24370                             International flights suspension
## 24371                             International flights suspension
## 24372                             International flights suspension
## 24373                                             Partial lockdown
## 24374                                             Partial lockdown
## 24375                                             Partial lockdown
## 24376                                             Partial lockdown
## 24377                                             Partial lockdown
## 24378                                             Partial lockdown
## 24379                                             Partial lockdown
## 24380                                             Partial lockdown
## 24381                                             Partial lockdown
## 24382                                             Partial lockdown
## 24383                                             Partial lockdown
## 24384                                             Partial lockdown
## 24385                                 Domestic travel restrictions
## 24386                                 Domestic travel restrictions
## 24387                                 Domestic travel restrictions
## 24388                                 Domestic travel restrictions
## 24389                                 Domestic travel restrictions
## 24390                                 Domestic travel restrictions
## 24391                                 Domestic travel restrictions
## 24392                                 Domestic travel restrictions
## 24393                                 Domestic travel restrictions
## 24394                                 Domestic travel restrictions
## 24395                                 Domestic travel restrictions
## 24396                                 Domestic travel restrictions
## 24397                                                      Curfews
## 24398                                                      Curfews
## 24399                                                      Curfews
## 24400                                                      Curfews
## 24401                                                      Curfews
## 24402                                                      Curfews
## 24403                            Isolation and quarantine policies
## 24404                            Isolation and quarantine policies
## 24405                            Isolation and quarantine policies
## 24406                            Isolation and quarantine policies
## 24407                            Isolation and quarantine policies
## 24408                            Isolation and quarantine policies
## 24409           Health screenings in airports and border crossings
## 24410           Health screenings in airports and border crossings
## 24411           Health screenings in airports and border crossings
## 24412           Health screenings in airports and border crossings
## 24413           Health screenings in airports and border crossings
## 24414           Health screenings in airports and border crossings
## 24415                                              Border closure 
## 24416                                              Border closure 
## 24417                                              Border closure 
## 24418                                              Border closure 
## 24419                                              Border closure 
## 24420                                              Border closure 
## 24421                                  State of emergency declared
## 24422                                  State of emergency declared
## 24423                                  State of emergency declared
## 24424                                  State of emergency declared
## 24425                                  State of emergency declared
## 24426                                  State of emergency declared
## 24427                                             Schools closure 
## 24428                                             Schools closure 
## 24429                                             Schools closure 
## 24430                                             Schools closure 
## 24431                                             Schools closure 
## 24432                                             Schools closure 
## 24433                                             Partial lockdown
## 24434                                             Partial lockdown
## 24435                                             Partial lockdown
## 24436                                             Partial lockdown
## 24437                                             Partial lockdown
## 24438                                             Partial lockdown
## 24439                                             Partial lockdown
## 24440                                             Partial lockdown
## 24441                                             Partial lockdown
## 24442                                             Partial lockdown
## 24443                                             Partial lockdown
## 24444                                             Partial lockdown
## 24445                                      Limit public gatherings
## 24446                                      Limit public gatherings
## 24447                                      Limit public gatherings
## 24448                                      Limit public gatherings
## 24449                                      Limit public gatherings
## 24450                                      Limit public gatherings
## 24451                                              Border closure 
## 24452                                              Border closure 
## 24453                                              Border closure 
## 24454                                              Border closure 
## 24455                                              Border closure 
## 24456                                              Border closure 
## 24457                            Isolation and quarantine policies
## 24458                            Isolation and quarantine policies
## 24459                            Isolation and quarantine policies
## 24460                            Isolation and quarantine policies
## 24461                            Isolation and quarantine policies
## 24462                            Isolation and quarantine policies
## 24463                            Isolation and quarantine policies
## 24464                            Isolation and quarantine policies
## 24465                            Isolation and quarantine policies
## 24466                            Isolation and quarantine policies
## 24467                            Isolation and quarantine policies
## 24468                            Isolation and quarantine policies
## 24469                                            Economic measures
## 24470                                            Economic measures
## 24471                                            Economic measures
## 24472                                            Economic measures
## 24473                                            Economic measures
## 24474                                            Economic measures
## 24475                                             Partial lockdown
## 24476                                             Partial lockdown
## 24477                                             Partial lockdown
## 24478                                             Partial lockdown
## 24479                                             Partial lockdown
## 24480                                             Partial lockdown
## 24481                                  Surveillance and monitoring
## 24482                                  Surveillance and monitoring
## 24483                                  Surveillance and monitoring
## 24484                                  Surveillance and monitoring
## 24485                                  Surveillance and monitoring
## 24486                                  Surveillance and monitoring
## 24487                            Isolation and quarantine policies
## 24488                            Isolation and quarantine policies
## 24489                            Isolation and quarantine policies
## 24490                            Isolation and quarantine policies
## 24491                            Isolation and quarantine policies
## 24492                            Isolation and quarantine policies
## 24493                                            Economic measures
## 24494                                            Economic measures
## 24495                                            Economic measures
## 24496                                            Economic measures
## 24497                                            Economic measures
## 24498                                            Economic measures
## 24499                                             Partial lockdown
## 24500                                             Partial lockdown
## 24501                                             Partial lockdown
## 24502                                             Partial lockdown
## 24503                                             Partial lockdown
## 24504                                             Partial lockdown
## 24505                    Closure of businesses and public services
## 24506                    Closure of businesses and public services
## 24507                    Closure of businesses and public services
## 24508                    Closure of businesses and public services
## 24509                    Closure of businesses and public services
## 24510                    Closure of businesses and public services
## 24511                    Closure of businesses and public services
## 24512                    Closure of businesses and public services
## 24513                    Closure of businesses and public services
## 24514                    Closure of businesses and public services
## 24515                    Closure of businesses and public services
## 24516                    Closure of businesses and public services
## 24517                    Closure of businesses and public services
## 24518                    Closure of businesses and public services
## 24519                    Closure of businesses and public services
## 24520                    Closure of businesses and public services
## 24521                    Closure of businesses and public services
## 24522                    Closure of businesses and public services
## 24523                                      Limit public gatherings
## 24524                                      Limit public gatherings
## 24525                                      Limit public gatherings
## 24526                                      Limit public gatherings
## 24527                                      Limit public gatherings
## 24528                                      Limit public gatherings
## 24529                                            Economic measures
## 24530                                            Economic measures
## 24531                                            Economic measures
## 24532                                            Economic measures
## 24533                                            Economic measures
## 24534                                            Economic measures
## 24535 Emergency administrative structures activated or established
## 24536 Emergency administrative structures activated or established
## 24537 Emergency administrative structures activated or established
## 24538 Emergency administrative structures activated or established
## 24539 Emergency administrative structures activated or established
## 24540 Emergency administrative structures activated or established
## 24541 Emergency administrative structures activated or established
## 24542 Emergency administrative structures activated or established
## 24543 Emergency administrative structures activated or established
## 24544 Emergency administrative structures activated or established
## 24545 Emergency administrative structures activated or established
## 24546 Emergency administrative structures activated or established
## 24547                                  State of emergency declared
## 24548                                  State of emergency declared
## 24549                                  State of emergency declared
## 24550                                  State of emergency declared
## 24551                                  State of emergency declared
## 24552                                  State of emergency declared
## 24553                            Isolation and quarantine policies
## 24554                            Isolation and quarantine policies
## 24555                            Isolation and quarantine policies
## 24556                            Isolation and quarantine policies
## 24557                            Isolation and quarantine policies
## 24558                            Isolation and quarantine policies
## 24559                Requirement to wear protective gear in public
## 24560                Requirement to wear protective gear in public
## 24561                Requirement to wear protective gear in public
## 24562                Requirement to wear protective gear in public
## 24563                Requirement to wear protective gear in public
## 24564                Requirement to wear protective gear in public
## 24565                                  Surveillance and monitoring
## 24566                                  Surveillance and monitoring
## 24567                                  Surveillance and monitoring
## 24568                                  Surveillance and monitoring
## 24569                                  Surveillance and monitoring
## 24570                                  Surveillance and monitoring
## 24571                                          Awareness campaigns
## 24572                                          Awareness campaigns
## 24573                                          Awareness campaigns
## 24574                                          Awareness campaigns
## 24575                                          Awareness campaigns
## 24576                                          Awareness campaigns
## 24577                                            Economic measures
## 24578                                            Economic measures
## 24579                                            Economic measures
## 24580                                            Economic measures
## 24581                                            Economic measures
## 24582                                            Economic measures
## 24583                                  State of emergency declared
## 24584                                  State of emergency declared
## 24585                                  State of emergency declared
## 24586                                  State of emergency declared
## 24587                                  State of emergency declared
## 24588                                  State of emergency declared
## 24589                                            Economic measures
## 24590                                            Economic measures
## 24591                                            Economic measures
## 24592                                            Economic measures
## 24593                                            Economic measures
## 24594                                            Economic measures
## 24595                    Closure of businesses and public services
## 24596                    Closure of businesses and public services
## 24597                    Closure of businesses and public services
## 24598                    Closure of businesses and public services
## 24599                    Closure of businesses and public services
## 24600                    Closure of businesses and public services
## 24601                                 Domestic travel restrictions
## 24602                                 Domestic travel restrictions
## 24603                                 Domestic travel restrictions
## 24604                                 Domestic travel restrictions
## 24605                                 Domestic travel restrictions
## 24606                                 Domestic travel restrictions
## 24607                                               Border checks 
## 24608                                               Border checks 
## 24609                                               Border checks 
## 24610                                               Border checks 
## 24611                                               Border checks 
## 24612                                               Border checks 
## 24613                                                Full lockdown
## 24614                                                Full lockdown
## 24615                                                Full lockdown
## 24616                                                Full lockdown
## 24617                                                Full lockdown
## 24618                                                Full lockdown
## 24619                                  Surveillance and monitoring
## 24620                                  Surveillance and monitoring
## 24621                                  Surveillance and monitoring
## 24622                                  Surveillance and monitoring
## 24623                                  Surveillance and monitoring
## 24624                                  Surveillance and monitoring
## 24625                                 Domestic travel restrictions
## 24626                                 Domestic travel restrictions
## 24627                                 Domestic travel restrictions
## 24628                                 Domestic travel restrictions
## 24629                                 Domestic travel restrictions
## 24630                                 Domestic travel restrictions
## 24631                                                Full lockdown
## 24632                                                Full lockdown
## 24633                                                Full lockdown
## 24634                                                Full lockdown
## 24635                                                Full lockdown
## 24636                                                Full lockdown
## 24637                                            Economic measures
## 24638                                            Economic measures
## 24639                                            Economic measures
## 24640                                            Economic measures
## 24641                                            Economic measures
## 24642                                            Economic measures
## 24643                                      Mass population testing
## 24644                                      Mass population testing
## 24645                                      Mass population testing
## 24646                                      Mass population testing
## 24647                                      Mass population testing
## 24648                                      Mass population testing
## 24649                            Isolation and quarantine policies
## 24650                            Isolation and quarantine policies
## 24651                            Isolation and quarantine policies
## 24652                            Isolation and quarantine policies
## 24653                            Isolation and quarantine policies
## 24654                            Isolation and quarantine policies
## 24655                                            Economic measures
## 24656                                            Economic measures
## 24657                                            Economic measures
## 24658                                            Economic measures
## 24659                                            Economic measures
## 24660                                            Economic measures
## 24661                                             Partial lockdown
## 24662                                             Partial lockdown
## 24663                                             Partial lockdown
## 24664                                             Partial lockdown
## 24665                                             Partial lockdown
## 24666                                             Partial lockdown
## 24667                                 Domestic travel restrictions
## 24668                                 Domestic travel restrictions
## 24669                                 Domestic travel restrictions
## 24670                                 Domestic travel restrictions
## 24671                                 Domestic travel restrictions
## 24672                                 Domestic travel restrictions
## 24673                    Closure of businesses and public services
## 24674                    Closure of businesses and public services
## 24675                    Closure of businesses and public services
## 24676                    Closure of businesses and public services
## 24677                    Closure of businesses and public services
## 24678                    Closure of businesses and public services
## 24679                                                      Curfews
## 24680                                                      Curfews
## 24681                                                      Curfews
## 24682                                                      Curfews
## 24683                                                      Curfews
## 24684                                                      Curfews
## 24685 Emergency administrative structures activated or established
## 24686 Emergency administrative structures activated or established
## 24687 Emergency administrative structures activated or established
## 24688 Emergency administrative structures activated or established
## 24689 Emergency administrative structures activated or established
## 24690 Emergency administrative structures activated or established
## 24691                    Closure of businesses and public services
## 24692                    Closure of businesses and public services
## 24693                    Closure of businesses and public services
## 24694                    Closure of businesses and public services
## 24695                    Closure of businesses and public services
## 24696                    Closure of businesses and public services
## 24697                                                      Curfews
## 24698                                                      Curfews
## 24699                                                      Curfews
## 24700                                                      Curfews
## 24701                                                      Curfews
## 24702                                                      Curfews
## 24703                                      Limit public gatherings
## 24704                                      Limit public gatherings
## 24705                                      Limit public gatherings
## 24706                                      Limit public gatherings
## 24707                                      Limit public gatherings
## 24708                                      Limit public gatherings
## 24709                                      Limit public gatherings
## 24710                                      Limit public gatherings
## 24711                                      Limit public gatherings
## 24712                                      Limit public gatherings
## 24713                                      Limit public gatherings
## 24714                                      Limit public gatherings
## 24715                                      Limit public gatherings
## 24716                                      Limit public gatherings
## 24717                                      Limit public gatherings
## 24718                                      Limit public gatherings
## 24719                                      Limit public gatherings
## 24720                                      Limit public gatherings
## 24721                                      Limit public gatherings
## 24722                                      Limit public gatherings
## 24723                                      Limit public gatherings
## 24724                                      Limit public gatherings
## 24725                                      Limit public gatherings
## 24726                                      Limit public gatherings
## 24727                                                      Curfews
## 24728                                                      Curfews
## 24729                                                      Curfews
## 24730                                                      Curfews
## 24731                                                      Curfews
## 24732                                                      Curfews
## 24733                                      Limit public gatherings
## 24734                                      Limit public gatherings
## 24735                                      Limit public gatherings
## 24736                                      Limit public gatherings
## 24737                                      Limit public gatherings
## 24738                                      Limit public gatherings
## 24739                                                      Curfews
## 24740                                                      Curfews
## 24741                                                      Curfews
## 24742                                                      Curfews
## 24743                                                      Curfews
## 24744                                                      Curfews
## 24745                        Other public health measures enforced
## 24746                        Other public health measures enforced
## 24747                        Other public health measures enforced
## 24748                        Other public health measures enforced
## 24749                        Other public health measures enforced
## 24750                        Other public health measures enforced
## 24751 Emergency administrative structures activated or established
## 24752 Emergency administrative structures activated or established
## 24753 Emergency administrative structures activated or established
## 24754 Emergency administrative structures activated or established
## 24755 Emergency administrative structures activated or established
## 24756 Emergency administrative structures activated or established
## 24757 Emergency administrative structures activated or established
## 24758 Emergency administrative structures activated or established
## 24759 Emergency administrative structures activated or established
## 24760 Emergency administrative structures activated or established
## 24761 Emergency administrative structures activated or established
## 24762 Emergency administrative structures activated or established
## 24763                                  State of emergency declared
## 24764                                  State of emergency declared
## 24765                                  State of emergency declared
## 24766                                  State of emergency declared
## 24767                                  State of emergency declared
## 24768                                  State of emergency declared
## 24769                                             Schools closure 
## 24770                                             Schools closure 
## 24771                                             Schools closure 
## 24772                                             Schools closure 
## 24773                                             Schools closure 
## 24774                                             Schools closure 
## 24775                                 Domestic travel restrictions
## 24776                                 Domestic travel restrictions
## 24777                                 Domestic travel restrictions
## 24778                                 Domestic travel restrictions
## 24779                                 Domestic travel restrictions
## 24780                                 Domestic travel restrictions
## 24781                                      Limit public gatherings
## 24782                                      Limit public gatherings
## 24783                                      Limit public gatherings
## 24784                                      Limit public gatherings
## 24785                                      Limit public gatherings
## 24786                                      Limit public gatherings
## 24787                                            Economic measures
## 24788                                            Economic measures
## 24789                                            Economic measures
## 24790                                            Economic measures
## 24791                                            Economic measures
## 24792                                            Economic measures
## 24793                                  State of emergency declared
## 24794                                  State of emergency declared
## 24795                                  State of emergency declared
## 24796                                  State of emergency declared
## 24797                                  State of emergency declared
## 24798                                  State of emergency declared
## 24799                                                Full lockdown
## 24800                                                Full lockdown
## 24801                                                Full lockdown
## 24802                                                Full lockdown
## 24803                                                Full lockdown
## 24804                                                Full lockdown
## 24805                                                Full lockdown
## 24806                                                Full lockdown
## 24807                                                Full lockdown
## 24808                                                Full lockdown
## 24809                                                Full lockdown
## 24810                                                Full lockdown
## 24811                       Strengthening the public health system
## 24812                       Strengthening the public health system
## 24813                       Strengthening the public health system
## 24814                       Strengthening the public health system
## 24815                       Strengthening the public health system
## 24816                       Strengthening the public health system
## 24817 Emergency administrative structures activated or established
## 24818 Emergency administrative structures activated or established
## 24819 Emergency administrative structures activated or established
## 24820 Emergency administrative structures activated or established
## 24821 Emergency administrative structures activated or established
## 24822 Emergency administrative structures activated or established
## 24823                       Strengthening the public health system
## 24824                       Strengthening the public health system
## 24825                       Strengthening the public health system
## 24826                       Strengthening the public health system
## 24827                       Strengthening the public health system
## 24828                       Strengthening the public health system
## 24829                            Isolation and quarantine policies
## 24830                            Isolation and quarantine policies
## 24831                            Isolation and quarantine policies
## 24832                            Isolation and quarantine policies
## 24833                            Isolation and quarantine policies
## 24834                            Isolation and quarantine policies
## 24835                                                Full lockdown
## 24836                                                Full lockdown
## 24837                                                Full lockdown
## 24838                                                Full lockdown
## 24839                                                Full lockdown
## 24840                                                Full lockdown
## 24841                    Closure of businesses and public services
## 24842                    Closure of businesses and public services
## 24843                    Closure of businesses and public services
## 24844                    Closure of businesses and public services
## 24845                    Closure of businesses and public services
## 24846                    Closure of businesses and public services
## 24847                             International flights suspension
## 24848                             International flights suspension
## 24849                             International flights suspension
## 24850                             International flights suspension
## 24851                             International flights suspension
## 24852                             International flights suspension
## 24853                                             Schools closure 
## 24854                                             Schools closure 
## 24855                                             Schools closure 
## 24856                                             Schools closure 
## 24857                                             Schools closure 
## 24858                                             Schools closure 
## 24859                                                Full lockdown
## 24860                                                Full lockdown
## 24861                                                Full lockdown
## 24862                                                Full lockdown
## 24863                                                Full lockdown
## 24864                                                Full lockdown
## 24865 Emergency administrative structures activated or established
## 24866 Emergency administrative structures activated or established
## 24867 Emergency administrative structures activated or established
## 24868 Emergency administrative structures activated or established
## 24869 Emergency administrative structures activated or established
## 24870 Emergency administrative structures activated or established
## 24871 Emergency administrative structures activated or established
## 24872 Emergency administrative structures activated or established
## 24873 Emergency administrative structures activated or established
## 24874 Emergency administrative structures activated or established
## 24875 Emergency administrative structures activated or established
## 24876 Emergency administrative structures activated or established
## 24877 Emergency administrative structures activated or established
## 24878 Emergency administrative structures activated or established
## 24879 Emergency administrative structures activated or established
## 24880 Emergency administrative structures activated or established
## 24881 Emergency administrative structures activated or established
## 24882 Emergency administrative structures activated or established
## 24883 Emergency administrative structures activated or established
## 24884 Emergency administrative structures activated or established
## 24885 Emergency administrative structures activated or established
## 24886 Emergency administrative structures activated or established
## 24887 Emergency administrative structures activated or established
## 24888 Emergency administrative structures activated or established
## 24889 Emergency administrative structures activated or established
## 24890 Emergency administrative structures activated or established
## 24891 Emergency administrative structures activated or established
## 24892 Emergency administrative structures activated or established
## 24893 Emergency administrative structures activated or established
## 24894 Emergency administrative structures activated or established
## 24895 Emergency administrative structures activated or established
## 24896 Emergency administrative structures activated or established
## 24897 Emergency administrative structures activated or established
## 24898 Emergency administrative structures activated or established
## 24899 Emergency administrative structures activated or established
## 24900 Emergency administrative structures activated or established
## 24901                            Isolation and quarantine policies
## 24902                            Isolation and quarantine policies
## 24903                            Isolation and quarantine policies
## 24904                            Isolation and quarantine policies
## 24905                            Isolation and quarantine policies
## 24906                            Isolation and quarantine policies
## 24907                             International flights suspension
## 24908                             International flights suspension
## 24909                             International flights suspension
## 24910                             International flights suspension
## 24911                             International flights suspension
## 24912                             International flights suspension
## 24913                                              Border closure 
## 24914                                              Border closure 
## 24915                                              Border closure 
## 24916                                              Border closure 
## 24917                                              Border closure 
## 24918                                              Border closure 
## 24919                             International flights suspension
## 24920                             International flights suspension
## 24921                             International flights suspension
## 24922                             International flights suspension
## 24923                             International flights suspension
## 24924                             International flights suspension
## 24925                                              Border closure 
## 24926                                              Border closure 
## 24927                                              Border closure 
## 24928                                              Border closure 
## 24929                                              Border closure 
## 24930                                              Border closure 
## 24931                                            Visa restrictions
## 24932                                            Visa restrictions
## 24933                                            Visa restrictions
## 24934                                            Visa restrictions
## 24935                                            Visa restrictions
## 24936                                            Visa restrictions
## 24937                                 Domestic travel restrictions
## 24938                                 Domestic travel restrictions
## 24939                                 Domestic travel restrictions
## 24940                                 Domestic travel restrictions
## 24941                                 Domestic travel restrictions
## 24942                                 Domestic travel restrictions
## 24943                            Isolation and quarantine policies
## 24944                            Isolation and quarantine policies
## 24945                            Isolation and quarantine policies
## 24946                            Isolation and quarantine policies
## 24947                            Isolation and quarantine policies
## 24948                            Isolation and quarantine policies
## 24949                       Strengthening the public health system
## 24950                       Strengthening the public health system
## 24951                       Strengthening the public health system
## 24952                       Strengthening the public health system
## 24953                       Strengthening the public health system
## 24954                       Strengthening the public health system
## 24955                                  State of emergency declared
## 24956                                  State of emergency declared
## 24957                                  State of emergency declared
## 24958                                  State of emergency declared
## 24959                                  State of emergency declared
## 24960                                  State of emergency declared
## 24961                                      General recommendations
## 24962                                      General recommendations
## 24963                                      General recommendations
## 24964                                      General recommendations
## 24965                                      General recommendations
## 24966                                      General recommendations
## 24967                                            Economic measures
## 24968                                            Economic measures
## 24969                                            Economic measures
## 24970                                            Economic measures
## 24971                                            Economic measures
## 24972                                            Economic measures
## 24973                                            Economic measures
## 24974                                            Economic measures
## 24975                                            Economic measures
## 24976                                            Economic measures
## 24977                                            Economic measures
## 24978                                            Economic measures
## 24979                                            Economic measures
## 24980                                            Economic measures
## 24981                                            Economic measures
## 24982                                            Economic measures
## 24983                                            Economic measures
## 24984                                            Economic measures
## 24985                                 Domestic travel restrictions
## 24986                                 Domestic travel restrictions
## 24987                                 Domestic travel restrictions
## 24988                                 Domestic travel restrictions
## 24989                                 Domestic travel restrictions
## 24990                                 Domestic travel restrictions
## 24991                                      Limit public gatherings
## 24992                                      Limit public gatherings
## 24993                                      Limit public gatherings
## 24994                                      Limit public gatherings
## 24995                                      Limit public gatherings
## 24996                                      Limit public gatherings
## 24997                            Isolation and quarantine policies
## 24998                            Isolation and quarantine policies
## 24999                            Isolation and quarantine policies
##  [ reached 'max' / getOption("max.print") -- omitted 59037 rows ]